/*
  Discount Cigarettes & Cigar — Los Altos
  ───────────────────────────────────────
  Aesthetic: "El Camino Humidor."
  A premium cigar-band/humidor presentation that honors what's actually on
  the wall (Rocky Patel, La Aurora 1903, Liga Privada, Arturo Fuente) while
  acknowledging the multicolor-neon storefront reality with one red accent.
  Visual signature: custom SVG cigar-band ornaments (hero crest + section
  divider). Type pair: Bodoni Moda (hairline-contrast display = cigar-band
  DNA) + DM Sans (body) + Caveat (handwritten accents).
*/

:root {
  /* Colors */
  --walnut-deep: #1a0f08;
  --walnut: #2c1c10;
  --walnut-mid: #4a2f1c;
  --tobacco: #c9a878;
  --tobacco-light: #dfc196;
  --cream: #f4ecdc;
  --cream-paper: #ece2c8;
  --cream-warm: #eedfc2;
  --gold-band: #b89647;
  --gold-bright: #d4af55;
  --neon-red: #c8281c;
  --ink: #1a0f08;
  --ink-mute: #6b4f3f;
  --rule: rgba(184, 150, 71, 0.32);
  --rule-soft: rgba(74, 47, 28, 0.18);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Caveat', cursive;

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

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

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
em { font-style: italic; }

/* Decorative grain overlay (faint paper-tone) */
.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(74, 47, 28, 0.04) 0, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(74, 47, 28, 0.05) 0, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(184, 150, 71, 0.04) 0, transparent 1px);
  background-size: 3px 3px, 4px 4px, 5px 5px;
}

/* ────────────────────────────────  NAV  ──────────────────────────────── */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 236, 220, 0.92);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.nav-mark {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto;
  line-height: 1;
  color: var(--ink);
}
.nav-mark-est {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  margin-bottom: 3px;
}
.nav-mark-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.nav-mark-loc {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: none;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.nav-links a:hover { border-bottom-color: var(--gold-band); color: var(--walnut-mid); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--cream);
  background: var(--walnut-deep);
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold-band);
  transition: transform 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--walnut); }
.nav-cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon-red);
  box-shadow: 0 0 8px var(--neon-red);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@media (min-width: 760px) {
  .nav { grid-template-columns: 1fr auto auto; gap: 32px; }
  .nav-links { display: inline-flex; }
}

/* ───────────────────────────────  HERO  ─────────────────────────────── */

.hero {
  position: relative;
  background: var(--walnut-deep);
  color: var(--cream);
  padding: 32px var(--gutter) 64px;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle dark-wood grain glow */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 150, 71, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(200, 40, 28, 0.06), transparent 60%),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 2px,
      rgba(74, 47, 28, 0.18) 2px,
      rgba(74, 47, 28, 0.18) 3px
    );
  z-index: -1;
}

.hero-marquee {
  margin: 0 calc(-1 * var(--gutter));
  overflow: hidden;
  border-block: 1px solid rgba(184, 150, 71, 0.25);
  padding: 11px 0;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}
.hero-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--tobacco-light);
  letter-spacing: 0.18em;
}
.hero-marquee-track span { display: inline-block; }
.hero-marquee-track span:nth-child(even) { color: var(--gold-band); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tobacco-light);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--neon-red);
  box-shadow: 0 0 6px var(--neon-red);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 30;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--cream);
}
.hero-title-row {
  display: block;
}
.hero-title-row--top,
.hero-title-row--mid,
.hero-title-row--bot {
  font-size: clamp(58px, 13vw, 152px);
}
.hero-title-row--top {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 50;
  color: var(--tobacco-light);
  letter-spacing: -0.015em;
}
.hero-title-row--mid {
  font-weight: 800;
  font-variation-settings: "opsz" 144, "wght" 800, "SOFT" 30;
  letter-spacing: -0.035em;
  text-transform: lowercase;
}
.hero-title-row--bot {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 600, "SOFT" 50;
  color: var(--gold-band);
  letter-spacing: -0.015em;
  text-transform: lowercase;
}
.hero-title-row--amp {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0;
}
.hero-title-row--amp em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 80;
  font-size: clamp(38px, 8vw, 92px);
  color: var(--neon-red);
  line-height: 1;
}
.hero-amp-rule {
  flex: 1;
  height: 1px;
  background: var(--gold-band);
  opacity: 0.6;
}

.hero-sub {
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-paper);
  margin-bottom: 28px;
}
.hero-sub em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
  font-variation-settings: "opsz" 36, "SOFT" 60;
}

.hero-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--neon-red);
  color: var(--cream);
}
.btn--primary:hover { background: #b3221a; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 236, 220, 0.4);
}
.btn--ghost:hover { border-color: var(--gold-band); color: var(--gold-bright); }
.btn--lg { padding: 16px 28px; font-size: 14.5px; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(184, 150, 71, 0.25);
  margin: 0;
}
.hero-stats > div { display: grid; gap: 4px; }
.hero-stats dt {
  font-family: var(--font-body);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--tobacco);
}
.hero-stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
}

.hero-right {
  position: relative;
  margin: 0;
}
.hero-photo {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 71, 0.4);
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-photo:hover img { transform: scale(1.03); }

.hero-band {
  display: block;
  margin: -54px auto 0;
  width: min(94%, 540px);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}

.hero-caption {
  display: block;
  margin-top: 28px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--tobacco-light);
  letter-spacing: 0.04em;
}

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ────────────────────────────────  STORY  ─────────────────────────────── */

.story {
  position: relative;
  padding: 96px var(--gutter);
  background: var(--cream);
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 64px;
  background: var(--gold-band);
}

.story-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--neon-red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "wght" 600, "SOFT" 30;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--walnut-mid);
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 70;
}

.section-blurb {
  max-width: 56ch;
  font-size: 15.5px;
  color: var(--ink-mute);
  margin-top: 18px;
  line-height: 1.65;
}

.story-lead {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 60ch;
}

.pullquote {
  margin: 40px 0;
  padding: 32px clamp(24px, 4vw, 48px);
  background: var(--walnut-deep);
  color: var(--cream);
  position: relative;
  border-radius: var(--r-md);
  border-left: 4px solid var(--neon-red);
  box-shadow: 0 18px 40px -16px rgba(26, 15, 8, 0.3);
}
.pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.4;
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 60;
}
.pullquote em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 500;
}
.pq-mark {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 88px);
  line-height: 0;
  color: var(--gold-band);
  font-style: italic;
  margin-right: 6px;
  vertical-align: -0.32em;
  font-weight: 600;
}

.story-tail {
  font-size: 16px;
  color: var(--ink-mute);
  max-width: 60ch;
  line-height: 1.65;
}

@media (min-width: 880px) {
  .story-grid { grid-template-columns: 0.85fr 1.15fr; gap: 88px; align-items: start; }
  .story-meta { position: sticky; top: 110px; }
}

/* ──────────────────────────────  HUMIDOR  ─────────────────────────────── */

.humidor {
  background: var(--walnut-deep);
  color: var(--cream);
  padding: 96px var(--gutter) 80px;
  position: relative;
  isolation: isolate;
}
.humidor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 150, 71, 0.1), transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 80px,
      rgba(74, 47, 28, 0.12) 80px,
      rgba(74, 47, 28, 0.12) 81px
    );
  z-index: -1;
}

.humidor-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  text-align: center;
}
.humidor-head .section-title {
  color: var(--cream);
}
.humidor-head .section-title em {
  color: var(--gold-band);
}
.humidor-head .section-eyebrow {
  color: var(--neon-red);
}
.humidor-head .section-blurb {
  color: var(--cream-paper);
  margin-inline: auto;
}

.cigar-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  counter-reset: cigar;
}

.cigar-card {
  display: grid;
  gap: 22px;
  background: rgba(74, 47, 28, 0.4);
  border: 1px solid rgba(184, 150, 71, 0.25);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.cigar-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-band);
  background: rgba(74, 47, 28, 0.6);
}

.cigar-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid rgba(184, 150, 71, 0.3);
}
.cigar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cigar-card:hover .cigar-photo img { transform: scale(1.04); }

.cigar-meta { display: grid; gap: 8px; }

.cigar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  color: var(--gold-band);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cigar-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60, "wght" 600, "SOFT" 30;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-top: 2px;
}
.cigar-name em {
  font-style: italic;
  color: var(--gold-band);
  font-weight: 400;
}
.cigar-origin {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tobacco);
  border-top: 1px solid rgba(184, 150, 71, 0.18);
  border-bottom: 1px solid rgba(184, 150, 71, 0.18);
  padding: 7px 0;
  margin-top: 6px;
}
.cigar-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-paper);
}

.band-divider {
  display: block;
  max-width: var(--max);
  margin: 80px auto 0;
  width: 100%;
  height: auto;
}

@media (min-width: 560px) {
  .cigar-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cigar-grid { grid-template-columns: repeat(4, 1fr); }
  .cigar-card { padding: 18px; }
}

/* ─────────────────────────────  SELECTION  ────────────────────────────── */

.selection {
  background: var(--cream);
  color: var(--ink);
  padding: 96px var(--gutter);
}

.selection-head {
  max-width: var(--max);
  margin: 0 auto 56px;
}

.selection-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.sel-card {
  display: grid;
  gap: 20px;
  background: var(--cream-paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-md);
  padding: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.sel-card > * { min-width: 0; }
.sel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(74, 47, 28, 0.3);
}

.sel-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.sel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sel-card:hover .sel-photo img { transform: scale(1.04); }

.sel-meta { display: grid; gap: 10px; }
.sel-meta--text { padding: 4px 0; }

.sel-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-red);
}
.sel-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  font-variation-settings: "opsz" 72, "wght" 600, "SOFT" 30;
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--ink);
}
.sel-note {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-mute);
}

.sel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.sel-list li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--walnut-mid);
}
.sel-list li::before {
  content: "·\00a0\00a0";
  color: var(--gold-band);
}

/* Cigarette card gets a neon-strip detail at bottom */
.sel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 14px 16px;
  background: var(--walnut-deep);
  color: var(--cream);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.22em;
  align-items: center;
  justify-content: center;
}
.sel-strip span:nth-child(1) { color: var(--neon-red); }
.sel-strip span:nth-child(3) { color: var(--neon-red); }
.sel-strip span:nth-child(5) { color: #6ed4ff; }
.sel-strip span:nth-child(2),
.sel-strip span:nth-child(4) { color: var(--gold-band); opacity: 0.6; }

@media (min-width: 760px) {
  .selection-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .selection-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    grid-template-rows: auto;
  }
  .sel-card--hookah { grid-row: span 2; }
  .sel-card--hookah .sel-photo { aspect-ratio: 4 / 5; }
  .sel-card--glass .sel-photo { aspect-ratio: 5 / 4; }
}

/* ───────────────────────────────  VISIT  ──────────────────────────────── */

.visit {
  background: var(--walnut-deep);
  color: var(--cream);
  padding: 96px var(--gutter);
  position: relative;
  isolation: isolate;
}
.visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(184, 150, 71, 0.1), transparent 60%);
  z-index: -1;
}

.visit-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  text-align: center;
}
.visit-head .section-title { color: var(--cream); }
.visit-head .section-title em { color: var(--gold-band); }

.visit-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.visit-block {
  background: rgba(74, 47, 28, 0.35);
  border: 1px solid rgba(184, 150, 71, 0.25);
  border-radius: var(--r-md);
  padding: 32px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.visit-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-band);
}

.visit-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--cream);
}
.visit-line em {
  font-style: italic;
  color: var(--gold-bright);
}
.visit-line--big {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.visit-meta {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-paper);
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--neon-red);
  padding: 11px 0;
  border-bottom: 1px solid var(--neon-red);
  align-self: start;
  transition: gap 0.25s ease, color 0.25s ease;
  letter-spacing: 0.04em;
}
.visit-link:hover { gap: 14px; color: #ec3e30; }

.hours-list {
  display: grid;
  gap: 6px;
  padding: 6px 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(184, 150, 71, 0.2);
  font-family: var(--font-display);
  font-size: 16px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child {
  letter-spacing: 0.04em;
  color: var(--cream-paper);
}
.hours-list li span:last-child {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 500;
}

.hours-note {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--tobacco-light);
  margin-top: 6px;
  line-height: 1.2;
}

.phone-display {
  display: grid;
  gap: 4px;
  text-decoration: none;
  color: var(--cream);
  padding: 12px 0;
}
.phone-area {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-band);
  letter-spacing: 0.08em;
}
.phone-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "wght" 700, "SOFT" 30;
}
.phone-display:hover .phone-number { color: var(--gold-bright); }

.phone-note {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cream-paper);
}

.visit-photo {
  margin-top: 18px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(184, 150, 71, 0.3);
  aspect-ratio: 4 / 5;
}
.visit-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (min-width: 760px) {
  .visit-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr;
    align-items: start;
  }
}

/* ────────────────────────────────  FINAL  ─────────────────────────────── */

.final {
  background: var(--cream);
  padding: 110px var(--gutter);
  text-align: center;
}
.final-inner {
  max-width: 800px;
  margin: 0 auto;
}
.final-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "wght" 600, "SOFT" 30;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.final-title em {
  font-style: italic;
  color: var(--neon-red);
  font-weight: 400;
}
.final-sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 50ch;
  margin: 0 auto 36px;
}
.final-cluster {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.final .btn--primary { background: var(--neon-red); color: var(--cream); }
.final .btn--ghost {
  color: var(--ink);
  border-color: var(--walnut);
}
.final .btn--ghost:hover { border-color: var(--neon-red); color: var(--neon-red); }

/* ────────────────────────────────  FOOTER  ────────────────────────────── */

.footer {
  background: var(--walnut-deep);
  color: var(--cream-paper);
  padding: 64px var(--gutter) 32px;
  border-top: 1px solid var(--gold-band);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 36px;
  display: grid;
  gap: 36px;
  align-items: start;
}

.footer-mark {
  display: grid;
  gap: 6px;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.footer-since {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--tobacco-light);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.footer-cols li { display: grid; gap: 4px; font-size: 13.5px; }
.footer-h {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-band);
  margin-bottom: 6px;
}
.footer-cols a {
  color: var(--cream-paper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.footer-cols a:hover { border-bottom-color: var(--gold-band); }

.footer-fine {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 150, 71, 0.2);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--tobacco);
  letter-spacing: 0.04em;
}
.footer-dot { color: var(--gold-band); }

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1.6fr; gap: 64px; }
}

/* ────────────────────────────  REDUCED MOTION  ────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
