/* =========================================================
   Stump Removal Kahala — site styles
   Plain CSS, no build step. Palette is pulled from the site's
   own photography: lava-rock walls, the yellow grinder, turf,
   and the lichen on old bark.
   ========================================================= */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque.woff2") format("woff2");
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --basalt:      #252b2c;   /* lava-rock dark: hero, footer, table heads */
  --basalt-soft: #384042;   /* raised dark surface */
  --yellow:      #f5b800;   /* grinder yellow: the one action color */
  --yellow-hi:   #ffc928;
  --fern:        #2b6a3d;   /* turf green: links, focus, small accents */
  --fern-dark:   #1f4f2d;
  --lichen:      #e8eee2;   /* alternate section background */
  --paper:       #fbfbf7;   /* page background */
  --ink:         #1f2527;   /* body text */
  --ink-soft:    #4b5659;   /* secondary text (7:1 on paper) */
  --line:        #d8ddd0;

  --max: 1180px;
  --gutter: clamp(18px, 4vw, 32px);
  --r-s: 6px;
  --r-m: 10px;
  --r-l: 16px;
  --header-h: 72px;

  --font-head: "Bricolage Grotesque", "Figtree", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* saw-tooth tiles used on the hero photo edge (basalt / yellow) */
  --tooth-v-basalt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='30' viewBox='0 0 16 30'%3E%3Cpath d='M0 0L16 15L0 30Z' fill='%23252b2c'/%3E%3C/svg%3E");
  --tooth-v-yellow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='30' viewBox='0 0 16 30'%3E%3Cpath d='M0 0L16 15L0 30Z' fill='%23f5b800'/%3E%3C/svg%3E");
  --tooth-h-basalt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='16' viewBox='0 0 30 16'%3E%3Cpath d='M0 16L15 0L30 16Z' fill='%23252b2c'/%3E%3C/svg%3E");
  --tooth-h-yellow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='16' viewBox='0 0 30 16'%3E%3Cpath d='M0 16L15 0L30 16Z' fill='%23f5b800'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-stretch: 90%;
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); line-height: .98; letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: .5em; }
h3 { font-size: 1.3rem; font-weight: 750; letter-spacing: -.015em; line-height: 1.15; margin-bottom: .4em; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--ink-soft); max-width: 68ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); }

a { color: var(--fern); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--fern-dark); }

:focus-visible { outline: 3px solid var(--fern); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .site-footer :focus-visible, .cta :focus-visible { outline-color: var(--yellow); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--yellow); color: var(--basalt); padding: 10px 16px; border-radius: var(--r-s); font-weight: 700; z-index: 100; }
.skip:focus { left: 8px; }

.muted { color: var(--ink-soft); font-size: .92rem; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center p, .center .lead { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--yellow); color: var(--basalt);
  padding: 15px 26px; border-radius: var(--r-m);
  font: 700 1rem/1.1 var(--font-body);
  border: 2px solid var(--yellow);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.btn:hover { background: var(--yellow-hi); border-color: var(--yellow-hi); color: var(--basalt); }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 18px 32px; font-size: 1.08rem; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn--dark { background: var(--basalt); border-color: var(--basalt); color: #fff; }
.btn--dark:hover { background: var(--basalt-soft); border-color: var(--basalt-soft); color: #fff; }
.btn--line { background: transparent; color: var(--basalt); border-color: var(--basalt); }
.btn--line:hover { background: var(--basalt); color: #fff; border-color: var(--basalt); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,251,247,.95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--basalt); text-decoration: none; font-family: var(--font-head); font-weight: 800; font-stretch: 90%; font-size: 1.28rem; letter-spacing: -.025em; line-height: 1; white-space: nowrap; }
.logo:hover { color: var(--basalt); }
.logo svg { width: 36px; height: 36px; flex: none; }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .96rem; text-decoration: none; padding: 10px 12px; border-radius: var(--r-s); display: block; }
.nav__links a:hover { color: var(--fern-dark); background: var(--lichen); }
.nav__links a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--yellow); border-radius: 0; }
.nav__links .nav__call { background: var(--yellow); color: var(--basalt); padding: 11px 18px; margin-left: 8px; border-radius: var(--r-m); font-weight: 800; box-shadow: none; }
.nav__links .nav__call:hover { background: var(--yellow-hi); color: var(--basalt); }

.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); min-width: 290px; padding: 8px; box-shadow: 0 18px 40px rgba(37,43,44,.14); list-style: none; }
.has-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; display: none; }
.has-dropdown:hover::after { display: block; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown a { padding: 10px 12px; font-size: .94rem; }

.nav__toggle { display: none; background: none; border: 0; width: 46px; height: 46px; cursor: pointer; color: var(--basalt); border-radius: var(--r-s); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { display: block; width: 24px; height: 2.5px; background: currentColor; border-radius: 2px; content: ""; position: relative; margin: 0 auto; }
.nav__toggle span::before { position: absolute; top: -8px; left: 0; }
.nav__toggle span::after { position: absolute; top: 8px; left: 0; }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; box-shadow: 0 20px 30px rgba(37,43,44,.1); }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 13px 4px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav__links a[aria-current="page"] { box-shadow: none; color: var(--fern-dark); }
  .dropdown { display: block; position: static; box-shadow: none; border: 0; padding: 0 0 0 16px; min-width: 0; background: transparent; }
  .dropdown a { font-weight: 500; }
  .nav__links .nav__call { margin: 14px 0 0; text-align: center; border-bottom: 0; }
}

/* ---------- hero (home) + page head (inner) ---------- */
.hero, .pagehead { background: var(--basalt); color: #fff; position: relative; overflow: hidden; }
.hero h1, .pagehead h1 { color: #fff; }
.hero p, .pagehead p { color: rgba(255,255,255,.86); }
.hero a:not(.btn), .pagehead a:not(.btn) { color: var(--yellow); }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); min-height: clamp(560px, calc(100svh - var(--header-h)), 740px); }
.hero__copy { align-self: center; padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 64px) clamp(56px, 7vw, 96px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); }
.hero h1 { max-width: 12ch; margin-bottom: 22px; }
.hero .lead { color: rgba(255,255,255,.88); margin-bottom: 30px; max-width: 34ch; font-size: clamp(1.15rem, 1.7vw, 1.38rem); }
.hero__note { margin-top: 20px; font-size: .95rem; color: rgba(255,255,255,.72) !important; }

.hero__photo { position: relative; min-height: 320px; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }

/* the memorable bit: the photo edge is cut like grinder teeth */
.teeth { position: absolute; z-index: 2; pointer-events: none; }
.teeth--v { top: 0; bottom: 0; left: -1px; width: 22px; background-image: var(--tooth-v-basalt), var(--tooth-v-yellow); background-repeat: repeat-y, repeat-y; background-size: 16px 30px, 16px 30px; background-position: 0 0, 6px 0; }
.teeth--h { display: none; left: 0; right: 0; bottom: -1px; height: 22px; background-image: var(--tooth-h-basalt), var(--tooth-h-yellow); background-repeat: repeat-x, repeat-x; background-size: 30px 16px, 30px 16px; background-position: 0 100%, 0 calc(100% - 6px); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__photo { order: -1; height: clamp(250px, 42svh, 400px); min-height: 0; }
  .hero__copy { padding: 34px var(--gutter) 56px; }
  .teeth--v { display: none; }
  .teeth--h { display: block; }
}

@media (max-width: 560px) { .hero .btn-row .btn, .pagehead .btn-row .btn { flex: 1 1 100%; } }

/* page head for inner pages */
.pagehead__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); min-height: 430px; }
.pagehead__copy { align-self: center; padding: clamp(44px, 6vw, 80px) clamp(24px, 4vw, 56px) clamp(48px, 6vw, 80px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); }
.pagehead h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin-bottom: 18px; max-width: 16ch; }
.pagehead .lead { color: rgba(255,255,255,.86); margin-bottom: 28px; max-width: 46ch; }
.pagehead__photo { position: relative; min-height: 260px; }
.pagehead__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pagehead--plain .wrap { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(44px, 6vw, 76px); }
.pagehead--plain h1 { max-width: 18ch; }
.pagehead--plain .lead { margin-bottom: 0; max-width: 56ch; }
.pagehead__date { margin-top: 16px; font-size: .92rem; color: rgba(255,255,255,.65) !important; }

@media (max-width: 860px) {
  .pagehead__grid { grid-template-columns: 1fr; min-height: 0; }
  .pagehead__photo { order: -1; height: 230px; min-height: 0; }
  .pagehead__copy { padding: 30px var(--gutter) 48px; }
}

/* one orchestrated page-load moment: the photo wipes in, the copy rises once */
@media (prefers-reduced-motion: no-preference) {
  .hero__photo, .pagehead__photo { animation: wipe .9s cubic-bezier(.2,.7,.2,1) both; }
  .hero__copy > *, .pagehead__copy > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
  .hero__copy > :nth-child(2), .pagehead__copy > :nth-child(2) { animation-delay: .08s; }
  .hero__copy > :nth-child(3), .pagehead__copy > :nth-child(3) { animation-delay: .16s; }
  .hero__copy > :nth-child(4), .pagehead__copy > :nth-child(4) { animation-delay: .24s; }
  @keyframes wipe { from { clip-path: inset(0 0 0 100%); } to { clip-path: inset(0 0 0 0); } }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: no-preference) and (max-width: 860px) {
  @keyframes wipe { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
}

/* ---------- facts strip ---------- */
.facts { background: var(--yellow); color: var(--basalt); }
.facts__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.fact { padding: 26px clamp(18px, 3vw, 36px); border-left: 1.5px solid rgba(37,43,44,.28); }
.fact:first-child { border-left: 0; padding-left: 0; }
.fact h3 { font-size: 1.22rem; color: var(--basalt); margin-bottom: .25em; }
.fact p { color: rgba(37,43,44,.86); font-size: .97rem; line-height: 1.5; margin: 0; }
@media (max-width: 800px) {
  .facts__grid { grid-template-columns: 1fr; }
  .fact { border-left: 0; border-top: 1.5px solid rgba(37,43,44,.28); padding: 20px 0; }
  .fact:first-child { border-top: 0; }
}

/* ---------- sections ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--lichen); }
.section--dark { background: var(--basalt); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.82); }
.section--dark a:not(.btn) { color: var(--yellow); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section__head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__head p { font-size: 1.1rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--top { align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.photo { border-radius: var(--r-s); overflow: hidden; background: var(--lichen); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--wide { aspect-ratio: 4 / 3; }
.photo--tall { aspect-ratio: 4 / 5; }
.photo--sq { aspect-ratio: 1; }

/* ---------- job sequence (the one real numbered sequence) ---------- */
.job { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); list-style: none; }
.job li { display: flex; flex-direction: column; }
.job .photo { aspect-ratio: 4 / 5; position: relative; margin-bottom: 18px; }
.job__n { position: absolute; top: 14px; left: 14px; width: 42px; height: 42px; border-radius: 50%; background: var(--yellow); color: var(--basalt); display: grid; place-items: center; font: 800 1.15rem/1 var(--font-head); z-index: 1; }
.job h3 { margin-bottom: .3em; }
.job p { font-size: 1rem; }
@media (max-width: 800px) {
  .job { grid-template-columns: 1fr; gap: 30px; }
  .job .photo { aspect-ratio: 16 / 10; }
}

/* ---------- service list (ruled rows, not cards) ---------- */
.svc { list-style: none; border-top: 2px solid var(--basalt); }
.svc a { display: grid; grid-template-columns: 1fr auto; gap: 8px 28px; align-items: center; padding: 28px 8px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: background .15s ease; }
.svc a:hover { background: var(--lichen); color: var(--ink); }
.svc h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 0; }
.svc p { margin: 0; grid-column: 1; max-width: 62ch; }
.svc .svc__go { grid-column: 2; grid-row: 1 / span 2; width: 52px; height: 52px; border-radius: 50%; background: var(--basalt); position: relative; transition: background .15s ease, transform .15s ease; }
.svc .svc__go::before { content: ""; position: absolute; left: 17px; top: 50%; width: 18px; height: 2.5px; background: #fff; transform: translateY(-50%); }
.svc .svc__go::after { content: ""; position: absolute; left: 25px; top: 50%; width: 10px; height: 10px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; transform: translateY(-50%) rotate(45deg); }
.svc a:hover .svc__go { background: var(--yellow); }
.svc a:hover .svc__go::before { background: var(--basalt); }
.svc a:hover .svc__go::after { border-color: var(--basalt); }
@media (max-width: 560px) { .svc a { padding: 22px 0; } .svc .svc__go { width: 42px; height: 42px; } .svc .svc__go::before { left: 12px; } .svc .svc__go::after { left: 20px; } }

/* services page: bigger rows with a thumbnail */
.svc--photo a { grid-template-columns: 200px 1fr auto; gap: 8px 32px; }
.svc--photo .svc__img { grid-row: 1 / span 2; aspect-ratio: 4 / 3; border-radius: var(--r-s); overflow: hidden; }
.svc--photo .svc__img img { width: 100%; height: 100%; object-fit: cover; }
.svc--photo p { grid-column: 2; }
.svc--photo .svc__go { grid-column: 3; }
@media (max-width: 720px) {
  .svc--photo a { grid-template-columns: 1fr auto; }
  .svc--photo .svc__img { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .svc--photo p { grid-column: 1; }
  .svc--photo .svc__go { grid-column: 2; grid-row: 2 / span 2; }
}

/* ---------- how a request works (dark, unnumbered) ---------- */
.howto { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); margin-top: 8px; }
.howto > div { border-top: 3px solid var(--yellow); padding-top: 20px; }
.howto p { font-size: 1rem; }
.howto__note { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.howto__note p { font-size: .98rem; max-width: 75ch; }
@media (max-width: 800px) { .howto { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- areas ---------- */
.areas { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(24px, 5vw, 72px); margin-top: 8px; }
.areas a { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 20px 4px; border-bottom: 1.5px solid rgba(37,43,44,.25); text-decoration: none; color: var(--basalt); font-family: var(--font-head); font-weight: 800; font-stretch: 90%; font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.03em; line-height: 1.05; transition: padding .15s ease, border-color .15s ease; }
.areas a small { font: 500 .95rem/1.4 var(--font-body); letter-spacing: 0; color: var(--ink-soft); text-align: right; max-width: 26ch; }
.areas a:hover { padding-left: 14px; border-color: var(--basalt); color: var(--basalt); box-shadow: inset 6px 0 0 var(--yellow); }
@media (max-width: 720px) { .areas { grid-template-columns: 1fr; } .areas a small { display: none; } }

/* ---------- facts grid: what changes the job ---------- */
.points { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 52px) clamp(28px, 5vw, 72px); }
.points > div { border-top: 2px solid var(--basalt); padding-top: 18px; }
.points--3 { grid-template-columns: repeat(3, 1fr); }
.points p { font-size: 1rem; }
@media (max-width: 860px) { .points--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .points, .points--3 { grid-template-columns: 1fr; } }

/* ---------- process (a real sequence: numbered) ---------- */
.process { list-style: none; counter-reset: step; max-width: 760px; }
.process li { counter-increment: step; position: relative; padding: 0 0 34px 72px; }
.process li::before { content: counter(step); position: absolute; left: 0; top: -2px; width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--basalt); display: grid; place-items: center; font: 800 1.2rem/1 var(--font-head); z-index: 1; }
.process li::after { content: ""; position: absolute; left: 22px; top: 48px; bottom: 2px; width: 2px; background: var(--line); }
.process li:last-child { padding-bottom: 0; }
.process li:last-child::after { display: none; }
.process h3 { margin-bottom: .25em; }
.process p { margin: 0; }

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-m); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { text-align: left; padding: 16px 20px; font-size: .98rem; vertical-align: top; }
th { background: var(--basalt); color: #fff; font-weight: 700; font-size: .92rem; }
td { border-bottom: 1px solid var(--line); color: var(--ink-soft); }
td:first-child { color: var(--ink); font-weight: 600; }
tr:last-child td { border-bottom: 0; }
.table-note { margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); margin-bottom: 10px; }
.faq details[open] { border-color: var(--basalt); }
.faq summary { cursor: pointer; font: 750 1.14rem/1.3 var(--font-head); letter-spacing: -.01em; padding: 20px 64px 20px 22px; list-style: none; position: relative; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 16px; height: 2.5px; background: var(--basalt); border-radius: 2px; transition: transform .2s ease; }
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq details > *:not(summary) { padding: 0 22px; }
.faq details > p:last-child { padding-bottom: 22px; }
.faq summary:hover { color: var(--fern-dark); }

/* ---------- CTA band ---------- */
.cta { background: var(--yellow); color: var(--basalt); padding: clamp(52px, 7vw, 88px) 0; }
.cta__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.cta h2 { color: var(--basalt); margin-bottom: .3em; font-size: clamp(2rem, 4.4vw, 3.4rem); }
.cta p { color: rgba(37,43,44,.88); font-size: 1.1rem; }
.cta__side { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta__phone { font: 800 clamp(1.9rem, 4vw, 2.7rem)/1 var(--font-head); letter-spacing: -.03em; font-stretch: 90%; color: var(--basalt); text-decoration: none; border-bottom: 3px solid var(--basalt); padding-bottom: 4px; }
.cta__phone:hover { color: var(--basalt); border-color: transparent; }
.cta .muted { color: rgba(37,43,44,.8); }
@media (max-width: 820px) { .cta__grid { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.formpage { background: var(--lichen); padding: clamp(44px, 7vw, 96px) 0; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: clamp(22px, 3.4vw, 38px); box-shadow: 0 24px 50px -30px rgba(37,43,44,.4); }
.form-card h2 { font-size: 1.5rem; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1.5px solid #b9c0b3; border-radius: var(--r-m); font: 1rem var(--font-body); background: #fff; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--fern); box-shadow: 0 0 0 4px rgba(43,106,61,.18); }
.form-card .btn { width: 100%; }
.form-fine { margin-top: 14px; font-size: .85rem; color: var(--ink-soft); }

.callout { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 14px; margin: 26px 0; }
.callout a { font: 800 clamp(1.8rem, 3.6vw, 2.5rem)/1 var(--font-head); font-stretch: 90%; letter-spacing: -.03em; color: var(--basalt); text-decoration: none; border-bottom: 3px solid var(--yellow); }
.callout a:hover { color: var(--fern-dark); }

.ticks { list-style: none; margin: 18px 0 0; }
.ticks li { position: relative; padding: 7px 0 7px 32px; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 8px; height: 15px; border-right: 3px solid var(--fern); border-bottom: 3px solid var(--fern); transform: rotate(40deg) scale(.85); transform-origin: center; }

.contact-list { list-style: none; margin: 24px 0 0; }
.contact-list li { padding: 16px 0; border-top: 1px solid rgba(37,43,44,.18); }
.contact-list li:last-child { border-bottom: 1px solid rgba(37,43,44,.18); }
.contact-list strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.contact-list a { font-weight: 700; }
.contact-list .muted { display: block; margin-top: 2px; }

/* ---------- article / legal ---------- */
.prose { max-width: 760px; margin: 0; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 2.1em 0 .5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.7em 0 .4em; }
.prose p { max-width: none; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.35em; color: var(--ink-soft); }
.prose li { margin-bottom: .5rem; padding-left: .2em; }
.prose li::marker { color: var(--fern); font-weight: 700; }
.prose .btn { margin: .4rem 0 1rem; text-decoration: none; }
.prose .btn:hover { text-decoration: none; }
.prose .btn-row { margin: .4rem 0 1.2rem; }

/* ---------- link chips (services/areas cross-links) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.chips a { display: inline-block; padding: 12px 20px; border: 1.5px solid var(--basalt); border-radius: 999px; color: var(--basalt); font-weight: 700; text-decoration: none; background: transparent; transition: background .15s ease, color .15s ease; }
.chips a:hover { background: var(--basalt); color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--basalt); color: rgba(255,255,255,.78); padding: clamp(48px, 6vw, 72px) 0 28px; }
.site-footer h4 { font-family: var(--font-head); font-size: 1.05rem; color: #fff; margin-bottom: 14px; letter-spacing: -.01em; }
.site-footer p { color: rgba(255,255,255,.78); font-size: .96rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(28px, 4vw, 48px); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.82); font-size: .95rem; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); text-decoration: underline; }
.site-footer .logo { color: #fff; margin-bottom: 16px; }
.footer-fine { font-size: .84rem !important; color: rgba(255,255,255,.58) !important; margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 44px; padding-top: 22px; font-size: .86rem; color: rgba(255,255,255,.58); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > :first-child { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* phone link — class is a stable hook for WhatConverts dynamic number insertion */
.wc-phone { font-weight: 800; }

@media print {
  .site-header, .cta, .hero__photo, .teeth { display: none; }
  body { background: #fff; }
}
