/* ============================================
   Know Your Roll — brand tokens
   ============================================ */
:root {
  --red: #B02334;
  --red-dark: #871B28;
  --red-bright: #E0202B;
  --ink: #0C1014;
  --ink-soft: #1B1F23;
  --white: #FFFFFF;
  --parchment: #F0EAE0;
  --parchment-line: #DDD3C2;
  --it-green: #008C45;
  --it-white: #F4F5F0;
  --it-red: #CD212A;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  --max-width: 1120px;
  --edge: clamp(1.25rem, 5vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6.5rem) var(--edge);
}

.section-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  color: var(--red);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}
.section-eyebrow--dark { color: var(--it-red); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 1rem;
}

p { line-height: 1.6; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mark {
  display: inline-block;
  line-height: 0;
}
.header-mark-svg {
  height: 42px;
  width: auto;
  display: block;
}
.header-mark-text {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 0.01em;
  fill: var(--white);
  stroke: var(--ink);
  stroke-width: 4.5px;
  stroke-linejoin: round;
  paint-order: stroke fill;
}
.header-nav {
  display: flex;
  gap: 2rem;
}
.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.header-nav a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
}

@media (max-width: 720px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 3px solid var(--red);
  }
  .header-nav.is-open { max-height: 300px; }
  .header-nav a {
    padding: 1rem var(--edge);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-toggle { display: flex; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--red);
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3.25rem) var(--edge) clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}
.hero-logo {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.hero-sub {
  color: var(--white);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  max-width: 46ch;
  margin: 1.25rem auto 0;
}

.hero-banner {
  background: var(--red-bright);
  border-top: 3px solid var(--ink);
}
.hero-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem var(--edge);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.7rem 1rem;
}
.hero-banner-tag {
  font-family: var(--font-display);
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}
.hero-banner-text {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
}
.hero-banner-text strong { color: var(--it-white); }
.hero-banner-detail {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 560px) {
  .hero-banner-inner { padding: 1rem var(--edge); }
  .hero-banner-detail { flex-basis: 100%; }
}

/* ============================================
   About
   ============================================ */
.about {
  background: var(--ink);
  color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-copy h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  max-width: 22ch;
}
.about-copy p {
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  font-size: 1.05rem;
}
.about-copy p + p { margin-top: 1rem; }

.about-photo {
  margin: 0;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--red);
}
.about-photo figcaption {
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--it-red);
}
.about-stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 32ch;
}

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Menu
   ============================================ */
.menu {
  background: var(--parchment);
}
.menu-heading {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  max-width: 18ch;
}
.menu-note {
  color: var(--ink-soft);
  opacity: 0.75;
  margin: 0 0 2rem;
  font-size: 0.95rem;
}
.menu-subheading {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--parchment-line);
}
.menu-subheading:first-of-type { margin-top: 0; }

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
.menu-columns--with-photo {
  grid-template-columns: 1fr 1fr auto;
  align-items: stretch;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list > li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--parchment-line);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.menu-list--described > li {
  padding: 1rem 0;
}
.menu-list--described h4 {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: 1.05rem;
  color: var(--red);
  margin: 0 0 0.35rem;
}
.menu-list--described p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.menu-columns-photo {
  width: 180px;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.menu-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0 0.5rem;
}
.menu-photos-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

@media (max-width: 700px) {
  .menu-columns { grid-template-columns: 1fr; gap: 0; }
  .menu-columns--with-photo { grid-template-columns: 1fr 1fr; }
  .menu-columns-photo {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 1.25rem;
  }
  .menu-list--described { margin-top: 0.5rem; }
  .menu-photos-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* ============================================
   Feasts / Find Us
   ============================================ */
.feasts {
  background: var(--white);
  border-top: 1px solid var(--parchment-line);
  border-bottom: 1px solid var(--parchment-line);
}
.feasts h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  max-width: 20ch;
}
.feasts-note {
  max-width: 56ch;
  color: var(--ink-soft);
  opacity: 0.8;
}
.feasts-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 2rem 0 0;
}
.feasts-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 3px;
}

@media (max-width: 700px) {
  .feasts-gallery { grid-template-columns: repeat(2, 1fr); }
}

.feasts-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--parchment-line);
}
.feasts-list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--parchment-line);
}
.feasts-list-name {
  font-weight: 700;
  font-size: 1.05rem;
}
.feasts-list-loc {
  color: var(--ink-soft);
  opacity: 0.65;
  font-size: 0.95rem;
}
.feasts-cta {
  margin-top: 2rem;
  font-size: 0.95rem;
}
.feasts-cta a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   Follow
   ============================================ */
.follow {
  background: var(--red);
  text-align: center;
}
.follow-inner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.2vw, 2.5rem);
  max-width: 20ch;
  margin: 0 auto 0.75rem;
}
.follow-inner p {
  color: rgba(255,255,255,0.85);
  max-width: 40ch;
  margin: 0 auto 2rem;
}
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  border: 2px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.follow-btn:hover {
  background: transparent;
  color: var(--ink);
}
.ig-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  padding: 1.75rem var(--edge);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
}
.footer-inner a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.footer-inner a:hover { text-decoration: underline; }

/* ============================================
   Accessibility
   ============================================ */
:focus-visible {
  outline: 3px solid var(--it-green);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
