/* ============================================
   NEW GREEK BAKERY
   Editorial / Magazine Style
   Inspired by theolly.it
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --blue:           #0D47A1;
  --blue-dark:      #0D47A1;
  --blue-mid:       #0D47A1;
  --blue-light:     #0D47A1;
  --blue-pale:      #0D47A1;
  --blue-wash:      rgba(13,71,161,0.04);

  --bg:             #FFFFFF;
  --bg-dark:        #0D47A1;
  --white:          #FFFFFF;

  --text:           #111111;
  --text-light:     #666666;
  --text-faint:     #AAAAAA;

  --gold:           #C9A24E;
  --gold-dark:      #A78338;
  --gold-light:     #E0C078;
  --gold-wash:      rgba(201,162,78,0.08);

  --font-display:   'Noto Serif Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, sans-serif;

  --nav-height:     64px;
  --max-width:      1400px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
}
h1 { font-size: clamp(4rem, 10vw, 9rem); }
h2 { font-size: clamp(3rem, 7vw, 7rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; line-height: 1.2; }
p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 400;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--blue);
  z-index: 1000;
}

/* --- Vertical Line (decorative) --- */
.v-line {
  width: 1px;
  height: 80px;
  background: var(--blue);
  margin: 0 auto;
  opacity: 0.3;
}
.v-line-white {
  background: rgba(255,255,255,0.25);
}
.v-line-tall { height: 120px; }

/* --- Section Label --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.section-label-white { color: rgba(255,255,255,0.5); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.15);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.btn-sm { padding: 10px 24px; font-size: 0.72rem; }

/* Arrow icon for buttons */
.btn-arrow::after {
  content: '\2192';
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.4s ease, opacity 0.4s ease;
}
.nav.scrolled,
.nav.nav-solid {
  background: rgba(238,238,239,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.nav.scrolled .nav-logo,
.nav.nav-solid .nav-logo {
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.nav.scrolled .nav-links a,
.nav.nav-solid .nav-links a {
  color: var(--text-light);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active,
.nav.nav-solid .nav-links a:hover,
.nav.nav-solid .nav-links a.active {
  color: var(--text);
}
.nav-cta { margin-left: 32px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav.scrolled .nav-hamburger span,
.nav.nav-solid .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a { color: var(--text); transition: color 0.3s ease; }
.nav-mobile a:hover { color: var(--blue); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

/* ============================================
   HERO - Full viewport, dark background
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  padding-top: calc(40px + var(--nav-height) + 20px);
  padding-bottom: 40px;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--blue);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.92;
  margin-bottom: 16px;
}
.hero h1 .accent {
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.hero-sub {
  color: rgba(255,255,255,0.4);
  font-size: 1.05rem;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.hero-actions {
  display: flex;
  gap: 16px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero info bar (bottom right, desktop) */
.hero-info {
  position: absolute;
  bottom: 100px;
  right: 48px;
  z-index: 2;
  text-align: right;
}
.hero-info-item {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.hero-info-item strong {
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .hero-content { padding: 24px; }
  .hero-info { display: none; }
  .hero-scroll { display: none; }
}

/* ============================================
   TEXT REVEAL SECTION (big statement, blue bg)
   ============================================ */
.text-reveal-section {
  background: var(--bg);
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.text-reveal-section .v-line {
  margin-bottom: 60px;
}
.text-reveal-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.35;
  color: #DDDDDD;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}
/* Individual chars for scroll-driven color reveal */
.text-reveal-heading .word {
  display: inline-block;
  white-space: nowrap;
}
.text-reveal-heading .char {
  display: inline-block;
  color: rgba(255,255,255,0.15);
  transition: color 0.05s ease;
}
.text-reveal-heading .char.active {
  color: var(--white);
}

/* ============================================
   FLOATING IMAGES SECTION
   "BREAKFAST, LUNCH..." style from Olly
   ============================================ */
.showcase-section {
  padding: 120px 0 160px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.showcase-section .v-line { margin-bottom: 40px; }
.showcase-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 60px;
}
.showcase-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--blue);
  position: relative;
  z-index: 2;
}

/* Floating food images */
.float-img {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.float-img-placeholder {
  border-radius: 50%;
  overflow: hidden;
}
/* Placeholder circles for food cutouts */
.float-1 {
  width: clamp(120px, 18vw, 240px);
  height: clamp(120px, 18vw, 240px);
  top: 15%;
  left: 3%;
  background: var(--blue);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
}
.float-2 {
  width: clamp(100px, 14vw, 180px);
  height: clamp(100px, 14vw, 180px);
  top: 60%;
  left: 6%;
  background: var(--blue);
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
}
.float-3 {
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  top: 25%;
  right: 2%;
  background: var(--blue);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
}
.float-4 {
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  bottom: 15%;
  right: 8%;
  background: var(--blue);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .float-img { opacity: 0.4; }
}

/* ============================================
   SPLIT SECTION (image + text side by side)
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.split-img {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-img-inner {
  width: 70%;
  aspect-ratio: 3/4;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-size: 4rem;
}
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
}
.split-text h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 32px;
  line-height: 1;
}
.split-text p {
  max-width: 420px;
  margin-bottom: 20px;
}
.split-text .btn { margin-top: 24px; align-self: flex-start; }

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 50vh; }
  .split-text { padding: 60px 24px; }
}

/* ============================================
   MENU PREVIEW (dark section)
   ============================================ */
.menu-preview-section {
  background: var(--bg-dark);
  padding: 160px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.menu-preview-section .v-line { margin-bottom: 60px; }
.menu-preview-section h2 { color: var(--white); margin-bottom: 16px; }
.menu-preview-sub {
  color: rgba(255,255,255,0.35);
  max-width: 480px;
  margin: 0 auto 80px;
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  max-width: 1000px;
  margin: 0 auto;
}
.menu-preview-card {
  background: var(--bg-dark);
  padding: 48px 36px;
  text-align: left;
  transition: background 0.4s ease;
}
.menu-preview-card:hover {
  background: rgba(255,255,255,0.03);
}
.menu-preview-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.menu-preview-card p {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  line-height: 1.7;
}
.menu-preview-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .menu-preview-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CTA SECTION (minimal)
   ============================================ */
.cta-section {
  padding: 160px 0;
  text-align: center;
  background: var(--bg);
}
.cta-section h2 {
  margin-bottom: 20px;
}
.cta-section p {
  max-width: 420px;
  margin: 0 auto 48px;
}

/* ============================================
   REVIEWS (horizontal scroll or simple grid)
   ============================================ */
.reviews-section {
  padding: 160px 0;
  background: var(--white);
}
.reviews-section .container { text-align: center; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
  text-align: left;
}
.review-card {
  padding: 0;
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text) !important;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light) !important;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.4);
  padding: 100px 0 48px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo {
  color: var(--white);
  font-size: 1.3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.25) !important;
  font-size: 0.88rem;
  margin-top: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex; gap: 16px; margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.85rem; }
.footer-col a { transition: color 0.3s ease; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.2) !important;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   INNER PAGES - MENU
   ============================================ */
.page-hero {
  padding: 180px 0 100px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(13,71,161,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(3rem, 8vw, 7rem); }
.page-hero .section-label { color: rgba(255,255,255,0.35); }
.page-hero p { color: rgba(255,255,255,0.35); max-width: 520px; margin: 16px auto 0; }

/* Menu sticky nav */
.menu-sticky-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: rgba(238,238,239,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-sticky-nav::-webkit-scrollbar { display: none; }
.menu-sticky-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex; gap: 0; white-space: nowrap;
}
.menu-cat-link {
  padding: 16px 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
}
.menu-cat-link:hover { color: var(--text); }
.menu-cat-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* Menu sections */
.menu-section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.menu-section:nth-child(even) { background: var(--white); }
.menu-section-header {
  margin-bottom: 56px;
}
.menu-section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 8px;
}
.menu-section-header p {
  margin-top: 16px;
  max-width: 480px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
}
.menu-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: padding-left 0.3s ease;
}
.menu-item:hover { padding-left: 12px; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.menu-item-price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
}
.menu-item-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}
.tag-popular { color: var(--gold); }
.tag-new { color: var(--blue); }
.tag-vegan { color: #66BB6A; }

.menu-order-bar {
  text-align: center;
  padding: 80px 0;
  background: var(--bg);
}
.menu-order-bar p { margin-bottom: 32px; }

@media (max-width: 480px) {
  .menu-items-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 120px 0;
}
.about-story-content {
  max-width: 680px;
  margin: 0 auto;
}
.about-story-content h3 {
  margin-top: 64px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 1.8rem;
}
.about-story-content h3:first-child { margin-top: 0; }
.about-story-content p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.9;
}

/* Values */
.values-section {
  padding: 140px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 80px;
}
.value-card { text-align: center; }
.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 0.9rem;
}
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue);
  opacity: 0.15;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FIND US PAGE
   ============================================ */
.contact-section { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-block { margin-bottom: 48px; }
.contact-block h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.contact-detail {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: flex-start;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 80px;
  padding-top: 2px;
}
.contact-detail-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-table td:first-child { font-weight: 500; color: var(--text); }
.hours-table td:last-child { text-align: right; color: var(--text-light); }

.map-embed {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-embed { aspect-ratio: 16/10; }
}

/* ============================================
   GSAP ANIMATION STATES
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
}
.fade-in {
  opacity: 0;
}
.slide-up {
  opacity: 0;
  transform: translateY(80px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  .hero h1 { font-size: 3rem; }
}

/* ============================================
   OPENING SOON ADDITIONS
   ============================================ */

/* Top banner - fixed at top, always above the nav */
.opening-banner {
  background: #0A3A87;
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.opening-banner span { opacity: 0.85; }
.opening-banner strong { font-weight: 700; }

/* Push everything below the fixed banner */
body.coming-soon .nav,
body.coming-soon .nav-minimal { top: 40px; }
body.coming-soon .scroll-progress { top: 40px; }
body.coming-soon .hero { min-height: calc(100vh - 40px); }

@media (max-width: 600px) {
  .opening-banner { font-size: 11px; padding: 10px 12px; }
  body.coming-soon .nav,
  body.coming-soon .nav-minimal,
  body.coming-soon .scroll-progress { top: 36px; }
  body.coming-soon .hero { min-height: calc(100vh - 36px); }
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  background: rgba(13, 71, 161, 0.08);
  color: var(--blue);
  border: 1px solid rgba(13, 71, 161, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Email signup form in hero */
.hero-signup {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 12px;
  max-width: 500px;
  flex-wrap: wrap;
}
.hero-signup input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 16px 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-signup input[type="email"]:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.12);
}
.hero-signup button { white-space: nowrap; }

.hero-signup.success {
  display: none;
}
.hero-signup-success {
  display: none;
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(13, 71, 161, 0.08);
  border-left: 3px solid var(--blue);
  color: var(--blue);
  border-radius: 4px;
  font-weight: 500;
}
.hero-signup-success.visible {
  display: block;
}

.hero-signup-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .hero-signup { flex-direction: column; gap: 10px; }
  .hero-signup input[type="email"] { min-width: 100%; }
  .hero-signup button { width: 100%; }
}

/* Coming soon countdown section */
.coming-soon-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(13, 71, 161, 0.02) 100%);
  padding: 100px 0;
  text-align: center;
}
.coming-soon-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 24px;
}
.coming-soon-section h2 em {
  font-style: italic;
  color: var(--blue);
}
.coming-soon-section p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ============================================
   COMING SOON / SINGLE-PAGE MODE
   ============================================ */

/* Minimal nav: just the logo, centered, no links */
.nav-minimal .nav-inner {
  justify-content: center;
}
.nav-minimal .nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-minimal .nav-links,
.nav-minimal .nav-cta,
.nav-minimal .nav-hamburger,
.nav-mobile {
  display: none !important;
}

/* Homepage (coming-soon) has a real nav now: enable the mobile menu, offset below the banner + nav */
body.coming-soon .nav-mobile { display: flex !important; top: calc(40px + var(--nav-height)); }

/* Inline Find Us section */
.find-us-inline {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(13, 71, 161, 0.03) 100%);
}
.find-us-inline h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  margin: 16px 0 32px;
  line-height: 1.05;
}
.find-us-intro {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 60px;
}
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.find-us-block {
  margin-bottom: 36px;
}
.find-us-block h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.find-us-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 8px;
}
.find-us-block .hours-table {
  width: 100%;
  border-collapse: collapse;
}
.find-us-block .hours-table td {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.find-us-block .hours-table td:last-child {
  text-align: right;
  color: var(--text-light);
}
.find-us-map {
  height: 540px;
  border-radius: 6px;
  overflow: hidden;
  background: #F0EAE0;
  border: 1px solid rgba(13, 71, 161, 0.15);
  position: relative;
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.08);
}
.find-us-map iframe { width: 100%; height: 100%; display: block; }
#bakeryMap { width: 100%; height: 100%; }
.map-directions-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--blue);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 10;
}
.map-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

@media (max-width: 900px) {
  .find-us-grid { grid-template-columns: 1fr; gap: 50px; }
  .find-us-map { height: 400px; }
}

/* Minimal footer */
.footer-minimal {
  padding: 60px 0 40px;
}
.footer-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-minimal .nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.footer-minimal .footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  max-width: 360px;
}
.footer-minimal .footer-social {
  display: flex;
  gap: 16px;
}
.footer-minimal .footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-minimal .footer-social svg {
  width: 22px;
  height: 22px;
}
.footer-minimal .footer-bottom {
  padding-top: 30px;
  text-align: center;
}
.footer-minimal .footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 4px 0;
}

@media (max-width: 640px) {
  .footer-minimal-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ============================================
   BLOG POST PAGES
   ============================================ */
.blog-post-hero {
  padding: 180px 0 80px;
  background: var(--bg);
}
.blog-post-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  max-width: 780px;
  letter-spacing: -0.03em;
}
.blog-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.blog-post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px 120px;
}
.blog-post-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--text-light);
}
.blog-post-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 56px;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.blog-post-cta {
  margin-top: 64px;
  padding: 48px;
  background: rgba(13, 71, 161, 0.03);
  border: 1px solid rgba(13, 71, 161, 0.08);
  border-radius: 4px;
  text-align: center;
}
.blog-post-cta p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 24px;
}
.blog-post-cta .btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .blog-post-body { padding: 0 24px 80px; }
  .blog-post-cta { padding: 32px 24px; }
}

/* ============================================
   GOLD ACCENTS (brand layer)
   ============================================ */

/* Brand mark (logo image) */
.brand-mark {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 0 20px;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(201,162,78,0.25), 0 0 0 1px rgba(201,162,78,0.15);
}
.brand-mark-sm {
  width: 44px;
  height: 44px;
  margin: 0 12px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}
.nav-inner .brand-mark-sm {
  flex-shrink: 0;
}

/* Hero badge - gold */
.hero-badge {
  background: var(--gold-wash);
  color: var(--gold-dark);
  border: 1px solid rgba(201,162,78,0.35);
}

/* Accent text (em.accent) - gold serif italic */
.accent {
  color: var(--gold);
  font-style: italic;
}

/* Section labels in gold */
.section-label {
  color: var(--gold-dark);
}
.section-label::before {
  background: var(--gold);
}

/* Vertical decorative line in gold */
.v-line {
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Opening banner - gold tint */
.opening-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: #fff;
}

/* Menu preview tags */
.menu-preview-tag {
  background: var(--gold-wash);
  color: var(--gold-dark);
  border: 1px solid rgba(201,162,78,0.3);
}

/* Hero signup button - gold variant */
.hero-signup .btn-blue {
  background: var(--gold);
  color: #fff;
}
.hero-signup .btn-blue:hover {
  background: var(--gold-dark);
}

/* Find us blocks - subtle gold left border */
.find-us-block {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

/* Footer brand accent line */
.footer-brand {
  border-top: 1px solid rgba(201,162,78,0.4);
  padding-top: 24px;
}

/* Blog post hero - gold meta accent */
.blog-post-hero .blog-post-meta {
  color: var(--gold-dark);
}
.blog-post-hero h1 em,
.blog-post-body h2::before {
  color: var(--gold);
}

/* Scroll progress - gold */
.scroll-progress {
  background: var(--gold);
}



/* === Dish photo cards (menu image sections) === */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.dish-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.dish-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -18px rgba(13,71,161,0.28); }
.dish-card-img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; background: var(--gold-wash); }
.dish-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 7px; }
.dish-card-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--text); letter-spacing: -0.01em; line-height: 1.2; }
.dish-card-desc { font-size: 0.86rem; color: var(--text-light); line-height: 1.55; }
.dish-card-tag { align-self: flex-start; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); background: var(--gold-wash); border: 1px solid rgba(201,162,78,0.3); padding: 3px 9px; border-radius: 999px; margin-top: 2px; }
@media (max-width: 600px) { .dish-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .dish-card-body { padding: 13px 13px 16px; } .dish-card-name { font-size: 1.02rem; } .dish-card-desc { font-size: 0.78rem; } }


/* === Home food gallery === */
.home-gallery { padding: 120px 0; background: var(--bg); }
.home-gallery-head { text-align: center; margin-bottom: 52px; }
.home-gallery-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.home-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.home-gallery-item { overflow: hidden; border-radius: 14px; aspect-ratio: 4 / 5; background: var(--gold-wash); }
.home-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.home-gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .home-gallery { padding: 72px 0; } .home-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .home-gallery-head { margin-bottom: 32px; } }

.dish-card-price { font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; color: var(--blue); letter-spacing: 0.01em; }
