/* =========================================================================
   The Original Cigar & Bar — Design System
   ========================================================================= */

:root {
  --brown-deep: #2C1A0E;
  --brown-darker: #1a0f08;
  --brown-mid: #4a2d1a;
  --ember: #8B4513;
  --gold: #D4A017;
  --gold-soft: #b8881a;
  --gold-bright: #e8b829;
  --cream: #faf7f2;
  --cream-dim: #d9d2c4;
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--brown-darker);
  color: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body { line-height: 1.6; }

::selection { background: var(--gold); color: var(--brown-darker); }

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

/* =========================================================================
   Typography helpers
   ========================================================================= */

.display    { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.display-i  { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 400; }
.mono       { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }
.label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold       { color: var(--gold); }
.cream      { color: var(--cream); }

/* =========================================================================
   Textures (no photos — pure CSS)
   ========================================================================= */

.tex-smoke {
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(212,160,23,0.18), transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 70%, rgba(139,69,19,0.22), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(212,160,23,0.12), transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(0,0,0,0.6), transparent 60%),
    linear-gradient(180deg, #1a0f08 0%, #2C1A0E 40%, #1a0f08 100%);
}

.tex-leather {
  background-color: var(--brown-deep);
  background-image:
    radial-gradient(circle at 13% 27%, rgba(0,0,0,0.35) 0.5px, transparent 1.5px),
    radial-gradient(circle at 67% 81%, rgba(255,220,150,0.04) 0.5px, transparent 1.5px),
    radial-gradient(circle at 38% 64%, rgba(0,0,0,0.25) 0.4px, transparent 1.2px),
    radial-gradient(circle at 91% 12%, rgba(255,200,120,0.06) 0.3px, transparent 1px),
    radial-gradient(ellipse at 50% 50%, rgba(74,45,26,0.4), transparent 70%),
    linear-gradient(135deg, #2C1A0E, #1a0f08);
  background-size: 7px 7px, 11px 11px, 5px 5px, 13px 13px, 100% 100%, 100% 100%;
}

.tex-wood {
  background-color: #2C1A0E;
  background-image:
    repeating-linear-gradient(92deg,
      rgba(0,0,0,0.0) 0px, rgba(0,0,0,0.0) 3px,
      rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px,
      rgba(0,0,0,0.0) 4px, rgba(0,0,0,0.0) 9px,
      rgba(255,200,120,0.04) 9px, rgba(255,200,120,0.04) 10px,
      rgba(0,0,0,0.0) 10px, rgba(0,0,0,0.0) 17px,
      rgba(0,0,0,0.22) 17px, rgba(0,0,0,0.22) 18px,
      rgba(0,0,0,0.0) 18px, rgba(0,0,0,0.0) 28px),
    radial-gradient(ellipse 80% 40% at 30% 20%, rgba(139,69,19,0.4), transparent 70%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(0,0,0,0.5), transparent 70%),
    linear-gradient(180deg, #3a2214, #1a0f08);
}

.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.015) 0.5px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.04) 0.5px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.vignette { position: relative; }
.vignette::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 50%, rgba(0,0,0,0.7) 100%);
}

/* =========================================================================
   Animations
   ========================================================================= */

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .55; }
  50%      { transform: translate3d(40px,-20px,0) scale(1.08); opacity: .8; }
}

@keyframes drift2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1.1); opacity: .35; }
  50%      { transform: translate3d(-50px,30px,0) scale(1); opacity: .55; }
}

@keyframes drift3 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .5; }
  50%      { transform: translate3d(20px,15px,0) scale(1.05); opacity: .75; }
}

@keyframes flicker {
  0%, 46%, 49%, 71%, 74%, 100% { opacity: 1; }
  47%, 48% { opacity: 0.85; }
  72%, 73% { opacity: 0.92; }
}

/* =========================================================================
   Rules / dividers
   ========================================================================= */

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.55;
}
.gold-rule-thin {
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream); background: transparent;
  border: 1px solid rgba(212,160,23,0.5);
  cursor: pointer;
  transition: all .35s ease;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
.btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,160,23,0.06); }

.btn-primary { background: var(--gold); color: var(--brown-darker); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-bright); color: var(--brown-darker); border-color: var(--gold-bright); }

.btn-arrow { display: inline-block; transition: transform .35s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =========================================================================
   Form fields (used on contact page)
   ========================================================================= */

.field-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(212,160,23,0.25);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color .3s, background .3s;
  outline: none;
}
.field-input:focus { border-color: var(--gold); background: rgba(0,0,0,0.45); }
.field-input::placeholder { color: rgba(217,210,196,0.4); }
textarea.field-input { resize: vertical; min-height: 120px; font-family: 'Inter', sans-serif; }

/* =========================================================================
   Decorative primitives — used inline in HTML
   ========================================================================= */

.band-stamp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(212,160,23,0.45);
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.25);
}
.band-stamp::before, .band-stamp::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

.crest {
  width: 86px; height: 86px; position: relative;
  display: inline-flex; align-items: center; justify-content: center;
}
.crest svg { position: absolute; inset: 0; }
.crest-letters {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.crest.sm  { width: 56px; height: 56px; }
.crest.sm .crest-letters { font-size: 24px; }

.corner-frame { position: absolute; inset: 0; pointer-events: none; }
.corner-frame > span {
  position: absolute; width: 24px; height: 24px;
  border-color: var(--gold); opacity: 0.7;
}
.corner-frame .tl { top: 14px; left: 14px;  border-top: 1px solid; border-left: 1px solid; }
.corner-frame .tr { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.corner-frame .bl { bottom: 14px; left: 14px;  border-bottom: 1px solid; border-left: 1px solid; }
.corner-frame .br { bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }

/* =========================================================================
   Site Nav (fixed, scroll-aware via JS)
   ========================================================================= */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 28px 48px;
  transition: all .4s ease;
  background: linear-gradient(180deg, rgba(26,15,8,0.6), transparent);
  border-bottom: 1px solid transparent;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header.scrolled {
  padding: 16px 48px;
  background: rgba(26,15,8,0.92);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}

.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.brand-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.brand-bar { width: 1px; height: 22px; background: rgba(212,160,23,0.35); }
.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  position: relative;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color .25s;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-cta { padding: 12px 22px !important; font-size: 10px !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 26px; height: 2px; background: var(--gold); transition: transform .25s; }

/* =========================================================================
   Page header (used on services / about / contact)
   ========================================================================= */

.page-header {
  position: relative;
  padding: 180px 80px 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(212,160,23,0.18);
}
.page-header .smoke-1,
.page-header .smoke-2,
.section-smoke .smoke-1,
.section-smoke .smoke-2 {
  position: absolute; inset: -10%;
  mix-blend-mode: screen;
  pointer-events: none;
}
.page-header .smoke-1, .section-smoke .smoke-1 {
  background: radial-gradient(ellipse 30% 40% at 30% 60%, rgba(212,160,23,0.12), transparent 60%);
  animation: drift 14s ease-in-out infinite;
}
.page-header .smoke-2, .section-smoke .smoke-2 {
  background: radial-gradient(ellipse 35% 50% at 70% 50%, rgba(255,220,150,0.08), transparent 65%);
  animation: drift2 18s ease-in-out infinite;
}

.coord-strip {
  position: absolute; top: 110px; left: 48px; right: 48px;
  display: flex; align-items: center; gap: 18px;
}
.coord-strip .rule { flex: 1; height: 1px; background: rgba(212,160,23,0.22); }
.coord-strip .mono { font-size: 10px; color: var(--gold); opacity: .7; }

.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.page-header h1 {
  margin-top: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  font-weight: 400;
  color: var(--cream);
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p.lede {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-dim);
  font-weight: 300;
}

.ornament-row { margin-top: 28px; display: flex; justify-content: center; }

/* =========================================================================
   HERO (homepage)
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hero .smoke-layer {
  position: absolute; inset: -10%;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero .smoke-a { background: radial-gradient(ellipse 30% 40% at 30% 60%, rgba(212,160,23,0.12), transparent 60%); animation: drift 14s ease-in-out infinite; }
.hero .smoke-b { background: radial-gradient(ellipse 35% 50% at 70% 50%, rgba(255,220,150,0.08), transparent 65%); animation: drift2 18s ease-in-out infinite; }
.hero .smoke-c { background: radial-gradient(ellipse 25% 35% at 50% 30%, rgba(139,69,19,0.18), transparent 60%); animation: drift3 22s ease-in-out infinite reverse; }

.hero-top-strip {
  position: absolute; top: 90px; left: 48px; right: 48px;
  display: flex; align-items: center; gap: 18px;
}
.hero-top-strip .rule { flex: 1; height: 1px; background: rgba(212,160,23,0.25); }
.hero-top-strip .mono { font-size: 10px; color: var(--gold); opacity: .85; }

.hero-rail {
  position: absolute;
  top: 50%;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.4em;
  color: rgba(212,160,23,0.5);
  white-space: nowrap;
}
.hero-rail.left  { left: 24px;  transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.hero-rail.right { right: 24px; transform: translateY(-50%) rotate(90deg);  transform-origin: right center; }

.hero-stack {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 180px 80px 120px;
  text-align: center;
}
.hero-crest { margin-bottom: 36px; animation: flicker 8s infinite; }
.hero h1 {
  margin-top: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.98;
  font-weight: 400;
  max-width: 1100px;
  color: var(--cream);
}
.hero h1 em { font-style: italic; }
.hero h1 em.gold { color: var(--gold); display: inline-block; margin: 0 0.15em; }
.hero h1 em.cream { color: var(--cream); }

.hero-lede {
  margin-top: 28px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-dim);
  font-weight: 300;
}

.hero-ctas {
  margin-top: 44px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center;
}

.hero-bottom {
  position: relative; z-index: 2;
  padding: 22px 80px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(212,160,23,0.18);
}
.hero-bottom .divider { width: 1px; height: 28px; background: rgba(212,160,23,0.25); }
.hero-bottom .callout .label { font-size: 10px; margin-bottom: 4px; }
.hero-bottom .callout .val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: var(--cream);
  font-style: italic;
}
.hero-bottom .callout.center { text-align: center; }
.hero-bottom .callout.right  { text-align: right; }

/* =========================================================================
   Section header layout (used on Features, Menu, etc.)
   ========================================================================= */

.section { padding: 140px 80px; background: var(--brown-darker); position: relative; }
.section.alt { background: linear-gradient(180deg, #1a0f08, #2C1A0E); border-top: 1px solid rgba(212,160,23,0.15); }
.section.tex-leather { padding: 120px 80px; overflow: hidden; }

.section-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}
.section-head .label { margin-bottom: 18px; }
.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  color: var(--cream);
  font-weight: 400;
  max-width: 720px;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head .gold-rule-thin { margin-bottom: 16px; }
.section-head .stamp {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 16px;
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================================
   Card grid (Features / Menu)
   ========================================================================= */

.card-grid {
  display: grid;
  border-top: 1px solid rgba(212,160,23,0.18);
  border-left: 1px solid rgba(212,160,23,0.18);
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-cell {
  border-right: 1px solid rgba(212,160,23,0.18);
  border-bottom: 1px solid rgba(212,160,23,0.18);
}

.feat-card {
  position: relative;
  padding: 56px 44px 48px;
  background: linear-gradient(180deg, rgba(44,26,14,0.5), rgba(26,15,8,0.5));
  border: 1px solid rgba(212,160,23,0.18);
  transition: all .5s ease;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
}
.feat-card:hover {
  background: linear-gradient(180deg, rgba(74,45,26,0.4), rgba(26,15,8,0.6));
  border-color: rgba(212,160,23,0.55);
}

.feat-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px;
}
.numeral-badge { position: relative; width: 64px; height: 64px; }
.numeral-badge svg { position: absolute; inset: 0; }
.numeral-badge .num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  transition: color .4s;
}
.numeral-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--gold);
  opacity: 0.7;
  padding-top: 10px;
  letter-spacing: 0.12em;
}

.feat-card .label { margin-bottom: 14px; }
.feat-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 400;
}
.feat-card .body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 28px;
  flex: 1;
}

.feat-card .meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(212,160,23,0.18);
  margin-bottom: 24px;
}
.feat-card .meta .mono { font-size: 9px; color: var(--gold); opacity: 0.85; }

.feat-card a.link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color .35s;
}
.feat-card a.link::after {
  content: "→";
  display: inline-block;
  transition: transform .35s;
}
.feat-card:hover a.link { color: var(--gold); }
.feat-card:hover a.link::after { transform: translateX(6px); }

/* corner ornaments inside feat cards */
.feat-card .corner {
  position: absolute; width: 20px; height: 20px;
  border-color: rgba(212,160,23,0.5);
  opacity: 0.5; transition: opacity .4s;
}
.feat-card .corner.tl { top: 12px; left: 12px;   border-top: 1px solid; border-left: 1px solid; }
.feat-card .corner.br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }
.feat-card:hover .corner { opacity: 1; }

.feat-card .ember {
  position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,160,23,0.18), transparent 70%);
  opacity: 0; transition: opacity .6s;
  pointer-events: none;
}
.feat-card:hover .ember { opacity: 1; }

/* =========================================================================
   Ambiance / quote section
   ========================================================================= */

.ambiance {
  position: relative;
  padding: 120px 80px;
  overflow: hidden;
}
.ambiance .vignette-fx {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.ambiance .inner {
  position: relative; z-index: 2;
  max-width: 980px; margin: 0 auto; text-align: center;
}
.ambiance .label { margin-bottom: 28px; }
.ambiance blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  line-height: 1.3;
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
}
.ambiance blockquote em { color: var(--gold); }
.ambiance .signoff {
  margin-top: 24px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* =========================================================================
   Visit (homepage) — left invitation + right hours card
   ========================================================================= */

.visit {
  position: relative;
  padding: 140px 80px;
  background: linear-gradient(180deg, #1a0f08, #2C1A0E);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.visit h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 60px;
  line-height: 1.0;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 32px;
}
.visit h2 em { font-style: italic; color: var(--gold); }
.visit .label { margin-bottom: 20px; }
.visit p.lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 460px;
  margin-bottom: 36px;
}
.visit .meta-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.visit .meta-grid .label { margin-bottom: 10px; }
.visit .meta-grid .display {
  font-size: 18px; color: var(--cream); line-height: 1.4;
}
.visit .meta-grid p { font-size: 14px; color: var(--cream-dim); line-height: 1.55; }

.hours-card {
  padding: 48px 44px;
  border: 1px solid rgba(212,160,23,0.3);
  background: rgba(0,0,0,0.3);
  position: relative;
}
.hours-card .crest-row { text-align: center; margin-bottom: 28px; }
.hours-card .label.center { text-align: center; display: block; margin-bottom: 8px; }
.hours-card .ornament-row { margin-bottom: 28px; }
.hours-list { display: flex; flex-direction: column; }
.hours-list .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.hours-list .row:last-child { border-bottom: none; }
.hours-list .row .day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; color: var(--cream); font-style: italic;
}
.hours-list .row .time {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--gold); letter-spacing: 0.12em;
}
.tonight-card {
  margin-top: 32px; padding: 18px;
  border: 1px solid rgba(212,160,23,0.18);
  text-align: center;
}
.tonight-card .label { font-size: 9px; margin-bottom: 6px; }
.tonight-card .display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; color: var(--cream); font-style: italic;
}
.tonight-card .display em { color: var(--gold); font-style: italic; }

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  padding: 60px 80px 40px;
  background: #0f0805;
  border-top: 1px solid rgba(212,160,23,0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-top .left,
.footer-top .right {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-top .right { text-align: right; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.footer-grid .label { margin-bottom: 12px; }
.footer-grid .display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  text-decoration: none;
}
.footer-grid a.display { color: var(--cream); }
.footer-grid a.display:hover { color: var(--gold); }
.footer-hours {
  font-size: 12px; color: var(--cream-dim); line-height: 1.6;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
}
.footer-links { display: flex; flex-direction: column; gap: 6px; list-style: none; }
.footer-links a {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(217,210,196,0.5);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .right-set { display: flex; gap: 24px; }

/* =========================================================================
   Menu page (services.html)
   ========================================================================= */

.menu-index {
  padding: 100px 80px 40px;
  background: var(--brown-darker);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.menu-index-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
.menu-index-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(212,160,23,0.15);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.menu-index-grid a {
  padding: 26px 20px;
  border-right: 1px solid rgba(212,160,23,0.15);
  text-decoration: none;
  display: block;
  transition: background .3s;
}
.menu-index-grid a:last-child { border-right: none; }
.menu-index-grid a:hover { background: rgba(212,160,23,0.04); }
.menu-index-grid .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.menu-index-grid .lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  color: var(--cream-dim);
  opacity: 0.8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-grid-section {
  padding: 60px 80px 120px;
  background: var(--brown-darker);
}

.menu-card .detail {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 18px;
}
.menu-card .flavor {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--cream-dim);
  opacity: 0.85;
  margin-bottom: 14px;
}

/* =========================================================================
   About page
   ========================================================================= */

.story {
  padding: 120px 80px;
  background: var(--brown-darker);
}
.story-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.story-rail { position: sticky; top: 120px; }
.story-rail h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  line-height: 1.05;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 28px;
}
.story-rail h2 em { font-style: italic; color: var(--gold); }
.story-rail .meta { margin-top: 36px; }
.story-rail .meta .label { margin-bottom: 8px; font-size: 9px; }
.story-rail .meta .name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 16px;
}
.story-rail .meta .year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--gold);
  font-style: italic;
}

.story-narrative .lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  line-height: 1.45;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 36px;
}
.story-narrative p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 24px;
  font-weight: 300;
}
.story-narrative .pullquote {
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: rgba(212,160,23,0.05);
  margin-top: 12px;
}
.story-narrative .pullquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 14px;
}
.story-narrative .pullquote cite {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--gold);
  opacity: 0.85;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
}

.timeline {
  position: relative;
  padding: 100px 80px;
  overflow: hidden;
}
.timeline-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.timeline-head { text-align: center; margin-bottom: 56px; }
.timeline-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  color: var(--cream);
  font-weight: 400;
}
.timeline-head h2 em { font-style: italic; color: var(--gold); }
.timeline-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.timeline-track::before {
  content: ""; position: absolute;
  top: 50px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.5) 10%, rgba(212,160,23,0.5) 90%, transparent);
}
.timeline-node { text-align: center; position: relative; }
.timeline-node .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  margin: 44px auto 24px;
  box-shadow: 0 0 0 4px var(--brown-deep);
  position: relative; z-index: 2;
}
.timeline-node .year {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.timeline-node .lbl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 8px;
}
.timeline-node .note {
  font-size: 13px; color: var(--cream-dim); line-height: 1.5; font-weight: 300;
}

.cta-band-section {
  padding: 120px 80px;
  background: var(--brown-darker);
  border-top: 1px solid rgba(212,160,23,0.15);
  text-align: center;
}
.cta-band-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  color: var(--cream);
  font-weight: 400;
  margin: 32px auto 24px;
  max-width: 800px;
}
.cta-band-section h2 em { font-style: italic; color: var(--gold); }
.cta-band-section .ornament-row { margin-bottom: 36px; }
.cta-band-section .actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================================
   Contact page
   ========================================================================= */

.contact-facts {
  padding: 100px 80px 60px;
  background: var(--brown-darker);
}
.contact-facts-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(212,160,23,0.2);
}
.fact-cell {
  padding: 44px 40px;
  position: relative;
  min-height: 280px;
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(212,160,23,0.2);
}
.fact-cell:first-child { border-left: none; }
.fact-cell .label { margin-bottom: 22px; }
.fact-cell .primary {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; line-height: 1.15;
  color: var(--cream); margin-bottom: 14px;
}
.fact-cell .big {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.fact-cell .secondary {
  font-size: 14px; line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 24px; font-weight: 300; flex: 1;
}
.fact-cell a.go {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; color: var(--gold);
  text-decoration: none; letter-spacing: 0.28em;
  text-transform: uppercase;
}
.fact-cell a.go:hover { color: var(--gold-bright); }

.hours-section {
  position: relative;
  padding: 100px 80px;
  overflow: hidden;
}
.hours-section .inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto; text-align: center;
}
.hours-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px; color: var(--cream); font-weight: 400; margin-bottom: 28px;
}
.hours-section h2 em { font-style: italic; color: var(--gold); }
.hours-frame {
  padding: 36px 40px;
  border: 1px solid rgba(212,160,23,0.3);
  background: rgba(0,0,0,0.35);
  text-align: left;
  position: relative;
}
.hours-frame .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,160,23,0.13);
}
.hours-frame .row:last-child { border-bottom: none; }
.hours-frame .row.closed { opacity: 0.55; }
.hours-frame .row .day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px; color: var(--cream); font-style: italic;
}
.hours-frame .row .time {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.12em;
}
.hours-frame .row.closed .time { color: var(--cream-dim); }
.hours-section .footnote {
  margin-top: 24px; font-size: 13px;
  color: var(--cream-dim); font-weight: 300; font-style: italic;
}

.form-section {
  padding: 120px 80px;
  background: var(--brown-darker);
  border-top: 1px solid rgba(212,160,23,0.15);
}
.form-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px; line-height: 1.1; color: var(--cream); font-weight: 400;
  margin-bottom: 14px;
}
.form-col h3 em { font-style: italic; color: var(--gold); }
.form-col .label { margin-bottom: 16px; }
.form-col p.lede {
  font-size: 14.5px; line-height: 1.65;
  color: var(--cream-dim); margin-bottom: 32px;
  font-weight: 300; max-width: 520px;
}

.placeholder-frame {
  border: 1px dashed rgba(212,160,23,0.5);
  border-radius: 4px;
  padding: 40px 24px;
  background: rgba(0,0,0,0.35);
  text-align: center;
  color: var(--cream-dim);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}

.map-section {
  padding: 100px 80px;
  background: linear-gradient(180deg, #1a0f08, #2C1A0E);
  border-top: 1px solid rgba(212,160,23,0.15);
}
.map-section .inner { max-width: 1280px; margin: 0 auto; }
.map-section .head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}
.map-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px; line-height: 1.05;
  color: var(--cream); font-weight: 400;
}
.map-section h2 em { font-style: italic; color: var(--gold); }
.map-frame {
  position: relative;
  aspect-ratio: 16/7;
  border: 1px solid rgba(212,160,23,0.3);
  background:
    radial-gradient(circle at 50% 50%, rgba(212,160,23,0.08), transparent 60%),
    repeating-linear-gradient(45deg, rgba(212,160,23,0.04) 0 2px, transparent 2px 60px),
    repeating-linear-gradient(-45deg, rgba(212,160,23,0.04) 0 2px, transparent 2px 60px),
    linear-gradient(180deg, #2C1A0E, #1a0f08);
  overflow: hidden;
}
.map-frame svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-card {
  position: absolute; left: 32px; top: 32px;
  padding: 20px 24px;
  background: rgba(15,8,5,0.92);
  border: 1px solid rgba(212,160,23,0.4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  max-width: 280px;
}
.map-card .label { margin-bottom: 8px; font-size: 9px; }
.map-card .display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; color: var(--cream); line-height: 1.35;
  margin-bottom: 14px;
}
.map-card .display em { font-style: italic; color: var(--gold); }
.map-card a.go {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; color: var(--gold); text-decoration: none;
  letter-spacing: 0.28em; text-transform: uppercase;
}
.map-stamp {
  position: absolute; right: 32px; bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.map-stamp .mono {
  font-size: 9px; color: var(--gold); opacity: 0.6; text-align: right;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.directions {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.direction-item {
  padding: 20px 0;
  border-top: 1px solid rgba(212,160,23,0.18);
}
.direction-item .label { margin-bottom: 10px; font-size: 9px; }
.direction-item .body {
  font-size: 14px; line-height: 1.6;
  color: var(--cream-dim); font-weight: 300;
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1100px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .gold-rule-thin,
  .section-head .stamp { display: none; }
  .map-section .head { grid-template-columns: 1fr; }
  .map-section .head .gold-rule-thin,
  .map-section .head .stamp { display: none; }
  .visit-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-rail { position: static; }
  .card-grid.cols-3,
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .menu-index-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-facts-grid { grid-template-columns: 1fr; }
  .fact-cell { border-left: none; border-top: 1px solid rgba(212,160,23,0.2); }
  .fact-cell:first-child { border-top: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline-track::before { display: none; }
  .directions { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { padding: 16px 24px; }
  .site-header.scrolled { padding: 14px 24px; }
  .hero-top-strip { display: none; }
  .hero-rail { display: none; }
  .hero-stack { padding: 140px 24px 80px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 14px; padding: 22px 24px 28px; }
  .hero-bottom .divider { display: none; }
  .hero-bottom .callout.right,
  .hero-bottom .callout.center { text-align: left; }

  .section, .section.alt, .section.tex-leather,
  .visit, .ambiance, .story, .timeline, .cta-band-section,
  .contact-facts, .hours-section, .form-section, .map-section,
  .menu-index, .menu-grid-section, .page-header { padding-left: 24px; padding-right: 24px; }
  .page-header { padding-top: 130px; padding-bottom: 70px; }
  .coord-strip { display: none; }

  .card-grid.cols-3,
  .card-grid.cols-4,
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .menu-index-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-index-grid a:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-top .right { text-align: center; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .timeline-track { grid-template-columns: 1fr; gap: 24px; }

  .hamburger { display: flex; z-index: 60; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0;
    background: var(--brown-darker);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    padding: 80px 32px 32px;
    z-index: 55;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 14px; }

  .visit h2,
  .cta-band-section h2 { font-size: 40px; }
  .ambiance blockquote { font-size: 26px; }
  .feat-card { padding: 40px 28px 36px; }
  .feat-card h3 { font-size: 22px; }

  .story-rail h2 { font-size: 36px; }
  .story-narrative .lead { font-size: 22px; }

  .map-frame { aspect-ratio: 4/3; }
  .map-card { left: 16px; top: 16px; padding: 14px 16px; }
  .map-stamp { right: 16px; bottom: 16px; gap: 10px; }
}
