/* The Body Shaper Calahonda - styles v3.1 (mobile-first)
 *
 * Breakpoint strategy:
 *   Mobile:  default (no media query needed - everything is mobile-first)
 *   Phablet: min-width 768px - desktop nav, hero side-by-side
 *   Tablet:  min-width 900px - generous spacing bumps
 *   Desktop: min-width 960px - full layout, sticky aside
 *   Wide:    min-width 1200px - container padding bumps
 */

:root {
  --c-bg:           #faf6f0;
  --c-bg-soft:      #f4ece2;
  --c-surface:      #ffffff;
  --c-surface-warm: #fbf3eb;
  --c-ink:          #2c2620;
  --c-ink-soft:     #5b5046;
  --c-muted:        #8c7f6f;
  --c-line:         #e8dfd1;
  --c-accent:       #b76e5a;
  --c-accent-deep:  #8e4f3c;
  --c-accent-soft:  #d9a48f;
  --c-cta:          #25d366;
  --c-cta-deep:     #128c7e;
  --c-dark:         #1a1612;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(40,30,20,.04);
  --shadow-sm: 0 2px 8px rgba(40,30,20,.06);
  --shadow-md: 0 12px 32px rgba(40,30,20,.08);
  --shadow-lg: 0 24px 56px rgba(40,30,20,.10);

  --max-w: 1200px;
  --max-w-narrow: 920px;

  --t-fast: 180ms cubic-bezier(.2,.7,.3,1);
  --t-mid:  320ms cubic-bezier(.2,.7,.3,1);
  --t-slow: 600ms cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }
*::selection { background: var(--c-accent); color: #fff; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

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

a {
  color: var(--c-accent-deep);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--c-accent); }

p { margin: 0 0 1rem; color: var(--c-ink-soft); }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--c-ink);
  letter-spacing: -.012em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.1rem, 7vw, 4.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.04;
}
h2 {
  font-size: clamp(1.55rem, 5vw, 2.6rem);
  letter-spacing: -.015em;
}
h3 { font-size: 1.2rem; font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: var(--max-w-narrow); }

/* Reveal-on-scroll - safe by default */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
 * HEADER + NAV - mobile-first, hamburger-first
 * ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,246,240,.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
          backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.site-header.scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(250,246,240,.97);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: .75rem;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  color: var(--c-ink);
  font-style: italic;
  flex: none;
}
.brand:hover { text-decoration: none; color: var(--c-ink); }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-deep) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid);
  flex: none;
}
.brand:hover .brand-mark { transform: rotate(-8deg); }

/* MOBILE: hamburger always visible, nav hidden by default */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--c-ink);
  padding: 0;
  position: relative;
  z-index: 60;
  flex: none;
}
.nav-toggle:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--t-mid), top var(--t-mid), opacity var(--t-mid);
}
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before { position: absolute; top: -6px; left: 0; }
.nav-toggle .bars::after  { position: absolute; top: 6px;  left: 0; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after  { top: 0; transform: rotate(-45deg); }

/* Site nav - on mobile it's a slide-down panel, hidden by default */
.site-nav {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  z-index: 40;
  transition: max-height var(--t-mid), opacity var(--t-mid), visibility 0s linear var(--t-mid), padding 0s linear var(--t-mid);
}
.site-nav.open {
  max-height: 80vh;
  visibility: visible;
  opacity: 1;
  padding: .5rem 1.25rem 1.25rem;
  transition: max-height var(--t-mid), opacity var(--t-mid), visibility 0s linear 0s, padding 0s linear 0s;
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-nav ul li a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: .85rem .25rem;
  color: var(--c-ink);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--c-line);
}
.site-nav ul li:last-child a { border-bottom: 0; }
.site-nav ul li a:hover { color: var(--c-accent-deep); text-decoration: none; }

/* ============================================================
 * DESKTOP >= 768px - hamburger hidden, nav inline
 * ============================================================ */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 1.6rem;
  }
  .site-nav ul li a {
    padding: .25rem 0;
    border-bottom: 0;
    min-height: 0;
    color: var(--c-ink-soft);
    font-size: .95rem;
    display: inline;
    position: relative;
  }
  .site-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--c-accent);
    transition: width var(--t-mid);
  }
  .site-nav ul li a:hover { color: var(--c-ink); }
  .site-nav ul li a:hover::after { width: 100%; }
}

/* ============================================================
 * BUTTONS - 48px min tap target, full-width on tiny mobile
 * ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.4rem;
  min-height: 48px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  letter-spacing: -.005em;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(183,110,90,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 14px 28px -10px rgba(183,110,90,.6), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-secondary {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-secondary:hover {
  background: var(--c-surface);
  border-color: var(--c-accent-soft);
  color: var(--c-ink);
}

.btn-whatsapp {
  background: var(--c-cta);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(37,211,102,.5);
}
.btn-whatsapp:hover {
  background: var(--c-cta-deep);
  color: #fff;
  box-shadow: 0 14px 28px -10px rgba(37,211,102,.6);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  padding: .55rem 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
}
.btn-ghost:hover { color: var(--c-accent-deep); transform: none; }

/* Full-width CTAs on tiny mobile only */
@media (max-width: 520px) {
  .hero-ctas .btn,
  .service-hero .ctas .btn,
  .cta-section .hero-ctas .btn,
  .contact-card .btn { width: 100%; }
}

/* ============================================================
 * HERO - mobile first, stacked
 * ============================================================ */
.hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(183,110,90,.10) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(217,164,143,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  grid-template-columns: 1fr;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent-deep);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--c-accent);
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em {
  font-style: italic;
  color: var(--c-accent-deep);
  font-weight: 400;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  margin-bottom: 1.75rem;
  max-width: 38ch;
}
.hero-ctas {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid var(--c-line);
  padding-top: 1.2rem;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex: 1 1 auto;
  min-width: 90px;
}
.hero-trust-item strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--c-ink);
  font-style: italic;
}
.hero-trust-item span {
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-bg-soft);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--t-mid);
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(28,22,16,.18) 100%);
  pointer-events: none;
}
.hero-visual-badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(250,246,240,.95);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: .5rem .85rem;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 500;
  color: var(--c-ink);
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-sm);
}
.hero-visual-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(183,110,90,.18);
}

/* DESKTOP >= 768px: hero side-by-side */
@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .hero-eyebrow { font-size: .78rem; margin-bottom: 1.4rem; }
  .hero-lede { font-size: 1.15rem; max-width: 36ch; }
  .hero-trust { gap: 2rem; }
  .hero-trust-item strong { font-size: 1.6rem; }
  .hero { padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 5rem); }
}

/* ============================================================
 * SECTION SPACING - mobile first
 * ============================================================ */
section { padding: 2.5rem 0; }
section.tight { padding: 1.75rem 0; }
section.alt { background: var(--c-bg-soft); }
section.dark { background: var(--c-dark); color: var(--c-bg); }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: #fff; }
section.dark p { color: rgba(250,246,240,.78); }

.section-head {
  display: grid;
  gap: .85rem;
  margin-bottom: 2rem;
  max-width: 640px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent-deep);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .55rem;
}
.section-eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--c-accent);
}
.section-head.center .section-eyebrow { justify-content: center; }
.section-head h2 em { font-style: italic; color: var(--c-accent-deep); font-weight: 400; }
.section-lede {
  color: var(--c-ink-soft);
  font-size: 1rem;
  max-width: 56ch;
}
@media (min-width: 768px) {
  .section-head { gap: 1rem; margin-bottom: 3rem; }
  .section-eyebrow { font-size: .78rem; }
  .section-lede { font-size: 1.05rem; }
}

/* ============================================================
 * SERVICE GRID - 1 col mobile, 2 col phablet, 3 col desktop
 * ============================================================ */
.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-soft) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent-soft);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .85rem;
  color: var(--c-accent-deep);
  letter-spacing: .05em;
  margin-bottom: .85rem;
}
.service-card h3 { margin-bottom: .3rem; font-size: 1.2rem; }
.service-card .meta {
  color: var(--c-muted);
  font-size: .82rem;
  letter-spacing: .03em;
  margin-bottom: 1rem;
}
.service-card .price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: .2rem;
}
.service-card .price-unit {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--c-muted);
  font-style: normal;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.service-card p { margin-bottom: 1.3rem; font-size: .92rem; }
.service-card .more {
  margin-top: auto;
  font-weight: 500;
  font-size: .88rem;
  color: var(--c-accent-deep);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap var(--t-fast);
  min-height: 44px;
}
.service-card .more:hover { gap: .65rem; color: var(--c-accent); text-decoration: none; }
.service-card .more::after { content: "\2192"; transition: transform var(--t-fast); }

@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
}
@media (min-width: 960px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .service-card { padding: 1.85rem 1.6rem 1.6rem; }
  .service-card .price { font-size: 2.1rem; }
}

/* ============================================================
 * PROOF GRID
 * ============================================================ */
.proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.proof-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.proof-card figure { margin: 0; }
.proof-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.proof-card figcaption {
  padding: .9rem 1.1rem;
  font-size: .88rem;
  color: var(--c-ink-soft);
  border-top: 1px solid var(--c-line);
}

@media (min-width: 640px) { .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 960px) { .proof-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* ============================================================
 * TRUST BAR
 * ============================================================ */
.trust-bar {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-surface);
  overflow: hidden;
}
.trust-item {
  padding: 1.25rem 1.4rem;
  border-left: 2px solid transparent;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.trust-item + .trust-item { border-top: 1px solid var(--c-line); }
.trust-item:hover { border-left-color: var(--c-accent); background: var(--c-bg-soft); }
.trust-item h4 {
  margin: 0 0 .35rem;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  color: var(--c-ink);
  display: flex; align-items: center; gap: .55rem;
}
.trust-item h4 .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: grid; place-items: center;
  font-size: .9rem;
  flex: none;
}
.trust-item p { margin: 0; font-size: .9rem; }
@media (min-width: 768px) {
  .trust-bar { grid-template-columns: repeat(3, 1fr); }
  .trust-item + .trust-item { border-top: 0; border-left-color: var(--c-line); }
}

/* ============================================================
 * FAQ
 * ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 0 1.25rem;
  margin-bottom: .65rem;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.faq details:hover { border-color: var(--c-accent-soft); }
.faq details[open] { border-color: var(--c-accent-soft); box-shadow: var(--shadow-xs); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--c-ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  list-style: none;
  min-height: 56px;
  padding: .35rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--c-accent-deep);
  transition: transform var(--t-mid);
  flex: none;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; border-radius: var(--r-xs); }
.faq details[open] summary { margin-bottom: .35rem; }
.faq details > p { margin: 0 0 1rem; padding: 0 0 .25rem; font-size: .95rem; }

@media (min-width: 640px) {
  .faq summary { font-size: 1.15rem; }
  .faq details { padding: 0 1.4rem; }
}

/* ============================================================
 * CONTACT CARDS
 * ============================================================ */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent-soft);
  box-shadow: var(--shadow-sm);
}
.contact-card .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--c-accent-soft) 0%, var(--c-accent) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
  flex: none;
}
.contact-card h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.contact-card p { font-size: .92rem; }
.contact-card .btn { width: 100%; margin-top: 1rem; padding: .85rem 1rem; font-size: .92rem; }
.contact-card address { font-style: normal; font-size: .92rem; line-height: 1.55; color: var(--c-ink-soft); }

@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; } }
@media (min-width: 960px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

/* ============================================================
 * SERVICE-PAGE HERO
 * ============================================================ */
.service-hero {
  padding: 2rem 0 1.75rem;
  position: relative;
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
}
.service-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(183,110,90,.10) 0%, transparent 50%);
  pointer-events: none;
}
.service-hero .container { position: relative; }
.breadcrumbs {
  font-size: .82rem;
  color: var(--c-muted);
  margin-bottom: 1rem;
  letter-spacing: .03em;
}
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-accent-deep); }
.breadcrumbs span[aria-current] { color: var(--c-ink); }

.service-hero h1 { margin-bottom: .85rem; }
.service-hero .lede {
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  max-width: 56ch;
  margin-bottom: 1.3rem;
}
.quick-meta {
  display: flex; gap: .55rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: .92rem;
  color: var(--c-ink-soft);
}
.quick-meta .pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-weight: 500;
  color: var(--c-ink);
  font-size: .85rem;
}
.quick-meta .pill strong { color: var(--c-accent-deep); font-weight: 600; }

.service-hero .ctas { display: flex; gap: .65rem; flex-wrap: wrap; }
.service-hero .ctas .btn { flex: 1 1 auto; min-width: 180px; }

/* service content layout */
.service-content {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.service-body h2 { margin-top: 1.75rem; font-size: 1.4rem; }
.service-body h2:first-child { margin-top: 0; }
.service-body ul { padding-left: 1.2rem; margin: .65rem 0 1.15rem; }
.service-body ul li { margin-bottom: .5rem; color: var(--c-ink-soft); padding-left: .25rem; }
.service-body ul li::marker { color: var(--c-accent); }
.service-body a { color: var(--c-accent-deep); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.service-body a:hover { color: var(--c-accent); text-decoration: none; border-bottom-color: transparent; }

.service-aside {
  background: var(--c-surface-warm);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem;
}
.service-aside .label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .3rem;
  font-weight: 600;
}
.service-aside .price {
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-style: italic;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1;
  margin: 0 0 .25rem;
}
.service-aside .duration {
  color: var(--c-ink-soft);
  margin-bottom: 1.4rem;
  font-size: .98rem;
}
.service-aside .btn { width: 100%; margin-bottom: .55rem; }
.service-aside .meta-list {
  list-style: none; padding: 0; margin: 1.2rem 0 0;
  border-top: 1px solid var(--c-line);
  padding-top: 1.05rem;
  font-size: .88rem;
}
.service-aside .meta-list li {
  display: flex; align-items: center; gap: .5rem;
  color: var(--c-ink-soft);
  padding: .3rem 0;
}
.service-aside .meta-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
  flex: none;
}

@media (min-width: 768px) {
  .service-hero { padding: 3rem 0 2.5rem; }
  .service-hero .lede { font-size: 1.1rem; }
  .quick-meta { gap: .75rem; }
  .service-body h2 { font-size: 1.5rem; }
}
@media (min-width: 960px) {
  .service-hero { padding: 3.75rem 0 3rem; }
  .service-hero .lede { font-size: 1.15rem; }
  .service-content { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
  .service-aside { position: sticky; top: 88px; padding: 2rem 1.75rem; }
  .service-aside .price { font-size: 3rem; }
}

/* ============================================================
 * CTA SECTION
 * ============================================================ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(183,110,90,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-section h2 em { font-style: italic; color: var(--c-accent-deep); font-weight: 400; }
@media (min-width: 960px) {
  .cta-section h2 { font-size: clamp(1.85rem, 4vw, 2.6rem); }
  .cta-section .section-lede { font-size: 1.1rem; }
}

/* ============================================================
 * FOOTER - mobile-first stack
 * ============================================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(250,246,240,.7);
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
}
.site-footer a { color: rgba(250,246,240,.85); }
.site-footer a:hover { color: var(--c-accent-soft); text-decoration: none; }
.site-footer .footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250,246,240,.95);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .5rem; font-size: .92rem; }
.site-footer address { font-style: normal; font-size: .92rem; line-height: 1.55; color: rgba(250,246,240,.75); }
.site-footer .legal {
  border-top: 1px solid rgba(250,246,240,.12);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: .78rem;
  color: rgba(250,246,240,.5);
  display: flex; flex-direction: column; gap: .5rem;
}
.site-footer .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(250,246,240,.95);
  margin-bottom: .85rem;
}
.site-footer .signature + p { color: rgba(250,246,240,.7); font-size: .92rem; max-width: 32ch; }

@media (min-width: 720px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
}
@media (min-width: 960px) {
  .site-footer { padding: 3.5rem 0 2rem; }
  .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
  .site-footer .legal { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
 * HERO + SECTION desktop bumps
 * ============================================================ */
@media (min-width: 768px) {
  .hero-eyebrow { font-size: .78rem; margin-bottom: 1.4rem; }
  .hero-lede { font-size: 1.12rem; }
  section { padding: 3.5rem 0; }
  .section-head { gap: 1rem; margin-bottom: 3rem; }
  .section-eyebrow { font-size: .78rem; }
  .section-lede { font-size: 1.05rem; }
}
@media (min-width: 960px) {
  section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
  .section-head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
  .cta-section .section-lede { font-size: 1.1rem; }
}
@media (min-width: 1200px) {
  .container { padding: 0 2rem; }
}

/* ============================================================
 * SKIP LINK
 * ============================================================ */
.skip-link {
  position: absolute; left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem;
  width: auto; height: auto;
  padding: .7rem 1.2rem;
  background: var(--c-dark);
  color: #fff;
  border-radius: var(--r-md);
  z-index: 100;
}

/* ============================================================
 * UTILITY
 * ============================================================ */
.text-center { text-align: center; }
.divider-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-accent);
  margin: 0 .75rem;
  vertical-align: middle;
}
