:root {
  --navy: #101d3b;
  --navy-2: #283059;
  --pink: #f5a9b7;
  --pink-2: #fff0f3;
  --beige: #f6efe6;
  --ink: #121a2f;
  --muted: #6c758a;
  --line: rgba(16, 29, 59, 0.1);
  --shadow: 0 24px 64px rgba(16, 29, 59, 0.11);
  --soft-shadow: 0 14px 38px rgba(16, 29, 59, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(245, 169, 183, 0.22), transparent 24rem),
    radial-gradient(circle at 18% 24%, rgba(246, 239, 230, 0.9), transparent 22rem),
    #fff;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(16, 29, 59, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(245, 169, 183, 0.24);
}

.brand span { font-family: "Playfair Display", serif; font-size: 1.18rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #536077;
  font-size: 0.82rem;
  font-weight: 750;
}

.nav-links a:not(.nav-call):hover { color: var(--navy); }

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.lang-btn.active { color: #fff; background: var(--navy); }

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 850;
  font-size: 0.88rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-call,
.btn.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(16, 29, 59, 0.18);
}

.btn.ghost {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.btn:hover,
.nav-call:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
  padding-top: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.35rem, 7.6vw, 6.7rem);
  line-height: 0.94;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.section-copy p,
.form-copy p,
.service-card p,
.why-card p,
.contact-panel p,
.footer p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 540px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 36px;
}

.hero-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 1.24rem;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-art {
  width: min(700px, 110%);
  transform: translateX(20px);
  filter: drop-shadow(0 30px 52px rgba(16, 29, 59, 0.1));
  animation: floatArt 6.5s ease-in-out infinite;
}

.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.float-card,
.client-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  animation: floatChip 5.8s ease-in-out infinite;
}

.float-card p,
.client-chip p { margin: 0; }

.dot-icon,
.spark-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #fff);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
}

.top-card {
  top: 58px;
  left: 8px;
}

.trust-card {
  right: 10px;
  bottom: 104px;
  animation-delay: -1.2s;
}

.client-chip {
  left: 58px;
  bottom: 72px;
  animation-delay: -2.2s;
}

.client-chip i {
  width: 24px;
  height: 24px;
  margin-right: -17px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--pink);
}

.client-chip i:nth-child(2) { background: var(--navy-2); }
.client-chip i:nth-child(3) { margin-right: 0; background: var(--beige); }

.about {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 66px;
  align-items: stretch;
}

.quote-card,
.service-card,
.why-card,
.testimonial-card,
.lead-form,
.contact-panel,
.map-panel,
.contact-stack a {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.quote-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.quote-mark {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0.7;
}

.quote-card p {
  max-width: 330px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.28;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.mini-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.pill-grid span {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.pill-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.section-heading h2 { grid-column: 1; }

.section-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card span,
.why-card b {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 900;
}

.service-card p { margin: 12px 0 24px; font-size: 0.94rem; }
.service-card a {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card.featured {
  color: #fff;
  background: var(--navy-2);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured a { color: #fff; }

.service-card.featured p { opacity: 0.78; }
.service-card.blush { background: linear-gradient(145deg, var(--pink-2), #ffd4dc); }

.why {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #fff, #fff9fa);
}

.why .section-heading {
  display: block;
  margin-bottom: 34px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  min-height: 190px;
  padding: 26px;
}

.why-card p { margin: 12px 0 0; font-size: 0.92rem; }

.testimonials .section-heading {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.stars {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--pink);
  font-weight: 900;
  white-space: nowrap;
}

.stars span {
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px;
}

.testimonial-card.dark {
  color: #fff;
  background: var(--navy-2);
}

.testimonial-card blockquote {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-card figcaption {
  margin-top: 28px;
  color: var(--navy);
  font-weight: 900;
}

.testimonial-card.dark figcaption { color: #fff; }
.testimonial-card figcaption span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial-card.dark figcaption span { color: rgba(255, 255, 255, 0.66); }

.estimate,
.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-stack a {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
}

.contact-stack strong,
.detail-list strong {
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-stack span,
.detail-list span {
  color: var(--muted);
  line-height: 1.55;
}

.lead-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(245, 169, 183, 0.24), transparent 15rem),
    rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(16, 29, 59, 0.1), 0 0 0 1px rgba(245, 169, 183, 0.2);
}

.lead-form::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 28px;
  width: 88px;
  height: 88px;
  background: url("assets/icon-towels.png") center / contain no-repeat;
  filter: drop-shadow(0 18px 28px rgba(245, 169, 183, 0.28));
  animation: floatTowels 5.8s ease-in-out infinite;
  pointer-events: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(16, 29, 59, 0.02), 0 2px 5px rgba(16, 29, 59, 0.04);
}

textarea { resize: vertical; }

input::placeholder,
textarea::placeholder {
  color: #7a8497;
  opacity: 0.9;
}

select:invalid {
  color: #7a8497;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(245, 169, 183, 0.18);
}

.wide { grid-column: 1 / -1; }

.contact {
  width: min(1180px, calc(100% - 32px));
  padding: 44px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 94% 0%, rgba(245, 169, 183, 0.16), transparent 22rem),
    linear-gradient(135deg, #30345f 0%, #272c52 100%);
  box-shadow: 0 28px 70px rgba(16, 29, 59, 0.16);
}

.contact-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-panel h2,
.contact-panel p,
.contact-panel .eyebrow { color: #fff; }

.contact-panel p { opacity: 0.82; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-call,
.contact-quote {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-call {
  color: var(--navy);
  background: #fff;
}

.contact-quote {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.contact-actions svg,
.map-link svg,
.detail-list svg,
.hours-title svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.detail-list a,
.detail-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.detail-list i,
.hours-title i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.detail-list span {
  display: grid;
  gap: 5px;
}

.detail-list strong {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.detail-list b {
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.4;
}

.hours-card {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hours-title strong {
  color: var(--pink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.hours-row b {
  color: #fff;
  white-space: nowrap;
}

.contact-map .eyebrow {
  color: #fff;
  margin-bottom: 18px;
}

.map-panel {
  overflow: hidden;
  min-height: 380px;
  border: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.map-panel iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #fff;
  font-weight: 850;
}

.quick-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  gap: 14px;
}

.quick-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 18px 38px rgba(16, 29, 59, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-btn svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

.quick-btn.whatsapp {
  position: relative;
  background: #25d366;
}

.quick-btn.whatsapp::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
}

.quick-btn.phone {
  background: var(--navy);
}

/* Legacy fallback if an old single WhatsApp link remains cached. */
.whatsapp:not(.quick-btn) {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.3);
  font-weight: 950;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.15fr;
  gap: 78px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  max-width: 360px;
}

.footer-language {
  width: max-content;
  margin-top: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  align-content: start;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: var(--navy);
  font-weight: 800;
}

.footer-hours {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.footer-hours strong {
  color: var(--pink);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-hours div,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-hours b {
  color: var(--navy);
  white-space: nowrap;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes floatArt {
  0%, 100% { transform: translateX(20px) translateY(0) rotate(-0.4deg); }
  50% { transform: translateX(20px) translateY(-14px) rotate(0.5deg); }
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatTowels {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@media (max-width: 1040px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .language-switch,
  .nav-call { align-self: flex-start; }

  .hero,
  .about,
  .estimate,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 440px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p { margin-top: 18px; }

  .card-grid,
  .why-grid,
  .testimonial-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .section-pad { padding: 70px 0; }
  .nav-shell { height: 68px; }

  .brand span { font-size: 1rem; }

  h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.35rem); }

  .hero {
    gap: 20px;
    padding-top: 34px;
  }

  .hero-visual { min-height: 360px; }
  .hero-art {
    width: min(500px, 118%);
    transform: translateX(0);
  }

  .float-card,
  .client-chip {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .top-card { top: 18px; left: 0; }
  .trust-card { right: 0; bottom: 50px; }
  .client-chip { left: 0; bottom: 14px; }

  .quick-actions {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }

  .hero-actions .btn { width: 100%; }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .pill-grid,
  .card-grid,
  .why-grid,
  .testimonial-grid,
  .lead-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .service-card,
  .why-card,
  .testimonial-card,
  .lead-form {
    border-radius: 20px;
    padding: 22px;
  }

  .lead-form::after {
    width: 66px;
    height: 66px;
    top: -22px;
    right: 18px;
  }

  .contact {
    width: min(100% - 32px, 1180px);
    padding: 22px;
    border-radius: 24px;
  }

  .contact-actions,
  .contact-call,
  .contact-quote,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
    height: 360px;
  }

  .hours-row,
  .footer-hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
