/* ============================================================
   OXY HAUS — Website stylesheet
   Brand: Option A · "Clinical Depth"
   Deep navy authority · single oxygen-blue accent ·
   editorial serif (Fraunces) over precise sans (Inter) ·
   mono protocol labels (JetBrains Mono) · atom watermark.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Ink / surfaces */
  --ink:        #0A1F3D;   /* deep navy — primary */
  --ink-2:      #11264A;   /* card on dark */
  --ink-3:      #173564;   /* elevated dark */
  --bone:       #F5F1EA;   /* warm off-white */
  --paper:      #FBFAF6;   /* page background */

  /* Accent — used like punctuation, never a colour wash */
  --accent:     #5BB3E8;   /* oxygen blue */
  --accent-2:   #2E86C1;   /* deeper oxygen — links, hover, pressed */

  /* Text */
  --muted:      #4A5A75;   /* captions, meta on light */
  --muted-dark: rgba(245, 241, 234, 0.68); /* body on dark */

  /* Lines */
  --rule:       rgba(10, 31, 61, 0.12);
  --rule-soft:  rgba(10, 31, 61, 0.06);
  --rule-dark:  rgba(245, 241, 234, 0.14);

  --danger:     #B5453A;

  /* Type */
  --f-display:  "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:     "Inter", system-ui, -apple-system, sans-serif;
  --f-mono:     "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Layout */
  --max: 1140px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Tracking */
  --display-tracking: -0.025em;
  --eyebrow-tracking: 0.18em;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* z-index scale */
  --z-nav: 50;
  --z-overlay: 80;
  --z-cookie: 90;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6.4vw, 84px); }
h2 { font-size: clamp(30px, 4.2vw, 52px); }
h3 { font-size: clamp(21px, 2.4vw, 30px); line-height: 1.15; }
h4 {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
em, .em { font-style: italic; color: var(--accent-2); font-weight: inherit; }

p { margin: 0 0 1em; max-width: 64ch; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 54ch; }

a { color: var(--accent-2); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s var(--ease); }
a:hover { color: var(--ink); }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  display: block;
}
.eyebrow::before { content: "— "; color: var(--accent); }
.on-dark .eyebrow,
.eyebrow.on-dark { color: var(--muted-dark); }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(56px, 9vw, 116px) 0; border-top: 1px solid var(--rule); }
.section-dark {
  background: var(--ink);
  color: var(--bone);
  border-top: 0;
  position: relative;
  overflow: hidden;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--bone); }
.section-dark em, .section-dark .em { color: var(--accent); }
.section-dark p { color: var(--muted-dark); }
.section-dark .lead { color: rgba(245, 241, 234, 0.82); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--ink);
  padding: 12px 18px; font-weight: 600; z-index: 200;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- ATOM WATERMARK ---------- */
.atom-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}
.atom-bg svg { width: 100%; height: 100%; }
.section-dark .wrap, .section-dark .wrap-narrow { position: relative; z-index: 1; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-dark);
  color: var(--bone);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bone);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 15px;
}
.brand:hover { color: var(--bone); }
.brand svg, .brand img { width: 32px; height: 32px; flex: none; object-fit: contain; }
.brand .tag {
  display: block;
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--bone);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:hover { background: var(--ink-3); color: var(--bone); }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--bone); color: var(--ink); }

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-sm);
  color: var(--bone);
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--rule-dark);
    padding: 8px var(--gutter) 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .nav[data-open="true"] .nav-links { max-height: 420px; }
  .nav-links a { padding: 14px 6px; border-bottom: 1px solid var(--rule-dark); }
  .nav-links .nav-cta { margin: 12px 0 0; text-align: center; border-bottom: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  appearance: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--bone); color: var(--ink); }
.btn-ghost {
  border-color: var(--rule);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }
.on-dark .btn-ghost, .section-dark .btn-ghost, .offer .btn-ghost {
  border-color: rgba(245, 241, 234, 0.32);
  color: var(--bone);
}
.on-dark .btn-ghost:hover, .section-dark .btn-ghost:hover, .offer .btn-ghost:hover { border-color: var(--bone); color: var(--bone); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  border-top: 0;
  padding: clamp(72px, 12vw, 150px) 0 clamp(56px, 9vw, 120px);
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px; bottom: -240px;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(91, 179, 232, 0.20), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.hero .atom-bg {
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  width: min(78vw, 680px);
  aspect-ratio: 1;
  opacity: 0.055;
}
.hero .atom-bg svg { stroke: var(--bone); }
.hero .atom-bg img { width: 100%; height: 100%; object-fit: contain; }
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: var(--bone); max-width: 16ch; }
.hero h1 em { color: var(--accent); }
.hero .lead { color: rgba(245, 241, 234, 0.82); margin-top: 28px; }
.hero .btn-row { margin-top: 40px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px 52px;
  margin-top: 56px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--muted-dark);
}
.hero-meta span b {
  display: block;
  color: var(--bone);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 5px;
}

/* Entrance animation (respects reduced-motion via global rule) */
.rise { opacity: 0; transform: translateY(16px); animation: rise 0.7s var(--ease) forwards; }
.rise-1 { animation-delay: 0.05s; }
.rise-2 { animation-delay: 0.16s; }
.rise-3 { animation-delay: 0.27s; }
.rise-4 { animation-delay: 0.38s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   ROWS & GRIDS
   ============================================================ */
.row { display: grid; gap: 32px; }
.row.split { grid-template-columns: 1fr; }
@media (min-width: 760px) {
  .row.split { grid-template-columns: 1fr 1.7fr; gap: 56px; }
}
.row.split .lead-col { padding-top: 6px; }

/* ---------- FOUNDER (image + text) ---------- */
.founder-layout { display: grid; gap: 36px; align-items: start; }
@media (min-width: 820px) {
  .founder-layout { grid-template-columns: 0.8fr 1fr; gap: 56px; }
}
.founder-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 60px -28px rgba(10, 31, 61, 0.45);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(10,31,61,0.85), transparent);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.founder-photo figcaption b { display: block; font-family: var(--f-body); font-weight: 600; font-size: 15px; letter-spacing: 0.02em; text-transform: none; margin-bottom: 2px; }

.grid { display: grid; gap: 20px; }
.grid.two   { grid-template-columns: 1fr; }
.grid.three { grid-template-columns: 1fr; }
.grid.four  { grid-template-columns: 1fr 1fr; }
@media (min-width: 680px) {
  .grid.two   { grid-template-columns: 1fr 1fr; }
  .grid.three { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .grid.four  { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- CARDS ---------- */
.card {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 30px 28px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card-link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.card-link:hover { border-color: var(--accent-2); transform: translateY(-3px); }
.card h3 { margin-bottom: 0.35em; }
.card h4 { color: var(--accent-2); margin-bottom: 14px; }
.card p { font-size: 15.5px; color: var(--muted); margin-bottom: 0; }
.card .icon {
  width: 40px; height: 40px;
  margin-bottom: 18px;
  color: var(--accent-2);
}
.card .icon svg { width: 100%; height: 100%; }
.section-dark .card {
  background: var(--ink-2);
  border-color: var(--rule-dark);
}
.section-dark .card h3 { color: var(--bone); }
.section-dark .card p { color: var(--muted-dark); }
.section-dark .card .icon { color: var(--accent); }

/* ---------- AUDIENCE CARDS (home) ---------- */
.audience { display: flex; flex-direction: column; height: 100%; }
.audience .tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

/* ---------- STEPS (how it works) ---------- */
.steps { counter-reset: step; display: grid; gap: 4px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-dark);
  align-items: start;
}
.step:last-child { border-bottom: 0; }
.step .num {
  counter-increment: step;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  min-width: 64px;
}
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: 0.3em; }
.step p { margin-bottom: 0; }

/* ---------- FACTS STRIP ---------- */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone);
}
@media (min-width: 760px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts > div { padding: 28px 24px; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.facts > div:nth-child(-n+2) { border-top: 0; }
@media (min-width: 760px) { .facts > div:nth-child(-n+4) { border-top: 0; } }
.facts .num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.facts .num em { color: var(--accent-2); }
.facts .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- CALLOUT ---------- */
.callout {
  border-left: 2px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.callout b {
  color: var(--accent-2);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.callout p { margin: 0; font-size: 15.5px; }
.section-dark .callout { background: rgba(91, 179, 232, 0.10); }
.section-dark .callout b { color: var(--accent); }

/* ---------- CONDITIONS LIST ---------- */
.conditions { list-style: none; padding: 0; margin: 0; columns: 1; }
@media (min-width: 560px) { .conditions { columns: 2; column-gap: 40px; } }
.conditions li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--rule-soft);
  break-inside: avoid;
  font-size: 15.5px;
}
.conditions li::before {
  content: "";
  position: absolute; left: 0; top: 21px;
  width: 14px; height: 1px;
  background: var(--accent-2);
}

/* ---------- PRICING ---------- */
.pricing { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.price-card {
  border: 1px solid var(--rule-dark);
  background: var(--ink-2);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  color: var(--bone);
}
.price-card.featured {
  border-color: var(--accent);
  background: var(--ink-3);
  position: relative;
}
.price-card .badge {
  position: absolute; top: -11px; left: 28px;
  background: var(--accent); color: var(--ink);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; padding: 4px 12px; border-radius: var(--r-pill);
}
.price-card .plan { font-family: var(--f-display); font-weight: 300; font-size: 27px; color: var(--bone); margin: 0 0 6px; }
.price-card .meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-dark); margin: 0 0 22px; }
.price-card .amount {
  font-family: var(--f-display); font-weight: 300;
  font-size: 52px; letter-spacing: -0.02em; line-height: 1;
  color: var(--bone); margin: 0;
}
.price-card .amount em { color: var(--accent); font-style: italic; }
.price-card .amount .per { font-size: 15px; font-family: var(--f-body); color: var(--muted-dark); font-weight: 500; }
.price-card ul { list-style: none; padding: 22px 0 0; margin: 22px 0 24px; border-top: 1px solid var(--rule-dark); font-size: 14.5px; flex: 1; }
.price-card ul li { padding: 6px 0 6px 20px; position: relative; color: var(--bone); margin: 0; }
.price-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- PAYMENT CHIPS ---------- */
.pay-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pay-chip {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  color: var(--muted);
}
.section-dark .pay-chip { border-color: var(--rule-dark); color: var(--muted-dark); }

/* ---------- TESTIMONIAL ---------- */
.quote {
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--bone);
  padding: clamp(28px, 4vw, 48px);
}
.quote blockquote {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--ink);
}
.quote blockquote em { color: var(--accent-2); }
.quote cite {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- OFFER BANNER ---------- */
.offer {
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.offer .atom-bg { top: -90px; right: -90px; width: 360px; height: 360px; opacity: 0.07; }
.offer .atom-bg svg { stroke: var(--bone); }
.offer .inner { position: relative; z-index: 1; }
.offer h2 { color: var(--bone); }
.offer h2 em { color: var(--accent); font-style: italic; }
.offer .strike { text-decoration: line-through; opacity: 0.5; }

/* ============================================================
   FORM
   ============================================================ */
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .form-grid .half { grid-template-columns: 1fr 1fr; display: grid; gap: 20px; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field .req { color: var(--accent-2); }
.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(91, 179, 232, 0.25);
}
.field .hint { font-size: 13px; color: var(--muted); }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.form-consent input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--accent-2); }
.form-status { font-size: 15px; margin-top: 6px; min-height: 1.4em; }
.form-status.ok { color: #2E7D5B; }
.form-status.err { color: var(--danger); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- INFO LIST (contact) ---------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--rule); align-items: flex-start; }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico { color: var(--accent-2); flex: none; width: 22px; height: 22px; margin-top: 2px; }
.info-list .ico svg { width: 100%; height: 100%; }
.info-list .k { display: block; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.info-list .v { display: block; color: var(--ink); }
.info-list .v a { color: var(--ink); }
.info-list .v a:hover { color: var(--accent-2); }

/* ---------- HOURS TABLE ---------- */
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--rule-soft); font-size: 15px; }
.hours th { font-weight: 500; color: var(--ink); width: 50%; }
.hours td { font-family: var(--f-mono); font-size: 14px; color: var(--muted); text-align: right; }
.hours tr.today th { color: var(--accent-2); font-weight: 600; }
.hours tr.today td { color: var(--accent-2); }

/* ---------- MAP ---------- */
.map-frame {
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: clamp(48px, 7vw, 72px) 0 40px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.site-footer .atom-bg { bottom: -160px; left: -120px; width: 420px; height: 420px; opacity: 0.04; }
.site-footer .atom-bg svg { stroke: var(--bone); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule-dark);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer .brand { margin-bottom: 16px; }
.site-footer h4 { color: var(--bone); opacity: 0.9; margin-bottom: 14px; }
.site-footer a { color: var(--muted-dark); text-decoration: none; }
.site-footer a:hover { color: var(--bone); }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px 28px;
  padding-top: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-bottom > :first-child { justify-self: start; }
.footer-bottom > :last-child { justify-self: end; text-align: right; }
@media (max-width: 720px) {
  .footer-bottom { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-bottom > :first-child,
  .footer-bottom > :last-child { justify-self: center; text-align: center; }
  .footer-credit { order: 3; }
}

/* Website-by credit — Blackoak Creative */
.footer-credit {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-credit:hover,
.footer-credit:focus-visible { opacity: 0.85; transform: translateY(-1px); }
.footer-credit:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: var(--r-sm); }
.footer-credit .by {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  white-space: nowrap;
}
.footer-credit img { height: 18px; width: auto; display: block; }

.footer-disclaimer { font-size: 13px; line-height: 1.6; max-width: 56ch; margin-top: 14px; opacity: 0.8; }

/* ============================================================
   COOKIE BANNER + CONSENT
   ============================================================ */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-cookie);
  background: var(--ink-2);
  color: var(--bone);
  border-top: 1px solid var(--accent);
  padding: 22px var(--gutter);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
}
.cookie[data-show="true"] { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text { max-width: 64ch; font-size: 14.5px; color: var(--muted-dark); margin: 0; }
.cookie-text b { color: var(--bone); font-weight: 600; }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 11px 20px; font-size: 14px; }
.cookie .btn-reject {
  background: transparent;
  border: 1px solid rgba(245,241,234,0.3);
  color: var(--bone);
}
.cookie .btn-reject:hover { border-color: var(--bone); }

/* Cookie settings re-open link in footer */
.cookie-settings-btn {
  appearance: none; background: none; border: 0; padding: 0;
  font: inherit; color: var(--muted-dark); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.cookie-settings-btn:hover { color: var(--bone); }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 56px; }
.mb-0 { margin-bottom: 0; }
.maxw-sm { max-width: 52ch; }
.center-x { margin-left: auto; margin-right: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
