:root {
  --paper: #eef3ef;
  --cream: #f7faf8;
  --white: #ffffff;
  --ink: #12241c;
  --muted: #5c6d64;
  --line: #d5e2da;
  --forest: #12241c;
  --forest-2: #1c3a2e;
  --brass: #1f8a6a;
  --brass-2: #b7f0dc;
  --sage: #d7efe4;
  --open: #1f8a6a;
  --closed: #9a3d2c;
  --header: 72px;
  --max: 1120px;
  --gutter: 24px;
  --shadow: 0 18px 40px rgba(18, 36, 28, 0.12);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--forest); }
a:hover { color: #0c2622; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: var(--white); padding: 8px 12px; z-index: 20; }

.wrap { width: min(var(--max), 100%); margin: 0 auto; padding-inline: var(--gutter); }

.site-notice {
  background: var(--forest);
  color: var(--sage);
  font-size: 0.92rem;
  padding: 10px 0;
  text-align: center;
}

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: var(--header);
}
.header-inner {
  display: flex; align-items: center; gap: 18px;
  min-height: var(--header);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: inherit; text-decoration: none; margin-right: auto;
}
.brand strong { display: block; font-family: var(--serif); font-size: 1.15rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 0.75rem; letter-spacing: 0.04em; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px; background: var(--ink);
  box-shadow: inset 0 0 0 2px var(--brass-2);
  position: relative; flex-shrink: 0;
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; background: var(--brass-2);
}
.brand-mark::before { width: 2px; height: 14px; left: 13px; top: 7px; }
.brand-mark::after { width: 14px; height: 2px; left: 7px; top: 13px; }

.nav { display: flex; gap: 18px; align-items: center; }
.nav a {
  color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.95rem;
}
.nav a:hover, .nav a.is-active { color: var(--forest); }
.header-aside { display: flex; align-items: center; gap: 10px; }
.nav-extra { display: none; }

.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 11px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: 0.72rem; font-family: var(--mono);
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
}
.live-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--closed); box-shadow: 0 0 0 4px rgba(154, 61, 44, 0.12);
}
.live-pill[data-state="open"] { border-color: rgba(44, 122, 58, 0.3); }
.live-pill[data-state="open"] .dot {
  background: var(--open); box-shadow: 0 0 0 4px rgba(44, 122, 58, 0.14);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 16px; border-radius: 999px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  font: inherit; font-weight: 600; font-size: 0.95rem;
}
.btn-brass { background: var(--brass); color: var(--forest); }
.btn-brass:hover { background: var(--brass-2); color: var(--forest); }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-2); color: var(--cream); }
.btn-ghost {
  background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }

.nav-toggle {
  display: none; flex-shrink: 0; width: 44px; height: 44px;
  border: 1px solid var(--line); background: var(--white); border-radius: 12px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--forest);
  position: relative; margin: 0 auto;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative; min-height: clamp(620px, calc(100svh - var(--header)), 860px);
  color: var(--white); isolation: isolate; display: grid; align-items: end;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(10,24,18,0.88) 0%, rgba(10,24,18,0.55) 36%, rgba(10,24,18,0.08) 68%);
}
.hero-inner {
  width: min(var(--max), 100%); margin: 0 auto 72px;
  padding-inline: var(--gutter);
}
.hero-copy { max-width: 640px; }
.hero-copy p { color: rgba(255,253,248,0.88); }
.hero-kicker { display: inline-flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.chip {
  padding: 5px 10px; border-radius: 999px;
  background: rgba(183, 240, 220, 0.16); border: 1px solid rgba(183, 240, 220, 0.55);
  color: #e7fff6; font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.ticket {
  background: var(--paper); color: var(--ink); border-radius: 18px;
  padding: 20px 20px 16px; box-shadow: var(--shadow);
}
.eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 8px;
}
.today-list { list-style: none; margin: 0; padding: 0; }
.today-list li {
  display: grid; gap: 2px; padding: 12px 0; border-top: 1px dashed var(--line);
}
.today-list span {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.today-list strong { font-size: 1.05rem; }
.today-list small { color: var(--muted); }

.ticker {
  background: var(--forest); color: var(--sage); overflow: hidden;
  border-block: 1px solid rgba(216,228,168,0.18);
}
.ticker-track {
  display: flex; gap: 36px; width: max-content;
  padding: 14px 0; animation: ticker 42s linear infinite;
  font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 88px 0; }
.section-tint { background: #efe8dc; }
.section-paper { background: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.lead-ink { color: var(--muted); font-size: 1.05rem; }

.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.split-start { align-items: start; }
.prose { color: var(--ink); }
blockquote {
  margin: 22px 0; padding-left: 18px; border-left: 3px solid var(--brass);
  font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--forest);
}
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.facts strong { display: block; font-family: var(--serif); font-size: 1.15rem; }
.facts span { color: var(--muted); font-size: 0.92rem; }
.photo { margin: 0; }
.photo img { width: 100%; height: 520px; object-fit: cover; border-radius: 20px; }
.photo-sm img { height: 280px; }
.photo figcaption, .person figure figcaption {
  margin-top: 8px; color: var(--muted); font-size: 0.85rem;
}

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px;
}
.svc-num { font-family: var(--mono); font-size: 0.75rem; color: var(--brass); letter-spacing: 0.08em; }
.svc p { color: var(--muted); margin: 0; font-size: 0.98rem; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.person {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
.person img { width: 100%; height: 420px; object-fit: cover; object-position: top; }
.person > div { padding: 22px; }
.work-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px;
}
.work-strip .photo img { height: 320px; }

.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.hours-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 0.95rem; }
.hours-table th, .hours-table td {
  text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top;
}
.hours-table thead th { color: var(--muted); font-weight: 500; font-size: 0.8rem; }
.hours-table .is-today { background: rgba(196, 120, 58, 0.12); }
.hours-table .is-today th { font-weight: 700; }
.exceptions { margin-top: 18px; }
.exceptions li { padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.hours-note { margin-top: 16px; font-size: 0.92rem; color: var(--muted); }
.map {
  width: 100%; height: 340px; border: 0; border-radius: 20px; background: var(--line);
}
.map-cap { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }
.visit-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

.contact-meta { margin: 22px 0; }
.contact-meta li { display: grid; grid-template-columns: 90px 1fr; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.contact-meta span { color: var(--muted); font-size: 0.85rem; }
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px;
}
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font: inherit; font-weight: 400; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--forest);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hint { color: var(--muted); font-size: 0.85rem; margin: 0; }
.form-note { padding: 10px 12px; border-radius: 10px; font-size: 0.92rem; }
.form-note[data-state="ok"] { background: rgba(44,122,58,.1); color: var(--open); }
.form-note[data-state="error"] { background: rgba(154,61,44,.1); color: var(--closed); }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.legal { max-width: 720px; }
.legal-page { padding-top: 56px; }
.legal-body { line-height: 1.7; }

.site-footer {
  background: var(--forest); color: rgba(236,246,240,.84); padding: 56px 0 28px;
}
.site-footer a { color: var(--brass); }
.site-footer a:hover { color: var(--brass-2); }
.brand-plain { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); margin-bottom: 8px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid .eyebrow { color: var(--brass); }
.footer-grid li { margin: 6px 0; }
.footer-grid a { text-decoration: none; }
.fine { margin-top: 16px; font-size: 0.85rem; color: rgba(236,246,240,.55); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.85rem; color: rgba(236,246,240,.55);
}

@media (max-width: 980px) {
  .hero-inner, .split, .svc-grid, .team-grid, .visit-grid, .footer-grid, .facts, .work-strip { grid-template-columns: 1fr; }
  .photo img, .person img { height: 360px; }
  .nav, .header-aside .btn, .header-aside .live-pill { display: none; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 12px 24px 20px; gap: 4px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 10px 0; }
  .nav.is-open .nav-extra { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
  .nav-extra .live-pill { display: inline-flex; width: fit-content; }
  .nav-extra .btn { display: inline-flex; }
  .hero-inner { margin-bottom: 36px; }
  .hero-media img { object-position: 70% 20%; }
  .hero::after {
    background: linear-gradient(180deg, rgba(10,24,18,0.08) 0%, rgba(10,24,18,0.35) 42%, rgba(8,20,16,0.92) 100%);
  }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}
