/* ==========================================================================
   ANBO SPA — Premium wellness & leisure
   Design system: warm luxury (terracotta · gold · ivory · espresso)
   ========================================================================== */

:root {
  /* Warm luxury palette */
  --ivory:      #FBF6EE;
  --sand:       #F3E9DA;
  --cream:      #F7EFE2;
  --espresso:   #241C16;
  --espresso-2: #322820;
  --ink:        #2A211B;
  --muted:      #6E6055;
  --line:       #E4D8C6;

  --gold:       #C6A15B;
  --gold-deep:  #B08C46;
  --gold-soft:  #E7D5AC;
  --terra:      #BC6A38;
  --terra-deep: #A2572C;
  --sage:       #7E8770;

  --white:      #ffffff;

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1200px;
  --radius: 4px;
  --shadow-sm: 0 8px 24px rgba(36, 28, 22, .08);
  --shadow-md: 0 20px 50px rgba(36, 28, 22, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; }

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: .8em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h1.display, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.01em;
}

.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.section.tight { padding: 80px 0; }
.center { text-align: center; }
.maxw { max-width: 720px; }
.maxw.center { margin-inline: auto; }

.dark { background: var(--espresso); color: #EFE6D9; }
.dark .lead, .dark .muted { color: #C4B8A8; }
.dark h2, .dark h3 { color: #F6EEE1; }
.warm { background: var(--sand); }
.cream { background: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 10px 24px rgba(188, 106, 56, .28);
}
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(188, 106, 56, .34); }
.btn-gold { background: var(--gold); color: #2a2013; }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--ink); }
.btn-outline:hover { background: var(--gold); color: #2a2013; }
.btn-lg { padding: 19px 40px; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 246, 238, .92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(36,28,22,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-soft); }

.scrolled .nav-links a { color: var(--ink); }
.scrolled .nav-links a.active { color: var(--terra); }
.scrolled .brand .brand-name, .scrolled .brand .brand-sub { color: var(--espresso); }
.scrolled .brand-mark .ring { stroke: var(--gold-deep); }
.scrolled .brand-mark .drop { fill: var(--terra); }
.scrolled .brand-mark .txt { fill: var(--espresso); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

/* Brand */
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-mark .ring { stroke: var(--gold); }
.brand-mark .drop { fill: var(--gold-soft); }
.brand-mark .txt { fill: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: #fff;
}
.brand-sub {
  font-size: .58rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 3px;
  font-weight: 500;
}

/* Mobile nav */
.mobile-menu { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; position: relative; }
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 2px; background: #fff; transition: .3s; }
.scrolled .nav-toggle span { background: var(--espresso); }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); background: #fff; }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  /* Sharp source (pool-clear) — keep only a warm colour grade, minimal softening for upscaling */
  filter: saturate(1.08) contrast(1.04) brightness(.9) blur(.4px);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(23,16,11,.55) 0%, rgba(23,16,11,.25) 40%, rgba(23,16,11,.72) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(188,106,56,.28), transparent 60%);
}
.hero-inner { padding: 140px 0 90px; max-width: 760px; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.1rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 22px 0 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lead { color: rgba(255,255,255,.9); font-size: 1.28rem; max-width: 540px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.7); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 44px; background: linear-gradient(var(--gold-soft), transparent); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100%{opacity:.4; transform:scaleY(.7);} 50%{opacity:1; transform:scaleY(1);} }

/* Hero stats strip */
.stats-strip { border-top: 1px solid rgba(255,255,255,.14); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 8px 0; }
.stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.dark .stat .lbl { color: #C4B8A8; }

/* ---------- Section heading ---------- */
.head { max-width: 640px; }
.head.center { margin-inline: auto; text-align: center; }
.head h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 18px 0 18px;
  letter-spacing: -.01em;
}
.head p { color: var(--muted); font-size: 1.1rem; margin: 0; }

/* ---------- Intro split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--espresso); color: var(--gold-soft);
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 16px;
}
.split-media .badge .b-num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.split-media .badge .b-txt { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; line-height: 1.4; }
.split-media img.soft { filter: saturate(1.05) contrast(1.02) brightness(.9) blur(3px); }
.split-media.framed::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1;
}
.feature-list { margin-top: 26px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--sand); color: var(--terra);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list b { font-weight: 600; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
  color: #fff; box-shadow: var(--shadow-sm);
  isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.svc-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; transition: transform .8s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,14,10,.05) 30%, rgba(20,14,10,.55) 65%, rgba(20,14,10,.86) 100%);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card:hover img { transform: scale(1.07); }
.svc-body { padding: 30px; width: 100%; }
.svc-body .svc-ico { color: var(--gold-soft); margin-bottom: 12px; }
.svc-body h3 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 8px; }
.svc-body p { font-size: .95rem; color: rgba(255,255,255,.82); margin: 0; }
.svc-body .svc-link {
  margin-top: 14px; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-soft); display: inline-flex; gap: 8px; align-items: center;
  opacity: 0; transform: translateY(6px); transition: .4s var(--ease);
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }

/* Small feature tiles (icon based) */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; transition: .4s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.tile .t-ico {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), #fff); color: var(--terra);
  display: grid; place-items: center; border: 1px solid var(--line);
}
.tile h4 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 6px; }
.tile p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: rgba(36,28,22,0); transition: .4s; }
.gallery a:hover::after { background: rgba(36,28,22,.15); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; display: flex; flex-direction: column;
  transition: .4s var(--ease); position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--espresso); color: #EFE6D9; border-color: var(--espresso); }
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #2a2013; font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600; padding: 6px 16px; border-radius: 20px;
}
.price-card h3 { font-family: var(--serif); font-size: 1.7rem; }
.price-card .p-sub { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.price-card.featured .p-sub { color: #C4B8A8; }
.price-card .amount { font-family: var(--serif); font-size: 3.2rem; margin: 22px 0 4px; color: var(--terra); line-height: 1; }
.price-card .amount span { font-size: 1rem; font-family: var(--sans); color: var(--muted); letter-spacing: .05em; }
.price-card.featured .amount { color: var(--gold); }
.price-card ul { margin: 24px 0 30px; display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 24px; }
.price-card.featured ul { border-color: rgba(255,255,255,.14); }
.price-card li { display: flex; gap: 12px; font-size: .96rem; align-items: flex-start; }
.price-card li svg { flex: none; color: var(--gold-deep); margin-top: 4px; }
.price-card.featured li svg { color: var(--gold); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table caption { font-family: var(--serif); font-size: 1.5rem; text-align: left; padding: 22px 26px 4px; color: var(--terra); }
.price-table th, .price-table td { padding: 16px 26px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--sand); }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); white-space: nowrap; }
.price-table tbody tr:hover { background: var(--cream); }
.price-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center; isolation: isolate; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  /* Purely decorative dark backdrop — heavy soft blur reads as premium, hides low resolution */
  filter: saturate(1.05) brightness(.8) blur(6px);
  transform: scale(1.12);
}
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(23,16,11,.72), rgba(23,16,11,.82)); }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 18px 0 16px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 34px; font-size: 1.12rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.quote .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--terra), var(--gold)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.2rem; }
.quote .who b { display: block; font-weight: 600; font-size: .98rem; }
.quote .who span { font-size: .82rem; color: var(--muted); }

/* ---------- Contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.info-list { display: grid; gap: 26px; margin-top: 30px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-item .ii-ico { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--sand); color: var(--terra); display: grid; place-items: center; }
.info-item h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.info-item p, .info-item a { font-size: 1.08rem; color: var(--ink); }
.info-item a:hover { color: var(--terra); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form.dark-form { background: var(--espresso-2); border-color: rgba(255,255,255,.1); }
.field { margin-bottom: 20px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.field label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; color: var(--muted); }
.dark-form .field label { color: var(--gold-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory);
  color: var(--ink); transition: .3s;
}
.dark-form .field input, .dark-form .field select, .dark-form .field textarea {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); color: #F3E9DA;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.18); }
.field textarea { resize: vertical; min-height: 120px; }
/* Dropdown options: always dark text on light background so they stay readable */
.field select option { color: var(--ink); background: #fff; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.dark-form .form-note { color: #B7AA99; }

.form-success {
  display: none; background: rgba(126,135,112,.14); border: 1px solid var(--sage);
  color: var(--ink); padding: 16px 18px; border-radius: var(--radius); margin-bottom: 20px;
  font-size: .95rem;
}
.dark-form .form-success { color: #EFE6D9; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.2) sepia(.15); }

/* ---------- Hours card ---------- */
.hours-card { background: var(--espresso); color: #EFE6D9; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.hours-card h3 { font-family: var(--serif); font-size: 1.9rem; color: #fff; margin-bottom: 6px; }
.hours-card .h-list { margin-top: 22px; }
.hours-card .h-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .98rem; }
.hours-card .h-list li:last-child { border-bottom: 0; }
.hours-card .h-list .day { color: #C4B8A8; }
.hours-card .h-list .open { color: var(--gold-soft); font-weight: 500; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; padding: 200px 0 90px; color: #fff; overflow: hidden; text-align: center;
  isolation: isolate;
}
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img {
  width: 100%; height: 100%; object-fit: cover;
  /* Decorative banner behind centered text — soft blur reads as premium, hides low resolution */
  filter: saturate(1.08) contrast(1.03) brightness(.85) blur(4px);
  transform: scale(1.08);
}
/* Sharp variant for pages using a good, straight photo */
.page-hero.ph-sharp .ph-bg img {
  filter: saturate(1.08) contrast(1.04) brightness(.82) blur(.5px);
  transform: scale(1.02);
}
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(23,16,11,.55), rgba(23,16,11,.68)); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 20px 0 12px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; font-size: 1.14rem; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--gold-soft); }
.crumbs { margin-top: 26px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.crumbs a:hover { color: var(--gold-soft); }

/* ---------- Detailed service rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.svc-row + .svc-row { margin-top: 100px; }
.svc-row.reverse .svc-row-media { order: 2; }
.svc-row-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.svc-row .num-tag { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); letter-spacing: .1em; }
.svc-row h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 8px 0 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { font-size: .78rem; letter-spacing: .06em; padding: 8px 16px; border-radius: 30px; background: var(--sand); color: var(--terra-deep); border: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: #C4B8A8; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h5 { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 22px; font-weight: 600; }
.footer-grid a { transition: color .3s; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-links li { margin-bottom: 12px; }
.footer-about p { margin: 20px 0; font-size: .96rem; line-height: 1.7; }
.footer-about .brand-name { color: #fff; }
.footer-about .brand-sub { color: var(--gold-soft); }
.social { display: flex; gap: 12px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #C4B8A8; transition: .3s; }
.social a:hover { background: var(--gold); color: #2a2013; border-color: var(--gold); transform: translateY(-3px); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .96rem; align-items: flex-start; }
.footer-contact svg { flex: none; color: var(--gold); margin-top: 3px; }
.footer-bottom { margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Editable-content note ribbon (only visible to owner while editing) */
.owner-note { background: #FFF4E0; border: 1px dashed var(--gold-deep); color: #7a5a1f; font-size: .82rem; padding: 10px 16px; border-radius: var(--radius); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid, .price-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split { gap: 44px; }
}
@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 99; background: var(--espresso);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    transform: translateY(-100%); transition: transform .5s var(--ease); pointer-events: none;
  }
  body.menu-open .mobile-menu { transform: none; pointer-events: auto; }
  .mobile-menu a { color: #EFE6D9; font-family: var(--serif); font-size: 2rem; padding: 10px; }
  .mobile-menu a.active { color: var(--gold-soft); }
  .mobile-menu .btn { margin-top: 20px; }
  .split, .contact-grid, .svc-row, .svc-row.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media, .svc-row.reverse .svc-row-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .split-media .badge { left: 16px; bottom: -20px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .svc-grid, .price-grid, .quotes, .tiles { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}
