/* Mullinax Tree Service. Tokens first, then components. No framework. */
:root {
  --bark: #2b1a0e;
  --bark-2: #3d2716;
  --ink: #1f1711;
  --mute: #6d5c4d;
  --wood: #b9793b;
  --wood-deep: #8a5325;
  --sawdust: #f5ecdc;
  --sawdust-2: #eadcc3;
  --paper: #ffffff;
  --forest: #1e3b2c;
  --forest-deep: #142a1f;
  --forest-soft: #e6eee6;
  --tan-light: #e3c48f;
  --orange: var(--forest);
  --orange-deep: var(--forest-deep);
  --line: #e2d6c2;
  --star: #f2a516;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --radius: 6px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; font-family: var(--body); font-size: 18px; line-height: 1.55; color: var(--ink); background: var(--paper); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--forest-deep); }
:focus-visible { outline: 3px solid var(--tan); outline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.02; margin: 0 0 .4em; color: var(--ink); letter-spacing: .005em; }
h1 { font-size: clamp(3rem, 8.5vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.8rem); font-weight: 600; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--mute); max-width: 62ch; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--bark); color: #fff; padding: 10px 16px; z-index: 100; }
.skip:focus { left: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .55em; font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: .01em; text-decoration: none; padding: 14px 24px; min-height: 52px; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; line-height: 1; transition: background-color .15s, color .15s, border-color .15s; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-call { background: var(--orange); color: #fff; }
.btn-call:hover { background: var(--orange-deep); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--bark); border-color: #fff; }
.btn-wood { background: var(--bark); color: #fff; }
.btn-wood:hover { background: var(--bark-2); color: #fff; }
.btn-line { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-line:hover { background: var(--forest); color: #fff; }
.btn-big { font-size: 1.6rem; padding: 18px 30px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--bark); color: #fff; border-bottom: 3px solid var(--wood); }
.site-header .wrap { display: flex; align-items: center; gap: 14px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; margin-right: auto; }
.brand img { width: 64px; height: 52px; object-fit: contain; }
.brand span { font-family: var(--display); font-weight: 700; font-size: 1.55rem; line-height: 1; letter-spacing: .01em; }
.brand small { display: block; font-family: var(--body); font-weight: 500; font-size: .78rem; opacity: .8; letter-spacing: .02em; margin-top: 3px; }
.nav { display: flex; gap: 2px; align-items: center; }
.nav > a, .nav-item > a { color: #fff; text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.12rem; padding: 10px 9px; border-radius: 4px; display: inline-block; white-space: nowrap; }
.nav > a:hover, .nav-item > a:hover, .nav a[aria-current] { background: rgba(255,255,255,.1); color: #fff; }
.nav a.hot { color: var(--tan-light); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { padding-right: 4px; }
.sub-toggle { background: none; border: 0; color: #fff; width: 30px; height: 40px; padding: 0; display: grid; place-items: center; cursor: pointer; border-radius: 4px; opacity: .8; }
.sub-toggle svg { width: 16px; height: 16px; transition: transform .15s; }
.sub-toggle:hover { background: rgba(255,255,255,.1); opacity: 1; }
.nav-item.open .sub-toggle svg { transform: rotate(180deg); }
.menu { list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px; background: var(--paper); color: var(--ink); border-radius: var(--radius); border-top: 4px solid var(--wood); box-shadow: 0 14px 34px rgba(30,20,10,.28); display: none; z-index: 60; }
.menu-wide { min-width: 430px; columns: 2; column-gap: 0; }
.menu-wide li { break-inside: avoid; }
.menu li a { display: block; padding: 9px 12px; color: var(--ink); text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.1rem; border-radius: 4px; }
.menu li a:hover { background: var(--sawdust); color: var(--orange-deep); }
.menu-all { column-span: all; margin-top: 4px; padding-top: 4px; border-top: 1px solid var(--line); }
.menu-all a { color: var(--wood-deep) !important; }
.nav-item.open .menu { display: block; }
@media (min-width: 961px) { .nav-item:hover .menu, .nav-item:focus-within .menu { display: block; } }
.header-call { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 2px solid rgba(255,255,255,.5); color: #fff; border-radius: 4px; width: 48px; height: 48px; font-size: 0; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 22px; height: 2px; background: #fff; position: relative; margin: 0 auto; content: ""; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
@media (max-width: 960px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--bark-2); flex-direction: column; align-items: stretch; padding: 10px var(--gutter) 18px; border-bottom: 3px solid var(--wood); max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav.open { display: flex; }
  .nav > a, .nav-item > a { font-size: 1.45rem; padding: 12px 8px; }
  .nav > a, .nav-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-item { flex-wrap: wrap; }
  .nav-item > a { flex: 1; }
  .sub-toggle { width: 48px; height: 48px; }
  .sub-toggle svg { width: 22px; height: 22px; }
  .menu, .menu-wide { position: static; box-shadow: none; border-top: 0; border-radius: 4px; background: rgba(0,0,0,.25); color: #fff; width: 100%; min-width: 0; columns: 1; margin: 0 0 10px; }
  .menu li a { color: #fff; font-size: 1.2rem; }
  .menu li a:hover { background: rgba(255,255,255,.08); color: var(--tan-light); }
  .menu-all { border-top-color: rgba(255,255,255,.12); }
  .menu-all a { color: var(--tan-light) !important; }
  .nav-toggle { display: block; }
  .header-call .label { display: none; }
  .header-call { padding: 12px 14px; }
}

/* Hero */
.hero { position: relative; min-height: min(88vh, 760px); display: grid; align-items: end; color: #fff; background: var(--bark); isolation: isolate; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%; z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,10,4,.25) 0%, rgba(20,10,4,.35) 45%, rgba(20,10,4,.86) 100%); }
.hero .wrap { padding: clamp(80px, 12vh, 140px) 0 clamp(36px, 6vh, 64px); }
.hero h1 { color: #fff; max-width: 9ch; margin-bottom: .25em; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero .lede { color: #fff; opacity: .95; max-width: 52ch; font-size: clamp(1.15rem, 1.8vw, 1.45rem); margin-bottom: 1.4em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-actions .btn { font-size: 1.45rem; padding: 16px 26px; }
.tri { display: flex; flex-wrap: wrap; gap: 0 22px; font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: .04em; opacity: .95; margin: 0; padding: 0; list-style: none; }
.tri li + li::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--wood); margin-right: 22px; vertical-align: middle; }

/* Trust strip */
.trust { background: var(--sawdust); border-bottom: 1px solid var(--line); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust div { padding: 22px 18px 20px 0; display: flex; gap: 14px; align-items: center; }
.trust div + div { border-left: 1px solid var(--sawdust-2); padding-left: 22px; }
.trust svg { width: 34px; height: 34px; flex: none; color: var(--forest); }
.trust b { display: block; font-family: var(--display); font-weight: 700; font-size: 1.55rem; line-height: 1; color: var(--ink); }
.trust span { font-size: .95rem; color: var(--mute); }
.trust a { text-decoration: none; color: inherit; }
.stars { color: var(--star); letter-spacing: -1px; font-size: 1.1rem; }
@media (max-width: 860px) { .trust .wrap { grid-template-columns: 1fr 1fr; } .trust div:nth-child(3) { border-left: 0; padding-left: 0; } .trust div { padding: 16px 14px 16px 0; } }
@media (max-width: 480px) { .trust .wrap { grid-template-columns: 1fr; } .trust div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--sawdust-2); } }

/* Sections */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.section-sawdust { background: var(--sawdust); }
.section-bark { background: var(--bark); color: #fff; }
.section-bark h2, .section-bark h3 { color: #fff; }
.section-bark .lede { color: rgba(255,255,255,.85); }
.section-head { max-width: 70ch; margin-bottom: clamp(26px, 4vw, 44px); }
.two { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.two img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.two .copy p { max-width: 62ch; }
@media (max-width: 860px) { .two { grid-template-columns: 1fr; } .two img { aspect-ratio: 4 / 3; } }
.sign { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--forest); margin-top: 1.2em; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 32px); }
.service { display: block; color: var(--ink); border-bottom: 4px solid var(--wood); background: var(--paper); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.svc-media { display: block; overflow: hidden; }
.svc-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .35s ease; }
.service:hover .svc-media img { transform: scale(1.03); }
.service h3 { margin: 0; padding: 18px 20px 0; }
.service h3 a { text-decoration: none; color: inherit; }
.service h3 a:hover { color: var(--forest); }
.svc-toggle { display: none; }
.svc-body { padding: 6px 20px 22px; }
.svc-body p { margin: 0; color: var(--mute); font-size: 1rem; }
.service .more { display: inline-block; margin-top: 12px; font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--forest); text-decoration: none; }
@media (max-width: 900px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; gap: 10px; }
  .service { border-bottom: 0; border-radius: var(--radius); border: 1px solid var(--line); }
  .svc-head { display: grid; grid-template-columns: 76px 1fr 48px; align-items: center; gap: 12px; position: relative; padding: 8px 8px 8px 8px; }
  .svc-media { pointer-events: none; }
  .svc-media img { aspect-ratio: 1; border-radius: 4px; }
  .service h3 { padding: 0; font-size: 1.25rem; }
  .service h3 a { pointer-events: none; }
  .svc-toggle { display: grid; place-items: center; width: 48px; height: 48px; background: none; border: 0; color: var(--forest); cursor: pointer; border-radius: 4px; }
  .svc-toggle::before { content: ""; position: absolute; inset: 0; }
  .svc-toggle svg { width: 22px; height: 22px; transition: transform .2s; }
  .service.open .svc-toggle svg { transform: rotate(180deg); }
  .svc-body { display: none; padding: 0 16px 16px 16px; }
  .service.open .svc-body { display: block; }
  .service.open { border-color: var(--wood); }
}

/* Emergency band */
.emergency .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.emergency img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.emergency h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.emergency h2 em { font-style: normal; color: var(--tan-light); display: block; }
.emergency .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.4em; }
@media (max-width: 860px) { .emergency .wrap { grid-template-columns: 1fr; } .emergency img { order: -1; aspect-ratio: 16 / 10; } }

/* Work mosaic */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 10px; }
.mosaic a { display: block; overflow: hidden; border-radius: 4px; background: var(--sawdust-2); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic a:nth-child(4) { grid-row: span 2; }
@media (max-width: 700px) { .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; } .mosaic a:nth-child(4) { grid-row: span 1; } }
.center { text-align: center; }
.mt { margin-top: clamp(24px, 4vw, 40px); }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 32px); }
.review { background: var(--paper); border-left: 4px solid var(--wood); padding: 24px 26px; border-radius: 0 var(--radius) var(--radius) 0; }
.review .stars { margin-bottom: 8px; display: block; }
.review blockquote { margin: 0 0 14px; font-size: 1.05rem; }
.review cite { font-style: normal; font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.review cite small { display: block; font-family: var(--body); font-weight: 400; font-size: .9rem; color: var(--mute); }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }
.google-line { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 30px; }
.google-line b { font-family: var(--display); font-size: 1.8rem; font-weight: 700; }

/* Steps */
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.steps li { counter-increment: step; position: relative; padding-top: 58px; }
.steps li::before { content: counter(step); position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.5rem; display: grid; place-items: center; }
.steps h3 { font-size: 1.35rem; margin-bottom: .3em; }
.steps p { font-size: 1rem; color: var(--mute); margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } .steps li { padding-top: 0; padding-left: 58px; } }

/* Area */
.area { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.towns { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 18px; font-family: var(--display); font-weight: 600; font-size: 1.35rem; }
.towns li { padding: 8px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 860px) { .area { grid-template-columns: 1fr; } .towns { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-family: var(--display); font-weight: 600; font-size: 1.45rem; padding: 18px 44px 18px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: var(--wood-deep); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding: 0 0 20px; max-width: 66ch; }
.faq details > div p:last-child { margin-bottom: 0; }

/* Extras (chips, chippy) */
.extras { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 32px); }
.extra { background: var(--sawdust); border-radius: var(--radius); padding: 28px 30px; display: grid; gap: 6px; align-content: start; }
.extra h3 { margin-bottom: .2em; }
.extra p { margin-bottom: .8em; color: var(--mute); font-size: 1rem; }
@media (max-width: 700px) { .extras { grid-template-columns: 1fr; } }

/* Estimate */
.estimate .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.estimate h2 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
.estimate h2 em { font-style: normal; color: var(--forest); }
.estimate .phone-big { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3.4rem); text-decoration: none; color: var(--bark); display: inline-block; line-height: 1; margin: 8px 0 18px; }
.estimate .phone-big:hover { color: var(--orange-deep); }
.form { background: var(--paper); border: 1px solid var(--line); border-top: 5px solid var(--wood); border-radius: var(--radius); padding: 28px; display: grid; gap: 16px; }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: 1rem; }
.form input, .form textarea, .form select { font: inherit; font-size: 1.05rem; padding: 12px 14px; border: 1.5px solid #cdbfa8; border-radius: 4px; background: #fff; color: var(--ink); width: 100%; min-height: 48px; }
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--orange); outline: 3px solid rgba(30,59,44,.25); outline-offset: 0; }
.form .hp { position: absolute; left: -9999px; }
.form small { color: var(--mute); }
@media (max-width: 860px) { .estimate .wrap { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--bark); color: rgba(255,255,255,.88); padding: clamp(48px, 7vw, 80px) 0 120px; border-top: 4px solid var(--wood); }
.site-footer a { color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.site-footer h4 { color: #fff; font-size: 1.3rem; margin-bottom: .6em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer address { font-style: normal; line-height: 1.6; }
.site-footer .logo { width: 150px; margin-bottom: 14px; }
.site-footer .tag { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--tan-light); }
.site-footer .fine { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
@media (max-width: 860px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .cols { grid-template-columns: 1fr; } }
@media (min-width: 761px) { .site-footer { padding-bottom: clamp(48px, 7vw, 80px); } }

/* Mobile action bar */
.actionbar { display: none; }
@media (max-width: 760px) {
  .actionbar { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--bark); border-top: 3px solid var(--wood); padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 8px; }
  .actionbar a { display: grid; place-items: center; gap: 2px; min-height: 54px; text-decoration: none; color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.05rem; border-radius: 4px; background: rgba(255,255,255,.08); }
  .actionbar a.call { background: var(--orange); }
  .actionbar svg { width: 20px; height: 20px; }
}

/* Inner pages */
.page-head { background: var(--bark); color: #fff; padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px); border-bottom: 4px solid var(--wood); }
.page-head h1 { color: #fff; font-size: clamp(2.8rem, 6.5vw, 5rem); }
.page-head .lede { color: rgba(255,255,255,.88); max-width: 66ch; }
.page-head .btn-line { color: #fff; border-color: rgba(255,255,255,.7); }
.page-head .btn-line:hover { background: #fff; color: var(--bark); border-color: #fff; }
.town-toc { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.town-toc a { display: inline-block; padding: 8px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; text-decoration: none; color: var(--bark); font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.town-toc a:hover { border-color: var(--wood); color: var(--orange-deep); }
.county { padding-bottom: 0; }
.county:last-of-type { padding-bottom: clamp(56px, 8vw, 104px); }
.town-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 32px); }
.town { border-left: 4px solid var(--wood); padding: 4px 0 4px 22px; scroll-margin-top: 96px; }
.town h3 { margin-bottom: .35em; }
.town p { color: var(--mute); font-size: 1.02rem; margin-bottom: .6em; }
.town a { font-family: var(--display); font-weight: 600; font-size: 1.1rem; text-decoration: none; }
@media (max-width: 760px) { .town-grid { grid-template-columns: 1fr; } }

/* Google reviews carousel */
.ghead { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: flex-start; justify-content: space-between; margin-bottom: clamp(20px, 3vw, 32px); }
.ghead > div { max-width: 70ch; }
.gbadge { display: inline-flex; align-items: center; gap: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 12px 18px; text-decoration: none; color: var(--ink); flex: none; }
.gbadge .g { width: 34px; height: 34px; }
.gbadge b { font-family: var(--display); font-size: 1.7rem; font-weight: 700; margin-right: 6px; }
.gbadge small { display: block; color: var(--mute); font-size: .9rem; }
.gtrack-wrap { overflow: hidden; }
.gtrack { list-style: none; margin: 0; padding: 6px var(--gutter) 14px; display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-left: max(var(--gutter), calc((100vw - var(--wrap)) / 2)); }
.gtrack::-webkit-scrollbar { display: none; }
.gcard { flex: 0 0 min(360px, 82vw); scroll-snap-align: start; background: var(--paper); border-radius: 10px; padding: 20px 22px 18px; box-shadow: 0 1px 2px rgba(60,40,20,.08), 0 6px 18px rgba(60,40,20,.06); display: flex; flex-direction: column; gap: 8px; }
.gtop { display: flex; align-items: center; gap: 12px; }
.gtop > div { flex: 1; min-width: 0; }
.gtop b { display: block; font-weight: 600; font-size: 1.05rem; line-height: 1.2; }
.gtop small { color: var(--mute); font-size: .85rem; }
.gtop .g { width: 22px; height: 22px; flex: none; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--wood); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.15rem; flex: none; }
.gcard .stars { font-size: 1.05rem; letter-spacing: 0; }
.gcard p { margin: 0; font-size: 1rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.gfoot { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(16px, 2vw, 24px); }

/* Footer social */
.social { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 30px; }
.social .tag { margin: 0; }
.site-footer .social-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; }
.social-links a:hover { background: var(--orange); color: #fff; }
.social-links svg { width: 22px; height: 22px; }
.site-footer .fine { margin-top: 24px; }

/* Map */
.map { margin-top: clamp(28px, 4vw, 44px); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.map iframe { display: block; width: 100%; height: clamp(280px, 40vw, 440px); border: 0; }
.map-foot { display: flex; flex-wrap: wrap; gap: 8px 24px; padding: 12px 18px; font-size: .98rem; align-items: center; }
.map-foot span { color: var(--mute); margin-right: auto; }
.map-foot a { font-family: var(--display); font-weight: 600; font-size: 1.1rem; text-decoration: none; }
.section-tight .map { margin-top: 0; margin-bottom: clamp(24px, 3vw, 36px); }

/* Crew cards */
.crew { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.crew li { text-align: center; }
.crew img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.crew .ph { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius); background: var(--sawdust); display: grid; place-items: center; }
.crew .ph img { width: 90px; height: auto; aspect-ratio: auto; border-radius: 0; opacity: .5; }
.crew b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin-top: 10px; line-height: 1.1; }
.crew span { display: block; font-size: .9rem; color: var(--mute); }
.crew-foot { margin-top: 28px; font-size: 1.05rem; }
@media (max-width: 900px) { .crew { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .crew { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

/* Lower sections with photos */
.area-3 { grid-template-columns: 1fr 1.1fr .8fr; align-items: start; }
.area-photo { margin: 0; }
.area-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
figcaption { font-size: .9rem; color: var(--mute); margin-top: 8px; }
@media (max-width: 960px) { .area-3 { grid-template-columns: 1fr 1fr; } .area-photo { grid-column: 1 / -1; } .area-photo img { aspect-ratio: 16 / 9; } }
@media (max-width: 860px) { .area-3 { grid-template-columns: 1fr; } }
.faq-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq-photos { display: grid; gap: 18px; }
.faq-photos figure { margin: 0; }
.faq-photos img { width: 100%; object-fit: cover; border-radius: var(--radius); }
.faq-photos figure:nth-child(1) img { aspect-ratio: 4 / 5; }
.faq-photos figure:nth-child(2) img { aspect-ratio: 3 / 2; }
.faq-photos figure:nth-child(3) img { aspect-ratio: 1; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } .faq-photos { grid-template-columns: repeat(2, 1fr); } .faq-photos img { aspect-ratio: 1 !important; } }
@media (max-width: 520px) { .faq-photos { grid-template-columns: 1fr 1fr; } }
.extra { padding: 0 0 28px; overflow: hidden; }
.extra > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: 18px; }
.extra h3, .extra p, .extra .btn { margin-left: 30px; margin-right: 30px; }
.extra .btn { justify-self: start; }
.who { display: flex; gap: 16px; align-items: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); max-width: 480px; }
.who img { width: 84px; height: 84px; object-fit: cover; border-radius: 50%; flex: none; }
.who b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.25rem; }
.who span { font-size: .95rem; color: var(--mute); }
.strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; padding: 0 4px 4px; background: var(--bark); }
.strip a { display: block; overflow: hidden; }
.strip img { width: 100%; aspect-ratio: 1; object-fit: cover; }
@media (max-width: 760px) { .strip { grid-template-columns: repeat(3, 1fr); } }

.intro img { aspect-ratio: 4 / 4.3; }

.mosaic-8 { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; }
.mosaic-8 a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic-8 a:nth-child(4) { grid-row: span 1; }
.mosaic-8 a:nth-child(5) { grid-row: span 2; }
@media (max-width: 700px) { .mosaic-8 { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; } .mosaic-8 a:nth-child(5) { grid-row: span 1; } }
.ba-head { margin: clamp(28px, 4vw, 44px) 0 14px; }
.ba { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ba a { display: block; overflow: hidden; border-radius: 4px; }
.ba img { width: 100%; aspect-ratio: 1; object-fit: cover; }
@media (max-width: 700px) { .ba { grid-template-columns: 1fr; } }

/* ===== Inner pages (generated by gen.py) ===== */
.svc-hero { position: relative; min-height: min(64vh, 560px); display: grid; align-items: end; color: #fff; background: var(--bark); isolation: isolate; }
.svc-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.svc-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,10,4,.2) 0%, rgba(20,10,4,.35) 40%, rgba(20,10,4,.88) 100%); }
.svc-hero .wrap { padding: clamp(70px, 10vh, 120px) 0 clamp(32px, 5vh, 56px); }
.svc-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 16ch; margin-bottom: .3em; }
.svc-hero .lede { color: #fff; opacity: .95; max-width: 56ch; margin-bottom: 1.2em; }
.two-flip .copy { order: 2; }
.two .copy h2 { margin-bottom: .5em; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.grid4 a { display: block; overflow: hidden; border-radius: 4px; }
.grid4 img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.ba-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .grid4, .ba-4 { grid-template-columns: 1fr 1fr; } }
.hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 32px); }
.hub-tile { display: block; text-decoration: none; color: var(--ink); background: var(--paper); border-bottom: 4px solid var(--wood); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.hub-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hub-tile div { padding: 18px 20px 22px; }
.hub-tile h3 { margin-bottom: .3em; }
.hub-tile p { margin: 0; color: var(--mute); font-size: 1rem; }
.hub-tile:hover h3 { color: var(--forest); }
@media (max-width: 900px) { .hub { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hub { grid-template-columns: 1fr; } }
.related h3 { margin-bottom: .4em; }
.related ul { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.related li a { display: inline-block; padding: 8px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--bark); }
.related li a:hover { border-color: var(--wood); color: var(--forest); }
.related p { color: var(--mute); font-size: 1rem; margin: 0; }
.cta-band .hero-actions { margin-top: 10px; margin-bottom: 14px; }
.cta-band .phone-big { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3.4rem); text-decoration: none; color: var(--bark); line-height: 1; }
.cta-band .phone-big:hover { color: var(--forest); }
.mission { max-width: 72ch; font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.5; font-style: italic; }
.memory { border-left: 4px solid var(--wood); padding-left: 20px; }
.memory h3 { margin-bottom: .2em; }
.memory p { color: var(--mute); margin: 0; }
.video { position: relative; aspect-ratio: 16 / 9; background: var(--bark); border-radius: var(--radius); overflow: hidden; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery .gitem { display: block; overflow: hidden; border-radius: 4px; background: var(--sawdust-2); }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .3s; }
.gallery .gitem:hover img { transform: scale(1.03); }
.gallery-ba { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .gallery, .gallery-ba { grid-template-columns: 1fr 1fr; gap: 6px; } }
.lightbox { border: 0; padding: 0; background: transparent; max-width: 96vw; max-height: 96vh; }
.lightbox::backdrop { background: rgba(20, 12, 6, .92); }
.lightbox img { max-width: 96vw; max-height: 92vh; width: auto; height: auto; border-radius: 4px; }
.lb-close, .lb-prev, .lb-next { position: fixed; color: #fff; text-decoration: none; font-size: 2.6rem; line-height: 1; background: rgba(0,0,0,.35); border: 0; border-radius: 50%; width: 52px; height: 52px; display: grid; place-items: center; cursor: pointer; }
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.ggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ggrid .gcard p { -webkit-line-clamp: unset; display: block; }
@media (max-width: 900px) { .ggrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ggrid { grid-template-columns: 1fr; } }
.reviews-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }
.post-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; max-width: 820px; }
.post-list li { border-bottom: 1px solid var(--line); }
.post-list a { display: block; padding: 26px 0; text-decoration: none; color: var(--ink); }
.post-list time { font-size: .9rem; color: var(--mute); }
.post-list h3 { margin: 4px 0 6px; }
.post-list a:hover h3 { color: var(--forest); }
.post-list p { margin: 0; color: var(--mute); font-size: 1rem; max-width: 70ch; }
.post .wrap { max-width: 820px; }
.post h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.crumbs { font-size: .95rem; margin-bottom: 8px; }
.crumbs a { text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.meta { color: var(--mute); margin-bottom: 28px; }
.prose { font-size: 1.1rem; line-height: 1.65; }
.prose p { margin-bottom: 1.1em; max-width: 68ch; }
.prose h2, .prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.1em; }
.prose img { display: none; }
.post-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.pn { text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--bark); max-width: 48%; }
.pn small { display: block; font-family: var(--body); font-weight: 400; color: var(--mute); font-size: .85rem; }
.pn-next { margin-left: auto; text-align: right; }
.contact-card { font-style: normal; line-height: 1.7; margin-top: 20px; padding: 20px 24px; background: var(--sawdust); border-radius: var(--radius); display: inline-block; }
.plain-list { padding-left: 1.2em; margin-bottom: 1em; font-size: 1.1rem; }
.page-head .phone-big { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; text-decoration: none; line-height: 1; }
.page-head .phone-big:hover { color: var(--tan-light); }
