@font-face {
  font-family: 'Regalion Remedy';
  src:
    local('Regalion Type Rustic'),
    local('RegalionTypeRustic'),
    local('Regalion Type Western'),
    local('RegalionTypeWestern'),
    url('assets/fonts/regalion-type-western.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

 :root {
  --dark-brown: #2A160D;
  --wood: #3B2213;
  --dark-panel: #24130B;
  --cream: #DACAB0;
  --parchment: #DACAB0;
  --ink: #3D2814;
  --gold: #C79A3A;
  --gold-light: #C79A3A;
  --teal: #1F8F8A;
  --burnt-orange: #A34816;
  --copper: #B6652B;
  --white: #DACAB0;
  --shadow: 0 22px 42px rgba(42,22,13,.42);
  --max: 1220px;
  --western: 'Regalion Remedy', 'Rye', Georgia, serif;
  --serif: 'Libre Baskerville', Georgia, serif;
  --caps: 'Cinzel', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--dark-brown) url('assets/images/wood.webp') center/cover fixed;
  font-family: var(--serif);
  line-height: 1.6;
}
body:before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top left, rgba(7,129,138,.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(163,72,22,.18), transparent 40%),
    linear-gradient(180deg, rgba(42,22,13,.52), rgba(42,22,13,.75));
}
body:after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url('assets/images/distress-optimized.webp');
  opacity: .18;
  mix-blend-mode: screen;
}
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--teal); }
img { max-width: 100%; }
.hidden { display:none !important; }

h1, h2, .product-card h3, .icon-grid h3, .mini-location h3, .deal-title, .age-card h1 {
  font-family: var(--western);
  text-transform: uppercase;
  letter-spacing: .045em;
  line-height: .95;
}
h1 { font-size: clamp(2.9rem, 5.7vw, 5.6rem); margin: .05em 0 .25em; color: var(--cream); text-shadow: 0 5px 0 rgba(42,22,13,.25), 0 0 24px rgba(42,22,13,.7); }
h2 { font-size: clamp(2.4rem, 4.4vw, 4.2rem); margin: 0 0 14px; color: var(--cream); text-shadow: 0 5px 0 rgba(42,22,13,.22); }
p { font-size: 1rem; }
.code, code { color: var(--teal); background: rgba(218,202,176,.08); padding: 1px 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 3vw, 42px);
  background: rgba(9,6,4,.94);
  border-bottom: 1px solid rgba(201,154,69,.65);
  box-shadow: 0 14px 26px rgba(42,22,13,.42);
}
.brand img { width: 285px; display: block; }
.main-nav { display: flex; align-items: center; gap: 10px; }
.main-nav > a, .nav-drop > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 13px;
  color: var(--teal);
  font-family: var(--caps);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.main-nav a[aria-current="page"], .main-nav > a:hover, .nav-drop > a:hover {
  color: var(--cream);
  border-color: rgba(201,154,69,.55);
  background: rgba(7,129,138,.12);
}
.order-pill {
  color: var(--cream) !important;
  background: linear-gradient(180deg, var(--burnt-orange), #A34816);
  border: 1px solid var(--gold) !important;
  box-shadow: inset 0 0 0 2px rgba(218,202,176,.06);
}
.nav-drop { position: relative; }
.drop-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 245px;
  padding: 10px;
  display: grid;
  gap: 6px;
  background: rgba(12,8,5,.97);
  border: 1px solid rgba(201,154,69,.7);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: .18s ease;
  z-index: 80;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.drop-menu a { color: var(--cream); font-family: var(--caps); text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; padding: 9px 10px; }
.drop-menu a:hover { background: rgba(7,129,138,.18); color: var(--teal); }
.menu-toggle { display:none; background: transparent; color: var(--teal); border: 1px solid var(--gold); padding: 8px 12px; font-family: var(--caps); text-transform: uppercase; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: auto;
  padding: clamp(18px, 3vw, 44px);
  background:
    radial-gradient(circle at 18% 15%, rgba(31,143,138,.16), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(163,72,22,.24), transparent 44%),
    linear-gradient(180deg, rgba(5,3,2,.34), rgba(5,3,2,.82)),
    url('assets/images/wood.webp') center/cover fixed;
}
.age-gate.is-hidden { display: none; }
.age-gate:before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.64), transparent 22%, transparent 76%, rgba(0,0,0,.64)),
    radial-gradient(circle at center, transparent 45%, rgba(0,0,0,.44) 100%),
    url('assets/images/distress-optimized.webp');
  opacity: .32;
  mix-blend-mode: screen;
}
.age-gate:after {
  content: '';
  position: absolute;
  right: clamp(-220px, -10vw, -72px);
  bottom: clamp(-170px, -12vw, -96px);
  width: min(760px, 58vw);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 0;
  background: url('assets/images/home-dark-label-package-optimized.webp') center/contain no-repeat;
  opacity: .24;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.55));
}
.age-card {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-width: 980px;
  overflow: hidden;
  text-align: center;
  padding: clamp(36px, 5vw, 74px) clamp(24px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(16,10,6,.84), rgba(8,5,3,.94)),
    radial-gradient(circle at 50% 0%, rgba(201,154,58,.14), transparent 46%),
    url('assets/images/wood.webp') center/cover;
  border: 1px solid rgba(201,154,58,.76);
  box-shadow:
    0 34px 78px rgba(0,0,0,.62),
    inset 0 0 0 3px rgba(201,154,58,.12),
    inset 0 0 44px rgba(0,0,0,.52);
}
.age-card:before {
  content: '';
  position: absolute;
  inset: 13px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(244,230,200,.20);
  box-shadow: inset 0 0 0 1px rgba(201,154,58,.18);
}
.age-card:after {
  content: '';
  position: absolute;
  inset: 7px;
  z-index: 1;
  pointer-events: none;
  background: url('assets/decor/gold-border.png') center/100% 100% no-repeat;
  opacity: .82;
}
.age-card > * {
  position: relative;
  z-index: 2;
}
.age-logo {
  display: block;
  width: min(470px, 84%);
  margin: 0 auto 10px;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.46));
}
.age-divider {
  display: block;
  width: min(430px, 62%);
  margin: 8px auto clamp(20px, 2.6vw, 30px);
  opacity: .95;
}
.age-card h1 {
  margin: 0 0 .18em;
  color: #F4E6C8;
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: .055em;
  text-shadow:
    0 5px 0 rgba(42,22,13,.32),
    0 0 24px rgba(201,154,58,.16),
    0 0 34px rgba(0,0,0,.68);
}
.age-copy {
  max-width: 720px;
  margin: 0 auto clamp(22px, 2.7vw, 34px);
  color: #F4E6C8;
  font-size: clamp(1.04rem, 1.65vw, 1.45rem);
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.age-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  flex-wrap: wrap;
  margin-top: 4px;
}
.age-card .btn {
  min-width: min(330px, 100%);
  min-height: 58px;
  padding: 13px 24px;
  border-radius: 5px;
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  letter-spacing: .13em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.age-card .btn.primary {
  color: #F4E6C8;
  background:
    linear-gradient(180deg, rgba(192,86,30,.98), rgba(121,48,16,.98)),
    linear-gradient(90deg, rgba(201,154,58,.18), transparent 35%, transparent 65%, rgba(201,154,58,.18));
  border-color: rgba(201,154,58,.92);
  box-shadow:
    inset 0 0 0 2px rgba(244,230,200,.06),
    0 12px 26px rgba(0,0,0,.38);
}
.age-card .btn.secondary {
  color: var(--teal);
  background: rgba(5,14,13,.68);
  border-color: rgba(31,143,138,.88);
  box-shadow:
    inset 0 0 0 2px rgba(31,143,138,.06),
    0 12px 26px rgba(0,0,0,.30);
}
.age-card .btn:hover {
  transform: translateY(-2px);
  color: #F4E6C8;
}
.age-card .btn.primary:hover {
  box-shadow:
    inset 0 0 0 2px rgba(244,230,200,.08),
    0 16px 30px rgba(0,0,0,.48),
    0 0 22px rgba(201,154,58,.18);
}
.age-card .btn.secondary:hover {
  border-color: rgba(244,230,200,.75);
  box-shadow:
    inset 0 0 0 2px rgba(244,230,200,.05),
    0 16px 30px rgba(0,0,0,.42),
    0 0 22px rgba(31,143,138,.16);
}
.age-card .fine {
  max-width: 600px;
  margin: clamp(22px, 2.5vw, 30px) auto 0;
  color: rgba(244,230,200,.78);
  font-size: clamp(.76rem, .95vw, .9rem);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .age-gate {
    padding: 16px;
    align-items: start;
  }
  .age-gate:after {
    right: -42%;
    bottom: -18%;
    width: 112vw;
    opacity: .13;
  }
  .age-card {
    margin-top: 10px;
    padding: 34px 20px 30px;
  }
  .age-card:after {
    opacity: .58;
  }
  .age-logo {
    width: min(360px, 88%);
  }
  .age-divider {
    width: min(330px, 76%);
  }
  .age-actions {
    gap: 12px;
  }
  .age-card .btn {
    width: 100%;
    min-width: 0;
  }
}

.western-frame, .poster-panel {
  position: relative;
  border: 1px solid rgba(201,154,69,.72);
  box-shadow: var(--shadow), inset 0 0 0 3px rgba(201,154,69,.14);
}
.western-frame:before, .poster-panel:before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(239,210,138,.25);
  pointer-events: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  font-family: var(--caps);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: inset 0 0 0 2px rgba(218,202,176,.07), 0 8px 20px rgba(42,22,13,.25);
}
.btn.primary { background: linear-gradient(180deg, var(--burnt-orange), #A34816); color: var(--cream); }
.btn.secondary { background: rgba(5,82,88,.65); color: var(--cream); }
.btn:hover { transform: translateY(-1px); color: var(--white); }
.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-family: var(--caps);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1.05rem;
}
.divider { display: block; max-width: 540px; margin: 0 auto 16px; opacity: .88; }
.divider.mini { max-width: 260px; }

main { padding-bottom: 32px; }
.hero {
  width: min(1420px, calc(100% - 30px));
  margin: 18px auto 22px;
  padding: clamp(24px, 3vw, 42px);
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(420px, 1.08fr);
  gap: 20px;
  align-items: center;
  background: linear-gradient(90deg, rgba(7,4,3,.975), rgba(11,7,5,.90)), url('assets/images/wood.webp') center/cover;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-lead { font-size: clamp(1.08rem, 1.3vw, 1.28rem); max-width: 680px; color: #DACAB0; }
.hero-art { display: grid; place-items: center; }
.hero-art img { width: min(650px, 100%); filter: drop-shadow(0 24px 28px rgba(42,22,13,.42)); }

.quick-strip {
  width: min(var(--max), calc(100% - 30px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,154,69,.58);
  background: rgba(201,154,69,.55);
  box-shadow: var(--shadow);
}
.quick-strip div { display:grid; grid-template-columns: 60px 1fr; column-gap: 12px; align-items:center; padding: 18px; background: rgba(9,6,4,.88); }
.quick-strip img { grid-row: span 2; width: 54px; height: 54px; object-fit: contain; }
.quick-strip strong { font-family: var(--caps); color: var(--teal); text-transform: uppercase; letter-spacing: .08em; font-size: 1.08rem; }
.quick-strip span { color: #DACAB0; }

.section { width: min(var(--max), calc(100% - 30px)); margin: 58px auto; }
.section-heading { text-align:center; margin: 0 auto 26px; max-width: 870px; }
.section-heading p { color: #DACAB0; }
.intro-panel {
  padding: 42px 22px 34px;
  background: linear-gradient(180deg, rgba(239,225,194,.96), rgba(218,194,151,.92));
  color: var(--ink);
}
.intro-panel:after, .poster-panel:after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(218,202,176,.18), transparent 40%);
  pointer-events: none;
}
.intro-panel .section-heading h2, .intro-panel .section-heading p { color: var(--ink); text-shadow: none; }
.intro-panel .section-heading p { color: #3D2814; }
.product-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { background: #24130B; color: var(--cream); border: 1px solid rgba(201,154,69,.58); box-shadow: 0 14px 24px rgba(42,22,13,.30); padding-bottom: 16px; overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 1.22 / 1; object-fit: cover; display:block; border-bottom: 1px solid rgba(201,154,69,.48); }
.product-card h3 { font-size: 1.62rem; margin: 16px 16px 8px; color: var(--gold-light); }
.product-card p { margin: 0 16px; color: #DACAB0; }

.dark-panel { background: rgba(9,6,4,.88); border: 1px solid rgba(201,154,69,.58); padding: 42px 24px; box-shadow: var(--shadow); }
.icon-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.icon-grid.three { grid-template-columns: repeat(3, 1fr); }
.icon-grid article { background: linear-gradient(180deg, rgba(5,79,86,.72), rgba(18,12,8,.93)); border: 1px solid rgba(201,154,69,.55); padding: 24px; text-align:center; }
.icon-grid img { height: 82px; width: 82px; object-fit: contain; }
.icon-grid h3 { font-size: 1.6rem; margin: 14px 0 8px; color: var(--gold-light); }
.icon-grid p { color: #DACAB0; margin: 0; }

.order-panel { display:grid; grid-template-columns: 1fr auto; gap: 24px; align-items:center; background: linear-gradient(90deg, rgba(5,79,86,.86), rgba(10,7,5,.94)); border: 1px solid rgba(201,154,69,.66); padding: 34px 36px; box-shadow: var(--shadow); }
.order-panel h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.order-panel p { color: #DACAB0; max-width: 640px; }
.order-buttons { display:flex; gap: 12px; flex-wrap:wrap; justify-content:flex-end; }

.visit-remedy .location-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card { display:block; text-align:center; background: linear-gradient(180deg, rgba(28,13,7,.97), rgba(12,8,5,.95)); border: 1px solid rgba(201,154,69,.72); padding: 26px 18px; color: var(--cream); box-shadow: var(--shadow); }
.location-card img { height: 150px; max-width: 100%; object-fit: contain; display:block; margin: 0 auto 8px; }
.location-card p { color: #DACAB0; }
.location-card span, .text-link { font-family: var(--caps); text-transform: uppercase; letter-spacing: .08em; font-weight: 900; color: var(--teal); }
.location-grid.large .location-card { padding: 34px 22px; }
.phone-link, .details-card .phone-link, .mini-location .phone-link { color: var(--teal); font-weight: 900; }
.closed-days { color: var(--gold-light); font-weight: 700; }

.page-hero { width: min(var(--max), calc(100% - 30px)); margin: 18px auto; padding: 42px; display:grid; grid-template-columns: 1fr .82fr; gap: 28px; align-items:center; background: linear-gradient(90deg, rgba(20,9,5,.93), rgba(15,9,5,.72)); }
.page-hero.compact { min-height: 390px; }
.page-hero img { width: 100%; max-height: 500px; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(42,22,13,.55)); }
.location-select-hero h1 { max-width: 760px; }
.location-button-row { display:flex; gap: 14px; flex-wrap:wrap; margin-top: 22px; }
.location-button-row.centered { justify-content:center; }

.location-hero { width: min(var(--max), calc(100% - 30px)); margin: 18px auto; padding: 58px 42px 42px; display:grid; grid-template-columns: 1fr .95fr; gap: 30px; align-items:center; min-height: 560px; background: linear-gradient(90deg, rgba(20,9,5,.94), rgba(15,9,5,.78)), url('assets/images/wood.webp') center/cover; overflow:hidden; }
.location-wordmark-corner { position:absolute; top: 20px; right: 32px; width: min(410px, 42vw); max-height: 120px; object-fit: contain; z-index: 2; }
.location-copy { padding-top: 72px; }
.location-copy h1 { color: var(--gold-light); }
.location-copy p { color: #DACAB0; font-size: 1.1rem; max-width: 620px; }
.hero-actions { display:flex; gap: 12px; flex-wrap:wrap; margin-top: 20px; }
.location-product-card { display:grid; place-items:center; padding-top: 78px; }
.location-product-card img { width: min(520px, 100%); filter: drop-shadow(0 22px 28px rgba(42,22,13,.42)); }
.location-main-grid { display:grid; grid-template-columns: .92fr 1.08fr; gap: 24px; }
.poster-panel { padding: 32px; background: linear-gradient(180deg, rgba(239,225,194,.97), rgba(218,193,148,.94)); color: var(--ink); }
.poster-panel h2 { color: var(--ink); text-shadow: none; }
.poster-panel p, .poster-panel li { color: #3D2814; }
.details-card strong { font-family: var(--caps); text-transform: uppercase; letter-spacing: .08em; color: var(--burnt-orange); }
.local-deals { background: rgba(20,9,5,.88); color: var(--cream); }
.local-deals h2 { color: var(--gold-light); text-shadow: 0 4px 0 rgba(42,22,13,.25); }
.local-deals p { color: #DACAB0; }
.deals-board { display:grid; grid-template-columns: repeat(7, 1fr); border: 1px solid rgba(201,154,69,.52); background:#24130B; }
.deal { padding: 18px 12px; text-align:center; border-right: 1px solid rgba(201,154,69,.38); }
.deal:last-child { border-right:0; }
.deal-day { font-family: var(--caps); font-weight:900; text-transform: uppercase; letter-spacing:.08em; color: var(--teal); font-size:.86rem; }
.deal-title { font-size: 1.34rem; color: var(--gold-light); margin: 12px 0 4px; }
.deal-detail { font-size:.86rem; color:#DACAB0; }
.compact-board { display:block; }
.compact-board .deal { display:grid; grid-template-columns: 118px 1fr; gap:12px; text-align:left; border-right:0; border-bottom:1px solid rgba(201,154,69,.35); padding:12px; }
.compact-board .deal-title { font-size: 1.05rem; margin:0 0 2px; }
.compact-board .deal-detail { font-size:.86rem; }
.other-locations .section-heading { margin-bottom: 16px; }

.split-panel { display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-layout { display:grid; grid-template-columns: 1fr .9fr; gap: 24px; }
.contact-form label { display:block; font-family: var(--caps); text-transform: uppercase; letter-spacing: .08em; font-weight:900; margin: 14px 0 8px; color: var(--ink); }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; padding:12px; border:1px solid #C79A3A; background: var(--white); color: var(--ink); font: inherit; }
.contact-cards { display:grid; gap: 16px; }
.mini-location h3 { font-size: 1.9rem; margin:0 0 8px; color: var(--ink); }

.site-footer { margin-top: 70px; padding: 42px clamp(18px,3vw,44px) 24px; background: rgba(20,9,5,.95); border-top:1px solid rgba(201,154,69,.52); }
.footer-grid { max-width: var(--max); margin:auto; display:grid; grid-template-columns: 1.4fr .8fr .9fr .8fr; gap:24px; }
.footer-logo { width:260px; }
.site-footer h3 { font-family: var(--caps); text-transform:uppercase; letter-spacing:.1em; color: var(--gold-light); font-size:1rem; }
.site-footer p, .disclaimer { color:#DACAB0; }
.disclaimer { max-width: var(--max); margin:24px auto 0; font-size:.76rem; border-top:1px solid rgba(201,154,69,.25); padding-top:18px; }

@media(max-width: 1050px) {
  .hero, .page-hero, .location-hero, .split-panel, .contact-layout, .order-panel, .location-main-grid { grid-template-columns: 1fr; }
  .hero { min-height:auto; }
  .hero-copy { text-align:center; }
  .hero-copy h1, .hero-lead { margin-left:auto; margin-right:auto; }
  .hero-art img { width:min(560px, 100%); }
  .product-grid, .icon-grid, .visit-remedy .location-grid, .quick-strip { grid-template-columns: 1fr 1fr; }
  .deals-board { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .order-buttons { justify-content:flex-start; }
  .location-wordmark-corner { position:relative; top:auto; right:auto; width:min(520px, 100%); margin: 0 auto; display:block; }
  .location-copy, .location-product-card { padding-top:0; text-align:center; }
  .hero-actions { justify-content:center; }
}
@media(max-width: 760px) {
  .site-header { align-items:flex-start; }
  .brand img { width:230px; }
  .menu-toggle { display:block; }
  .main-nav { display:none; position:absolute; left:0; right:0; top:100%; background:#140905; border-bottom:1px solid var(--gold); padding:10px; flex-direction:column; align-items:stretch; }
  .main-nav.is-open { display:flex; }
  .nav-drop .drop-menu { position:static; opacity:1; transform:none; pointer-events:auto; background:rgba(20,9,5,.36); box-shadow:none; min-width:0; }
  .main-nav > a, .nav-drop > a { justify-content:flex-start; }
  .hero, .western-frame { width: calc(100% - 20px); margin: 10px auto; padding: 28px 18px; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.35rem; }
  .product-grid, .icon-grid, .icon-grid.three, .visit-remedy .location-grid, .quick-strip, .deals-board, .footer-grid { grid-template-columns: 1fr; }
  .quick-strip div { grid-template-columns:48px 1fr; }
  .quick-strip img { width:46px; height:46px; }
  .section { margin: 38px auto; }
  .page-hero { padding:28px 18px; }
  .compact-board .deal { grid-template-columns:1fr; }
  .order-panel { padding:28px 20px; }
}


/* Remedy verbal edits - color, spacing, and feature typography */
body {
  background: var(--dark-brown) url('assets/images/wood.webp') center/cover fixed;
}
body:before {
  background:
    radial-gradient(circle at top left, rgba(31,143,138,.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(163,72,22,.18), transparent 40%),
    linear-gradient(180deg, rgba(20,9,5,.72), rgba(20,9,5,.88));
}
.site-header {
  background: rgba(20,9,5,.97);
  padding: 12px clamp(18px, 3vw, 42px);
}
.brand img { width: 300px; }
.main-nav { flex: 1; justify-content: space-evenly; gap: clamp(10px, 1.4vw, 24px); }
.main-nav > a, .nav-drop > a { font-size: clamp(1.06rem, 1.18vw, 1.24rem); padding: 9px 16px; }
.main-nav a[aria-current="page"], .main-nav > a:hover, .nav-drop > a:hover {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--gold);
}
.order-pill { background: linear-gradient(180deg, var(--burnt-orange), #A34816); }
.hero, .page-hero, .location-hero {
  background: linear-gradient(90deg, rgba(20,9,5,.94), rgba(28,13,7,.78)), url('assets/images/wood.webp') center/cover;
}

.hero { align-items: start; margin-top: 0; padding-top: 8px !important; }
.hero-copy { padding-top: 0 !important; margin-top: 0 !important; }
.hero .eyebrow { font-size: calc(1.05rem + 7pt); margin-top: 0 !important; }
.hero-copy h1 { font-size: clamp(3.34rem, 6.25vw, 6.04rem); }
.hero-art { align-self: start; padding-top: 0; }
.hero-art img { width: min(700px, 100%); }
.fresh-word { color: var(--teal); }
.quick-strip div { background: rgba(20,9,5,.92); }
.quick-strip .cart-icon { filter: none; opacity: 1; }
.quick-strip .cart-icon, .icon-grid img[src$="cart.svg"] { color: var(--teal); }
.quick-strip .mountain-icon { filter: sepia(1) saturate(2.2) hue-rotate(125deg) brightness(1.05); }
.intro-panel { background: linear-gradient(180deg, rgba(218,202,176,.98), rgba(199,154,58,.18)); }
.product-card { background: var(--dark-panel); color: var(--cream); }
.dark-panel { background: rgba(20,9,5,.92); }
.icon-grid article { background: var(--teal); color: var(--cream); }
.icon-grid article h3, .icon-grid article p { color: var(--cream); }
.icon-grid img { filter: none; }
.order-panel { background: linear-gradient(90deg, rgba(31,143,138,.88), rgba(59,34,19,.94)); }
.location-card { background: linear-gradient(180deg, rgba(28,13,7,.97), rgba(20,9,5,.95)); }
.phone-link, .details-card .phone-link, .mini-location .phone-link, .closed-days { color: #3D2814; }
.location-copy { padding-top: .25in; }
.location-copy .eyebrow { color: var(--teal); font-size: calc(1.05rem + 7pt); }
.location-copy h1 { color: var(--teal); font-size: clamp(3.34rem, 6.25vw, 6.04rem); }
.page-hero.compact { align-items:start; padding-top:.25in; }
.page-hero .eyebrow { font-size: calc(1.05rem + 7pt); }
.page-hero img { align-self:start; margin-top:.5in; }

.contact-hero-copy { padding-top: 18px; }
.site-footer { background: rgba(9,6,4,.94); }
.drop-menu { background: rgba(12,8,5,.97); }
.local-deals { background: rgba(20,9,5,.92); }
.deals-board { background: var(--dark-panel); }
@media(max-width: 760px) {
  .main-nav { background: var(--dark-brown); }
  .brand img { width:240px; }
}

/* May 2026 requested update pass - homepage, locations, about, contact, and footer refinements */
.hero {
  background:
    linear-gradient(90deg, rgba(10,6,4,.9), rgba(18,10,6,.8) 52%, rgba(22,12,7,.72)),
    url('assets/images/wood.webp') center/cover !important;
}
.hero-art img {
  width: min(760px, 100%);
}
.quick-strip div {
  grid-template-rows: min-content min-content;
  align-content: center;
  row-gap: 1px;
}
.quick-strip strong {
  align-self: end;
  line-height: 1.05;
  margin-top: 8px;
}
.quick-strip span {
  align-self: start;
  line-height: 1.18;
}
@media (min-width: 761px) {
  .quick-strip div:nth-child(3) strong {
    white-space: nowrap;
    font-size: clamp(.95rem, .95vw, 1.03rem);
    letter-spacing: .055em;
  }
}


.order-panel {
  background:
    radial-gradient(circle at 15% 0%, rgba(31,143,138,.98), transparent 42%),
    linear-gradient(135deg, #1F8F8A 0%, #187B76 48%, #0E5753 100%) !important;
  border-color: rgba(31,143,138,.95);
}
.order-panel p,
.order-panel h2 {
  color: var(--cream);
}

.site-footer h3 {
  color: var(--teal) !important;
}
.footer-grid > div:not(:first-child) p,
.footer-grid > div:not(:first-child) a {
  color: var(--cream) !important;
}
.footer-grid > div:not(:first-child) a:hover {
  color: var(--teal) !important;
}
.location-card .phone-link {
  color: var(--teal) !important;
}

.location-select-hero {
  grid-template-columns: .72fr 1.28fr;
  min-height: 540px;
  align-items: center;
}
.location-select-hero img {
  width: min(780px, 116%);
  max-width: none;
  max-height: 700px;
  margin-top: 0 !important;
  justify-self: center;
}

.about-story {
  padding: 38px 40px;
}
.about-story h2 {
  font-size: clamp(2.25rem, 3.7vw, 3.7rem);
}
.about-story p,
.about-panels p {
  font-size: 1rem;
}

.contact-hero {
  min-height: 320px !important;
  padding-top: 26px !important;
  padding-bottom: 26px !important;
  align-items: center !important;
}
.contact-hero img {
  align-self: start !important;
  margin-top: 0 !important;
  width: min(560px, 100%);
  max-height: 430px;
}
.contact-hero-copy {
  padding-top: 0 !important;
}

.location-logo-hero {
  grid-template-columns: .9fr 1.1fr;
  min-height: 480px;
  padding: 24px 34px 26px;
  align-items: center;
}
.location-logo-hero .location-copy {
  align-self: center;
  padding-top: 0 !important;
}
.location-logo-hero .eyebrow {
  margin-top: 0;
  margin-bottom: 12px;
}
.location-hero-logo {
  display: block;
  width: min(440px, 100%);
  max-height: 160px;
  object-fit: contain;
  margin: 0 0 18px;
  filter: drop-shadow(0 14px 18px rgba(42,22,13,.42));
}
.location-logo-hero .location-product-card {
  padding-top: 0 !important;
  align-self: stretch;
  display: grid;
  place-items: center;
  overflow: visible;
}
.location-logo-hero .location-product-card img {
  width: min(720px, 118%);
  max-width: none;
  max-height: 460px;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
}
.local-deals h2,
.deal-title {
  color: var(--burnt-orange) !important;
}

@media(max-width: 1050px) {
  .location-select-hero,
  .location-logo-hero {
    grid-template-columns: 1fr;
  }
  .location-select-hero img,
  .location-logo-hero .location-product-card img {
    width: min(640px, 100%);
    max-width: 100%;
    max-height: 420px;
    transform: none;
  }
  .location-logo-hero .location-copy {
    text-align: center;
  }
  .location-hero-logo {
    margin-left: auto;
    margin-right: auto;
  }
}
@media(max-width: 760px) {
  .contact-hero,
  .location-logo-hero,
  .location-select-hero {
    min-height: auto !important;
    padding: 28px 18px !important;
  }
  .about-story {
    padding: 30px 22px;
  }
  .quick-strip strong {
    white-space: normal;
  }
}


/* May 2026 follow-up refinements */
.location-select-hero .location-button-row {
  flex-wrap: nowrap;
  align-items: center;
}
.location-select-hero .btn {
  min-width: 180px;
}
.location-tagline {
  color: var(--cream) !important;
  font-size: 1.05rem !important;
  line-height: 1.6;
  max-width: 560px;
  margin: 8px 0 0;
}
.location-logo-hero .hero-actions {
  margin-top: 18px;
}
.location-logo-hero .location-product-card {
  padding-top: 0 !important;
  align-self: stretch;
  display: grid;
  place-items: center;
  overflow: visible;
}
.location-logo-hero .location-copy p {
  max-width: 560px;
}
.about-story {
  max-width: 1100px;
}
@media(max-width: 1050px) {
  .location-select-hero .location-button-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .location-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}


/* May 2026 about-page and location-graphic refinements */
.about-hero {
  align-items: start !important;
}
.about-hero img {
  align-self: start !important;
  margin-top: 0 !important;
  width: min(620px, 100%);
}


/* Final requested updates - location graphics, footer headings, about hero */
.site-footer h3 {
  color: var(--teal) !important;
}
.footer-grid > div:not(:first-child) p,
.footer-grid > div:not(:first-child) a {
  color: var(--cream) !important;
}
.location-logo-hero {
  grid-template-columns: .9fr 1.1fr;
  min-height: 500px;
}
.location-logo-hero .location-product-card {
  align-self: stretch;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.location-logo-hero .location-product-card img {
  width: min(720px, 118%);
  max-width: none;
  max-height: 470px;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
}
.about-hero {
  align-items: start !important;
  padding-top: 26px !important;
}
.about-hero img {
  align-self: start !important;
  margin-top: 0 !important;
  width: min(620px, 100%);
  max-height: 520px;
}
@media(max-width: 1050px) {
  .location-logo-hero .location-product-card {
    min-height: auto;
  }
  .location-logo-hero .location-product-card img {
    width: min(640px, 100%);
    max-width: 100%;
    max-height: 430px;
    transform: none;
  }
}


/* Age gate final hard-lock override: solid dark wood screen with no homepage bleed-through. */
html.age-locked,
html.age-locked body,
body.age-locked {
  overflow: hidden !important;
  background-color: #2A160D !important;
  background-image: url('assets/images/wood.webp') !important;
  background-position: center !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

html.age-locked body > header,
html.age-locked body > main,
html.age-locked body > footer {
  visibility: hidden !important;
}

html.age-locked body > .age-gate {
  visibility: visible !important;
}


html.age-verified .age-gate {
  display: none !important;
}

.age-gate {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  padding: clamp(18px, 3vw, 44px) !important;
  display: grid;
  place-items: center;
  overflow: auto;
  isolation: isolate;
  opacity: 1 !important;
  background-color: #2A160D !important;
  background-image:
    radial-gradient(circle at 16% 14%, rgba(31,143,138,.14), transparent 32%),
    radial-gradient(circle at 84% 82%, rgba(163,72,22,.18), transparent 38%),
    linear-gradient(180deg, rgba(42,22,13,.96), rgba(11,6,4,.98)),
    url('assets/images/wood.webp') !important;
  background-position: center, center, center, center !important;
  background-size: cover, cover, cover, cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.age-gate.is-hidden {
  display: none !important;
}

.age-gate::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), transparent 24%, transparent 76%, rgba(0,0,0,.62)),
    radial-gradient(circle at center, rgba(0,0,0,0) 38%, rgba(0,0,0,.54) 100%),
    url('assets/images/distress-optimized.webp');
  opacity: .24;
  mix-blend-mode: normal;
}

.age-gate::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.age-card {
  background-color: #24130B !important;
  background-image:
    linear-gradient(180deg, rgba(16,10,6,.95), rgba(8,5,3,.98)),
    radial-gradient(circle at 50% 0%, rgba(201,154,58,.12), transparent 46%),
    url('assets/images/wood.webp') !important;
  background-position: center, center, center !important;
  background-size: cover, cover, cover !important;
}

@media (max-width: 760px) {
  .age-gate {
    place-items: center !important;
    align-items: center !important;
    padding: 16px !important;
  }
}

/* Age gate compact final override: smaller, centered, screen-safe card. */
.age-gate {
  padding: clamp(12px, 2.2vw, 28px) !important;
  place-items: center !important;
  align-items: center !important;
  justify-items: center !important;
}

.age-card {
  width: min(90vw, 640px) !important;
  max-width: 640px !important;
  max-height: calc(100dvh - 28px) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  padding: clamp(22px, 3.2vw, 38px) clamp(18px, 3.6vw, 44px) !important;
  border-radius: 4px !important;
}

.age-card:before {
  inset: 10px !important;
}

.age-card:after {
  inset: 5px !important;
  opacity: .68 !important;
}

.age-logo {
  width: min(310px, 76%) !important;
  margin: 0 auto 4px !important;
}

.age-divider {
  width: min(300px, 62%) !important;
  margin: 2px auto clamp(10px, 1.5vw, 16px) !important;
}

.age-card h1 {
  font-size: clamp(2.05rem, 4vw, 3.35rem) !important;
  line-height: .98 !important;
  margin: 0 0 .14em !important;
  letter-spacing: .045em !important;
}

.age-copy {
  max-width: 500px !important;
  margin: 0 auto clamp(14px, 1.8vw, 20px) !important;
  font-size: clamp(.94rem, 1.25vw, 1.08rem) !important;
  line-height: 1.42 !important;
}

.age-actions {
  gap: 12px !important;
  margin-top: 0 !important;
}

.age-card .btn {
  min-width: 205px !important;
  min-height: 48px !important;
  padding: 10px 18px !important;
  font-size: clamp(.86rem, 1vw, 1rem) !important;
  letter-spacing: .105em !important;
}

.age-card .fine {
  max-width: 455px !important;
  margin: clamp(12px, 1.7vw, 18px) auto 0 !important;
  font-size: clamp(.68rem, .85vw, .78rem) !important;
  line-height: 1.36 !important;
}

@media (max-width: 520px) {
  .age-gate {
    padding: 10px !important;
  }

  .age-card {
    width: min(94vw, 430px) !important;
    max-height: calc(100dvh - 20px) !important;
    padding: 22px 16px 20px !important;
  }

  .age-card:before {
    inset: 8px !important;
  }

  .age-card:after {
    inset: 4px !important;
    opacity: .52 !important;
  }

  .age-logo {
    width: min(245px, 78%) !important;
  }

  .age-divider {
    width: min(230px, 66%) !important;
    margin-bottom: 10px !important;
  }

  .age-card h1 {
    font-size: clamp(1.75rem, 10vw, 2.45rem) !important;
  }

  .age-copy {
    font-size: .9rem !important;
    line-height: 1.34 !important;
    margin-bottom: 13px !important;
  }

  .age-card .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding: 9px 14px !important;
    font-size: .83rem !important;
  }

  .age-card .fine {
    margin-top: 11px !important;
    font-size: .66rem !important;
    line-height: 1.28 !important;
  }
}

@media (max-height: 620px) {
  .age-gate {
    padding: 8px !important;
  }

  .age-card {
    width: min(88vw, 560px) !important;
    padding: 18px 24px 16px !important;
  }

  .age-logo {
    width: min(250px, 66%) !important;
  }

  .age-divider {
    width: min(230px, 54%) !important;
    margin: 0 auto 8px !important;
  }

  .age-card h1 {
    font-size: clamp(1.7rem, 5vh, 2.45rem) !important;
  }

  .age-copy {
    margin-bottom: 10px !important;
    font-size: .86rem !important;
    line-height: 1.28 !important;
  }

  .age-card .btn {
    min-height: 42px !important;
    padding: 8px 14px !important;
    font-size: .78rem !important;
  }

  .age-card .fine {
    margin-top: 9px !important;
    font-size: .62rem !important;
    line-height: 1.2 !important;
  }
}

/* Contact form direct email helper */
.contact-direct-email { margin-top: 10px; font-weight: 700; }
.contact-direct-email a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* May 2026 global section spacing update: 1/8 inch between major page sections. */
:root {
  --site-section-spacing: 0.125in;
}

main {
  padding-bottom: var(--site-section-spacing) !important;
}

main > section.hero,
main > section.page-hero,
main > section.location-hero,
main > section.quick-strip,
main > section.section {
  margin-top: var(--site-section-spacing) !important;
  margin-bottom: var(--site-section-spacing) !important;
}

.section-heading {
  margin-bottom: var(--site-section-spacing) !important;
}

.site-footer {
  margin-top: var(--site-section-spacing) !important;
}


/* May 2026 performance and age-gate stability pass */
img { height: auto; }
.hero-art img { content-visibility: auto; }
.product-card img { loading: lazy; }
