:root {
  --pine: #082719;
  --forest: #16452b;
  --moss: #46724f;
  --cream: #f4efe3;
  --paper: #fffdf8;
  --ink: #17251b;
  --muted: #5e685f;
  --orange: #ed5b24;
  --gold: #f3b74e;
  --line: #d7d0c2;
  --dark-line: rgba(244, 239, 227, .18);
  --shadow: 0 18px 50px rgba(8, 39, 25, .13);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, Arial, sans-serif; line-height: 1.6; }
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; padding: 10px 14px; background: white; color: var(--ink); }
.skip-link:focus { left: 8px; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; color: var(--orange); font: 700 .76rem/1.2 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.lede { max-width: 760px; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.muted { color: var(--muted); }

.site-header { color: var(--cream); background: var(--pine); }
.site-nav { min-height: 112px; display: flex; align-items: center; gap: 30px; border-bottom: 1px solid var(--dark-line); position: relative; z-index: 20; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; text-decoration: none; }
.brand img { width: 96px; height: 88px; object-fit: contain; }
.brand-name { display: none; font-family: Fraunces, Georgia, serif; font-size: 1.25rem; }
.menu-toggle { display: none; margin-left: auto; padding: 10px 14px; border: 1px solid rgba(255,255,255,.42); color: white; background: transparent; font-weight: 800; }
.nav-menu { display: flex; align-items: center; justify-content: flex-end; gap: 18px; width: 100%; margin: 0; padding: 0; list-style: none; font-size: .78rem; font-weight: 800; }
.nav-menu a, .nav-menu button { border: 0; color: var(--cream); background: transparent; text-decoration: none; cursor: pointer; font: inherit; }
.nav-menu > li > a, .nav-menu > li > button { display: inline-flex; align-items: center; min-height: 44px; }
.nav-item { position: relative; }
.nav-item > button::after { content: "⌄"; margin-left: 6px; color: var(--gold); }
.nav-menu a:hover, .nav-menu button:hover, .nav-menu a[aria-current="page"] { color: var(--gold); }
.dropdown { position: absolute; top: calc(100% + 2px); left: -14px; min-width: 240px; margin: 0; padding: 10px 0; list-style: none; color: var(--ink); background: white; border-top: 4px solid var(--orange); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .16s ease; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 9px 18px; color: var(--ink); white-space: nowrap; }
.dropdown a:hover { color: var(--ink); background: var(--cream); }
.shop-link { padding: 11px 16px; color: white !important; background: var(--orange); }

.hero { position: relative; overflow: hidden; color: var(--cream); background: var(--pine); }
.hero::after { content: ""; position: absolute; width: 580px; height: 580px; right: -170px; top: 30px; border: 1px solid rgba(244,239,227,.16); border-radius: 50%; }
.hero-inner { position: relative; z-index: 1; min-height: 520px; display: grid; align-content: center; padding-block: 72px 96px; }
.hero.compact .hero-inner { min-height: 390px; }
.hero h1 { max-width: 950px; margin: 0 0 25px; font: 700 clamp(3.4rem, 8vw, 7.4rem)/.94 Fraunces, Georgia, serif; letter-spacing: -.055em; }
.hero.compact h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
.hero p { max-width: 760px; margin: 0 0 26px; color: #dfded4; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 18px; border: 0; color: white; background: var(--orange); text-decoration: none; font-weight: 800; }
.button.secondary { color: var(--ink); background: var(--gold); }
.button.dark { background: var(--pine); }
.button.outline { border: 1px solid rgba(255,255,255,.5); background: transparent; }

.section { padding-block: 88px; border-bottom: 1px solid var(--line); }
.section.tint { background: var(--cream); }
.section.dark { color: var(--cream); background: var(--forest); }
.section h2 { max-width: 850px; margin: 0 0 22px; font: 700 clamp(2.4rem, 5vw, 4.8rem)/1 Fraunces, Georgia, serif; letter-spacing: -.045em; }
.section h3 { margin: 0 0 10px; font: 700 1.55rem/1.08 Fraunces, Georgia, serif; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { min-height: 220px; padding: 26px; border: 1px solid var(--line); background: white; text-decoration: none; }
.card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.card .tag { display: block; margin-bottom: 38px; color: var(--orange); font: 700 .72rem "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.card p { margin-bottom: 0; color: var(--muted); }
.card-arrow { display: block; margin-top: 25px; color: var(--orange); font-weight: 800; }
.list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.list li, .list a { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.list a { padding: 0; border: 0; text-decoration: none; }
.list a:hover { color: var(--orange); }
.notice { padding: 24px; border-left: 5px solid var(--gold); background: var(--cream); }
.stat { padding: 25px; border-top: 5px solid var(--orange); background: var(--cream); }
.stat strong { display: block; font: 700 2.5rem Fraunces, Georgia, serif; }
.breadcrumb { padding-block: 18px; color: var(--muted); font-size: .86rem; border-bottom: 1px solid var(--line); }

.site-footer { padding: 50px 0 26px; color: var(--cream); background: var(--pine); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(5, 1fr); gap: 28px; padding-bottom: 36px; border-bottom: 1px solid var(--dark-line); }
.footer-brand img { width: 125px; }
.footer-col h2 { margin: 0 0 13px; font: 800 .78rem "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a { display: block; margin-bottom: 8px; color: #d9ddd7; text-decoration: none; font-size: .88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: #bac3bb; font-size: .78rem; }
.footer-socials { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 22px 0 0; }
.footer-socials-label { margin-right: 6px; color: #d9ddd7; font: 700 .72rem "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--cream); text-decoration: none; font: 800 .72rem "DM Mono", monospace; }
.footer-socials a:hover, .footer-socials a:focus-visible { color: var(--pine); background: var(--gold); border-color: var(--gold); }

@media (max-width: 1050px) {
  .nav-menu { gap: 11px; font-size: .7rem; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .grid.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-nav { min-height: 96px; }
  .brand img { width: 82px; height: 76px; }
  .menu-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 18px 20px 25px; flex-direction: column; align-items: stretch; gap: 4px; background: var(--pine); border-bottom: 1px solid var(--dark-line); }
  .nav-menu.is-open { display: flex; }
  .nav-menu > li > a, .nav-menu > li > button { width: 100%; min-height: 44px; }
  .nav-item { position: static; }
  .dropdown { display: none; position: static; min-width: 0; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin: 0 0 10px; }
  .nav-item.is-open .dropdown { display: block; }
  .nav-item:hover .dropdown:not(:focus-within) { display: none; }
  .shop-link { text-align: center; }
  .hero-inner { min-height: 460px; }
  .grid.three { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-inner, .hero.compact .hero-inner { min-height: 390px; padding-block: 58px 70px; }
  .section { padding-block: 64px; }
  .grid.two, .grid.four { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
/* Optional Google Analytics consent */
#vt4vt-consent{position:fixed;z-index:9999;left:18px;right:18px;bottom:18px;max-width:690px;margin:auto;padding:22px;background:#fffdf8;color:#152318;border:1px solid #cfc9ba;border-top:5px solid #e95e25;box-shadow:0 15px 45px rgba(0,0,0,.25);font:15px/1.45 Inter,Arial,sans-serif}#vt4vt-consent strong{display:block;margin-bottom:8px;font:700 22px/1.1 Fraunces,Georgia,serif}#vt4vt-consent p{margin:0 0 14px}#vt4vt-consent a{color:#1b4028}.vt4vt-consent-actions{display:flex;gap:10px;flex-wrap:wrap}.vt4vt-consent-actions button{padding:11px 15px;border:0;font-weight:700;cursor:pointer}.vt4vt-consent-accept{background:#0b2819;color:#fff}.vt4vt-consent-decline{background:transparent;color:#152318;border:1px solid #697469!important}@media(max-width:520px){#vt4vt-consent{left:10px;right:10px;bottom:10px}}
