/* ============================================================
   SKYDUSTER — minimal. design-forward. come find out.
   green #1a3c34 · cream #f1e4b2 · red #ea0029
   ============================================================ */

@font-face {
  font-family: 'Number Two LL';
  src: url('fonts/NumberTwoLLWeb-Regular.woff2') format('woff2'),
       url('fonts/NumberTwoLLWeb-Regular.woff') format('woff');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Catalogue LL';
  src: url('fonts/CatalogueLLWeb-Regular.woff2') format('woff2'),
       url('fonts/CatalogueLLWeb-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Catalogue LL';
  src: url('fonts/CatalogueLLWeb-Bold.woff2') format('woff2'),
       url('fonts/CatalogueLLWeb-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --green:     #1a3c34;
  --cream:     #f1e4b2;
  --dim:       #8aa096;   /* muted cream-green for whispered text */
  --red:       #ea0029;
  --disp: 'Number Two LL', 'Arial Narrow', sans-serif;
  --serif: 'Catalogue LL', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--green);
  color: var(--cream);
  font-family: var(--serif);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--red); color: var(--cream); }

.disp { font-family: var(--disp); text-transform: uppercase; }

/* ============================================================
   SPLASH — full screen, no scroll, almost nothing on it
   ============================================================ */
.splash {
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding: 6vh 6vw;
  position: relative;
  overflow: hidden;
}
.splash__main {
  flex: 1 1 auto; min-height: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.splash__logo {
  width: clamp(260px, 46vw, 580px);
  max-height: 30vh;
  margin-bottom: clamp(1.6rem, 4vh, 2.6rem);
}
.splash__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.splash__nav {
  display: flex;
  gap: clamp(1.6rem, 6vw, 4.5rem);
  font-family: var(--disp);
  text-transform: uppercase;
}
.splash__nav a {
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: 0.16em;
  color: var(--cream);
  position: relative;
  padding: 0.2em 0;
  transition: color .2s ease;
}
.splash__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.splash__nav a:hover { color: var(--red); }
.splash__nav a:hover::after { transform: scaleX(1); }

/* Vandell-style at-a-glance info under the nav */
.splash__info {
  margin-top: clamp(2rem, 5.5vh, 3.6rem);
  text-align: center;
  font-family: var(--disp);
  text-transform: uppercase;
}
.splash__hours {
  display: flex; gap: clamp(0.9rem, 3vw, 2.2rem);
  flex-wrap: wrap; justify-content: center;
  letter-spacing: 0.14em; font-size: 0.8rem; color: var(--cream);
}
.splash__hours span { white-space: nowrap; }
.splash__hours i { font-style: normal; color: var(--dim); margin-right: 0.5em; }
.splash__loc {
  margin-top: 1rem; letter-spacing: 0.2em; font-size: 0.68rem; color: var(--dim);
}
.splash__loc b { color: var(--cream); font-weight: 400; }
.splash__loc a { color: var(--cream); border-bottom: 1px solid rgba(241,228,178,0.25); }
.splash__loc a:hover { color: var(--red); border-color: var(--red); }
.splash__wc {
  margin-top: 0.9rem; font-family: var(--disp); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.7rem; color: var(--dim);
}
.splash__wc b { color: var(--dim); font-weight: 400; }

/* email capture */
.signup { display: inline-flex; align-items: center; gap: 8px; }
.signup__label {
  display: block; font-family: var(--disp); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.64rem; color: var(--dim); margin-bottom: 0.7rem;
}
.signup input {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(241,228,178,0.35);
  color: var(--cream); font-family: var(--disp);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem;
  padding: 0.5rem 0.2rem; width: clamp(180px, 40vw, 240px);
}
.signup input::placeholder { color: var(--dim); }
.signup input:focus { border-bottom-color: var(--red); }
.signup button {
  background: none; border: none; color: var(--cream);
  font-family: var(--disp); font-size: 1.15rem; line-height: 1;
  cursor: pointer; padding: 0 0.3rem; transition: color .2s;
}
.signup button:hover { color: var(--red); }
.signup__ok {
  display: none; font-family: var(--disp); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.8rem; color: var(--red);
}
.signup.is-done input, .signup.is-done button { display: none; }
.signup.is-done .signup__ok { display: inline; }

.splash__signup { margin-top: 0; text-align: center; }
.splash__signup .signup__label { margin-bottom: 0.6rem; }
/* center the email field on the axis; let the arrow hang off to the right */
.splash__signup .signup { position: relative; display: inline-block; }
.splash__signup .signup input { width: min(260px, calc(100vw - 8rem)); }
.splash__signup .signup button { position: absolute; left: 100%; top: 50%; transform: translateY(-50%); margin-left: 8px; padding: 0 0.2rem; }

/* ============================================================
   INTERIOR PAGES — editorial, sparse, big air
   ============================================================ */
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem clamp(1.4rem, 6vw, 5rem);
  position: sticky; top: 0; z-index: 10;
  background: var(--green);
  mix-blend-mode: normal;
}
.top a { font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.18em; }
.top__brand { display: inline-flex; align-items: center; line-height: 0; }
.top__brand img { height: 19px; width: auto; display: block; }
.top__nav { display: flex; gap: clamp(1rem, 3vw, 2.4rem); font-size: 0.8rem; }
.top__nav a { color: var(--dim); transition: color .2s; }
.top__nav a:hover, .top__nav a.is-active { color: var(--cream); }
.top__nav a.is-active { color: var(--red); }

.wrap { max-width: 1080px; margin: 0 auto; padding: clamp(2rem, 7vw, 6rem) clamp(1.4rem, 6vw, 5rem) 8rem; }

/* giant page title */
.title {
  font-family: var(--disp); text-transform: uppercase;
  font-size: clamp(4rem, 20vw, 15rem);
  line-height: 0.82; letter-spacing: -0.01em;
  margin-bottom: clamp(3rem, 9vh, 7rem);
}
.title .red { color: var(--red); }

/* a block = one idea, separated by huge space + hairline */
.block { padding-top: clamp(2.2rem, 5vw, 3.4rem); margin-top: clamp(2.2rem, 5vw, 3.4rem); border-top: 1px solid rgba(241,228,178,0.16); }
.block:first-of-type { border-top: none; margin-top: 0; }
.block--flush { border-top: none; padding-top: 0; }

.kicker {
  font-family: var(--disp); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.72rem; color: var(--dim);
  margin-bottom: 1.4rem;
}

.h {
  font-family: var(--disp); text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1;
  margin-bottom: 1.2rem;
}

.lede { font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1.45; max-width: 30ch; }
.body { font-size: 1rem; line-height: 1.65; max-width: 56ch; color: #ddd0a0; }
.body + .body { margin-top: 1rem; }

/* simple key/value lines — no boxes */
.lines { width: 100%; max-width: 460px; }
.lines .ln {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(241,228,178,0.12);
}
.lines .ln:last-child { border-bottom: none; }
.lines .k { font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; color: var(--dim); }
.lines .v { text-align: right; }
.lines .v a { border-bottom: 1px solid rgba(241,228,178,0.3); transition: color .2s, border-color .2s; }
.lines .v a:hover { color: var(--red); border-color: var(--red); }

/* beer / product list — type only */
.list { margin-top: 0.5rem; }
.item {
  display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0; border-bottom: 1px solid rgba(241,228,178,0.14);
}
.item:last-child { border-bottom: none; }
.item__name { font-family: var(--disp); text-transform: uppercase; font-size: clamp(1.5rem, 4vw, 2.4rem); line-height: 0.95; }
.item__abv { font-family: var(--disp); font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--dim); white-space: nowrap; }
.item__style { grid-column: 1 / -1; font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--red); }
.item__desc { grid-column: 1 / -1; color: #c9bd8e; font-size: 0.98rem; max-width: 60ch; margin-top: 0.2rem; }
.item__desc strong { color: var(--cream); font-weight: 600; }
.item__or { display: inline-block; margin: 0.25rem 0; font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.68rem; color: var(--dim); }
.item__extras { display: block; margin-top: 1rem; }

/* toggle between views (schedule / menu) */
.viewtabs {
  display: flex; gap: clamp(1.4rem, 4vw, 2.4rem);
  border-bottom: 1px solid rgba(241,228,178,0.16);
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}
.viewtab {
  background: none; border: none; color: var(--dim);
  font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem); line-height: 1;
  padding: 0 0 0.9rem; margin-bottom: -1px; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.viewtab:hover { color: var(--cream); }
.viewtab.is-active { color: var(--cream); border-bottom-color: var(--red); }
.view { display: none; }
.view.is-active { display: block; }

/* compact at-a-glance info under the Bar title */
.barinfo { margin: 0 0 clamp(2.4rem, 6vw, 3.6rem); font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.12em; line-height: 1.95; }
.barinfo p { margin: 0; }
.barinfo__line { color: var(--cream); font-size: 0.82rem; }
.barinfo__line b { color: var(--cream); font-weight: 400; }
.barinfo__sub { color: var(--dim); font-size: 0.72rem; letter-spacing: 0.14em; }
.barinfo__sub a { color: var(--dim); }
.barinfo a:hover, .barinfo a:hover b { color: var(--red); border-color: var(--red); }
.menu-cat {
  font-family: var(--disp); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.82rem; color: var(--red);
  margin: clamp(2.4rem, 6vw, 3.6rem) 0 1.1rem;
}
.menu-cat:first-child { margin-top: 0; }
.menu-sep { border-top: 1px solid rgba(241,228,178,0.2); margin-top: clamp(2.4rem, 6vw, 3.4rem); }

/* ============================================================
   ACCESSIBILITY — toggle button + WCAG AA high-contrast mode
   ============================================================ */
.is-red { color: var(--red); }

:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }

.a11y-toggle {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  width: 34px; height: 34px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--cream);
  border: 1px solid rgba(241,228,178,0.45); border-radius: 50%;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.a11y-toggle svg { width: 20px; height: 20px; display: block; }
.a11y-toggle:hover { border-color: var(--cream); }
/* keep the floating button clear of footer + signup content */
.foot { padding-bottom: 5.5rem; }
@media (max-width: 560px) { .splash { padding-bottom: 5.5rem; } }
html.ada .a11y-toggle { background: var(--cream); color: var(--green); border-color: var(--cream); }

/* High-contrast mode: legible red + lighter muted text, link affordances, no clipping */
html.ada { --red: #ff7d72; --dim: #9bb0a6; }
html.ada ::selection { background: var(--red); color: var(--green); }
html.ada .cta:hover { color: var(--green); }
html.ada .top__nav a, html.ada .splash__nav a { text-decoration: underline; text-underline-offset: 4px; }
html.ada .splash { height: auto; min-height: 100svh; overflow: visible; }

/* inline pill-less link */
.cta {
  display: inline-block; font-family: var(--disp); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.85rem; color: var(--cream);
  border-bottom: 1px solid var(--red); padding-bottom: 3px;
  transition: color .2s;
}
.cta:hover { color: var(--red); }

.back { font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--dim); }
.back:hover { color: var(--red); }

.foot {
  padding: 3rem clamp(1.4rem, 6vw, 5rem);
  font-family: var(--disp); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.68rem; color: var(--dim);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.foot a:hover { color: var(--red); }

/* two-column editorial split where useful */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 3rem); }
@media (min-width: 760px) { .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: start; } }

@media (max-width: 560px) {
  .top { padding: 1.1rem 1.4rem; }
  .top__brand { font-size: 0.85rem; }
  .splash__corner { font-size: 0.6rem; }
}

/* HOME SPLASH — graffiti-wall photo, biased to the wall, under a green wash */
.splash { background: var(--green); --dim: #c9d2c3; }
.splash::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('img/brand-graffiti.jpg') center 72% / cover no-repeat;
}
.splash::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 120% 85% at 50% 45%, rgba(16,36,31,0.58) 0%, rgba(16,36,31,0.24) 52%, rgba(16,36,31,0) 82%),
    linear-gradient(rgba(16,36,31,0.22), rgba(16,36,31,0.22));
}
.splash > * { position: relative; z-index: 2; }
html.ada .splash::before { display: none; }
html.ada .splash::after { background: var(--green); }

