/* Flat Iron Tap · charcoal + amber, one radius rule:
   buttons are pills, panels/images are 12px. Theme locked dark. */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --bg: #1a1714;
  --bg-raise: #221e1a;
  --line: #3a332c;
  --text: #f1e8da;
  --text-dim: #b9ac99;
  --amber: #d98e32;
  --amber-deep: #b87322;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

a { color: var(--amber); }

::selection { background: var(--amber); color: var(--bg); }

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

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(26, 23, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav a:hover { color: var(--amber); border-bottom-color: var(--amber); }

.navtoggle { display: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:active { transform: translateY(1px) scale(0.98); }

.btn-solid {
  background: var(--amber);
  color: #201607;
}
.btn-solid:hover { background: #e59d44; }

.btn-ghost {
  border: 1px solid var(--amber);
  color: var(--amber);
}
.btn-ghost:hover { background: rgba(217, 142, 50, 0.12); }

.btn-small { padding: 0.5rem 1.15rem; font-size: 0.88rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(88dvh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,23,20,0.25) 0%, rgba(26,23,20,0.05) 40%, rgba(26,23,20,0.82) 100%),
    linear-gradient(100deg, rgba(26,23,20,0.72) 0%, rgba(26,23,20,0.25) 55%, rgba(26,23,20,0) 100%);
}

.hero-copy {
  position: relative;
  padding: 0 clamp(1rem, 5vw, 3rem) clamp(2.5rem, 7vh, 4.5rem);
  max-width: 720px;
}

.kicker {
  color: var(--amber);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  margin-bottom: 1rem;
}

.hero-sub {
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.8rem;
}

/* ---------- menu ---------- */

.menu { padding: clamp(4rem, 9vh, 7rem) clamp(1rem, 5vw, 3rem); }

.menu-head { max-width: 900px; margin-bottom: 3rem; }

.menu-note { color: var(--text-dim); margin-top: 0.9rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 1400px;
}

.menu-list { list-style: none; }

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
}

.menu-list li + li { border-top: 1px solid var(--line); }

.menu-list span { font-weight: 500; }

.menu-list small {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 400;
}

.menu-list em {
  font-style: normal;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}

.menu-photo { margin-top: 1.5rem; }

.menu-photo img { border-radius: var(--radius); }

.menu-more {
  margin-top: 1.5rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* ---------- story ---------- */

.story {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 9vh, 7rem) clamp(1rem, 5vw, 3rem);
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-media img { border-radius: var(--radius); }

.story-copy { max-width: 52ch; }

.story-copy h2 { margin-bottom: 1.4rem; }

.story-copy p { color: var(--text-dim); }

.story-copy p + p { margin-top: 1rem; }

/* ---------- reviews ---------- */

.reviews { padding: clamp(4rem, 9vh, 7rem) clamp(1rem, 5vw, 3rem); }

.reviews-head { margin-bottom: 2.5rem; }

.review-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1400px;
}

.review {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.review:nth-child(2) { transform: translateY(1.25rem); }

.stars {
  color: var(--amber);
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}

.review p { font-size: 1.05rem; line-height: 1.5; }

.review footer {
  margin-top: 1.1rem;
  color: var(--amber);
  font-weight: 500;
  font-size: 0.9rem;
}

.review footer span { color: var(--text-dim); font-weight: 400; }

/* ---------- visit ---------- */

.visit {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 9vh, 7rem) clamp(1rem, 5vw, 3rem);
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
}

.visit-media img { border-radius: var(--radius); }

.visit-copy h2 { margin-bottom: 2rem; }

.visit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 620px;
}

.hours { list-style: none; }

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.hours li + li { border-top: 1px solid var(--line); }

.hours em { font-style: normal; font-variant-numeric: tabular-nums; }

.addr { color: var(--text-dim); margin-bottom: 1.25rem; }

.visit-copy .btn { margin: 0 0.6rem 0.6rem 0; }

.visit-note { margin-top: 1.75rem; color: var(--text-dim); }

/* ---------- footer ---------- */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover { color: var(--amber); }

/* ---------- reveal motion ---------- */

/* Visible by default; JS adds .pre only to below-fold elements,
   then swaps it for .in as they enter the viewport. */
.reveal.pre { opacity: 0; transform: translateY(24px); }

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal.pre { opacity: 1; transform: none; }
  .btn, .nav a { transition: none; }
}

/* ---------- mobile ---------- */

@media (max-width: 860px) {
  .topbar { gap: 1rem; }

  .topbar > .btn { margin-left: auto; }

  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
    display: none;
  }

  .nav a {
    padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
    border-bottom: none;
  }

  body.nav-open .nav { display: flex; }

  .navtoggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    align-items: center;
    cursor: pointer;
  }

  .navtoggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text);
  }

  .menu-grid, .review-row { grid-template-columns: 1fr; }

  .review:nth-child(2) { transform: none; }

  .story, .visit { grid-template-columns: 1fr; }

  .visit-media { order: -1; }

  .visit-cols { grid-template-columns: 1fr; }

  .hero { min-height: 92dvh; }

  .hero-img { object-position: 22% center; }
}
