/* =========================================================
   Twisted Tree Surgery — Design System
   Palette: Stone & Pine (deep pine + amber on warm stone)
   Type:    Poppins (display) + Roboto (body/UI)
   ========================================================= */

:root {
  /* Surfaces */
  --bg:        #EFEAE1;   /* warm stone */
  --bg-sand:   #E5DECC;   /* slightly deeper stone for section breaks */
  --bg-deep:   #0E2922;   /* darker pine for footer / hero overlay */
  --surface:   #FFFFFF;
  --rule:      #D9D2C2;

  /* Ink */
  --ink:       #1A2622;
  --ink-2:     #4D5752;
  --ink-3:     #8B9089;
  --on-deep:   #ECE7DC;
  --on-deep-2: #A8B0A6;

  /* Brand */
  --brand:        #0E3B30;   /* deep pine */
  --brand-deep:   #082A22;
  --accent:       #C28F2C;   /* amber */
  --accent-deep:  #A07320;
  --accent-soft:  #F1E2BB;

  /* Type */
  --display: "Poppins", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --ui:      "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --s-1: .25rem;
  --s-2: .5rem;
  --s-3: .75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  --radius:   14px;
  --radius-s: 8px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(14,40,33,.05), 0 4px 14px rgba(14,40,33,.07);
  --shadow-2: 0 6px 30px rgba(14,40,33,.14);

  --container: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--s-4);
}
h1 { font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-family: var(--ui); font-weight: 700; letter-spacing: 0; color: var(--ink); }

p { margin: 0 0 var(--s-4); }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 60ch; line-height: 1.55; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--ui);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
}
.eyebrow.dark { color: var(--brand); }
.eyebrow.dark::before { background: var(--brand); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
section { padding: var(--s-8) 0; }
@media (min-width: 768px) { section { padding: var(--s-9) 0; } }

.section-head { max-width: 56ch; margin-bottom: var(--s-7); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid { display: grid; gap: var(--s-5); }
@media (min-width: 720px) { .grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--ui);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); color: #fff; }
.btn-leaf { background: var(--accent); color: #fff; }
.btn-leaf:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-3); color: var(--ink); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; color: #fff; }
.btn-wa svg { width: 18px; height: 18px; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239,234,225,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(239,234,225,.96);
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 24px rgba(14,40,33,.06);
}
body.menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) 0;
  gap: var(--s-5);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img { height: 42px; width: auto; }
.brand-text {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -.01em;
}
.nav-links {
  display: none;
  gap: var(--s-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: .96rem;
  padding: .35rem 0;
  position: relative;
}
.nav-links a:hover { color: var(--brand); text-decoration: none; }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { display: flex; gap: var(--s-3); align-items: center; }
.nav-call {
  display: none;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.nav-call:hover { color: var(--brand); text-decoration: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--rule); border-radius: 12px;
  position: relative; z-index: 110;
  transition: background .2s ease, border-color .2s ease;
}
.nav-toggle:hover { border-color: var(--ink-3); }
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
  transition: transform .25s ease, opacity .2s ease, background .2s ease, width .25s ease;
  transform-origin: center;
}
body.menu-open .nav-toggle { border-color: rgba(255,255,255,.25); background: transparent; }
body.menu-open .nav-toggle:hover { border-color: rgba(255,255,255,.5); }
body.menu-open .nav-toggle span { background: #fff; width: 22px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-call { display: inline-block; }
  .nav-toggle { display: none; }
}

/* ===========================================================
   Mobile menu — full-screen modern overlay
   =========================================================== */
.mobile-menu {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg-deep);
  background-image:
    radial-gradient(60% 50% at 50% -10%, rgba(194,143,44,.18) 0%, rgba(194,143,44,0) 60%),
    radial-gradient(80% 60% at 20% 110%, rgba(14,59,48,.7) 0%, rgba(14,59,48,0) 60%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 5.5rem 1.5rem 2rem;
  border-top: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease, visibility 0s;
}
body.menu-open { overflow: hidden; }

/* Show full-screen menu at any breakpoint (no need to confine to mobile) */
@media (min-width: 900px) { .mobile-menu { display: block; } }

.mobile-menu ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  counter-reset: nav;
  max-width: 640px;
}
.mobile-menu li {
  counter-increment: nav;
  border-bottom: 1px solid rgba(255,255,255,.07);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.mobile-menu.open li { opacity: 1; transform: translateY(0); }
.mobile-menu.open li:nth-child(1) { transition-delay: .06s; }
.mobile-menu.open li:nth-child(2) { transition-delay: .10s; }
.mobile-menu.open li:nth-child(3) { transition-delay: .14s; }
.mobile-menu.open li:nth-child(4) { transition-delay: .18s; }
.mobile-menu.open li:nth-child(5) { transition-delay: .22s; }
.mobile-menu.open li:nth-child(6) { transition-delay: .26s; }
.mobile-menu.open li:nth-child(7) { transition-delay: .30s; }
.mobile-menu.open li:last-child   { transition-delay: .34s; }

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 1rem 0;
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.mobile-menu a::before {
  content: counter(nav, decimal-leading-zero);
  font-family: var(--ui);
  font-weight: 500;
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .16em;
  min-width: 2.4em;
  padding-top: .55rem;
  flex: 0 0 auto;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  color: var(--accent);
  text-decoration: none;
  transform: translateX(4px);
}
.mobile-menu li:last-child a { color: var(--accent); }
.mobile-menu li:last-child a::before { display: none; }

/* CTA footer (injected by twisted.js) */
.mobile-menu-footer {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  transition-delay: .38s;
}
.mobile-menu.open .mobile-menu-footer { opacity: 1; transform: translateY(0); }

.mobile-menu .mm-hours {
  margin: 0 0 .5rem;
  font-size: .82rem;
  color: var(--on-deep-2);
  letter-spacing: .04em;
}
.mobile-menu .mm-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  font-family: var(--ui);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.mobile-menu .mm-cta:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  text-decoration: none;
  transform: translateY(-1px);
}
.mobile-menu .mm-cta-label { font-weight: 500; font-size: .95rem; color: var(--on-deep-2); }
.mobile-menu .mm-cta-value { font-weight: 600; font-size: 1.05rem; color: #fff; font-variant-numeric: tabular-nums; }
.mobile-menu .mm-wa { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.3); }
.mobile-menu .mm-wa:hover { background: rgba(37,211,102,.22); border-color: rgba(37,211,102,.5); }
.mobile-menu .mm-wa .mm-cta-label { color: #9be3b5; }
.mobile-menu .mm-meta {
  margin: 1rem 0 0;
  font-size: .76rem;
  color: var(--on-deep-2);
  letter-spacing: .04em;
  opacity: .7;
}

/* Sticky bottom call bar on mobile */
.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex; gap: 0;
  background: var(--brand);
  box-shadow: 0 -2px 18px rgba(0,0,0,.2);
}
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: .95rem .5rem;
  color: #fff;
  font-weight: 500;
  font-size: .98rem;
  text-decoration: none;
}
.mobile-call-bar a + a { border-left: 1px solid rgba(255,255,255,.18); }
.mobile-call-bar a.bar-wa { background: #25D366; }
.mobile-call-bar a.bar-wa:hover { background: #1da851; }
.mobile-call-bar a.bar-quote { background: var(--accent); }
.mobile-call-bar a.bar-quote:hover { background: var(--accent-deep); }
.mobile-call-bar a:hover { text-decoration: none; }
.mobile-call-bar svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }
@media (min-width: 900px) { .mobile-call-bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 56px; } }

/* ---------- Hero ---------- */
.hero {
  padding-top: var(--s-7);
  padding-bottom: var(--s-8);
}
.hero-grid {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: var(--s-8); }
  .hero { padding-top: var(--s-8); padding-bottom: var(--s-10); }
}
.hero-copy h1 { margin-bottom: var(--s-5); }
.hero-copy .lead { margin-bottom: var(--s-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero-meta {
  margin-top: var(--s-6);
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  color: var(--ink-3);
  font-size: .92rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-meta svg { width: 16px; height: 16px; color: var(--accent); }

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-sand);
  box-shadow: var(--shadow-2);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: var(--s-5); left: var(--s-5);
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-s);
  padding: var(--s-3) var(--s-4);
  box-shadow: var(--shadow-1);
  display: flex; align-items: center; gap: .65rem;
  font-size: .9rem; color: var(--ink); font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.hero-badge .dot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: ttpulse 2.4s cubic-bezier(.22,.61,.36,1) infinite;
}
@keyframes ttpulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(3.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge .dot::after { animation: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-sand);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-strip .container {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(2, 1fr);
  padding-top: var(--s-6); padding-bottom: var(--s-6);
}
@media (min-width: 720px) { .trust-strip .container { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: var(--s-3); }
.trust-item .ico {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--surface); color: var(--brand);
  border: 1px solid var(--rule);
}
.trust-item .ico svg { width: 18px; height: 18px; }
.trust-item p { margin: 0; font-size: .92rem; color: var(--ink); font-weight: 500; line-height: 1.35; }
.trust-item p span { display: block; color: var(--ink-3); font-weight: 400; font-size: .82rem; }

/* ---------- Service cards (numbered, editorial) ---------- */
.grid.cols-3, .grid.cols-2 { counter-reset: srv; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-6);
  display: flex; flex-direction: column;
  position: relative;
  counter-increment: srv;
  transition: transform .25s cubic-bezier(.22,.61,.36,1),
              box-shadow .25s ease,
              border-color .25s ease;
}
.service-card::before {
  content: counter(srv, decimal-leading-zero);
  position: absolute;
  top: var(--s-5); right: var(--s-5);
  font-family: var(--ui);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em;
  color: var(--ink-3);
  transition: color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--ink-3);
}
.service-card:hover::before { color: var(--accent-deep); }
.service-card .ico {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--brand);
  border-radius: 12px;
  margin-bottom: var(--s-4);
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover .ico { transform: scale(1.06) rotate(-3deg); }
.service-card .ico svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: var(--s-2); padding-right: 2.5rem; }
.service-card p { font-size: .96rem; color: var(--ink-2); margin-bottom: var(--s-4); }
.service-card .more {
  margin-top: auto;
  font-weight: 500; font-size: .92rem;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: .4rem;
  position: relative;
  padding-bottom: 3px;
  align-self: flex-start;
}
.service-card .more::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover .more::before { transform: scaleX(1); }
.service-card .more:hover { text-decoration: none; color: var(--accent-deep); }
.service-card .more::after { content: "→"; transition: transform .25s cubic-bezier(.22,.61,.36,1); }
.service-card:hover .more::after { transform: translateX(5px); }

/* ---------- Why us ---------- */
.why {
  background: var(--bg-deep);
  color: var(--on-deep);
}
.why h2 { color: #fff; }
.why .eyebrow { color: var(--accent); }
.why p, .why li { color: var(--on-deep-2); }
.why-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .why-list { grid-template-columns: 1fr 1fr; } }
.why-list li {
  padding-left: 2.2rem;
  position: relative;
  font-size: .98rem;
  line-height: 1.55;
}
.why-list li strong { color: #fff; font-weight: 600; display: block; margin-bottom: .15rem; font-family: var(--display); font-size: 1.08rem; }
.why-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 220px 220px;
  }
  .gallery .g1 { grid-column: span 4; grid-row: span 2; }
  .gallery .g2 { grid-column: span 2; }
  .gallery .g3 { grid-column: span 2; }
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-sand);
  cursor: zoom-in;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--s-5) var(--s-4) var(--s-4);
  color: #fff;
  font-size: .9rem;
  background: linear-gradient(to top, rgba(14,40,33,.82), rgba(14,40,33,0));
  transform: translateY(0);
  transition: transform .35s ease;
}

/* ---------- Reviews ---------- */
.review {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-6);
}
.review .stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; margin-bottom: var(--s-3); }
.review blockquote {
  margin: 0 0 var(--s-4);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -.01em;
}
.review .who { font-size: .9rem; color: var(--ink-3); }
.review .who strong { color: var(--ink); font-weight: 600; }

/* ---------- Areas section ---------- */
.areas {
  background: var(--bg-sand);
}
.areas-grid {
  margin-top: var(--s-6);
  display: grid; gap: var(--s-2) var(--s-5);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
.areas-grid a {
  padding: .55rem 0;
  color: var(--ink);
  font-size: .95rem;
  border-bottom: 1px dotted var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.areas-grid a:hover { color: var(--brand); text-decoration: none; }
.areas-grid a::after { content: "→"; color: var(--ink-3); font-size: .9rem; transition: transform .15s ease; }
.areas-grid a:hover::after { transform: translateX(3px); color: var(--brand); }

/* ---------- Final CTA ---------- */
.cta-band {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--s-7) var(--s-5);
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin: 0 auto var(--s-4); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto var(--s-5); }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); background: transparent; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
@media (min-width: 720px) { .cta-band { padding: var(--s-9) var(--s-7); } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: var(--on-deep-2);
  padding: var(--s-8) 0 var(--s-6);
  margin-top: 0;
}
.site-footer h4 { color: #fff; margin-bottom: var(--s-4); font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.site-footer a { color: var(--on-deep-2); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid {
  display: grid; gap: var(--s-7);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); } }
.footer-brand .brand-text { color: #fff; font-size: 1.25rem; }
.footer-brand p { color: var(--on-deep-2); font-size: .95rem; max-width: 36ch; margin-top: var(--s-4); }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .94rem; }
.footer-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
  font-size: .85rem; color: var(--on-deep-2);
}

/* ---------- Inner page hero (smaller) ---------- */
.page-hero {
  background: var(--bg-sand);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-7) 0;
}
.page-hero .crumbs {
  font-size: .85rem; color: var(--ink-3); margin-bottom: var(--s-3);
}
.page-hero .crumbs a { color: var(--ink-3); }
.page-hero .crumbs a:hover { color: var(--brand); }
.page-hero h1 { margin-bottom: var(--s-3); }
.page-hero p { max-width: 60ch; margin: 0; color: var(--ink-2); font-size: 1.1rem; }

/* ---------- Prose ---------- */
.prose { max-width: 65ch; }
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: .35rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: var(--s-5) 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); transition: transform .15s ease; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: var(--s-3); color: var(--ink-2); }

/* ---------- Service-page layout ---------- */
.service-layout {
  display: grid; gap: var(--s-7);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .service-layout { grid-template-columns: 1fr 320px; gap: var(--s-8); } }

.sidebar {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-5);
  position: sticky;
  top: 88px;
  align-self: start;
}
.sidebar h4 { font-family: var(--display); font-size: 1.1rem; margin-bottom: var(--s-4); color: var(--ink); text-transform: none; letter-spacing: -.01em; font-weight: 600; }
.sidebar .phone { display: block; font-family: var(--display); font-size: 1.4rem; color: var(--brand); margin-bottom: var(--s-2); font-weight: 600; letter-spacing: -.01em; }
.sidebar .meta { font-size: .85rem; color: var(--ink-3); margin-bottom: var(--s-4); }
.sidebar .btn { width: 100%; margin-top: var(--s-3); }

/* ---------- Related services / interlinks ---------- */
.related {
  display: grid; gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .related { grid-template-columns: repeat(2, 1fr); } }
.related a {
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--rule);
  border-radius: var(--radius-s);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.related a:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.related a::after { content: "→"; color: var(--ink-3); }

/* ---------- Utility ---------- */
.muted { color: var(--ink-3); }
.divider { height: 1px; background: var(--rule); border: 0; margin: var(--s-7) 0; }
.tag {
  display: inline-block;
  padding: .2rem .6rem;
  background: var(--accent-soft); color: #6e4f15;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Scroll reveal (auto-tagged by twisted.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger card grids slightly */
.grid .reveal:nth-child(2) { transition-delay: .05s; }
.grid .reveal:nth-child(3) { transition-delay: .10s; }
.grid .reveal:nth-child(4) { transition-delay: .15s; }
.grid .reveal:nth-child(5) { transition-delay: .20s; }
.grid .reveal:nth-child(6) { transition-delay: .25s; }
.grid .reveal:nth-child(7) { transition-delay: .30s; }
.grid .reveal:nth-child(8) { transition-delay: .35s; }
.grid .reveal:nth-child(9) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
