/* The Cake Kitchen/Lunch Bar — shared stylesheet
   Palette: cream, diner red, mustard — bold retro lunch-bar feel
   Type: Alfa Slab One (display) / Barlow (body)
   Layout notes: bold poster-style hero, early-hours banner, cabinet-menu list —
   deliberately punchy/retro, different tone from every other build in this project.
*/

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Barlow:wght@400;500;600;700;800&display=swap');

:root{
  --paper: #F7F1E3;
  --paper-deep: #EDE4C8;
  --ink: #2A2118;
  --red: #B23A2E;
  --red-deep: #8C2C22;
  --mustard: #E0A430;
  --mustard-deep: #B8821F;
  --ink-soft: #5C5142;
  --line: rgba(42,33,24,0.15);
  --radius: 4px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin:0; background: var(--paper); color: var(--ink); font-family:'Barlow', sans-serif; font-size:17px; line-height:1.6; }
h1,h2,h3{ font-family:'Alfa Slab One', serif; font-weight:400; line-height:1.15; margin:0 0 0.5em 0; color: var(--ink); }
p{ margin:0 0 1em 0; max-width:62ch; }
a{ color: var(--red-deep); }
.wrap{ max-width:1080px; margin:0 auto; padding:0 32px; }

/* Hours banner */
.hours-banner{ background: var(--ink); color:#F7F1E3; text-align:center; padding:9px 0; font-weight:700; font-size:0.85rem; letter-spacing:0.02em; }

/* Header */
header.site{ padding:20px 0; border-bottom:3px solid var(--red); }
header.site .wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color: var(--ink); }
.brand svg{ width:38px; height:38px; }
.brand-name{ font-family:'Alfa Slab One', serif; font-size:1.05rem; color: var(--red-deep); }
nav.main{ display:flex; gap:26px; }
nav.main a{ text-decoration:none; color: var(--ink); font-weight:700; font-size:0.88rem; text-transform:uppercase; letter-spacing:0.03em; padding-bottom:4px; border-bottom:3px solid transparent; }
nav.main a:hover, nav.main a.active{ border-bottom-color: var(--mustard); }
.header-cta{ background: var(--red); color:#F7F1E3; padding:10px 20px; border-radius: var(--radius); text-decoration:none; font-weight:700; font-size:0.85rem; white-space:nowrap; }
@media (max-width:720px){ nav.main{ display:none; } header.site .wrap{ flex-wrap:wrap; } }

/* Hero — bold poster style */
.hero{ padding:60px 0 56px; background: var(--red); color:#F7F1E3; text-align:center; }
.hero .eyebrow{ font-size:0.9rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color: var(--mustard); margin-bottom:16px; }
.hero h1{ font-size: clamp(2.4rem, 5.4vw, 4rem); max-width:16ch; margin:0 auto 18px; color:#FAF5E9; text-transform:uppercase; line-height:1.05; }
.hero p.lead{ font-size:1.1rem; color: rgba(250,245,233,0.9); max-width:46ch; margin:0 auto 26px; }
.hero .cta-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn{ display:inline-block; padding:14px 28px; border-radius: var(--radius); text-decoration:none; font-weight:700; font-size:0.92rem; text-transform:uppercase; letter-spacing:0.02em; border:2px solid transparent; }
.btn-primary{ background: var(--mustard); color: var(--ink); }
.btn-primary:hover{ background: var(--mustard-deep); }
.btn-outline{ border-color:#F7F1E3; color:#F7F1E3; }
.btn-outline:hover{ background:#F7F1E3; color: var(--red); }

.section{ padding:66px 0; }
.section-head{ max-width:60ch; margin-bottom:32px; }
.section-head h2{ font-size: clamp(1.7rem, 3.2vw, 2.3rem); color: var(--red-deep); }
.section-head p{ color: var(--ink-soft); }

/* Cabinet menu list — replaces card grid */
.cabinet-list{ display:grid; grid-template-columns: repeat(2,1fr); gap:0; border-top:3px solid var(--ink); border-left:3px solid var(--ink); }
.cabinet-item{ border-right:3px solid var(--ink); border-bottom:3px solid var(--ink); padding:22px 24px; }
.cabinet-item h3{ font-size:1.05rem; color: var(--red-deep); margin-bottom:6px; }
.cabinet-item p{ color: var(--ink-soft); font-size:0.92rem; margin:0; }
@media (max-width:640px){ .cabinet-list{ grid-template-columns:1fr; } }

/* Feature band */
.feature-band{ background: var(--ink); color:#F7F1E3; padding:56px 0; text-align:center; }
.feature-band h2{ color: var(--mustard); max-width:24ch; margin:0 auto 14px; text-transform:uppercase; }
.feature-band p{ color: rgba(247,241,227,0.82); max-width:52ch; margin:0 auto; }

/* Testimonial */
.testimonial{ padding:60px 0; text-align:center; }
.testimonial .wrap{ max-width:680px; }
.testimonial p.quote{ font-family:'Alfa Slab One', serif; font-size:1.3rem; color: var(--red-deep); margin:0 auto 14px; text-transform:uppercase; line-height:1.3; }
.testimonial .attrib{ font-weight:700; font-size:0.85rem; color: var(--ink-soft); }
.placeholder-flag{ display:inline-block; margin-top:12px; font-size:0.74rem; font-weight:700; letter-spacing:0.03em; color: var(--red-deep); background: rgba(178,58,46,0.12); padding:5px 10px; border-radius:3px; }

/* CTA */
.cta-band{ background: var(--mustard); color: var(--ink); padding:52px 0; text-align:center; }
.cta-band h2{ color: var(--ink); text-transform:uppercase; }
.cta-band p{ color: rgba(42,33,24,0.85); margin:0 auto 20px; }
.cta-band .btn-primary{ background: var(--ink); color:#F7F1E3; }

/* Photo placeholders */
.photo-placeholder{ background: repeating-linear-gradient(135deg, var(--red) 0px, var(--red) 14px, var(--red-deep) 14px, var(--red-deep) 28px); border-radius: var(--radius); min-height:240px; display:flex; align-items:center; justify-content:center; padding:24px; text-align:center; }
.photo-placeholder span{ background: rgba(42,33,24,0.75); color:#F7F1E3; font-size:0.85rem; padding:10px 16px; border-radius:3px; max-width:30ch; }

.about-block{ display:grid; grid-template-columns: 1fr 1fr; gap:44px; align-items:center; }
@media (max-width:780px){ .about-block{ grid-template-columns:1fr; } }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; }
@media (max-width:780px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{ background: var(--paper-deep); border-radius: var(--radius); padding:32px; border:2px solid var(--ink); }
.contact-card dl{ margin:0; }
.contact-card dt{ font-weight:800; color: var(--red-deep); font-size:0.78rem; text-transform:uppercase; letter-spacing:0.05em; margin-top:16px; }
.contact-card dt:first-child{ margin-top:0; }
.contact-card dd{ margin:2px 0 0; color: var(--ink-soft); }
.map-placeholder{ background: var(--paper-deep); border:2px dashed var(--ink); border-radius: var(--radius); min-height:300px; display:flex; align-items:center; justify-content:center; text-align:center; padding:24px; }
.map-placeholder span{ color: var(--ink-soft); font-size:0.9rem; max-width:26ch; }

footer.site{ border-top:3px solid var(--red); padding:28px 0; margin-top:16px; }
footer.site .wrap{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:0.85rem; color: var(--ink-soft); }
