/* The Dakota East Side Ice House — Stylesheet */
/* Fonts: Sacramento (script), Oswald (display sans), Jost (body) */

/*
  COLOR SYSTEM — No white anywhere. Three alternating surface tones:
  - DARK:   --near-black  #0a0704  (hero, menu, press, footer, manifesto)
  - MID:    --slate       #1e2a27  (about, reservations — warm dark green-gray)
  - ACCENT: --sand        #ede8dc  (events, contact areas — warm off-cream/sand)
  
  Old --cream (#f4efe4) and --warm-white (#faf7f2) are replaced by --sand and --slate.
  This keeps full contrast accessibility (sand is still WCAG AA on dark text)
  while eliminating any pure white.
*/

:root {
  --teal:       #116d62;
  --teal-dark:  #0d524a;
  --teal-deep:  #082e29;
  --teal-mid:   #155f56;
  --teal-light: #2ab8a6;   /* bumped brighter so it reads on dark bg */
  --teal-pale:  #c8e8e4;
  --sand:       #ede8dc;   /* warm off-white/sand — replaces cream/warm-white */
  --sand-dark:  #e0d9cc;   /* slightly deeper sand for alternating sections */
  --slate:      #1e2a27;   /* warm dark green-gray — mid-tone surface */
  --rust:       #c0451e;
  --near-black: #0a0704;
  --text-on-sand:  #1c2220;
  --text-mid:      #3d5450;
  --text-muted:    #6e8884;
  --border:     rgba(17,109,98,0.15);
  --border-md:  rgba(17,109,98,0.35);
  --border-str: rgba(17,109,98,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sand);
  color: var(--text-on-sand);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ══ NAV ══ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--near-black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  border-bottom: 2px solid var(--teal);
}
.nav-logo {
  line-height: 0;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 38px;
  display: block;
  border: none;
  outline: none;
  filter: brightness(0) saturate(100%) invert(85%) sepia(20%) saturate(400%) hue-rotate(130deg) brightness(95%);
}
.nav-logo {
  line-height: 0;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  border: none;
  outline: none;
}
.nav-links { display: flex; list-style: none; }
.nav-links a {
  display: block; padding: 20px 15px;
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,239,228,0.55); text-decoration: none;
  transition: color 0.2s;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.nav-links a:hover { color: var(--teal-pale); }
.nav-links a.active { color: var(--teal-pale); border-bottom-color: var(--teal-light); }
.nav-order {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: var(--rust); color: #fff;
  padding: 12px 24px; text-decoration: none;
  transition: background 0.2s;
}
.nav-order:hover { background: #d9552a; }

/* ══ HERO — full-bleed background image ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--near-black);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: saturate(0.65) brightness(0.4);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,16,12,0.92) 0%,
    rgba(8,16,12,0.75) 40%,
    rgba(8,16,12,0.28) 72%,
    rgba(8,16,12,0.06) 100%
  );
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  overflow: hidden;
}
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(17,109,98,0.18);
  pointer-events: none;
}
.hero-ring-1 { width: 420px; height: 420px; top: -140px; left: -160px; }
.hero-ring-2 { width: 280px; height: 280px; bottom: 40px; right: -100px; }

.hero-tag {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--teal-light);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s both;
}
.hero-tag::before { content:''; width: 28px; height: 1px; background: var(--teal-light); }

/* HERO LOGO — large and prominent */
.hero-logo-img {
  width: 520px;
  max-width: 92%;
  display: block;
  border: none;
  outline: none;
  filter: brightness(0) saturate(100%) invert(72%) sepia(25%) saturate(600%) hue-rotate(130deg) brightness(112%);
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.25s both;
}

.hero-tagline {
  font-family: 'Sacramento', cursive;
  font-size: 34px; color: rgba(244,239,228,0.55);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.35s both;
}

.hero-hours {
  display: flex; flex-wrap: wrap;
  border: 1px solid rgba(17,109,98,0.4);
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.45s both;
  background: rgba(8,46,41,0.35);
  backdrop-filter: blur(4px);
}
.h-pill {
  padding: 8px 14px; border-right: 1px solid rgba(17,109,98,0.25);
  white-space: nowrap;
}
.h-pill:last-child { border-right: none; }
.h-pill strong {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--teal-pale); margin-bottom: 1px;
}
.h-pill span {
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300;
  color: rgba(244,239,228,0.55);
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.55s both;
}
.btn-solid {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: var(--teal); color: #fff;
  padding: 13px 28px; text-decoration: none; cursor: pointer; border: none;
  transition: background 0.2s;
}
.btn-solid:hover { background: var(--teal-light); }
.btn-outline {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: transparent; color: var(--teal-pale);
  padding: 12px 28px; text-decoration: none; cursor: pointer;
  border: 1px solid rgba(200,232,228,0.35); transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--teal-pale); color: var(--teal-pale); }

.hero-right {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  margin: 48px 48px 48px 0;
  box-shadow: 0 0 0 1px rgba(17,109,98,0.3), 0 8px 48px rgba(0,0,0,0.65);
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.85) brightness(0.88);
  transition: filter 0.4s;
}
.hero-right img:hover { filter: saturate(1.05) brightness(1); }

/* ══ SECTION SHELL ══ */
section { padding: 90px 48px; }
.inner { max-width: 1160px; margin: 0 auto; }
.kicker {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
/* kicker on dark bg needs brighter teal */
.kicker-light {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--teal-pale); margin-bottom: 12px;
}
.sh {
  font-family: 'Sacramento', cursive;
  font-size: clamp(54px, 6.5vw, 96px);
  line-height: 1.0; color: var(--teal-deep);
  margin-bottom: 28px; letter-spacing: 0.01em;
}
.sh-oswald {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.5vw, 60px); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--teal-deep); line-height: 1; margin-bottom: 28px;
}
/* heading on dark/slate bg */
.sh-light { color: var(--sand); }
.sh-oswald-light { color: var(--sand); }

/* ══ RULE DIVIDER ══ */
.rule {
  display: flex; align-items: center; gap: 16px;
  padding: 0 48px;
  background: var(--slate);
}
.rule::before, .rule::after { content: ''; flex: 1; height: 1px; background: rgba(17,109,98,0.35); }
.rule span {
  font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 300;
  letter-spacing: 0.6em; text-transform: uppercase;
  color: var(--teal-pale); white-space: nowrap; padding: 16px 0;
}

/* ══ MANIFESTO BAND ══ */
.manifesto {
  background: var(--near-black);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17,109,98,0.2);
  border-bottom: 1px solid rgba(17,109,98,0.2);
}
.manifesto::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/dakota-lawn1.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,7,4,0.55) 0%, rgba(10,7,4,0.35) 50%, rgba(10,7,4,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}
.manifesto-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(54px, 9vw, 112px);
  font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--rust);
  line-height: 1;
  position: relative; z-index: 2;
}
.manifesto-sub {
  font-family: 'Sacramento', cursive;
  font-size: clamp(38px, 5vw, 68px);
  color: rgba(237,232,220,0.78);
  position: relative; z-index: 2;
  margin-top: 6px; margin-bottom: 20px;
}
.manifesto-note {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 300;
  letter-spacing: 0.55em; text-transform: uppercase;
  color: rgba(237,232,220,0.65);
  position: relative; z-index: 2;
}

/* ══ ABOUT — SLATE surface ══ */
#about {
  background: var(--slate);
  background-image: repeating-linear-gradient(
    180deg,
    transparent, transparent 39px,
    rgba(0,0,0,0.06) 40px
  );
}
#about .kicker { color: var(--teal-light); }
#about .sh { color: var(--teal-pale); }
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }
.about-body p {
  font-family: 'Jost', sans-serif; font-size: 16px;
  color: rgba(237,232,220,0.72);
  margin-bottom: 18px; line-height: 1.85; font-weight: 300;
}
.about-body strong { color: var(--teal-pale); font-weight: 500; }
.pull-quote {
  margin: 32px 0; padding: 28px 32px 28px 48px;
  background: var(--near-black); position: relative;
  border-left: 3px solid var(--teal);
}
.pull-quote::before {
  content: '\201C'; font-family: 'Sacramento', cursive; font-size: 100px;
  color: var(--teal); line-height: 1;
  position: absolute; top: 4px; left: 12px; opacity: 0.6;
}
.pull-quote p {
  font-family: 'Jost', sans-serif; font-style: italic; font-size: 20px;
  color: var(--sand); line-height: 1.6; margin: 0 0 10px;
}
.pull-quote cite {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--teal-light); font-style: normal;
}

.sidebar { display: flex; flex-direction: column; gap: 16px; }
.welcome-card {
  background: var(--near-black); padding: 28px 24px; text-align: center;
  border-top: 3px solid var(--teal);
}
.welcome-card h3 {
  font-family: 'Sacramento', cursive; font-size: 40px; color: var(--teal-pale);
  margin-bottom: 10px;
}
.welcome-card p {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,239,228,0.45); line-height: 2.4;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-md); }
.stat-box { background: var(--sand-dark); padding: 22px 16px; text-align: center; }
.stat-n { font-family: 'Oswald', sans-serif; font-size: 40px; font-weight: 700; color: var(--teal); line-height: 1; }
.stat-l { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-top: 5px; }
.contact-card {
  border: 1px solid var(--border-md); padding: 22px 24px;
  background: var(--sand-dark);
}
.contact-card h4 {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.contact-card p, .contact-card a {
  font-size: 15px; color: var(--text-mid); text-decoration: none;
  line-height: 2; display: block;
}
.contact-card a:hover { color: var(--teal); }
.contact-card .phone { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 400; color: var(--teal-dark); letter-spacing: 0.05em; }

/* ══ MENU — near-black with dot texture ══ */
#menu {
  background: var(--teal-deep);
  background-image: radial-gradient(circle, rgba(17,109,98,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  padding-bottom: 60px;
}
#menu .kicker { color: var(--teal-pale); }
#menu .sh-oswald { color: var(--sand); }
.menu-intro {
  font-family: 'Jost', sans-serif; font-size: 16px; font-weight: 300;
  color: rgba(237,232,220,0.55);
  max-width: 560px; margin-bottom: 48px; line-height: 1.85;
}
.menu-intro strong { color: var(--teal-pale); font-weight: 400; }

.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: rgba(17,109,98,0.18); }
.menu-col { background: rgba(10,7,4,0.88); padding: 28px 22px; }
.menu-col-head {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  /* Teal-pale on dark bg — much easier to read than --teal-light */
  color: var(--teal-pale);
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(200,232,228,0.25);
}
.mi {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid rgba(17,109,98,0.1); gap: 8px;
}
.mi:last-child { border-bottom: none; }
.mi-name { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300; color: rgba(237,232,220,0.88); flex: 1; line-height: 1.4; }
.mi-sub { font-size: 12px; color: rgba(237,232,220,0.42); font-style: italic; margin-top: 2px; }
/* Prices: use sand instead of teal on dark — better contrast, avoids teal-on-black problem */
.mi-price { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 400; color: var(--teal-pale); white-space: nowrap; }
.menu-note {
  margin-top: 24px; font-size: 12px; font-weight: 300; font-style: italic;
  color: rgba(237,232,220,0.65); text-align: center;
}
.menu-note a { color: var(--teal-light); text-decoration: none; }

/* ══ GALLERY STRIP ══ */
.gallery-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  background: var(--near-black);
}
.gallery-strip img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  filter: saturate(0.7) brightness(0.78); transition: filter 0.4s;
}
.gallery-strip img:hover { filter: saturate(1.05) brightness(1); }

/* ══ EVENTS — SAND surface ══ */
#events {
  background: var(--teal-deep);
  background-image: radial-gradient(circle, rgba(17,109,98,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
}
#events .kicker { color: var(--teal-light); }
#events .sh-oswald { color: var(--sand); }
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(17,109,98,0.15); margin-bottom: 36px; }
.ev-card {
  background: rgba(0,0,0,0.2); padding: 32px 24px; border-bottom: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.ev-card:hover { border-bottom-color: var(--teal); background: rgba(17,109,98,0.18); }
.ev-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.ev-title {
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 8px;
}
.ev-desc { font-size: 15px; font-weight: 300; color: rgba(237,232,220,0.65); line-height: 1.65; }
.events-cta {
  text-align: center; padding: 16px 0;
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(237,232,220,0.7);
}
.events-cta a { color: var(--teal-light); text-decoration: none; border-bottom: 1px solid var(--teal-light); padding-bottom: 1px; }
/* ══ WEEKLY RECURRING EVENTS ══ */
.weekly-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(17,109,98,0.2);
  margin-bottom: 32px;
}
.we-item {
  background: var(--teal-deep);
  padding: 28px 32px;
  border-bottom: 3px solid var(--teal);
  position: relative;
  overflow: hidden;
}
.we-item::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(17,109,98,0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.we-day {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 8px;
  position: relative;
}
.we-name {
  font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--sand); line-height: 1; margin-bottom: 8px;
  position: relative;
}
.we-detail {
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300;
  color: rgba(237,232,220,0.5);
  position: relative;
}

@media (max-width: 640px) {
  .weekly-events { grid-template-columns: 1fr; }
  .we-item { padding: 22px 20px; }
  .we-name { font-size: 22px; }
}



/* ══ PRESS — near-black ══ */
#press { background: var(--near-black); padding: 56px 48px; }
#press .kicker { color: var(--teal-pale); }
#press .sh-oswald { color: var(--sand); }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(17,109,98,0.2); }
.press-card { background: rgba(10,7,4,0.82); overflow: hidden; transition: background 0.2s; }
.press-card:hover { background: rgba(13,82,74,0.42); }
.press-card-top {
  padding: 20px 22px 16px;
  min-height: 72px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; border-bottom: 1px solid rgba(17,109,98,0.2);
}
.press-card-top::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(17,109,98,0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}
.press-source {
  position: relative; font-family: 'Sacramento', cursive;
  font-size: 24px; color: var(--teal-pale);
}
.press-year {
  position: relative; font-family: 'Oswald', sans-serif; font-size: 9px;
  font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(237,232,220,0.32); margin-top: 2px;
}
.press-body { padding: 14px 22px 20px; }
.press-body a {
  font-size: 15px; font-weight: 300;
  color: rgba(237,232,220,0.68);
  text-decoration: none; line-height: 1.6; transition: color 0.2s;
}
.press-body a:hover { color: var(--teal-pale); }

/* Press photo slot — for owner-provided magazine/feature photos */
.press-photo {
  width: 100%;
  height: auto;          /* render at natural proportions — no cropping */
  max-height: 280px;     /* cap height so tall images don't dominate */
  object-fit: contain;   /* show full image, letterbox if needed */
  object-position: center;
  display: block;
  background: #0a0704;   /* fills any letterbox area with near-black */
  filter: saturate(0.82) brightness(0.88);
  border-bottom: 1px solid rgba(17,109,98,0.2);
  transition: filter 0.3s;
}
.press-card:hover .press-photo { filter: saturate(1) brightness(1); }

/* ══ RESERVATIONS — SLATE surface ══ */
#reservations {
  background: var(--teal-deep);
  background-image: repeating-linear-gradient(
    180deg,
    transparent, transparent 39px,
    rgba(17,109,98,0.08) 40px
  );
}
#reservations .kicker { color: var(--teal-light); }
#reservations .sh { color: var(--teal-pale); }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.res-info p { font-size: 16px; font-weight: 300; color: rgba(237,232,220,0.72); margin-bottom: 16px; line-height: 1.85; }
.res-info strong { color: var(--teal-pale); font-weight: 500; }
.res-features { list-style: none; margin: 24px 0 28px; }
.res-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(17,109,98,0.2);
  font-size: 15px; font-weight: 300; color: rgba(237,232,220,0.70);
}
.res-features li::before { content: '◆'; color: var(--teal-light); font-size: 7px; margin-top: 7px; flex-shrink: 0; }
.res-contact { font-size: 13px; color: rgba(237,232,220,0.45); }
.res-contact a { color: var(--teal-pale); text-decoration: none; }
.form-box { background: var(--near-black); padding: 40px; border-top: 3px solid var(--teal); }
.form-box h4 {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border-md);
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(237,232,220,0.7); margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(0,0,0,0.35); border: 1px solid var(--border-md);
  color: var(--sand); padding: 10px 14px;
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal-pale); }
.fg textarea { height: 96px; resize: vertical; }
.fg input::placeholder { color: rgba(237,232,220,0.45); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg select option { background: var(--near-black); }

/* ══ CONTACT — teal-deep with texture ══ */
#contact {
  background: var(--teal-deep);
  background-image: radial-gradient(circle, rgba(17,109,98,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 72px 48px;
}
#contact .kicker { color: var(--teal-pale); }
#contact .sh-oswald { color: var(--sand); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(0,0,0,0.2); margin-bottom: 40px; }
.cb { background: rgba(8,46,41,0.6); padding: 36px 28px; }
.cb h4 {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--teal-pale); margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(17,109,98,0.35);
}
.cb p, .cb a {
  font-size: 15px; font-weight: 300; color: rgba(237,232,220,0.68);
  text-decoration: none; display: block; line-height: 2;
  transition: color 0.2s;
}
.cb a:hover { color: var(--teal-pale); }
.cb .big-phone {
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 400;
  color: rgba(237,232,220,0.88); letter-spacing: 0.05em; line-height: 1.3;
}
.cb .big-email {
  font-family: 'Jost', sans-serif; font-size: 18px; font-weight: 400;
  color: var(--teal-pale); letter-spacing: 0.02em; line-height: 1.3;
  text-decoration: none; display: block;
  transition: color 0.2s;
}
.cb .big-email:hover { color: #ffffff; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.soc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s, transform 0.2s;
  width: 52px;
}
.soc-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}
.soc-icon span {
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  line-height: 1.2;
}
.soc-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.soc-icon:hover span { color: rgba(255,255,255,0.75); }

/* ══ FOOTER ══ */
footer {
  background: var(--near-black);
  border-top: 2px solid var(--teal);
  padding: 56px 48px 36px;
  text-align: center;
}
.footer-logo {
  height: 130px;
  display: inline-block;
  margin-bottom: 12px;
  border: none;
  outline: none;
  filter: brightness(0) saturate(100%) invert(72%) sepia(25%) saturate(600%) hue-rotate(130deg) brightness(105%);
}
.footer-tagline {
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 300;
  letter-spacing: 0.55em; text-transform: uppercase;
  color: rgba(237,232,220,0.6); margin-bottom: 40px;
}
.footer-hr { width: 60px; height: 1px; background: var(--border-str); margin: 0 auto 36px; }
.footer-copy {
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 300;
  letter-spacing: 0.15em; color: rgba(237,232,220,0.6); line-height: 2.5;
}
.footer-copy a { color: rgba(237,232,220,0.6); text-decoration: none; transition: color 0.2s; }
.footer-copy a:hover { color: var(--teal-pale); }

/* ══ ANIM ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══ RESPONSIVE ══ */

/* Root fix: prevent ANY element from causing horizontal overflow */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* Prevent grid/flex children from blowing out their containers */
.hero > *, .about-grid > *, .menu-grid > *, .events-grid > *,
.press-grid > *, .res-grid > *, .contact-grid > *, .inner { min-width: 0; }

/* Tablet: 768–960px */
@media (max-width: 960px) {
  .nav { padding: 0 20px; position: fixed; top: 0; left: 0; right: 0; }
  body { padding-top: 54px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.nav-open { display: flex; flex-direction: column; position: fixed; top: 54px; left: 0; right: 0; background: var(--near-black); border-bottom: 2px solid var(--teal); padding: 8px 0 16px; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
  .nav-links.nav-open li { list-style: none; }
  .nav-links.nav-open a { padding: 12px 24px; border-bottom: none; margin-bottom: 0; color: rgba(244,239,228,0.7); font-size: 13px; letter-spacing: 0.2em; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 24px 40px; }
  .hero-logo-img { width: 340px; }
  .hero-tagline { font-size: 26px; }
  .hero-right {
    margin: 0;
    min-height: 280px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px;
  }

  section { padding: 64px 24px; }
  .rule { padding: 0 24px; }
  .manifesto { padding: 48px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid .menu-col:last-child { grid-column: span 2; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; gap: 40px; }
  #contact { padding: 64px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile: up to 640px */
@media (max-width: 640px) {
  /* Nav */
  .nav { padding: 0 16px; height: 52px; }
  .nav-logo img { height: 30px; }
  .nav-order { padding: 9px 14px; font-size: 10px; letter-spacing: 0.12em; }

  /* Hero — single column, bg photo carries the visual */
  .hero {
    display: block;        /* kill the grid entirely on mobile */
    min-height: auto;
  }
  .hero-left { padding: 52px 20px 40px; }
  .hero-logo-img { width: 260px; max-width: 80%; }
  .hero-tag { font-size: 9px; letter-spacing: 0.3em; }
  .hero-tagline { font-size: 24px; }
  /* Hours: 2-column grid */
  .hero-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .h-pill { border-right: none; border-bottom: 1px solid rgba(17,109,98,0.2); }
  .h-pill:nth-child(odd) { border-right: 1px solid rgba(17,109,98,0.2); }
  .h-pill:last-child { border-bottom: none; }
  .h-pill:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  /* Buttons stack */
  .hero-btns { flex-direction: column; }
  .btn-solid, .btn-outline { text-align: center; display: block; }
  /* Hide the photo quad — full-bleed bg image handles it */
  .hero-right { display: none; }

  /* Manifesto */
  .manifesto { padding: 40px 20px; }
  .manifesto-headline { font-size: clamp(38px, 12vw, 60px); }
  .manifesto-sub { font-size: clamp(28px, 8vw, 44px); }

  /* Sections */
  section { padding: 52px 20px; }
  .rule { padding: 0 20px; }
  .inner { padding: 0; }

  /* Typography */
  .sh { font-size: clamp(42px, 11vw, 68px); }
  .sh-oswald { font-size: clamp(24px, 7vw, 38px); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .pull-quote { padding: 20px 20px 20px 36px; }
  .pull-quote p { font-size: 17px; }

  /* Menu — full bleed edge-to-edge */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid .menu-col:last-child { grid-column: span 1; }
  section#menu { padding: 52px 0 40px; }
  #menu > .inner > .kicker,
  #menu > .inner > .sh-oswald,
  #menu > .inner > div,
  #menu > .inner > .menu-intro,
  #menu > .inner > .menu-note { padding: 0 20px; }
  .menu-grid { margin-left: 0; margin-right: 0; }

  /* Gallery */
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { aspect-ratio: 16/9; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }

  /* Press */
  .press-grid { grid-template-columns: 1fr; }

  /* Reservations */
  .res-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-box { padding: 28px 20px; }
  .fg-row { grid-template-columns: 1fr; }

  /* Contact */
  #contact { padding: 52px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .social-links { gap: 20px; }
  .soc-icon { width: 44px; }
  .soc-icon svg { width: 22px; height: 22px; }

  /* Footer */
  footer { padding: 44px 20px 28px; }
  .footer-logo { height: 80px; }
}
