/* High Corn Mill — shared styles */

/* Fonts are served from this origin, latin subset only. Nothing is fetched
   from a font CDN, so there is no third party in the critical path. */
@font-face {
  font-family: 'Marcellus'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/marcellus-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}

:root {
  /* Green and gold are sampled straight from the logo artwork so the nav mark
     and the page never disagree: #016831 wordmark, #c7a52e wheel. */
  --green: #016831;
  --green-dark: #015327;
  --green-deep: #013d1f;
  --gold: #c7a52e;
  --gold-dark: #a88820;
  /* Logo gold darkened until it clears 4.5:1 on white — for small accent text */
  --gold-deep: #8a6d15;
  --cream: #faf8f2;
  --cream-deep: #f1ece0;
  --ink: #1f2620;
  --muted: #5b6459;
  --line: #e2ded3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.02rem;
}
h1, h2, h3, h4 { font-family: 'Marcellus', serif; line-height: 1.08; font-weight: 600; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* Gold wave flourish */
.wave { display: block; width: 110px; height: 14px; margin: 18px 0 0; }
.wave path { stroke: var(--gold); stroke-width: 3.6; fill: none; stroke-linecap: round; }

/* ===== Top utility bar ===== */
.topbar {
  background: #fff; color: var(--muted); font-size: 1.02rem;
  border-bottom: 2px solid var(--green);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; justify-content: flex-end; gap: 38px;
}
.topbar a {
  color: var(--muted); text-decoration: none;
  font-family: 'Marcellus', serif; font-weight: 400;
  transition: color .2s ease;
}
.topbar a:hover { color: var(--green); }
.topbar .socials { display: flex; gap: 20px; align-items: center; margin-left: 44px; }
.topbar .socials svg { width: 21px; height: 21px; fill: var(--green); display: block; }
.topbar .socials a:hover svg { fill: var(--gold-dark); }

.topbar-inner, .nav-inner { position: relative; }

/* ===== Main nav ===== */
.nav {
  background: #fff; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(35, 40, 31, .1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; gap: 38px;
}
.nav-logo { margin-right: auto; }
.nav-logo img { height: 68px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-family: 'Marcellus', serif; font-weight: 400;
  font-size: 1.04rem; letter-spacing: .045em; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
/* Burger is the small-screen nav only — the inline links cover desktop */
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px 0 6px 4px; }
.nav-burger span {
  display: block; width: 34px; height: 4.5px; background: var(--green);
  margin: 6px 0; border-radius: 3px; transition: transform .25s ease, opacity .25s ease;
}
.nav-burger:hover span { background: var(--green-dark); }
.nav-burger.open span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

/* Dropdown panel (burger menu) */
.nav-panel {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; box-shadow: 0 22px 34px rgba(35, 40, 31, .16);
  border-bottom: 3px solid var(--gold);
}
.nav-panel.open { display: block; }
.nav-panel-inner {
  max-width: 1200px; margin: 0 auto; padding: 34px 28px 42px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px;
}
.panel-pages { display: grid; gap: 14px; align-content: start; }
.panel-pages a {
  font-family: 'Marcellus', serif; font-size: 1.65rem; font-weight: 400;
  color: var(--green); text-decoration: none;
}
.panel-pages a:hover { color: var(--gold-deep); }
.panel-extra {
  display: grid; gap: 11px; align-content: start;
  border-left: 1px solid var(--line); padding-left: 40px;
}
.panel-extra h5 {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-family: 'Poppins', sans-serif; margin-bottom: 4px;
}
.panel-extra a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem; }
.panel-extra a:hover { color: var(--green); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: calc(100vh - 160px); padding: 0;
  display: flex; align-items: center;
  background: var(--green-deep) url('../images/hero-poster-1200.webp') center/cover no-repeat;
}
/* Two passes: a left wash so the copy always has something dark behind it
   whatever frame the film is on, plus a gentle overall knock-back */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(95deg, rgba(20, 30, 12, .82) 0%, rgba(20, 30, 12, .55) 38%, rgba(20, 30, 12, .12) 68%),
    rgba(20, 30, 12, .22);
}
.hero-media-stack { position: absolute; inset: 0; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 28px;
  display: grid; grid-template-columns: 1.32fr .68fr; gap: 44px; align-items: center;
}
.hero-copy { max-width: 640px; }
.hero .kicker { color: var(--gold); text-shadow: 0 1px 12px rgba(0, 0, 0, .7); }
.hero h1 {
  color: #fff; font-size: clamp(2.3rem, 4.3vw, 3.5rem); font-weight: 400;
  line-height: 1.14; text-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}
.hero-sub {
  color: rgba(255, 255, 255, .93); margin-top: 20px; font-size: 1.1rem;
  max-width: 470px; text-shadow: 0 1px 14px rgba(0, 0, 0, .65);
}
.hero .btn-row { flex-wrap: nowrap; }
.hero .btn-row { margin-top: 32px; }

/* Watermark sits right of the copy */
.hero-mark { position: relative; display: grid; place-items: center; }
.hero-mark .badge {
  width: 100%; max-width: 380px; height: auto; opacity: .62;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .25));
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: #fff; font-size: 1.5rem; text-decoration: none; opacity: .85;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ===== Marquee ===== */
.marquee { background: var(--green); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee-track span {
  color: rgba(255, 255, 255, .92); font-size: .82rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; padding-right: 26px;
}
.marquee-track span::after { content: "✦"; color: var(--gold); padding-left: 26px; letter-spacing: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Buttons ===== */
.btn {
  display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: .88rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 999px; text-decoration: none; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn::after { content: "→"; display: inline-block; margin-left: 12px; transition: transform .2s ease; }
.btn:hover::after { transform: translateX(5px); }
/* Green primary, logo gold on hover. Text flips to deep green on the gold
   because white on gold is nowhere near enough contrast. */
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--gold); color: var(--green-deep); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--green); }
.btn-outline-green { border: 2px solid var(--green); color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Sections ===== */
section { padding: 100px 0; }
.kicker {
  color: var(--gold-deep); font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; font-size: .8rem; margin-bottom: 14px;
}
.title { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: 22px; font-weight: 700; }
.title .thin {
  display: block; font-weight: 400; font-style: italic;
  font-size: .5em; color: var(--gold-deep); margin-bottom: 8px;
}

/* Arched image — Saratoga signature */
/* Photo frames all share one rounded-corner radius — no arches */

/* Welcome */
.welcome { background: #fff; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.welcome-grid .copy > p { color: var(--muted); margin-bottom: 22px; max-width: 34em; }
.welcome-grid .copy > p.lead { color: var(--ink); font-size: 1.16rem; font-weight: 500; }
.welcome-grid .btn { margin-top: 6px; }
.map-fig { background: var(--cream); border-radius: 20px; padding: 30px 22px; }
.map-fig img { width: 100%; height: auto; }
.stats { display: flex; gap: 44px; margin: 34px 0 36px; flex-wrap: wrap; }
.stat b { font-family: 'Marcellus', serif; font-size: 2.3rem; font-weight: 700; color: var(--green); display: block; line-height: 1.1; }
.stat span { font-size: .8rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

/* Tiles */
.tiles { background: #fff; padding-top: 0; }
.tiles-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 32px;
}
.tiles-head .title { margin-bottom: 0; }
.tiles-head .wave { margin-top: 14px; }
.tile-arrows { display: none; }
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center; text-decoration: none;
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 14, .05) 35%, rgba(23, 33, 14, .72));
  transition: background .3s ease;
}
.tile span {
  position: relative; z-index: 2; color: #fff; font-family: 'Marcellus', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; letter-spacing: .03em;
  text-align: center; padding: 0 16px 26px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}
.tile span::after {
  content: "→"; display: block; font-family: 'Poppins', sans-serif; font-size: .55em;
  width: 40px; height: 40px; line-height: 40px; margin: 12px auto 0;
  border: 1.5px solid rgba(255, 255, 255, .8); border-radius: 50%;
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.tile:hover span::after { opacity: 1; transform: translateY(0); }
.tile:hover img { transform: scale(1.07); }
.tile:hover::after { background: linear-gradient(180deg, rgba(46, 100, 23, .15) 30%, rgba(28, 63, 11, .8)); }

/* Things to do */
.things { background: var(--cream); }
.things-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 80px; align-items: center; }
.things-grid .copy p { color: var(--muted); margin-bottom: 22px; max-width: 36em; }
.things-grid .btn { margin-top: 8px; }
.things-art { position: relative; padding: 30px 30px 0 0; }
.things-art .photo img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; border-radius: 16px; box-shadow: 0 24px 60px rgba(35, 40, 31, .2); }
.things-art .badge {
  position: absolute; top: 0; right: 0; width: 168px; height: auto;
  transform: rotate(9deg); z-index: 2;
}

/* Green panels */
.panels { background: var(--green); color: #fff; }
.panels-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.panel-rows h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; margin-bottom: 8px; }
.panel-rows h2 + p { color: rgba(255, 255, 255, .85); margin-bottom: 26px; }
.panel-row {
  display: grid; grid-template-columns: 138px 1fr; gap: 24px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.panel-row:last-child { border-bottom: 0; }
.panel-row img { width: 138px; height: 104px; object-fit: cover; border-radius: 12px; }
.panel-row h3 { font-size: 1.45rem; margin-bottom: 5px; }
.panel-row p { color: rgba(255, 255, 255, .88); font-size: .97rem; margin-bottom: 8px; }
.panel-row a { color: var(--gold); font-weight: 600; font-size: .92rem; text-decoration: none; }
.panel-row a:hover { text-decoration: underline; text-underline-offset: 4px; }
.bee-panel { text-align: center; }
.bee-panel .bee-photo {
  width: min(340px, 80%); aspect-ratio: 4 / 4.2; object-fit: cover; margin: 0 auto 30px;
  border-radius: 16px; box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
.bee-panel h3 { font-family: 'Marcellus', serif; font-size: 2rem; font-weight: 700; margin-bottom: 14px; }
.bee-panel p { color: rgba(255, 255, 255, .9); margin-bottom: 28px; max-width: 30em; margin-left: auto; margin-right: auto; }

/* Social strip */
.social { background: #fff; }
.social-head { display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.social-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--green);
  font-style: italic; font-weight: 600;
}
.social-head p { color: var(--muted); padding-bottom: 6px; }
.social-head .handle {
  margin-left: auto; display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 600; text-decoration: none; padding-bottom: 6px;
}
.social-head .handle svg { width: 26px; height: 26px; color: var(--green); }
.social-head .handle:hover { color: var(--green); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: end; }
.social-grid img {
  width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.social-grid img:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(35, 40, 31, .18); }

/* ===== Inner page heroes =====
   Six treatments, one per page, so they can be compared against each other.
   All share the same rules: light ground, ink type, and the photograph sitting
   beside the words rather than underneath them. */

.phero { position: relative; overflow: hidden; }
.phero-grid {
  display: grid; align-items: center; gap: 56px;
  min-height: 460px;
}
/* Copy column lines up with the 1200px wrap even when the art bleeds past it */
.phero-copy {
  padding: 74px 28px;
  padding-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
}
.phero-copy .kicker { color: var(--gold-deep); }
.phero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem); color: var(--ink);
  letter-spacing: -.005em;
}
.phero-lede { color: var(--muted); margin-top: 18px; font-size: 1.1rem; max-width: 34em; }
.phero .btn-row { margin-top: 30px; }
.phero .wave { margin: 16px 0 0; }
.phero-art img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* A — photo bleeding off the right edge, copy on cream (visit) */
.phero-right { background: var(--cream); }
.phero-right .phero-grid { grid-template-columns: 1fr 1.02fr; gap: 0; }
.phero-right .phero-art { align-self: stretch; min-height: 460px; }

/* B — mirrored, photo off the left edge, copy on white (stay) */
.phero-left { background: #fff; }
.phero-left .phero-grid { grid-template-columns: 1.02fr 1fr; gap: 0; }
.phero-left .phero-art { align-self: stretch; min-height: 460px; order: -1; }
.phero-left .phero-copy {
  padding-left: 28px;
  padding-right: max(28px, calc((100vw - 1200px) / 2 + 28px));
}

/* C — photo band with a white card lapping over it (shop) */
.phero-band { background: var(--cream); padding-bottom: 62px; }
.phero-band .band-photo { height: clamp(240px, 32vw, 400px); }
.phero-band .band-photo img { width: 100%; height: 100%; object-fit: cover; }
.phero-band .band-card { max-width: 1200px; margin: -96px auto 0; padding: 0 28px; position: relative; }
.phero-band .band-card > div {
  background: #fff; border-radius: 22px; padding: 46px 52px; max-width: 800px;
  box-shadow: 0 28px 64px rgba(35, 40, 31, .17);
}

/* D — photo inside an offset gold rule (about) */
.phero-frame { background: var(--cream); }
.phero-frame .phero-grid {
  grid-template-columns: 1fr .92fr; max-width: 1200px; margin: 0 auto; padding: 0 28px; gap: 64px;
}
.phero-frame .phero-copy { padding: 78px 0; }
.phero-frame .phero-art { position: relative; padding: 20px 20px 0 0; }
.phero-frame .phero-art::before {
  content: ""; position: absolute; inset: 0 0 20px 20px;
  border: 2px solid var(--gold); border-radius: 18px;
}
.phero-frame .phero-art img {
  position: relative; border-radius: 18px; aspect-ratio: 4 / 3.2;
  box-shadow: 0 22px 50px rgba(35, 40, 31, .16);
}

/* E — no photograph, just type on cream, for the page with no pictures yet */
.phero-type { background: var(--cream); text-align: center; }
.phero-type .phero-grid {
  grid-template-columns: 1fr; justify-items: center; min-height: 400px;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.phero-type .phero-copy { padding: 78px 0; max-width: 40em; }
.phero-type h1 { font-size: clamp(2.6rem, 5.6vw, 4.1rem); }
.phero-type .phero-lede { margin-left: auto; margin-right: auto; }
.phero-type .wave { margin: 16px auto 0; }
.phero-type .btn-row { justify-content: center; }
.phero-type::after {
  content: ""; position: absolute; right: -70px; bottom: -70px;
  width: 300px; height: 310px; opacity: .09; pointer-events: none;
  background: url('../images/badge-340.webp') center/contain no-repeat;
}

/* F — rounded photo right, with the details inline under the copy (contact) */
.phero-inline { background: #fff; }
.phero-inline .phero-grid {
  grid-template-columns: 1fr .88fr; max-width: 1200px; margin: 0 auto; padding: 0 28px; gap: 58px;
}
.phero-inline .phero-copy { padding: 74px 0; }
.phero-inline .phero-art img {
  border-radius: 20px; aspect-ratio: 4 / 3.4;
  box-shadow: 0 24px 56px rgba(35, 40, 31, .18);
}
.phero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.phero-facts a, .phero-facts span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: .92rem; font-weight: 600;
  color: var(--ink); text-decoration: none; transition: border-color .2s ease, color .2s ease;
}
.phero-facts a:hover { border-color: var(--green); color: var(--green); }

/* Breadcrumb — one tap back to the section above */
.crumbs { font-size: .85rem; color: var(--muted); padding: 16px 0 0; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.crumbs span { padding: 0 8px; opacity: .55; }
.crumbs b { font-weight: 600; color: var(--ink); }

/* ===== Generic image + copy split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.narrow-art { grid-template-columns: 1.1fr .9fr; }
.split.flip .split-art { order: 2; }
.split-copy p { color: var(--muted); margin-bottom: 20px; max-width: 36em; }
.split-copy p.lead { color: var(--ink); font-size: 1.15rem; font-weight: 500; }
.split-copy .btn-row { margin-top: 30px; }
.split-art img { width: 100%; border-radius: 16px; box-shadow: 0 24px 60px rgba(35, 40, 31, .18); }
.split-art figcaption { color: var(--muted); font-size: .87rem; margin-top: 12px; text-align: center; }

/* ===== Info cards (address, hours, parking, prices) ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cream-bg .card, .card.on-cream { background: #fff; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--green); }
.card p { color: var(--muted); font-size: .97rem; }
.card p + p { margin-top: 12px; }
/* :not(.btn) matters — .card a is more specific than .btn-green, so without it
   a filled button inside a card renders green text on a green pill. */
.card a:not(.btn) { color: var(--green); font-weight: 600; text-decoration: none; }
.card a:not(.btn):hover { text-decoration: underline; text-underline-offset: 3px; }
.card .card-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--cream-deep);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 1.35rem;
}
a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(35, 40, 31, .13); }

/* ===== Checklist ===== */
.checks { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; margin: 8px 0 0; }
.checks li { position: relative; padding-left: 30px; color: var(--muted); font-size: .98rem; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--green); font-weight: 700;
}
.checks.one-col { grid-template-columns: 1fr; }

/* ===== Notice strip ===== */
.notice {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--gold);
  border-radius: 14px; padding: 22px 26px; margin-top: 30px;
}
.notice .n-mark { font-size: 1.3rem; line-height: 1.3; }
.notice h4 { font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; }
.notice p { color: var(--muted); font-size: .95rem; }

/* ===== Business directory ===== */
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dir-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.dir-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(35, 40, 31, .15); }
.dir-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.dir-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.dir-body h3 { font-size: 1.35rem; margin-bottom: 4px; }
.dir-tag {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 12px;
}
.dir-body p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.dir-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.dir-links a {
  font-size: .84rem; font-weight: 600; text-decoration: none;
  color: var(--green); border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 15px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.dir-links a:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ===== Timeline ===== */
.timeline { list-style: none; position: relative; margin-top: 10px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 34px 44px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold);
}
.timeline b {
  display: block; font-family: 'Marcellus', serif; font-size: 1.55rem;
  color: var(--green); line-height: 1.2; margin-bottom: 4px;
}
.timeline p { color: var(--muted); font-size: .97rem; }

/* ===== Gallery strip ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery figure { margin: 0; }
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery img:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(35, 40, 31, .18); }
.gallery figcaption { color: var(--muted); font-size: .87rem; margin-top: 10px; }

/* ===== Pricing ===== */
.price-card { text-align: center; }
.price-card .amount {
  display: block; font-family: 'Marcellus', serif; font-size: 3rem;
  color: var(--green); line-height: 1.1; margin: 4px 0 2px;
}
.price-card .per { display: block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.price-card .btn { margin-top: 22px; }

/* ===== Form ===== */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.field input, .field select, .field textarea {
  font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(1, 104, 49, .13);
}
.form-note { color: var(--muted); font-size: .87rem; margin-top: 16px; }

/* ===== Explore more (bottom of every inner page) ===== */
.explore { background: var(--cream); }
.explore-head { text-align: center; margin-bottom: 38px; }
.explore-head .wave { margin: 16px auto 0; }
.explore-sub { color: var(--muted); margin-top: 14px; }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.explore-card {
  position: relative; aspect-ratio: 4 / 3.4; border-radius: 16px; overflow: hidden;
  display: flex; align-items: flex-end; text-decoration: none;
}
.explore-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.explore-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 14, .04) 30%, rgba(23, 33, 14, .8));
  transition: background .3s ease;
}
.explore-card span {
  position: relative; z-index: 2; color: #fff; font-family: 'Marcellus', serif;
  font-size: 1.35rem; padding: 0 20px 20px; text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}
.explore-card span small { display: block; font-family: 'Poppins', sans-serif; font-size: .78rem; opacity: .88; margin-top: 4px; }
.explore-card:hover img { transform: scale(1.07); }
.explore-card:hover::after { background: linear-gradient(180deg, rgba(1, 104, 49, .18) 25%, rgba(1, 61, 31, .85)); }

/* ===== Call to action band ===== */
.cta-band { background: var(--green); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .9); max-width: 40em; margin: 0 auto 30px; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-outline { border-color: rgba(255, 255, 255, .85); }

.cream-bg { background: var(--cream); }
.white-bg { background: #fff; }
.section-head { max-width: 46em; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin-top: 6px; }

/* ===== Footer ===== */
.footer { background: #fff; color: var(--ink); padding: 90px 0 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 50px; align-items: end; padding-bottom: 56px; }
.footer .discover {
  font-family: 'Marcellus', serif; font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05; margin-bottom: 34px; color: var(--green);
}
.footer .discover .thin {
  display: block; font-weight: 400; font-style: italic;
  font-size: .4em; color: var(--gold-dark); margin-bottom: 10px;
}
/* Inner pages put the address above the wordmark; the tight display line-height
   lets ascenders collide with it, so give it clearance when it follows content */
address + .discover { margin-top: 30px; }
.footer address { font-style: normal; color: var(--muted); line-height: 1.9; }
.footer address a { color: var(--green); text-decoration: none; }
.footer address a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-right { text-align: right; display: grid; gap: 20px; justify-items: end; }
.footer-right .badge { width: 150px; height: auto; }
.footer-right h4 { font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-socials a:hover { background: var(--gold); color: var(--green-deep); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 18px 0;
  font-size: .85rem; color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* Coming soon block */
.soon { text-align: center; background: var(--cream); }
.soon .badge { width: 140px; margin: 0 auto 26px; }
.soon h2 { font-size: 2.1rem; margin-bottom: 14px; }
.soon p { color: var(--muted); max-width: 34em; margin: 0 auto 30px; }

/* Marcellus carries one weight — keep display type at its natural 400 */
h1, h2, h3, h4, .stat b, .footer .discover, .tile span, .tiles-label, .social-head h2, .bee-panel h3 { font-weight: 400; }

/* ===== Responsive ===== */
@media (max-width: 1050px) {
  .dir-grid, .card-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 46px; }
}
@media (max-width: 920px) {
  .topbar-inner { gap: 18px; font-size: .9rem; padding: 10px 20px; overflow-x: auto; white-space: nowrap; justify-content: flex-start; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-inner { padding: 12px 20px; }
  .nav-logo img { height: 46px; }
  .nav-panel-inner { grid-template-columns: 1fr; gap: 30px; padding: 26px 28px 34px; }
  .panel-extra { border-left: 0; padding-left: 0; }
  /* Stacks to badge-over-copy; the side wash can't carry full-width text, so the
     scrim goes bottom-heavy instead */
  /* Phones get the small poster frame, and site.js never gives them the film */
  .hero { min-height: auto; padding: 42px 0 50px; background-image: url('../images/hero-poster-760.webp'); }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 30, 12, .46) 0%, rgba(20, 30, 12, .28) 28%, rgba(20, 30, 12, .8) 100%),
      rgba(20, 30, 12, .2);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .hero-copy { max-width: none; }
  .hero-mark { order: -1; }
  .hero-mark .badge { max-width: 210px; opacity: .58; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-sub { font-size: 1rem; margin-top: 16px; }
  .hero .btn-row { margin-top: 26px; flex-wrap: wrap; }
  .hero-play { width: 62px; height: 62px; font-size: 1.15rem; padding-left: 5px; }
  .welcome-grid, .things-grid, .panels-grid { grid-template-columns: 1fr; gap: 46px; }
  .things-art { padding: 26px 12px 0 0; }
  .things-art .badge { width: 120px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .social-grid { grid-template-columns: 1fr; gap: 18px; }
  .social-grid img { aspect-ratio: 4 / 3; }
  .social-head .handle { margin-left: 0; }
  .stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-right { text-align: left; justify-items: start; }
  section { padding: 64px 0; }
  /* Every hero variant collapses to picture-over-words on a phone */
  .phero-grid { grid-template-columns: 1fr !important; gap: 0; min-height: 0; }
  .phero-copy { padding: 38px 20px 46px !important; }
  .phero-art { order: -1 !important; min-height: 0 !important; }
  .phero-art img { aspect-ratio: 4 / 2.9 !important; border-radius: 0 !important; box-shadow: none !important; }
  .phero-frame .phero-grid, .phero-inline .phero-grid, .phero-type .phero-grid { padding: 0; gap: 0; }
  .phero-frame .phero-art { padding: 0; }
  .phero-frame .phero-art::before { display: none; }
  .phero-band .band-photo { height: clamp(190px, 44vw, 260px); }
  .phero-band .band-card { margin-top: -46px; padding: 0 20px; }
  .phero-band .band-card > div { padding: 30px 26px; border-radius: 18px; }
  .phero-type .phero-copy { padding: 46px 20px 52px !important; }
  .phero-type::after { display: none; }
  .phero-lede { font-size: 1.02rem; }
  /* One column everywhere the two-up would squeeze */
  .split, .split.narrow-art { grid-template-columns: 1fr; gap: 36px; }
  .split.flip .split-art { order: 0; }
  .dir-grid, .card-grid, .card-grid.two, .gallery, .form-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .card { padding: 26px 24px; }
  .explore-card { aspect-ratio: 4 / 2.6; }
}
@media (max-width: 560px) {
  .explore-grid { grid-template-columns: 1fr; }
  .timeline li { padding-left: 38px; }
}
/* Tile carousel on phones */
@media (max-width: 700px) {
  .tiles-head { margin-bottom: 18px; }
  .tiles-head .wave { display: none; }
  .tile-arrows { display: flex; gap: 10px; flex: 0 0 auto; }
  .tile-arrows button {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid var(--green); background: #fff; color: var(--green);
    font-size: 1.15rem; cursor: pointer; transition: background .2s ease, color .2s ease;
  }
  .tile-arrows button:hover, .tile-arrows button:active { background: var(--green); color: #fff; }
  .tile-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 8px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .tile-grid::-webkit-scrollbar { display: none; }
  .tile { flex: 0 0 80%; aspect-ratio: 1 / 1; scroll-snap-align: start; }
  .topbar .tb-more { display: none; }
  .topbar-inner { overflow: visible; white-space: normal; justify-content: flex-start; }
  .topbar .socials { margin-left: auto; }
}
