
* { box-sizing: border-box; }

:root {
  --bg: #16110d;
  --bg-2: #221811;
  --panel: #2a1e17;
  --panel-2: #34251c;
  --text: #fbf2e3;
  --muted: #d1bea6;
  --accent: #f2ab2d;
  --accent-2: #d65126;
  --teal: #1f6f74;
  --cream: #f6e7cb;
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 64px rgba(0,0,0,.28);
  --max: 1180px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: radial-gradient(circle at top right, rgba(242,171,45,.08), transparent 25%), var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(calc(100% - 34px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18,13,10,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .2px;
}
.brand span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
}
.nav a:hover,
.nav a.active { color: var(--text); }

.menu-toggle {
  display: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 1.15rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(15,10,7,.28) 0%, rgba(15,10,7,.52) 26%, rgba(15,10,7,.84) 78%, rgba(15,10,7,.95) 100%),
    linear-gradient(90deg, rgba(15,10,7,.84) 0%, rgba(15,10,7,.48) 40%, rgba(15,10,7,.18) 100%),
    url("assets/banner-social.png") center center / cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.hero .wrap { padding: 70px 0 72px; }

.hero-chip {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31,111,116,.92);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 26px;
  align-items: end;
}
.hero-copy {
  max-width: 760px;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 14px;
  text-shadow: 0 8px 30px rgba(0,0,0,.36);
}
.lead {
  color: var(--cream);
  font-size: clamp(1.05rem, 2.15vw, 1.3rem);
  max-width: 740px;
}
.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .98rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-block;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 10px;
  font-weight: 900;
  transition: transform .14s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--accent);
  color: #241708;
}
.button.secondary {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
}
.hero-sign {
  justify-self: end;
  width: min(100%, 310px);
  background: rgba(21,15,11,.64);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-sign p {
  margin: 0;
  color: var(--muted);
}
.hero-sign strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.1rem;
}

.section { padding: 82px 0; }
.section.alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin: 0 0 12px;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  margin-bottom: 14px;
}
.copy, .card p, .panel p, .post p, .list p, .menu-sub, .section-heading p:not(.eyebrow) { color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }

.card, .panel, .post {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 26px rgba(0,0,0,.15);
}
.card-link { text-decoration: none; }
.card-link:hover .card, .social-grid a:hover { border-color: rgba(242,171,45,.45); }
.kicker, .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(242,171,45,.1);
  border-radius: 999px;
  padding: 5px 9px;
  margin-bottom: 12px;
}
.post-meta {
  color: #ae9c88;
  font-size: .88rem;
  margin-bottom: 8px;
}
.tag { margin-right: 6px; margin-top: 6px; }

.leroy-spotlight {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: center;
}
.leroy-frame {
  background: linear-gradient(180deg, #3b281a, #251912);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  padding: 22px;
  box-shadow: var(--shadow);
}
.leroy-frame img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.quote-panel {
  background: rgba(31,111,116,.10);
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  padding: 24px 26px;
}
.quote-panel strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px 26px;
}
.menu-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.menu-item strong {
  display: block;
  margin-bottom: 4px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.social-grid a {
  text-decoration: none;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  font-weight: 900;
}

.ad-placeholder {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  color: #927f69;
  background: #120f0c;
  padding: 16px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 32px;
  border-radius: 18px;
  border: 1px solid rgba(31,111,116,.28);
  background: linear-gradient(135deg, rgba(31,111,116,.14), rgba(242,171,45,.08));
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 46px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(22,17,13,.82), rgba(22,17,13,.95)),
    url("assets/banner-social.png") center center / cover no-repeat;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.content { padding: 64px 0 88px; }
.prose { max-width: 840px; }
.prose p, .prose li { color: var(--muted); }
.prose h2 { margin-top: 42px; font-size: 2rem; }
.prose h3 { margin-top: 28px; }
.list-clean { padding-left: 18px; }

.site-footer {
  padding: 40px 0;
  background: #100c09;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
}
.site-footer p {
  margin: 4px 0;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 17px;
    right: 17px;
    padding: 14px;
    background: var(--panel);
    border-radius: 14px;
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 8px 6px; }
  .hero {
    min-height: auto;
    background-position: 62% center;
  }
  .hero-grid, .grid-3, .grid-2, .split, .leroy-spotlight, .menu-list, .social-grid {
    grid-template-columns: 1fr;
  }
  .hero-sign { justify-self: start; width: 100%; }
  .section { padding: 64px 0; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}


/* --- V5 homepage cleanup --- */
.hero {
  min-height: auto;
  display: block;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-banner-strip {
  background: #1a120d;
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.hero-banner-frame {
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
}

.hero-banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.14) saturate(1.08) contrast(1.02);
}

.hero-copy-block {
  padding: 44px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(242,171,45,.10), transparent 30%),
    linear-gradient(180deg, #1c140f 0%, #16110d 100%);
}

.hero-copy-wrap {
  max-width: 860px;
}

.hero-grid {
  display: block;
}

.hero-sign {
  display: none;
}

.home-social-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

@media (max-width: 940px) {
  .hero-copy-block {
    padding: 34px 0 42px;
  }
  .hero-banner-frame {
    border-radius: 0 0 12px 12px;
  }
  .home-social-grid {
    grid-template-columns: 1fr;
  }
}
