/* ─────────────────────────────────────────
   WEIGHTS & WHISKEY — CSS
   Palette: near-black bg, muted warm tones,
   burnt orange as primary accent.
───────────────────────────────────────── */

:root {
  --bg:           #161613;
  --surface:      #1f1f1b;
  --surface-2:    #272721;
  --orange:       #C85A0A;
  --orange-light: #E06820;
  --orange-dim:   #8B3E07;
  --text:         #DDD5C4;
  --text-muted:   #7A7060;
  --text-dim:     #4A4438;
  --cream:        #F0E8D8;
  --border:       rgba(200,90,10,0.18);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-italic:  'Playfair Display', serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── UTILITY ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(22,22,19,0.95) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.nav {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  transition: color 0.2s;
}
.logo:hover { color: var(--orange-light); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange-light); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 2.5rem;

  /* Background: dark gradient with radial warm glow */
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(120,40,5,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(80,30,0,0.18) 0%, transparent 60%),
    var(--bg);
}

/* Film grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: clamp(1rem, 6vw, 7rem);
  padding-top: 5rem;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.hero-title span {
  display: block;
  font-size: clamp(5rem, 14vw, 12rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.line-iron   { color: var(--text); }
.line-smoke  { color: var(--text-muted); }
.line-whiskey {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.hero-rule {
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  color: var(--text-dim);
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

/* ── ABOUT ── */
.about {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.section-label.light { color: var(--orange-light); }

.about-body {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.75;
}

.about-stat-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 3rem;
  border-left: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── RITUAL / PILLARS ── */
.ritual {
  padding: 8rem 0;
  background: var(--bg);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4rem;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.pillar {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.pillar:last-child { border-right: none; }

.pillar--center {
  background: var(--surface-2);
  position: relative;
}

.pillar:hover {
  background: var(--surface);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  color: var(--orange);
  margin-bottom: 1.75rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.pillar-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── FOOD SECTION ── */
.food-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(105deg, rgba(22,22,19,0.96) 0%, rgba(22,22,19,0.75) 55%, rgba(22,22,19,0.4) 100%),
    /* Simulated smoky texture with gradients */
    radial-gradient(ellipse 80% 80% at 80% 50%, rgba(100,35,0,0.5) 0%, rgba(60,20,0,0.3) 40%, transparent 70%),
    linear-gradient(160deg, #2a1505 0%, #1a1005 40%, #0d0d0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Crosshatch texture overlay */
.food-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      rgba(200,90,10,0.02) 3px,
      rgba(200,90,10,0.02) 4px
    );
  pointer-events: none;
}

.food-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 7rem 0;
}

.food-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.food-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.food-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.food-list li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  padding-left: 1.2rem;
  position: relative;
}

.food-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange-dim);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 9rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 780px;
  text-align: center;
}

.manifesto-mark {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--orange-dim);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.5;
}

.manifesto-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 2rem;
  quotes: none;
}

.manifesto-attr {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── TIMELINE ── */
.week {
  padding: 8rem 0;
  background: var(--bg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

/* Connecting line */
.timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(12.5% - 1px);
  right: calc(12.5% - 1px);
  height: 1px;
  background: linear-gradient(to right, var(--orange), var(--orange-dim), var(--text-dim), var(--text-dim));
  z-index: 0;
}

.timeline-item {
  position: relative;
  padding: 0 2rem;
  padding-top: 3rem;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--bg);
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item:nth-child(2) .timeline-dot { background: var(--orange-dim); }
.timeline-item:nth-child(3) .timeline-dot { background: var(--text-dim); border-color: var(--bg); }
.timeline-item:nth-child(4) .timeline-dot { background: var(--text-dim); border-color: var(--bg); }

.timeline-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  margin-bottom: 0.6rem;
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.footer-tag {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-stat-block {
    flex-direction: row;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    justify-content: space-around;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .pillar:last-child { border-bottom: none; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline::before { display: none; }
  .timeline-item {
    padding: 0 0 0 2.5rem;
  }
  .timeline-dot {
    top: 4px;
    left: 0;
    transform: none;
  }
  .hero-title span {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }
}

@media (max-width: 600px) {
  .site-header { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 0 1.25rem; }
  .hero-content { margin-left: 0; }
  .container { padding: 0 1.25rem; }
  .about { padding: 4rem 0; }
  .ritual { padding: 5rem 0; }
  .manifesto { padding: 5rem 0; }
  .week { padding: 5rem 0; }
  .food-content { padding: 4rem 0; }
  .pillar { padding: 2.5rem 1.5rem; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
