﻿:root {
  --primary: #b57f84;
  --primary-strong: #995e63;
  --secondary: #3f2730;
  --accent: #d8a7ac;
  --bg: #fdf7f8;
  --surface: #ffffff;
  --surface-soft: #fcf3f5;
  --text: #2f1f25;
  --muted: #7a6169;
  --line: #eddde1;
  --success: #25d366;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 16px 40px rgba(67, 42, 48, 0.11);
  --shadow-strong: 0 24px 56px rgba(67, 42, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(181, 127, 132, 0.14), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(212, 145, 155, 0.18), transparent 30%),
    var(--bg);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p {
  margin: 0;
}

h1,
h2,
h3,
summary {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(76px, 8.5vw, 116px) 0;
}

section[id] {
  scroll-margin-top: 108px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 70;
  box-shadow: 0 2px 10px rgba(153, 94, 99, 0.45);
}

.topbar {
  background: linear-gradient(90deg, #3b222c, var(--secondary));
  color: #f7ecef;
  font-size: 0.85rem;
}

.topbar-content {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-content a {
  color: #ffd7dc;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  background: rgba(255, 246, 248, 0.9);
  border-color: rgba(184, 141, 151, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(67, 42, 48, 0.1);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.brand {
  width: clamp(170px, 18vw, 236px);
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
}

.menu > a:not(.btn) {
  position: relative;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0;
}

.menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.menu > a:not(.btn):hover,
.menu > a:not(.btn).active {
  color: var(--secondary);
}

.menu > a:not(.btn):hover::after,
.menu > a:not(.btn).active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e6cfd5;
  border-radius: 12px;
  padding: 0.45rem;
  background: #ffffff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--secondary);
  margin: 0.31rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.35rem;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 26px rgba(153, 94, 99, 0.36);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(153, 94, 99, 0.45);
}

.btn-outline {
  border-color: #dcb9c1;
  background: #ffffff;
  color: var(--secondary);
}

.btn-outline:hover {
  border-color: #c88d99;
  background: #fff1f4;
}

.btn-soft {
  background: #f8e9ed;
  color: var(--secondary);
}

.nav-cta {
  margin-left: 0.35rem;
}

.hero {
  position: relative;
  padding-top: clamp(50px, 6vw, 90px);
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -130px;
  left: -180px;
  background: radial-gradient(circle, rgba(181, 127, 132, 0.22), transparent 70%);
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -190px;
  top: -80px;
  background: radial-gradient(circle, rgba(212, 145, 155, 0.22), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.12rem, 4.3vw, 3.65rem);
  margin-bottom: 1.1rem;
  color: var(--secondary);
}

.hero-content h1 span {
  background: linear-gradient(105deg, var(--primary-strong), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.hero-badges {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #7a4c57;
  border: 1px solid #e7ced4;
  background: #fff3f5;
}

.hero-points {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.hero-points li {
  padding: 0.7rem 0.8rem 0.7rem 2rem;
  border-radius: 12px;
  border: 1px solid #ecdde1;
  background: #ffffff;
  color: #6f4f59;
  font-weight: 700;
  position: relative;
  font-size: 0.9rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 4px rgba(181, 127, 132, 0.12);
}

.hero-media {
  position: relative;
  width: 100%;
}

.hero-media img {
  width: 100%;
  height: clamp(420px, 54vw, 620px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.25s ease;
  will-change: transform;
}

.hero-pill {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(63, 39, 48, 0.8);
  color: #fff7f8;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-pill-top {
  top: 14px;
  left: 14px;
}

.hero-pill-bottom {
  top: 14px;
  right: 14px;
}

.hero-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 16px;
  border: 1px solid #ebdbe0;
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  box-shadow: 0 16px 30px rgba(66, 40, 47, 0.16);
}

.hero-card strong {
  color: var(--secondary);
  font-size: 1.06rem;
}

.hero-card p {
  margin: 0.35rem 0 0.95rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.metrics {
  margin-top: -16px;
}

.metrics-grid {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 94, 99, 0.2);
  background: linear-gradient(125deg, #4b2c34, #7a4f5a 55%, #995e63);
  box-shadow: var(--shadow-strong);
  padding: clamp(18px, 2.1vw, 28px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metrics-grid article {
  text-align: center;
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-grid strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.72rem, 3vw, 2.45rem);
  line-height: 1;
}

.metrics-grid span {
  color: rgba(255, 240, 244, 0.9);
  font-size: 0.87rem;
}

.about {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

.about::before {
  content: "";
  position: absolute;
  inset: 18% auto auto -220px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 127, 132, 0.12), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  overflow: clip;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 12% -10% -12% 8%;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(181, 127, 132, 0.22), rgba(212, 145, 155, 0.22));
  z-index: -1;
}

.about-media img {
  width: 100%;
  height: clamp(360px, 42vw, 540px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.15vw, 2.9rem);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  margin: 1.35rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #6a4b55;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--accent));
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
}

.section-head p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.services {
  background: linear-gradient(180deg, #fff6f8 0, #ffffff 58%, #fcf3f5 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(67, 42, 48, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #d6aab4;
  box-shadow: 0 20px 36px rgba(97, 62, 71, 0.18);
}

.service-card img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-body {
  padding: 1.25rem 1.2rem 1.45rem;
}

.service-body h3 {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.service-body p {
  font-size: 0.93rem;
  color: var(--muted);
}

.journey {
  background: linear-gradient(145deg, #fef1f4, #ffffff);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.journey-card {
  border: 1px solid #ead7dd;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.journey-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  font-weight: 800;
}

.journey-card h3 {
  margin: 0.9rem 0 0.45rem;
  color: var(--secondary);
  font-size: 1.24rem;
}

.journey-card p {
  color: var(--muted);
}

.faq {
  background: linear-gradient(180deg, #ffffff, #fcf3f5);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 5vw, 60px);
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(1.62rem, 3vw, 2.45rem);
  margin-bottom: 0.95rem;
}

.faq-intro p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.faq-items {
  display: grid;
  gap: 0.8rem;
}

.faq-items details {
  border: 1px solid #ead7dd;
  border-radius: 14px;
  background: #ffffff;
  padding: 0 1rem;
  box-shadow: 0 7px 18px rgba(67, 42, 48, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-items details[open] {
  border-color: #cc96a2;
  box-shadow: 0 12px 24px rgba(120, 74, 84, 0.16);
}

.faq-items summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: #67434d;
  padding: 1rem 1.8rem 1rem 0;
}

.faq-items summary::-webkit-details-marker {
  display: none;
}

.faq-items summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.28rem;
  color: var(--primary-strong);
}

.faq-items details[open] summary::after {
  content: "-";
}

.faq-items details p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonials {
  background: linear-gradient(180deg, #fdf2f4, #ffffff);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  border: 1px solid #ebd8de;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #fff4f6);
  padding: 1.45rem;
  box-shadow: 0 10px 24px rgba(67, 42, 48, 0.09);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 2.2rem;
  color: rgba(153, 94, 99, 0.25);
  font-weight: 800;
  line-height: 1;
}

.testimonial-card p {
  color: #6f4f59;
  margin-bottom: 1.2rem;
}

.testimonial-card strong {
  color: var(--secondary);
}

.cta-band {
  padding-top: 12px;
}

.cta-band-inner {
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  background: linear-gradient(120deg, #4b2c34, #7a4f5a 62%, #b57f84);
  color: #fff2f5;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: center;
}

.cta-band-copy .eyebrow {
  color: #ffdbe0;
}

.cta-band-copy h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.cta-band-copy p {
  color: rgba(255, 241, 245, 0.95);
  max-width: 540px;
}

.cta-band-actions {
  display: grid;
  gap: 0.7rem;
  justify-self: end;
  width: min(360px, 100%);
}

.cta-band .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(239, 204, 212, 0.55);
  color: #ffffff;
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.contact {
  background:
    radial-gradient(circle at 100% 0, rgba(181, 127, 132, 0.22), transparent 34%),
    linear-gradient(170deg, #fff1f4, #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 36px);
}

.contact-info {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(132, 86, 98, 0.24);
  background: linear-gradient(145deg, #4b2c34, #714955);
  padding: clamp(20px, 2.1vw, 30px);
  color: #fff1f4;
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.contact-info .eyebrow {
  color: #ffdce1;
}

.contact-info h2 {
  font-size: clamp(1.62rem, 3vw, 2.45rem);
  margin-bottom: 1rem;
}

.contact-info p {
  color: rgba(255, 241, 245, 0.92);
}

.contact-links {
  margin: 0.3rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(239, 206, 214, 0.55);
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-weight: 700;
}

.contact-box {
  border: 1px solid rgba(239, 206, 214, 0.55);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  width: min(350px, 100%);
  overflow-wrap: anywhere;
}

.contact-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.contact-address-image {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(239, 206, 214, 0.45);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-focus {
  border: 1px solid #ead7dd;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffffff, #fff0f3);
  padding: clamp(20px, 2.2vw, 30px);
  box-shadow: var(--shadow-soft);
}

.location-focus .eyebrow {
  color: #9d6976;
}

.location-focus h3 {
  color: var(--secondary);
  font-size: clamp(1.25rem, 2.2vw, 1.72rem);
  margin-bottom: 0.65rem;
}

.location-focus p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.location-card {
  border: 1px solid #ead7dd;
  border-radius: 14px;
  background: #fffafc;
  padding: 0.8rem;
  display: grid;
  gap: 0.8rem;
}

.location-card iframe {
  width: 100%;
  height: clamp(220px, 24vw, 280px);
  border: 0;
  border-radius: 10px;
}

.btn-whatsapp-main {
  width: 100%;
  margin: 0.25rem 0 0.3rem;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid #ead7dd;
  background: #ffffff;
  color: #6f4b56;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-action:hover {
  transform: translateY(-2px);
  border-color: #c78998;
  box-shadow: 0 10px 20px rgba(120, 74, 84, 0.16);
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid #ead7dd;
  background: #fdf0f3;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  width: clamp(140px, 16vw, 190px);
}

.footer p {
  color: #7a5b65;
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 65;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: var(--success);
  color: #ffffff;
  font-weight: 700;
  padding: 0.76rem 0.98rem;
  max-width: calc(100vw - 24px);
  box-shadow: 0 14px 28px rgba(15, 149, 74, 0.32);
  animation: pulse 2.3s ease-in-out infinite;
  transform: translateZ(0);
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.wa-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.wa-text {
  display: inline-block;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease var(--reveal-delay, 0s), transform 0.75s ease var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(15, 149, 74, 0.32);
  }

  50% {
    box-shadow: 0 16px 34px rgba(15, 149, 74, 0.55);
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-actions {
    justify-self: stretch;
    width: 100%;
  }

  .metrics {
    margin-top: 20px;
  }

  .hero-media {
    max-width: 760px;
    margin-inline: auto;
  }

  .testimonials-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .about-media::before {
    inset: 8% 2% -8% 2%;
  }
}

@media (max-width: 860px) {
  .topbar-content {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 0.45rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    border-radius: 16px;
    border: 1px solid #ead7dd;
    background: rgba(255, 245, 247, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .menu.is-open {
    display: flex;
  }

  .menu > a:not(.btn) {
    padding: 0.5rem 0.1rem;
  }

  .menu > a:not(.btn)::after {
    bottom: 0.1rem;
  }

  .hero-media img {
    height: clamp(360px, 68vw, 560px);
  }

  .nav-cta {
    margin: 0.35rem 0 0;
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-points,
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .services-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-links a {
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: clamp(1.92rem, 8.3vw, 2.55rem);
    line-height: 1.15;
  }

  .section-head h2,
  .about-content h2,
  .faq-intro h2,
  .contact-info h2,
  .cta-band-copy h2 {
    text-wrap: balance;
  }

  .hero-media img {
    height: clamp(280px, 72vw, 420px);
  }

  .hero-card {
    position: static;
    margin-top: 0.75rem;
  }

  .hero-pill {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .hero-card .btn {
    width: auto;
  }

  .service-card img {
    height: 200px;
  }

  .floating-whatsapp .wa-text {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .section {
    padding: 54px 0;
  }

  .container {
    width: min(1160px, 95vw);
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 9.2vw, 2.18rem);
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: clamp(250px, 78vw, 330px);
  }

  .contact-info,
  .location-focus,
  .cta-band-inner {
    padding: 1rem;
  }

  .service-card img {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

