/* ============================================
   KAFENIO GREEK DINER — Stylesheet
   Modern Greek café, Avondale Estates / Decatur GA
   Brand: Greek Blue + Yogurt White + cream + bronze
   ============================================ */

/* --- Web Fonts (brand) --- */
@font-face {
  font-family: 'Epitaph';
  src: url('../fonts/Epitaph-Regular.woff2') format('woff2'),
       url('../fonts/Epitaph-Regular.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kautiva';
  src: url('../fonts/KautivaPro-Regular.woff2') format('woff2'),
       url('../fonts/KautivaPro-Regular.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  /* Brand palette (from Kafenio Brand Guidelines) */
  --color-blue: #04589C;          /* Greek Blue */
  --color-blue-dark: #022542;     /* deep navy (footer) */
  --color-blue-bright: #2885EF;   /* Santorini accent */
  --color-blue-soft: #DBEAFE;     /* light-blue section bg */
  --color-white: #F7F7F7;         /* Yogurt White */
  --color-orange: #F17930;        /* Amphora Orange */
  --color-red: #912C17;           /* Mediterranean Red */
  --color-cream: #F5ECDD;         /* warm cream section bg */
  --color-cream-2: #EDDBCB;       /* deeper cream */
  --color-bronze: #A97C3C;        /* bronze accent */
  --color-brown: #84431B;         /* subhead brown on cream */
  --color-text: #2b2b2b;
  --color-text-muted: #525252;
  --color-border: rgba(4, 88, 156, 0.14);

  /* Typography */
  --font-display: 'Epitaph', 'Archivo Black', 'Arial Black', Impact, sans-serif;
  --font-subhead: 'Kautiva', 'Georgia', serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 84px;
  --section-padding: 96px 0;
  --section-padding-mobile: 60px 0;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 6px 26px rgba(2, 37, 66, 0.10);
  --shadow-card: 0 4px 18px rgba(2, 37, 66, 0.12);
  --shadow-hover: 0 14px 38px rgba(2, 37, 66, 0.18);
  --transition: 0.3s ease;

  /* Greek meander key pattern (drawn in CSS, tinted cream) */
  --meander: repeating-linear-gradient(45deg, rgba(4,88,156,0.035) 0 2px, transparent 2px 14px),
             repeating-linear-gradient(-45deg, rgba(4,88,156,0.035) 0 2px, transparent 2px 14px);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.nav-logo img, .mobile-header-logo img { max-width: none; width: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { color: var(--color-blue); line-height: 1.1; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-blue);
}

h1.display { font-size: clamp(2.4rem, 6vw, 4rem); }
h2.display { font-size: clamp(1.9rem, 4.6vw, 3rem); }

.subhead {
  font-family: var(--font-subhead);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-brown);
  line-height: 1.25;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.02em;
  color: var(--color-blue);
  line-height: 1.1;
}

.lead, .section-header p:not(.eyebrow):not(.subhead) { color: var(--color-text-muted); font-size: 1.02rem; line-height: 1.75; }

.section-icon { width: 84px; height: 84px; margin: 0 auto 18px; display: block; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-padding); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header .eyebrow { display: block; margin-bottom: 10px; }
.section-header .subhead { margin-bottom: 18px; }

/* Cream meander section */
.bg-cream { position: relative; background-color: var(--color-cream); }
.bg-cream::before {
  content: ''; position: absolute; inset: 0; background-image: var(--meander);
  background-size: 28px 28px; opacity: 1; pointer-events: none; z-index: 0;
}
.bg-cream > * { position: relative; z-index: 1; }

.bg-blue-soft { background-color: var(--color-blue-soft); }
.bg-white { background-color: #ffffff; }

/* Scalloped divider (top edge of a section) */
.scallop-top {
  position: relative;
}
.scallop-top::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 18px;
  background:
    radial-gradient(circle at 14px -2px, transparent 13px, var(--color-cream) 14px) repeat-x;
  background-size: 28px 18px; pointer-events: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.01em; transition: all var(--transition); cursor: pointer; text-align: center;
}
.btn svg, .btn img.arrow { width: 17px; height: 17px; transition: transform var(--transition); }
.btn:hover svg, .btn:hover img.arrow { transform: translateX(4px); }

.btn-cta { background: var(--color-blue); color: #fff; border: 2px solid var(--color-blue); }
.btn-cta:hover { background: var(--color-blue-dark); border-color: var(--color-blue-dark); color: #fff; }

.btn-outline-light { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--color-blue); }

.btn-outline { background: transparent; border: 2px solid var(--color-blue); color: var(--color-blue); }
.btn-outline:hover { background: var(--color-blue); color: #fff; }

.btn-orange { background: var(--color-orange); color: #fff; border: 2px solid var(--color-orange); }
.btn-orange:hover { background: var(--color-red); border-color: var(--color-red); color: #fff; }

/* --- Navigation — Desktop --- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 48px; height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  background: #ffffff; border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-soft); }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 34px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a, .nav-more-trigger {
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  color: var(--color-blue-dark); position: relative; padding: 8px 14px;
  border-radius: var(--radius-sm); transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 6px; background: none; border: none;
}
.nav-links a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--color-blue); transform: scaleX(0); transform-origin: center;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-more-trigger:hover { color: var(--color-blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--color-blue); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-social {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  color: var(--color-blue); transition: all var(--transition);
}
.nav-social:hover { border-color: var(--color-blue); background: var(--color-blue); color: #fff; }
.nav-cta { padding: 11px 26px; }

/* More dropdown */
.nav-more { position: relative; }
.nav-more-trigger .chevron {
  width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg); transition: transform var(--transition); margin-top: -3px;
}
.nav-more.open .chevron { transform: rotate(-135deg); margin-top: 3px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 6px;
  min-width: 210px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all var(--transition); box-shadow: var(--shadow-card);
}
.nav-more.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 10px 16px; font-weight: 500; color: var(--color-blue-dark); border-radius: var(--radius-sm); }
.nav-dropdown a:hover { background: var(--color-blue-soft); color: var(--color-blue); }

/* --- Mobile Header --- */
.mobile-header {
  display: none; position: fixed; top: 0; left: 0; width: 100%; z-index: 2500;
  height: 64px; padding: 0 18px; background: #fff; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--color-border);
}
.mobile-header-logo img { height: 28px; }
.hamburger { width: 42px; height: 42px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--color-blue); border-radius: 2px; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); transform-origin: center; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 2000; background: #fff;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-items { padding: 84px 22px 16px; display: flex; flex-direction: column; flex: 1; }
.mobile-menu-link {
  padding: 13px 12px; font-family: var(--font-body); font-weight: 600; font-size: 1.15rem;
  color: var(--color-blue-dark); border-bottom: 1px solid var(--color-border);
}
.mobile-menu-link:hover { color: var(--color-blue); }
.mobile-menu-cta { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 16px 22px 22px; padding: 16px; background: var(--color-blue); color: #fff; font-weight: 700; border-radius: var(--radius-pill); }
.mobile-menu-cta svg { width: 17px; height: 17px; }
.mobile-menu-footer { padding: 18px 22px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: auto; }
.mobile-menu-social { display: flex; gap: 18px; }
.mobile-menu-social a { color: var(--color-blue); }
.mobile-menu-phone { font-weight: 700; color: var(--color-blue-dark); }
.mobile-menu-phone:hover { color: var(--color-blue); }

/* --- Hero --- */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 560px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; margin-top: var(--nav-height);
  background: #1a1a1a;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(2, 37, 66, 0.45); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-logo { width: clamp(180px, 28vw, 300px); height: auto; margin: 0 auto; animation: heroIn 1.1s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes heroIn { 0% { opacity: 0; transform: scale(0.7); } 100% { opacity: 1; transform: scale(1); } }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }

/* --- Generic page hero (subpages) — photo banner --- */
.page-hero {
  position: relative; margin-top: var(--nav-height); padding: 104px 0;
  text-align: center; color: #fff; overflow: hidden; background: #1a1a1a;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(2, 37, 66, 0.55); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-icon { width: 52px; height: 52px; margin: 0 auto 14px; }
.page-hero .eyebrow { color: #fff; display: block; margin-bottom: 4px; font-size: clamp(2rem,5vw,3rem); }
.page-hero .subhead { color: rgba(255,255,255,0.92); }

/* --- Section background textures (full-bleed) --- */
.sec-bg { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }

/* --- Trama divider strips (azulejo tiles between sections) --- */
.divider { width: 100%; background-repeat: repeat-x; background-position: center; background-size: auto 100%; }
.divider-sm { height: 28px; }
.divider-lg { height: 58px; }

/* --- Intro / brand statement --- */
.intro { text-align: center; }
.intro .eyebrow { display: block; margin-bottom: 10px; }
.intro .subhead { margin: 0 auto 22px; max-width: 760px; }
.intro p:not(.eyebrow):not(.subhead) { max-width: 680px; margin: 0 auto 30px; color: var(--color-text-muted); }

/* --- Menu preview (home) --- */
.menu-cards {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 8px;
}
.menu-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 360px;
  box-shadow: var(--shadow-soft); display: block;
}
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-card:hover img { transform: scale(1.07); }
.menu-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(2,37,66,0.78)); }
.menu-card-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 18px; z-index: 1;
  font-family: var(--font-subhead); font-size: 1.4rem; color: #fff; text-align: left; line-height: 1.1;
}
.menu-preview-cta { display: flex; justify-content: center; margin-top: 44px; }

/* --- Catering split (home) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-text .eyebrow { display: block; margin-bottom: 8px; }
.split-text .subhead { color: var(--color-blue-dark); margin-bottom: 18px; }
.split-text p:not(.eyebrow):not(.subhead) { color: var(--color-text-muted); margin-bottom: 28px; }
.split-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.split-images img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.split-images img:first-child { grid-row: span 2; height: 100%; }

/* --- Happenings (blue section) --- */
.happenings { background: var(--color-blue); color: #fff; }
.happenings .eyebrow, .happenings .subhead { color: #fff; }
.happenings .section-header p:not(.eyebrow):not(.subhead) { color: rgba(255,255,255,0.85); }
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.special-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition); }
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.special-card-img { aspect-ratio: 16/10; overflow: hidden; }
.special-card-img img { width: 100%; height: 100%; object-fit: cover; }
.special-card-body { padding: 24px; }
.special-when { font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-orange); display: block; margin-bottom: 8px; }
.special-card-body h3 { font-family: var(--font-subhead); color: var(--color-blue); font-size: 1.4rem; margin-bottom: 10px; }
.special-card-body p { color: var(--color-text-muted); font-size: 0.95rem; }
.happenings-cta { display: flex; justify-content: center; margin-top: 44px; }

/* --- Order Online promo --- */
.order-promo { text-align: center; }
.order-promo .pickup { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; color: var(--color-orange); margin: 18px 0 26px; }

/* --- More ways (two-up) --- */
.moreways { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.moreway { text-align: center; padding: 20px 40px; }
.moreway:first-child { border-right: 1px solid var(--color-border); }
.moreway img { width: 64px; height: 64px; margin: 0 auto 16px; }
.moreway h3 { font-family: var(--font-subhead); color: var(--color-brown); font-size: 1.5rem; margin-bottom: 12px; }
.moreway p { color: var(--color-text-muted); margin-bottom: 22px; }

/* --- Find Us --- */
.findus-card {
  position: relative; background: var(--color-cream-2); border-radius: var(--radius-lg);
  padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  border: 2px solid var(--color-bronze); box-shadow: var(--shadow-card);
}
.findus-info .findus-icon { width: 54px; height: 54px; margin-bottom: 12px; }
.findus-info .eyebrow { display: block; margin-bottom: 20px; color: var(--color-brown); }
.findus-block { margin-bottom: 18px; }
.findus-block h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-bronze); margin-bottom: 4px; }
.findus-block a, .findus-block p { color: var(--color-blue-dark); font-size: 1.05rem; }
.findus-block a:hover { color: var(--color-blue); }
.findus-map { width: 100%; height: 320px; border: 0; border-radius: var(--radius-md); }

/* --- Footer --- */
.footer-tiles { height: 58px; background: url('../images/TramaFooter.svg') repeat-x center; background-size: auto 100%; }
.footer { background: var(--color-blue-dark); color: #fff; padding: 64px 48px 0; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; padding-bottom: 48px; }
.footer-logo { width: 200px; margin-bottom: 18px; }
.footer-title-sub { font-family: var(--font-subhead); font-size: 1.6rem; color: #fff; margin-bottom: 14px; }
.footer-desc { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 420px; margin-bottom: 18px; }
.footer-address { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 24px; text-decoration: underline; text-underline-offset: 3px; }
.footer-address:hover { color: #fff; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.75); font-size: 0.92rem; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-bottom: 22px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); color: #fff; transition: background var(--transition); }
.footer-social a:hover { background: var(--color-blue); }
.footer-phone { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; text-align: center; }
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-copy a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; }
.footer-copy a:hover { color: #fff; }

/* --- Pre-footer CTA (Your Greek Fix) --- */
.prefooter { background: var(--color-blue); color: #fff; text-align: center; }
.prefooter .subhead { color: #fff; margin-bottom: 14px; }
.prefooter p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 22px; }
.prefooter .addr { display: inline-block; color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* ===========================================================
   MENU PAGE
   =========================================================== */
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 16px 24px;
  position: sticky; top: var(--nav-height); z-index: 100; background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.menu-tab {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; padding: 9px 20px;
  border-radius: var(--radius-pill); border: 1.5px solid var(--color-border);
  color: var(--color-blue-dark); background: transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.menu-tab:hover, .menu-tab.active { border-color: var(--color-blue); color: #fff; background: var(--color-blue); }

.menu-section { padding: 64px 0 24px; scroll-margin-top: calc(var(--nav-height) + 64px); }
.menu-section > h2.display { text-align: center; color: var(--color-blue); margin-bottom: 8px; }
.menu-subgroup { margin-top: 40px; }
.menu-subgroup-title {
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-orange); font-size: 0.95rem; text-align: center; margin-bottom: 6px;
}
.menu-note { text-align: center; color: var(--color-text-muted); font-size: 0.9rem; font-style: italic; margin: 0 auto 28px; max-width: 700px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 0 0 28px; text-align: center; overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.menu-item:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.menu-item-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #faf6ee; margin-bottom: 22px; }
.menu-item.no-img { padding-top: 36px; }
.menu-item-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-blue); letter-spacing: 0.01em; padding: 0 20px; }
.menu-item-desc { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.55; margin-top: 12px; padding: 0 26px; flex: 1; }
.menu-item-price { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; color: var(--color-blue); margin-top: 16px; }
.menu-customize { background: var(--color-blue-soft); border-radius: var(--radius-md); padding: 18px 22px; margin-top: 24px; font-size: 0.9rem; color: var(--color-blue-dark); }
.menu-customize strong { display: block; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-blue); margin-bottom: 8px; font-size: 0.82rem; }
.menu-customize p { margin: 2px 0; }

/* ===========================================================
   CONTACT / CAREERS FORMS
   =========================================================== */
.form-wrap { max-width: 620px; margin: 0 auto; }
.contact-form, .careers-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 0.82rem; color: var(--color-blue-dark); }
.form-group input, .form-group textarea, .form-group select {
  background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--color-text); font-size: 0.96rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--color-blue); box-shadow: 0 0 0 3px rgba(4,88,156,0.12);
}
.form-group input.error, .form-group textarea.error, .form-group select.error { border-color: var(--color-red); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-success, .form-error { display: none; text-align: center; padding: 15px; border-radius: var(--radius-sm); font-size: 0.95rem; }
.form-success { background: var(--color-blue-soft); color: var(--color-blue); border: 1px solid var(--color-blue); }
.form-error { background: #fbe6e1; color: var(--color-red); border: 1px solid var(--color-red); }

/* ===========================================================
   SIMPLE CENTERED CTA PAGES (gift card / order / join)
   =========================================================== */
.cta-page { text-align: center; }
.cta-page .icon { width: 90px; height: 90px; margin: 0 auto 22px; }
.cta-page .subhead { color: var(--color-blue-dark); margin-bottom: 18px; }
.cta-page p { max-width: 620px; margin: 0 auto 32px; color: var(--color-text-muted); }
.cta-page .pickup { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; color: var(--color-orange); }

/* --- About photo + reviews --- */
.about-lead { max-width: 820px; margin: 0 auto; text-align: center; }
.about-lead .subhead { color: var(--color-blue-dark); margin-bottom: 20px; }
.about-lead p:not(.eyebrow):not(.subhead) { color: var(--color-text-muted); margin-bottom: 18px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.review-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); }
.review-stars { color: var(--color-orange); letter-spacing: 3px; margin-bottom: 12px; }
.review-name { font-family: var(--font-subhead); font-size: 1.2rem; color: var(--color-blue); margin-bottom: 12px; }
.review-text { color: var(--color-text-muted); font-size: 0.93rem; line-height: 1.65; }
.review-flourish { display: block; width: 38px; height: auto; margin: 0 auto 14px; opacity: 0.7; }
.section-flourish { display: block; width: 120px; height: auto; margin: 0 auto 18px; opacity: 0.55; }

/* --- About story photos --- */
.about-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.about-photos img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.about-hero-photo { width: 100%; max-width: 760px; margin: 36px auto 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.blog-card-body { padding: 26px; }
.blog-date { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-orange); margin-bottom: 10px; display: block; }
.blog-card h3 { font-family: var(--font-subhead); color: var(--color-blue); font-size: 1.3rem; line-height: 1.2; margin-bottom: 12px; }
.blog-card p { color: var(--color-text-muted); font-size: 0.93rem; }

/* --- Placeholder --- */
.placeholder { text-align: center; padding: 60px 24px; }
.placeholder p { color: var(--color-text-muted); font-size: 1.1rem; margin-top: 14px; }
.privacy-content { max-width: 760px; margin: 0 auto; }
.privacy-content h3 { font-family: var(--font-subhead); color: var(--color-blue); margin: 28px 0 10px; }
.privacy-content p { color: var(--color-text-muted); margin-bottom: 12px; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .nav-links a, .nav-more-trigger { font-size: 0.92rem; padding: 8px 10px; }
  .menu-cards { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 56px 24px 0; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-header { display: flex; }
  body { padding-top: 64px; }
  section { padding: var(--section-padding-mobile); }
  .hero { margin-top: -64px; min-height: 88vh; }
  .page-hero { margin-top: 0; }
  .menu-cards { grid-template-columns: 1fr 1fr; }
  .menu-card { height: 260px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .specials-grid { grid-template-columns: 1fr; }
  .moreways { grid-template-columns: 1fr; }
  .moreway:first-child { border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: 36px; margin-bottom: 36px; }
  .findus-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: 1fr; }
  .menu-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; top: 64px; }
  .menu-tabs::-webkit-scrollbar { display: none; }
}

@media (max-width: 480px) {
  .menu-cards { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; width: 100%; padding: 0 28px; }
  .hero-buttons .btn { width: 100%; }
  .split-images { grid-template-columns: 1fr 1fr; }
}

/* --- Lightbox --- */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(2,37,66,0.94); z-index: 9999; align-items: center; justify-content: center; cursor: zoom-out; padding: 20px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 8px; cursor: default; box-shadow: 0 8px 60px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 16px; right: 22px; background: none; border: none; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; opacity: 0.85; }
.lightbox-close:hover { opacity: 1; }
