/* =============================================================
   Desert Rain Skin — Medical Spa
   Shared stylesheet. Hand-written, no build step, no framework.
   Sections:
     1. Fonts
     2. Design tokens (custom properties)
     3. Reset & base
     4. Typography
     5. Layout helpers
     6. Buttons & links
     7. Header / navigation
     8. Hero
     9. Section components (pillars, services, split, stats,
        trust, testimonials, gallery, CTA band, page hero)
    10. Forms
    11. Footer
    12. Utilities & animations
    13. Responsive (mobile-first overrides live inline; this
        block holds the larger-screen enhancements)
   ============================================================= */

/* ---------- 1. Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/jost-latin.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. Design tokens ---------- */
:root {
  /* Warm desert palette with a calm "rain" sage accent */
  --cream: #faf6f0;
  --cream-2: #f3ebe0;
  --sand: #e9ddcd;
  --white: #ffffff;
  --ink: #2b2722;
  --ink-soft: #4a423a;
  --muted: #756a5e;
  --clay: #b86b4b;        /* primary accent / CTAs */
  --clay-dark: #9a5439;   /* hover */
  --sage: #8a9a82;        /* secondary accent */
  --sage-dark: #6f7e68;
  --gold: #c2a06b;        /* fine hairlines */
  --line: #e4dacb;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-section: clamp(3.5rem, 8vw, 7rem);
  --container: 1200px;
  --container-narrow: 880px;

  /* Radius & shadow */
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 20px rgba(43, 39, 34, 0.06);
  --shadow-md: 0 18px 50px rgba(43, 39, 34, 0.12);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 3. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--clay); text-decoration: none; }
a:hover { color: var(--clay-dark); }

ul, ol { list-style: none; padding: 0; }

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-block;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.6rem;
}

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

/* ---------- 5. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.4rem;
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); }
.section.tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--cream); }
.section--sand { background: var(--cream-2); }
.section--ink { background: var(--ink); color: #d8cfc3; }
.section--ink h2, .section--ink h3 { color: var(--cream); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 0.6rem; }

.grid { display: grid; gap: 1.6rem; }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--clay); color: var(--white); }
.btn--primary:hover { background: var(--clay-dark); color: var(--white); box-shadow: var(--shadow-md); }

.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--light { border-color: rgba(255, 255, 255, 0.65); color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--ink); }

.btn--ghost { color: var(--ink); padding-inline: 0.2rem; border-radius: 0; }
.btn--ghost:hover { transform: none; color: var(--clay); }

.link-arrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link-arrow span { transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--clay); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- 7. Header / navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  padding-block: 1.1rem;
}
.site-header.solid {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding-block: 0.7rem;
}
/* Pages without a dark hero start solid */
.site-header.static-header {
  position: sticky;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo img { height: 50px; width: auto; }

.nav__menu {
  display: none;
  align-items: center;
  gap: 1.7rem;
}
.nav__menu a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding-block: 0.3rem;
}
/* On transparent (over-hero) header, links are light until scrolled */
.site-header:not(.solid):not(.static-header) .nav__menu a,
.site-header:not(.solid):not(.static-header) .nav__phone { color: var(--cream); }
.site-header:not(.solid):not(.static-header) .nav__logo img { filter: brightness(0) invert(1); }

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--clay);
  transition: width 0.25s var(--ease);
}
.nav__menu a:hover::after,
.nav__menu a[aria-current="page"]::after { width: 100%; }
.nav__menu a:hover { color: var(--clay); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__phone {
  display: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav__actions .btn { display: none; }

/* Hamburger */
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.site-header:not(.solid):not(.static-header) .nav__toggle span { background: var(--cream); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* When the mobile drawer (cream) is open, keep logo + toggle dark even if
   the header is still in its transparent over-hero state. */
body.nav-open .site-header:not(.solid):not(.static-header) .nav__logo img { filter: none; }
body.nav-open .site-header:not(.solid):not(.static-header) .nav__toggle span { background: var(--ink); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  padding: 6rem 1.6rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--clay); }
.mobile-nav .btn { margin-top: 1.4rem; justify-content: center; }
.mobile-nav__contact { margin-top: auto; color: var(--muted); font-size: 0.95rem; }
body.nav-open { overflow: hidden; }

/* Services mega-menu (desktop) */
.nav__has-mega { position: static; }
.nav__megatoggle::after {
  content: "\25BE";
  font-size: 0.7em;
  margin-left: 0.35rem;
  vertical-align: middle;
  opacity: 0.8;
}
.mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--cream);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav__has-mega:hover .mega,
.nav__has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 2.2rem 2rem 2.4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem 2rem;
}
.mega__col { display: flex; flex-direction: column; gap: 0.55rem; }
.mega .mega__head {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  padding-bottom: 0.6rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--line);
}
.mega a { font-size: 0.95rem; color: var(--muted); padding-block: 0.1rem; }
.mega a:hover { color: var(--clay); }
.mega a::after { content: none; }
/* keep mega text dark even when the header is transparent over the hero */
.site-header:not(.solid):not(.static-header) .mega a { color: var(--muted); }
.site-header:not(.solid):not(.static-header) .mega .mega__head { color: var(--ink); }

/* Services accordion (mobile drawer) */
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav details > summary {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  padding-block: 0.55rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav details > summary::-webkit-details-marker { display: none; }
.mobile-nav details > summary::after { content: "+"; color: var(--clay); font-size: 1.6rem; line-height: 1; }
.mobile-nav details[open] > summary::after { content: "\2013"; }
.mobile-nav details .mnav-cat {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0.9rem 0 0.2rem;
  border: none;
  padding: 0;
}
.mobile-nav details a {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: none;
}
.mobile-nav details a:hover { color: var(--clay); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background: linear-gradient(100deg, rgba(43, 39, 34, 0.72) 0%, rgba(43, 39, 34, 0.35) 55%, rgba(43, 39, 34, 0.15) 100%),
    url("../images/girl-img1.webp") center / cover no-repeat;
  padding-top: 6rem;
}
.hero__inner { max-width: 640px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: var(--cream); margin-bottom: 1.2rem; }
.hero p { color: rgba(250, 246, 240, 0.88); font-size: 1.15rem; max-width: 30em; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
  font-size: 0.92rem;
  color: rgba(250, 246, 240, 0.9);
}
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1rem; }

/* ---------- 9. Section components ---------- */

/* Pillars (icon + text) */
.pillars { display: grid; gap: 2rem; }
.pillar { text-align: left; }
.pillar img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 1rem; }
.pillar h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--muted); font-size: 1rem; }

/* Split (text + image) */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.split__media.arched img { border-radius: 50% 50% var(--radius-lg) var(--radius-lg) / 32% 32% var(--radius-lg) var(--radius-lg); }
.split__media .badge {
  position: absolute;
  bottom: 1.4rem; left: -1rem;
  background: var(--clay);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md);
  max-width: 200px;
}
.split__media .badge strong { font-family: var(--font-display); font-size: 2.2rem; display: block; line-height: 1; }
.split__media .badge span { font-size: 0.82rem; letter-spacing: 0.04em; }
.check { margin: 1.4rem 0; display: grid; gap: 0.7rem; }
.check li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.check li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--clay); font-weight: 700;
}

/* Service cards */
.services-grid { display: grid; gap: 1.6rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.service-card__body h3 { font-size: 1.5rem; }
.service-card__body p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.service-card .link-arrow { margin-top: 0.4rem; }

/* Compact service list (icon chips) */
.chip-grid { display: grid; gap: 1.2rem; }
.chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.chip:hover { border-color: var(--clay); transform: translateY(-3px); }
.chip img { width: 40px; height: 40px; object-fit: contain; }
.chip span { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }

/* Stats band */
.stats { display: grid; gap: 1.5rem; text-align: center; }
.stat strong {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 500;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat span { font-size: 0.9rem; letter-spacing: 0.06em; color: #cfc6ba; }

/* Testimonials */
.reviews-grid { display: grid; gap: 1.6rem; }
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review .stars { font-size: 1.05rem; }
.review p { font-style: italic; color: var(--ink-soft); font-size: 1.02rem; }
.review__author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand); color: var(--clay);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
}
.review__author strong { font-family: var(--font-body); font-weight: 500; color: var(--ink); font-style: normal; }
.review__author small { display: block; color: var(--muted); font-style: normal; }

/* Gallery strip */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gallery-grid a { overflow: hidden; border-radius: var(--radius); display: block; aspect-ratio: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.08); }

/* CTA band */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--clay) 0%, var(--clay-dark) 100%);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 6vw, 4.5rem) 1.6rem;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 40em; margin-inline: auto; margin-bottom: 1.8rem; }
.cta-band .hero__cta { justify-content: center; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--cream-2);
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.page-hero .eyebrow { color: var(--clay); }
.page-hero p { color: var(--muted); max-width: 40em; margin-inline: auto; margin-top: 0.8rem; }
.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; letter-spacing: 0.04em; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--clay); }

/* Service image hero (full-bleed, over transparent header) */
.page-hero.has-image {
  position: relative;
  color: var(--cream);
  background: linear-gradient(rgba(43, 39, 34, 0.52), rgba(43, 39, 34, 0.52)), var(--hero-img) center / cover no-repeat;
  padding-block: clamp(8rem, 15vw, 11rem) clamp(3.5rem, 7vw, 5.5rem);
}
.page-hero.has-image h1 { color: var(--cream); }
.page-hero.has-image .eyebrow { color: var(--gold); }
.page-hero.has-image .eyebrow::before { background: var(--gold); }
.page-hero.has-image p { color: rgba(250, 246, 240, 0.92); }
.page-hero.has-image .breadcrumbs,
.page-hero.has-image .breadcrumbs a { color: rgba(250, 246, 240, 0.85); }
.page-hero.has-image .btn { margin-top: 1.4rem; }

/* Feature image in content splits */
.split__media.feature img { aspect-ratio: 5 / 6; object-fit: cover; width: 100%; }

/* Two-column check list (long pre/aftercare lists) */
@media (min-width: 760px) { .check.cols2 { grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; } }

/* Sage feature band */
.section--sage { background: var(--sage-dark); color: #eaeee4; }
.section--sage h2, .section--sage h3, .section--sage h4 { color: #fff; }
.section--sage .eyebrow { color: #dde4d6; }
.section--sage .eyebrow::before { background: #cdd6c2; }
.section--sage p { color: #eaeee4; }
.section--sage .prose blockquote {
  background: rgba(255, 255, 255, 0.08);
  color: #f3f5f0;
  border-left-color: #cdd6c2;
  box-shadow: none;
}
.section--sage .check li { color: #eaeee4; }
.section--sage .check li::before { color: #fff; }
.section--sage .faq { border-bottom-color: rgba(255, 255, 255, 0.22); }
.section--sage .faq summary { color: #fff; }
.section--sage .faq summary::after { color: #fff; }
.section--sage .faq p { color: #dde4d6; }
.section--sage .btn--primary { background: var(--cream); color: var(--ink); }
.section--sage .btn--primary:hover { background: #fff; color: var(--ink); }

/* Team cards */
.team-grid { display: grid; gap: 1.8rem; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.team-card__photo {
  width: 116px; height: 116px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--cream-2);
}
.team-card h3 { font-size: 1.45rem; margin-bottom: 0.2rem; }
.team-card .role { color: var(--clay); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
.team-card p { color: var(--muted); font-size: 0.98rem; }

/* Price / treatment list */
.treatment-list { display: grid; gap: 0; }
.treatment-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.treatment-list li:last-child { border-bottom: none; }
.treatment-list h4 { font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--ink); }
.treatment-list .desc { color: var(--muted); font-size: 0.95rem; margin-top: 0.2rem; }
.treatment-list .meta { white-space: nowrap; color: var(--clay); font-weight: 500; }

/* Info cards (contact) */
.info-grid { display: grid; gap: 1.4rem; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--line);
}
.info-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.info-card p, .info-card a { color: var(--muted); font-size: 1rem; }
.info-card a:hover { color: var(--clay); }

/* Prose (long-form service copy) */
.prose { max-width: 760px; }
.prose.center { margin-inline: auto; }
.prose > p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.prose h3 { margin: 2rem 0 0.6rem; }
.prose blockquote {
  margin: 1.4rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

/* FAQ accordion */
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--clay); font-size: 1.5rem; line-height: 1; flex: none; }
.faq[open] summary::after { content: "\2013"; }
.faq p { padding: 0 0 1.2rem; color: var(--muted); }
.faq h4 { margin: 0.4rem 0 0.3rem; }

/* ---------- 10. Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form .field { display: grid; gap: 0.4rem; }
.form label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.form input, .form textarea, .form select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(184, 107, 75, 0.15);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-self: start; margin-top: 0.4rem; }
.form-note { font-size: 0.85rem; color: var(--muted); }

/* ---------- 11. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #b6ab9d;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.site-footer a { color: #b6ab9d; }
.site-footer a:hover { color: var(--gold); }
.footer-brand img { height: 60px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.96rem; max-width: 30ch; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-contact li { margin-bottom: 0.65rem; font-size: 0.96rem; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.3rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid; place-items: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-social a:hover { background: var(--clay); border-color: var(--clay); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social a:hover svg { fill: #fff; }
.footer-newsletter input { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--cream); }
.footer-newsletter .row { display: flex; gap: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom a { margin-right: 1.2rem; }

/* ---------- 12. Utilities & animations ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 0.7rem 1rem; z-index: 999;
}
.skip-link:focus { left: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 13. Responsive enhancements ---------- */
@media (min-width: 600px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .nav__menu { display: flex; }
  .nav__phone { display: inline-block; }
  .nav__actions .btn { display: inline-flex; }
  .nav__toggle { display: none; }

  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split__media { order: 2; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .chip-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; }
  .footer-bottom { font-size: 0.9rem; }
}

@media (min-width: 1100px) {
  .container { padding-inline: 2rem; }
}
