/* ============================================================
   Southern Fired Foods — bright & modern Italian
   ============================================================ */
:root {
  --red: #e0121f;          /* bold red */
  --red-dark: #b00d18;
  --black: #000000;
  --ink: #111111;          /* near-black text / dark sections */
  --slate: #444444;        /* muted body text on white */
  --white: #ffffff;
  /* legacy aliases kept so any stray references stay on-palette */
  --green: #111111;        /* was basil green -> now black (bold dark buttons/stamp) */
  --green-dark: #000000;
  --gold: #e0121f;         /* was gold -> now red (stars/accents) */
  --cream: #ffffff;        /* page background is pure white now */
  --cream-2: #ffffff;
  --line: #e6e6e6;         /* light neutral hairline */
  --shadow: 0 18px 40px -22px rgba(0, 0, 0, .32);
  --shadow-sm: 0 8px 22px -14px rgba(0, 0, 0, .35);
  --shadow-hard: 0 20px 44px -24px rgba(0,0,0,.42);   /* soft depth (was bold offset) */
  --shadow-hard-red: 0 20px 44px -24px rgba(0,0,0,.42);
  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1160px;
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Lora", Georgia, "Times New Roman", serif;
  --script: "Kaushan Script", "Lora", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.08; color: var(--ink); margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
.script { font-family: var(--script); font-weight: 400; letter-spacing: .01em; line-height: .95; }
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--alt { background: var(--cream-2); }
.section--ink { background: var(--ink); color: #f3ede2; }
.section--ink h2, .section--ink h3 { color: #fff; }

/* photo-background sections with a dark overlay for depth */
.section--photo { position: relative; color: #fff; background-color: var(--ink); background-size: cover; background-position: center; }
.section--photo > .wrap { position: relative; z-index: 1; }
.section--photo h2, .section--photo h3, .section--photo h4 { color: #fff; }
.section--photo p, .section--photo .lead, .section--photo .prop p, .section--photo .menu-legend { color: rgba(255,255,255,.86); }
.section--photo .kicker { color: #fff; opacity: .95; }
.section--photo .rating-head .big { color: #fff; }
.section--photo .review p { color: var(--slate); }        /* text inside white review cards stays dark */
.section--photo .review .who { color: var(--ink); }
.section--photo .btn--ghost { color: #fff; border-color: #fff; }
.section--photo .btn--ghost:hover { background: #fff; color: var(--ink); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--slate); max-width: 640px; }
.center .lead { margin-inline: auto; }

/* eyebrow / kicker */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--red);
  margin-bottom: 14px;
}
.section--ink .kicker { color: var(--gold); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em;
  padding: 14px 28px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn--green { background: var(--ink); color: #fff; border-color: var(--ink); }  /* bold black button */
.btn--green:hover { background: #000; border-color: #000; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- header / nav (transparent over hero, solid on scroll) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px -14px rgba(0,0,0,.28);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }

/* big logo that overlays down onto the hero, with a soft glow behind it */
.brand { position: relative; display: flex; align-items: center; z-index: 2; }
.brand-glow {
  position: absolute; z-index: -1; left: 50%; top: 54%; transform: translate(-50%, -50%);
  width: 170%; height: 190%; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,250,240,.92) 0%, rgba(255,247,235,.55) 42%, rgba(255,255,255,0) 72%);
  filter: blur(6px); transition: opacity .3s ease;
}
.brand img {
  height: 132px; width: auto; display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.30));
  transition: height .3s ease;
}
.site-header.scrolled .brand img { height: 62px; }
.site-header.scrolled .brand-glow { opacity: 0; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 500; font-size: .95rem; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5);
  position: relative; padding: 4px 0; transition: color .25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--red); transition: right .22s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: #fff; }
.site-header.scrolled .nav-links a { color: var(--ink); text-shadow: none; }
.site-header.scrolled .nav-links a.active { color: var(--red); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; box-shadow: 0 1px 3px rgba(0,0,0,.4); }
.site-header.scrolled .nav-toggle span { background: var(--ink); box-shadow: none; }

/* ---------- hero (full-bleed slider) ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: #000; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.13); } }
/* background video (added by client later) — covers the carousel only once it can play */
.hero-video { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.hero.has-video .hero-video { opacity: 1; }
.hero.has-video .hero-dots { display: none; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.6) 52%, rgba(0,0,0,.32));
}
.hero-inner { position: relative; z-index: 3; padding-top: 96px; padding-bottom: 96px; }
.hero-title { color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.0; margin-bottom: 22px; text-shadow: 0 3px 26px rgba(0,0,0,.45); }
.hero-title .script { color: var(--red); display: inline-block; font-size: clamp(3.2rem, 9vw, 6.4rem); line-height: .82; margin-top: 4px; }
.kicker--light { color: #fff; opacity: .92; }
.hero-lead { color: rgba(255,255,255,.9); font-size: 1.2rem; max-width: 600px; margin-bottom: 28px; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; }
.hero-badge b { color: var(--red); font-size: 1.05rem; }
.btn--ghost-light { color: #fff; border-color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.hero-dots { position: absolute; z-index: 3; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: background .2s ease; }
.hero-dots button.active { background: var(--red); border-color: var(--red); }

/* ---------- feature strip ---------- */
.marquee-strip { background: var(--red); color: #fff; }
.marquee-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding-block: 16px; }
.marquee-strip span { font-weight: 600; letter-spacing: .04em; font-size: .95rem; display: flex; align-items: center; gap: 10px; }
.marquee-strip span::before { content: "🔥"; }

/* ---------- featured cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.food-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform .18s ease, box-shadow .18s ease;
}
.food-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(0,0,0,.5); }
.food-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.food-card .body { padding: 22px 24px 26px; }
.food-card h3 { margin-bottom: 6px; }
.food-card p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ---------- value props ---------- */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prop { text-align: center; padding: 8px; }
.prop .ico { font-size: 2.2rem; margin-bottom: 10px; }
.prop h3 { margin-bottom: 6px; }
.prop p { color: var(--slate); font-size: .95rem; margin: 0; }
.section--ink .prop p { color: #cfc7ba; }

/* ---------- split / story ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-hard); }
.split .caption { font-size: .85rem; color: var(--slate); margin-top: 10px; font-style: italic; }
.split img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* restaurant / pickup card */
.pickup-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-hard); padding: 20px 22px; margin: 22px 0 24px; display: grid; gap: 12px; }
.pickup-row { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.pickup-row .ico { font-size: 1.2rem; line-height: 1.3; }
.pickup-row a { font-weight: 600; }
.hours { display: grid; gap: 5px; width: 100%; }
.hours-line { display: flex; justify-content: space-between; gap: 16px; }
.hours-line span:first-child { font-weight: 600; }
.hours-closed span { color: var(--slate); }
.hours-closed span:last-child { color: var(--red); font-weight: 600; }

/* inline image carousel (e.g. in the "We've grown" section) */
.img-carousel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hard); aspect-ratio: 4/3; }
.img-carousel .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.img-carousel .slide.active { opacity: 1; }
.img-carousel::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -60px 60px -40px rgba(0,0,0,.35); pointer-events: none; }
.img-carousel .dots { position: absolute; z-index: 2; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.img-carousel .dots button { width: 9px; height: 9px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: background .2s ease; }
.img-carousel .dots button.active { background: var(--red); border-color: var(--red); }

/* ---------- reviews ---------- */
.rating-head { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: var(--red); font-size: 1.5rem; letter-spacing: 3px; }
.rating-head .big { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.review {
  background: var(--white); border-radius: var(--radius-sm); padding: 26px 24px;
  box-shadow: var(--shadow-hard); display: flex; flex-direction: column;
}
.review .stars { font-size: 1rem; margin-bottom: 10px; }
.review p { font-size: .96rem; color: var(--slate); }
.review .who { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.review .who small { color: var(--slate); font-weight: 500; }

/* ---------- menu page ---------- */
.menu-hero { background: linear-gradient(rgba(0,0,0,.74), rgba(0,0,0,.64)), url(../img/pizza-1.jpg) center/cover; color: #fff; text-align: center; padding: clamp(150px,16vw,200px) 0 clamp(44px,5vw,64px); border-bottom: 5px solid var(--red); }
.menu-hero h1 { color: #fff; }
.menu-hero .lead { color: rgba(255,255,255,.82); }
.menu-hero .menu-legend { color: rgba(255,255,255,.72); }
.menu-legend { color: var(--slate); font-size: .95rem; }
.menu-legend .fav { color: var(--red); }
.menu-block { max-width: 860px; margin: 0 auto; }
.menu-cat-title { display: flex; align-items: baseline; gap: 14px; margin: 48px 0 6px; }
.menu-cat-title h2 { margin: 0; }
.menu-cat-title .sizes { margin-left: auto; font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .1em; color: var(--red); text-transform: uppercase; white-space: nowrap; }
.menu-note-line { color: var(--slate); font-size: .9rem; margin: 0 0 18px; }
.menu-item { padding: 15px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .row { display: flex; align-items: baseline; gap: 12px; }
.menu-item .name { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; }
.menu-item .fav { color: var(--red); }
.menu-item .dots { flex: 1; border-bottom: 2px dotted #c4c4c4; transform: translateY(-4px); }
.menu-item .price { font-weight: 700; color: var(--ink); white-space: nowrap; }
.menu-item .desc { color: var(--slate); font-size: .95rem; margin: 4px 0 0; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .86rem; font-weight: 600; color: var(--ink); }
.byo-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-hard); margin-top: 14px; }
.byo-box h3 { color: var(--red); }
.byo-price { font-weight: 700; }
.menu-foot-note { text-align: center; color: var(--slate); font-size: .92rem; max-width: 620px; margin: 40px auto 0; }
.menu-foot-note strong { color: var(--ink); }

/* ---------- trailer timeline ---------- */
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 4px; background: var(--red); border-radius: 3px; }
.tl-item { position: relative; padding: 0 0 46px 76px; }
.tl-item .dot { position: absolute; left: 16px; top: 4px; width: 26px; height: 26px; border-radius: 50%; background: var(--red); border: 4px solid var(--ink); box-shadow: 0 0 0 5px var(--white); }
.tl-item h3 { margin-bottom: 10px; }
.tl-item img { border-radius: var(--radius-sm); box-shadow: var(--shadow-hard); margin-bottom: 12px; cursor: zoom-in; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.tl-item p { color: var(--slate); margin: 0; }
@media (min-width: 720px) { .tl-item .dot { left: 15px; } }

/* ---------- generic gallery / embeds ---------- */
.embed-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-hard); padding: 14px; }
.social-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.info-list { list-style: none; margin: 24px 0 0; padding: 0; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list .ico { font-size: 1.3rem; width: 30px; text-align: center; }
.info-list a { color: var(--ink); font-weight: 500; }
.info-list a:hover { color: var(--red); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-hard); padding: 30px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 1rem; background: var(--white); color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.9); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #cfc7ba; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: 16px; }
.site-footer a { color: #cfc7ba; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-brand img { height: 60px; margin-bottom: 14px; }
.footer-brand p { font-size: .92rem; max-width: 300px; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-content: center; background: rgba(255,255,255,.08); color: #fff; font-size: 1.05rem; transition: background .18s ease; }
.socials a:hover { background: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; text-align: center; font-size: .82rem; color: #9a9186; }
.footer-bottom a { color: #b9b0a4; }

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; background: rgba(20,12,6,.9); display: none; place-content: center; z-index: 200; padding: 30px; }
.lb.open { display: grid; }
.lb img { max-width: min(92vw, 1100px); max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lb-close { position: absolute; top: 22px; right: 28px; color: #fff; font-size: 2rem; background: none; border: 0; cursor: pointer; line-height: 1; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { min-height: 80vh; }
  .hero-inner { padding-top: 150px; padding-bottom: 60px; }
  .brand img { height: 96px; }
  .site-header.scrolled .brand img { height: 56px; }
  .card-grid, .props, .review-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .split img { max-width: 460px; }
  .review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { height: 74px; }
  .brand img { height: 82px; }
  .site-header.scrolled .brand img { height: 52px; }
  .brand-glow { width: 150%; height: 155%; }
  .hero-inner { padding-top: 128px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  /* dropdown has a white bg, so links are always dark here regardless of header state */
  .nav-links a, .site-header.scrolled .nav-links a { display: block; padding: 12px 0; width: 100%; color: var(--ink); text-shadow: none; border-bottom: 1px solid var(--line); }
  .nav-links a.active, .site-header.scrolled .nav-links a.active { color: var(--red); }
  .nav-links a::after { display: none; }
}
@media (min-width: 761px) { .review-grid { grid-template-columns: repeat(3,1fr); } .card-grid { grid-template-columns: repeat(3,1fr);} .props{grid-template-columns:repeat(3,1fr);} }
