:root {
  --paper: #f7f1e8;
  --paper-deep: #efe5d7;
  --ink: #241f1a;
  --muted: #6f665d;
  --soft: #d8c9b8;
  --olive: #595747;
  --olive-dark: #403f32;
  --white: #fffaf3;
  --line: rgba(36, 31, 26, 0.13);
  --shadow: 0 28px 70px rgba(54, 44, 33, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

main,
section,
footer,
header {
  min-width: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

p,
h1,
h2,
h3,
a,
span,
small,
strong {
  overflow-wrap: anywhere;
}

button,
input,
select {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 64%, rgba(36, 31, 26, 0.16) 0 1px, transparent 1px);
  background-size: 34px 34px, 42px 42px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1280px);
  min-height: 64px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.78);
  border: 1px solid rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 48px rgba(36, 31, 26, 0.1);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  gap: 26px;
  z-index: 4;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 380ms var(--ease), opacity 380ms var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: grid;
  line-height: 1;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.footer-logo .brand-logo {
  height: 64px;
}

.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(14px, 2.7vw, 42px);
  color: rgba(36, 31, 26, 0.7);
  font-size: 0.83rem;
}

.nav-links a,
.text-link,
.site-footer a {
  position: relative;
}

.mobile-action-bar {
  display: none;
}

.nav-links a::after,
.text-link::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  opacity: 0.42;
  transition: transform 550ms var(--ease), opacity 550ms var(--ease);
}

.nav-links a:hover::after,
.text-link:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  opacity: 0.8;
}

.nav-cta,
.primary-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: var(--olive-dark);
  color: var(--white);
  transition: transform 520ms var(--ease), background 520ms var(--ease), box-shadow 520ms var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 32px rgba(64, 63, 50, 0.18);
}

.nav-cta {
  min-height: 48px;
  padding: 8px 10px 8px 22px;
  font-size: 0.78rem;
}

.whatsapp-button {
  min-height: 58px;
  padding: 10px 12px 10px 24px;
  background: #6d7a50;
}

.nav-cta:hover,
.primary-button:hover,
.whatsapp-button:hover {
  transform: translateY(-2px);
  background: #303026;
}

.nav-cta:active,
.primary-button:active,
.whatsapp-button:active {
  transform: translateY(0) scale(0.98);
}

.cta-dot,
.button-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.92);
  color: var(--olive-dark);
  transition: transform 520ms var(--ease);
}

.primary-button:hover .button-icon,
.nav-cta:hover .cta-dot {
  transform: translateX(3px);
}

.hero {
  min-height: 100dvh;
  padding: 126px clamp(20px, 4.4vw, 70px) 50px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.96) 0%, rgba(247, 241, 232, 0.76) 42%, rgba(247, 241, 232, 0.08) 100%),
    radial-gradient(circle at 4% 36%, rgba(255, 250, 243, 0.86), transparent 38%),
    var(--paper);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: 6.35rem;
  max-width: 10ch;
}

h2 {
  margin-bottom: 22px;
  font-size: 4.55rem;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-text,
.intro-copy p,
.location-copy p,
.consultation-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-text {
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
}

.primary-button {
  min-height: 58px;
  padding: 10px 12px 10px 26px;
}

.text-link {
  color: var(--olive-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 54px;
  color: var(--muted);
}

.trust-strip div {
  min-width: 108px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 7px;
  font-size: 0.78rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--olive-dark);
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(36, 31, 26, 0.09);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: clamp(440px, 72vh, 780px);
  border-radius: 34px 0 0 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::after,
.location-image::after,
.service-card::after,
.consultation-image::after,
.intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(36, 31, 26, 0.16));
}

.floating-card {
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  width: min(330px, calc(100% - 32px));
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 50px rgba(36, 31, 26, 0.18);
}

.floating-card span {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.floating-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.12;
}

.intro-section,
.consultation-section {
  padding: clamp(76px, 9vw, 140px) clamp(20px, 4.4vw, 70px);
  display: grid;
  grid-template-columns: 0.44fr 0.68fr 1.15fr;
  gap: clamp(28px, 4vw, 76px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.section-kicker {
  align-self: start;
  width: 42px;
  height: 1px;
  margin-top: 24px;
  background: var(--olive);
}

.intro-copy {
  max-width: 470px;
}

.shell {
  position: relative;
  padding: 8px;
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.5);
  border: 1px solid rgba(36, 31, 26, 0.08);
  box-shadow: var(--shadow);
}

.intro-image,
.consultation-image {
  min-height: 420px;
  overflow: hidden;
}

.intro-image img,
.consultation-image img {
  border-radius: 26px;
}

.location-band {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: #eee5da;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.location-copy {
  padding: clamp(56px, 7vw, 116px) clamp(28px, 5vw, 92px);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.branch-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.branch-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.62);
  border: 1px solid rgba(36, 31, 26, 0.09);
  box-shadow: 0 18px 42px rgba(54, 44, 33, 0.08);
}

.branch-card-muted {
  background: rgba(247, 241, 232, 0.48);
}

.branch-label {
  display: block;
  margin-bottom: 12px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.branch-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.branch-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.branch-card small,
.branch-map-link {
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.branch-map-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 2px;
}

.branch-card small + .branch-map-link {
  margin-top: 14px;
}

.location-grid div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
}

.line-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 46%, var(--olive) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, var(--olive) 46% 54%, transparent 54%),
    rgba(255, 250, 243, 0.5);
}

.location-grid strong {
  display: block;
  font-size: 0.94rem;
}

.location-grid small {
  display: block;
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.map-section,
.team-section {
  padding: clamp(76px, 9vw, 140px) clamp(20px, 4.4vw, 70px);
  border-bottom: 1px solid var(--line);
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.map-card {
  padding: 10px;
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.56);
  border: 1px solid rgba(36, 31, 26, 0.09);
  box-shadow: 0 20px 52px rgba(54, 44, 33, 0.08);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 22px;
  background: var(--paper-deep);
}

.map-card div {
  padding: 20px 12px 12px;
}

.map-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.map-card p {
  color: var(--muted);
  line-height: 1.62;
}

.team-copy p {
  color: var(--muted);
  line-height: 1.66;
}

.services-section,
.benefits-section {
  padding: clamp(76px, 9vw, 140px) clamp(20px, 4.4vw, 70px);
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(54, 44, 33, 0.09);
}

.service-card.tall {
  min-height: 495px;
  margin-top: 44px;
}

.service-card div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(255, 250, 243, 0.7);
  box-shadow: 0 16px 38px rgba(36, 31, 26, 0.13);
}

.service-card p,
.benefit p,
.form-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.62;
}

.service-card p {
  margin-bottom: 15px;
  font-size: 0.92rem;
}

.service-card span {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.extensions-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(76px, 9vw, 140px) clamp(20px, 4.4vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 250, 243, 0.68), rgba(239, 229, 215, 0.78)),
    var(--paper);
}

.extensions-copy {
  max-width: 650px;
}

.extensions-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.extension-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.extension-points span,
.extensions-gallery span {
  color: var(--olive-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.extension-points span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.76);
  border: 1px solid rgba(36, 31, 26, 0.09);
}

.extensions-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: center;
}

.extensions-gallery article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.extensions-gallery article.offset {
  min-height: 420px;
  margin-top: 72px;
}

.extensions-gallery article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(36, 31, 26, 0.2));
}

.extensions-gallery span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.86);
}

.extensions-results {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.extensions-results .real-result {
  grid-template-columns: 1fr;
}

.extensions-results .real-ba-image {
  min-height: 430px;
}

.benefits-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.36);
}

.benefit-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr 1.05fr 0.92fr;
  gap: 0;
}

.benefit {
  min-height: 210px;
  padding: 24px clamp(18px, 2.5vw, 36px);
  border-left: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 1px solid var(--line);
}

.benefit span {
  display: block;
  margin-bottom: 48px;
  color: var(--olive);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.benefit h3 {
  font-size: 1.08rem;
}

.results-section,
.comparison-section,
.care-section,
.faq-section {
  padding: clamp(76px, 9vw, 140px) clamp(20px, 4.4vw, 70px);
  border-bottom: 1px solid var(--line);
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}

.result-feature {
  min-height: 560px;
  overflow: hidden;
}

.result-feature img {
  border-radius: 26px;
}

.result-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(255, 250, 243, 0.76);
}

.result-caption span,
.result-notes span,
.care-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-caption strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.16;
}

.result-notes {
  display: grid;
  gap: 16px;
  align-content: center;
}

.result-notes div {
  min-height: 160px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 250, 243, 0.52);
  border: 1px solid rgba(36, 31, 26, 0.09);
}

.result-notes p,
.comparison-copy p,
.comparison-row span,
.care-steps p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.comparison-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  background: rgba(255, 250, 243, 0.34);
}

.comparison-copy {
  position: sticky;
  top: 120px;
}

.comparison-table {
  border-top: 1px solid var(--line);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 0.95fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-row strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.comparison-head span {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.care-image {
  min-height: 520px;
  overflow: hidden;
}

.care-image img {
  border-radius: 26px;
}

.care-copy {
  max-width: 720px;
}

.care-steps {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.care-steps div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.care-steps p {
  margin: 0;
}

.team-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: rgba(255, 250, 243, 0.34);
}

.team-image {
  min-height: 520px;
  overflow: hidden;
}

.team-image img {
  border-radius: 26px;
}

.team-copy {
  max-width: 720px;
}

.team-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.team-points span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--olive-dark);
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(36, 31, 26, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-grid details {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.56);
  border: 1px solid rgba(36, 31, 26, 0.09);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  float: right;
  color: var(--olive);
  font-family: "Manrope", system-ui, sans-serif;
}

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

.faq-grid p {
  margin: 16px 0 0;
}

.page-hero {
  min-height: 76dvh;
  padding: 140px clamp(20px, 4.4vw, 70px) 70px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.98), rgba(247, 241, 232, 0.72), rgba(247, 241, 232, 0.18)),
    var(--paper);
}

.before-hero {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.96), rgba(247, 241, 232, 0.62), rgba(247, 241, 232, 0.1)),
    url("https://images.pexels.com/photos/3992874/pexels-photo-3992874.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.reviews-hero {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.97), rgba(247, 241, 232, 0.72), rgba(247, 241, 232, 0.22)),
    url("https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.page-hero-copy {
  max-width: 760px;
}

.ba-section,
.reviews-section,
.trust-section {
  padding: clamp(76px, 9vw, 140px) clamp(20px, 4.4vw, 70px);
  border-bottom: 1px solid var(--line);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ba-card {
  padding: 10px;
  border-radius: 32px;
  background: rgba(255, 250, 243, 0.54);
  border: 1px solid rgba(36, 31, 26, 0.09);
  box-shadow: 0 20px 52px rgba(54, 44, 33, 0.09);
}

.ba-card.wide {
  grid-column: 1 / -1;
}

.real-result {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 10px;
  align-items: stretch;
}

.real-ba-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  background: #eee5da;
}

.real-ba-image img {
  object-fit: contain;
}

.real-ba-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255, 250, 243, 0.95);
  transform: translateX(-50%);
}

.before-tag,
.after-tag {
  position: absolute;
  top: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(64, 63, 50, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.before-tag {
  left: 16px;
}

.after-tag {
  right: 16px;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ba-images figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.ba-card.wide .ba-images figure {
  min-height: 440px;
}

.ba-images figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(64, 63, 50, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ba-copy {
  padding: 22px 14px 12px;
}

.ba-copy span,
.review-card span,
.trust-checklist span {
  display: block;
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ba-copy h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
}

.ba-copy p,
.ba-note,
.review-card p,
.trust-panel p,
.trust-checklist p {
  color: var(--muted);
  line-height: 1.66;
}

.ba-note {
  max-width: 820px;
  margin: 28px 0 0;
  font-size: 0.9rem;
}

.review-score-card {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(36, 31, 26, 0.09);
}

.review-score-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
}

.review-score-card span {
  max-width: 220px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.review-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.56);
  border: 1px solid rgba(36, 31, 26, 0.09);
  box-shadow: 0 18px 42px rgba(54, 44, 33, 0.07);
}

.review-card.featured {
  grid-row: span 2;
  background: var(--olive-dark);
  color: var(--white);
}

.review-card.featured span,
.review-card.featured p {
  color: rgba(255, 250, 243, 0.72);
}

.review-card blockquote {
  margin: 0 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1.12;
}

.review-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.trust-panel {
  max-width: 620px;
}

.trust-checklist {
  border-top: 1px solid var(--line);
}

.trust-checklist div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.trust-checklist p {
  margin: 0;
}

.consultation-section {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.62), var(--paper));
}

.consultation-copy {
  max-width: 540px;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.owner-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(36, 31, 26, 0.09);
}

.owner-contact span {
  color: var(--olive);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.owner-contact a {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 600;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(36, 31, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--ink);
  padding: 0 20px;
  outline: none;
  transition: border-color 420ms var(--ease), box-shadow 420ms var(--ease), background 420ms var(--ease);
  min-width: 0;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(64, 63, 50, 0.5);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(89, 87, 71, 0.08);
}

.form-button {
  justify-self: start;
  margin-top: 4px;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.consultation-image {
  min-height: 520px;
}

.site-footer {
  padding: 78px clamp(20px, 4.4vw, 70px) 34px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(239, 229, 215, 0.64), rgba(247, 241, 232, 0.96)),
    var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 0.55fr 0.65fr minmax(0, 0.95fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  max-width: 500px;
}

.footer-logo {
  width: max-content;
}

.footer-brand p,
.footer-contact p {
  margin: 22px 0 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  min-height: 54px;
  padding: 10px 12px 10px 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--olive-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 32px rgba(64, 63, 50, 0.14);
  transition: transform 520ms var(--ease), background 520ms var(--ease);
}

.footer-cta:hover {
  transform: translateY(-2px);
  background: #303026;
}

.footer-column {
  display: grid;
  gap: 13px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: rgba(36, 31, 26, 0.76);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-contact {
  gap: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

/* =============== TABLET (≤ 1000px) =============== */
@media (max-width: 1000px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 85vw);
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 90px 36px 48px;
    background: rgba(247, 241, 232, 0.96);
    backdrop-filter: blur(28px);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(36, 31, 26, 0.12);
    transform: translateX(100%);
    transition: transform 520ms var(--ease);
    z-index: 5;
    overflow-y: auto;
    flex: none;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 600;
  }

  .nav-links a::after {
    display: none;
  }

  .hero,
  .intro-section,
  .location-band,
  .consultation-section,
  .extensions-section,
  .comparison-section,
  .care-section,
  .team-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

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

  .comparison-copy {
    position: static;
  }

  .hero {
    padding-top: 112px;
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
    border-radius: 30px;
  }

  h1 {
    font-size: 4.2rem;
    max-width: 12ch;
  }

  h2 {
    font-size: 3.25rem;
  }

  .intro-section {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    display: none;
  }

  .location-image {
    min-height: 380px;
  }

  .service-grid,
  .benefit-row,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.tall {
    margin-top: 0;
  }

  .footer-brand {
    max-width: none;
  }

  .benefit:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .benefit:nth-child(even) {
    border-right: 1px solid var(--line);
  }

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

  .ba-card.wide {
    grid-column: auto;
  }

  .real-result {
    grid-template-columns: 1fr;
  }

  .real-ba-image {
    min-height: 360px;
  }

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

  .review-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

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

  .extensions-results {
    grid-template-columns: 1fr;
  }

  .extensions-gallery article.offset {
    margin-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 42px;
  }
}

/* ============ Overlay for mobile menu ============ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4;
  background: rgba(36, 31, 26, 0.22);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 380ms var(--ease);
}

.nav-overlay.visible {
  display: block;
  opacity: 1;
}

/* =============== PHONE (≤ 700px) =============== */
@media (max-width: 700px) {
  body {
    padding-bottom: 82px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 58px;
    padding: 8px 8px 8px 14px;
    gap: 8px;
  }

  .brand span {
    font-size: 1.14rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    height: 56px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 6px 8px 6px 13px;
    font-size: 0.7rem;
    gap: 7px;
  }

  .cta-dot {
    width: 28px;
    height: 28px;
  }

  .nav-links {
    width: 100vw;
    padding: 100px 24px 48px;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 16px 0;
  }

  .hero,
  .page-hero,
  .intro-section,
  .services-section,
  .extensions-section,
  .benefits-section,
  .results-section,
  .map-section,
  .comparison-section,
  .care-section,
  .team-section,
  .faq-section,
  .ba-section,
  .reviews-section,
  .trust-section,
  .consultation-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro-section,
  .services-section,
  .extensions-section,
  .benefits-section,
  .results-section,
  .map-section,
  .comparison-section,
  .care-section,
  .team-section,
  .faq-section,
  .ba-section,
  .reviews-section,
  .trust-section,
  .consultation-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero {
    padding-top: 102px;
    padding-bottom: 28px;
    gap: 28px;
  }

  .page-hero {
    min-height: 68dvh;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 2.85rem;
    line-height: 1.03;
    max-width: 11ch;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  h3 {
    font-size: 0.98rem;
  }

  .hero-text,
  .intro-copy p,
  .location-copy p,
  .consultation-copy p {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .primary-button {
    width: 100%;
    min-height: 54px;
  }

  .whatsapp-button {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .trust-strip div {
    min-width: 0;
  }

  .hero-actions,
  .section-title,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual,
  .intro-image,
  .consultation-image,
  .location-image,
  .result-feature,
  .care-image,
  .team-image {
    min-height: 260px;
    max-height: 360px;
  }

  .intro-section,
  .consultation-section,
  .care-section,
  .team-section,
  .trust-section,
  .extensions-section {
    gap: 24px;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -112px 14px 14px;
  }

  .location-copy {
    padding: 52px 16px;
  }

  .branch-card {
    padding: 18px;
    border-radius: 20px;
  }

  .branch-card h3,
  .result-caption strong,
  .faq-grid summary {
    font-size: 1.32rem;
  }

  .branch-map-link {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .location-grid,
  .service-grid,
  .extensions-gallery,
  .benefit-row,
  .comparison-row,
  .care-steps div,
  .trust-checklist div,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .review-card.featured {
    grid-column: auto;
  }

  .map-card iframe {
    min-height: 260px;
  }

  .ba-images {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ba-images figure,
  .ba-card.wide .ba-images figure {
    min-height: 210px;
  }

  .ba-card {
    padding: 8px;
    border-radius: 24px;
  }

  .ba-images figure {
    border-radius: 18px;
  }

  .ba-images figcaption {
    left: 8px;
    bottom: 8px;
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .ba-copy h3,
  .review-card h3 {
    font-size: 1.42rem;
  }

  .review-score-card {
    align-items: flex-start;
    border-radius: 24px;
    flex-direction: column;
  }

  .review-card,
  .review-card.featured {
    min-height: auto;
    grid-row: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .review-card blockquote {
    font-size: 1.55rem;
  }

  .service-card,
  .service-card.tall {
    min-height: 320px;
  }

  .extensions-gallery article,
  .extensions-gallery article.offset {
    min-height: 280px;
    margin-top: 0;
  }

  .extensions-results .real-ba-image {
    min-height: 280px;
  }

  .extensions-copy p {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .service-card div {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }

  .result-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .result-notes div,
  .faq-grid details {
    padding: 20px;
    border-radius: 20px;
  }

  .comparison-row {
    gap: 8px;
    padding: 20px 0;
  }

  .comparison-head {
    display: none;
  }

  .care-steps div {
    gap: 8px;
    padding: 20px 0;
  }

  .benefit,
  .benefit:last-child,
  .benefit:nth-child(even) {
    border-right: 0;
  }

  .benefit {
    min-height: auto;
    padding: 26px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .benefit span {
    margin-bottom: 28px;
  }

  .form-button {
    width: 100%;
  }

  .owner-contact {
    display: grid;
    gap: 4px;
    border-radius: 22px;
  }

  .owner-contact a {
    font-size: 1.22rem;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 62px 16px 30px;
  }

  .footer-top {
    padding-bottom: 38px;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom div {
    gap: 14px;
  }

  .footer-column a,
  .footer-contact p {
    width: auto;
    max-width: 100%;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(247, 241, 232, 0.9);
    border: 1px solid rgba(255, 250, 243, 0.82);
    box-shadow: 0 18px 45px rgba(36, 31, 26, 0.18);
    backdrop-filter: blur(20px);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    border-radius: 999px;
    color: var(--olive-dark);
    background: rgba(255, 250, 243, 0.58);
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-action-bar a:first-child {
    color: var(--white);
    background: var(--olive-dark);
  }
}

/* =============== SMALL PHONE (≤ 390px) =============== */
@media (max-width: 390px) {
  .nav-cta span:first-child {
    display: none;
  }

  .nav-cta {
    padding-left: 8px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero,
  .intro-section,
  .services-section,
  .extensions-section,
  .benefits-section,
  .results-section,
  .comparison-section,
  .care-section,
  .faq-section,
  .ba-section,
  .reviews-section,
  .trust-section,
  .consultation-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-visual,
  .intro-image,
  .consultation-image,
  .location-image,
  .result-feature,
  .care-image,
  .team-image {
    min-height: 240px;
    max-height: 320px;
  }

  .extensions-gallery article,
  .extensions-gallery article.offset {
    min-height: 230px;
  }

  .extensions-results .real-ba-image {
    min-height: 230px;
  }

  .floating-card {
    width: calc(100% - 20px);
    margin: -96px 10px 10px;
    padding: 18px;
  }

  .floating-card strong {
    font-size: 1.28rem;
  }

  .ba-images figure,
  .ba-card.wide .ba-images figure {
    min-height: 180px;
  }

  .real-ba-image {
    min-height: 240px;
  }

  .mobile-action-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .mobile-action-bar a {
    font-size: 0.68rem;
  }
}
