/* ============================================================
   la Gabriella Coffeeshop & Pastries — style.css
   Palette: #1A2E1A deep forest · #F5EDD6 cream · #C4622D terracotta
            #D4A853 gold · #8A7A5A muted
   Fonts:   DM Serif Display (headings) + Nunito (body)
   ============================================================ */

/* ─── 1. Custom Properties ─────────────────────────────────── */
:root {
  --green-deep:      #1A2E1A;
  --green-mid:       #22381E;
  --green-warm:      #2A4226;
  --green-footer:    #101A10;
  --cream:           #F5EDD6;
  --cream-muted:     #C4B48C;
  --terracotta:      #C4622D;
  --terracotta-dark: #A3501F;
  --gold:            #D4A853;
  --gold-dim:        #B8913E;
  --gold-soft:       rgba(212, 168, 83, 0.12);
  --muted:           #8A7A5A;
  --muted-light:     #A3906A;

  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'Nunito', system-ui, sans-serif;

  /* Motion — all curves are spring-like; never linear or ease-in-out */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);

  --max-w: 1200px;
  --nav-h: 70px;
  --section-v: 7rem;
  --radius-card: 22px;
  --radius-sm: 12px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--green-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

ul { list-style: none; }

/* ─── 3. Grain overlay ─────────────────────────────────────── */
/* Fixed to page — never scrolls, never causes GPU repaint */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 600;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── 4. Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: var(--nav-h);
  transition:
    background  0.55s var(--ease-out),
    box-shadow  0.55s var(--ease-out),
    backdrop-filter 0.55s var(--ease-out);
}

.nav.scrolled {
  background: rgba(22, 36, 22, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(245, 237, 214, 0.07),
              0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.65rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease-out);
}

.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Scope base link styles away from the CTA pill */
.nav-links a:not(.nav-cta) {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream-muted);
  letter-spacing: 0.02em;
}

.nav-links a:not(.nav-cta):hover { color: var(--cream); }

.nav-links a.nav-active { color: var(--cream); }

.nav-cta {
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background 0.3s var(--ease-spring),
    transform  0.25s var(--ease-spring),
    box-shadow 0.3s var(--ease-spring);
}

.nav-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 98, 45, 0.4);
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 450;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.38s var(--ease-spring);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.3);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile full-screen menu ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(18, 30, 18, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: calc(var(--nav-h) + 2.5rem) 2.5rem 3rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.38s var(--ease-out);
}

.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--cream);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 237, 214, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity   0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    color     0.25s;
}

.mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.04s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.12s; }
.mobile-menu.open .mobile-link:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.16s; }
.mobile-menu.open .mobile-link:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.20s; }

.mobile-link:hover { color: var(--terracotta); }

/* Two-class selector beats single-class .mobile-link — no !important needed */
.mobile-link.mobile-cta {
  margin-top: 2rem;
  background: var(--terracotta);
  border-radius: 100px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-link.mobile-cta:hover {
  color: var(--cream);
  background: var(--terracotta-dark);
}

/* ─── 5. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Warm radial glow — CSS only, no JS repaint */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 72% 38%, rgba(212, 168, 83, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 25% 75%, rgba(196, 98, 45, 0.09) 0%, transparent 60%);
}

/* Hero-specific grain layer (denser than global) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4.5rem) 2rem 5.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ── Hero content (left) ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.28);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.42rem 1rem 0.42rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: dot-pulse 2.2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--cream-muted);
  line-height: 1.78;
  max-width: 46ch;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  cursor: pointer;
  border: none;
  transition:
    background  0.32s var(--ease-spring),
    transform   0.28s var(--ease-spring),
    box-shadow  0.32s var(--ease-spring),
    border-color 0.32s var(--ease-spring);
}

.btn-filled {
  background: var(--terracotta);
  color: var(--cream);
}

.btn-filled:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 98, 45, 0.38);
}

.btn-filled:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 237, 214, 0.28);
}

.btn-ghost:hover {
  border-color: rgba(245, 237, 214, 0.65);
  background: rgba(245, 237, 214, 0.04);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

/* ── Hero floating cards ── */
.hero-cards {
  position: relative;
  height: 500px;
  /* cards use absolute positioning within this container */
}

/* Double-bezel card architecture */
.hero-card {
  position: absolute;
  width: 255px;
  /* Outer shell */
  background: rgba(245, 237, 214, 0.055);
  border: 1px solid rgba(245, 237, 214, 0.13);
  border-radius: 22px;
  padding: 4px;
  /* CSS standalone translate — separate from transform, so float keyframes don't conflict */
  translate: var(--nudge-x, 0px) var(--nudge-y, 0px);
  transition: translate 0.6s var(--ease-out);
}

.hero-card-inner {
  /* Inner core */
  background: rgba(34, 56, 30, 0.88);
  border-radius: 19px;
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(245, 237, 214, 0.1);
}

.card-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.card-name {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.card-note {
  font-size: 0.8rem;
  color: var(--muted-light);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  color: var(--gold-dim);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

/* Card positions and float animations — opacity handled by fade-in keyframe,
   transform handled by float keyframe. No conflict since they animate different properties. */
.card-1 {
  top: 30px;
  left: 15px;
  animation:
    hero-fadein 0.9s var(--ease-spring) 0.4s both,
    float-a 5.5s ease-in-out 1.3s infinite;
}

.card-2 {
  top: 120px;
  left: 80px;
  animation:
    hero-fadein 0.9s var(--ease-spring) 0.65s both,
    float-b 6s ease-in-out 1.55s infinite;
}

.card-3 {
  top: 230px;
  left: 30px;
  animation:
    hero-fadein 0.9s var(--ease-spring) 0.9s both,
    float-c 5s ease-in-out 1.8s infinite;
}

@keyframes hero-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float-a {
  0%, 100% { transform: rotate(-3deg) translateY(0px); }
  50%       { transform: rotate(-3deg) translateY(-16px); }
}

@keyframes float-b {
  0%, 100% { transform: rotate(2.5deg) translateY(-5px); }
  50%       { transform: rotate(2.5deg) translateY(11px); }
}

@keyframes float-c {
  0%, 100% { transform: rotate(-1.8deg) translateY(-3px); }
  50%       { transform: rotate(-1.8deg) translateY(-19px); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  animation: hero-fadein 1s var(--ease-spring) 1.4s both;
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  transform-origin: top center;
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.35; transform: scaleY(0.6); }
}

/* ─── 6. Shared Section Utilities ──────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.85rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

/* ─── 7. Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity   0.75s var(--ease-spring),
    transform 0.75s var(--ease-spring);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger via data-delay="0|1|2|3|4" */
.reveal[data-delay="0"] { transition-delay: 0ms; }
.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal[data-delay="2"] { transition-delay: 240ms; }
.reveal[data-delay="3"] { transition-delay: 360ms; }
.reveal[data-delay="4"] { transition-delay: 480ms; }

/* ─── 8. Our Story ─────────────────────────────────────────── */
.story {
  padding: var(--section-v) 0;
  background: var(--green-mid);
  position: relative;
  overflow: hidden;
}

/* Story-specific grain (slightly denser) */
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Warm ambient glow behind story */
.story::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -10%;
  width: 60%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(196, 98, 45, 0.06) 0%, transparent 65%);
}

.story-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: start;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 2.25rem;
  letter-spacing: -0.015em;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.story-body p {
  font-size: 1.05rem;
  color: var(--cream-muted);
  line-height: 1.82;
  max-width: 58ch;
}

.story-body em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.08em;
}

.story-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  color: var(--terracotta);
  line-height: 1.15;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(245, 237, 214, 0.1);
}

/* ── Story visual ── */
.story-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  padding-top: 2.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

/* Circular rotating badge */
.story-badge-wrap {
  width: 270px;
  height: 270px;
  position: relative;
}

.story-circle {
  width: 100%;
  height: 100%;
  position: relative;
  background: rgba(212, 168, 83, 0.07);
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-text-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: circle-rotate 28s linear infinite;
}

.circle-text-svg text {
  fill: var(--gold);
  font-size: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
}

@keyframes circle-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.circle-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.12rem;
  pointer-events: none;
}

.circle-la {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.65;
  line-height: 1;
}

.circle-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--cream);
  line-height: 1;
}

.circle-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 0.25rem;
}

/* Story fact cards */
.story-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.story-fact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.4rem;
  background: rgba(245, 237, 214, 0.03);
  border: 1px solid rgba(245, 237, 214, 0.07);
  border-radius: var(--radius-sm);
  transition: background 0.35s var(--ease-out);
}

.story-fact:hover {
  background: rgba(245, 237, 214, 0.055);
}

.fact-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--gold);
  min-width: 56px;
  line-height: 1;
}

.fact-label {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.45;
  font-weight: 500;
}

/* ─── 9. Menu ──────────────────────────────────────────────── */
.menu {
  padding: var(--section-v) 0;
  background: var(--green-deep);
  position: relative;
}

.menu-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-header {
  margin-bottom: 0;
}

/* Asymmetric 2-column grid: coffee large left, others stacked right */
.menu-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.menu-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Menu card — double-bezel: outer shell + inner highlight */
.menu-card {
  background: var(--green-mid);
  border: 1px solid rgba(245, 237, 214, 0.07);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: inset 0 1px 0 rgba(245, 237, 214, 0.05);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.menu-card:hover {
  border-color: rgba(245, 237, 214, 0.13);
  box-shadow: inset 0 1px 0 rgba(245, 237, 214, 0.08), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.menu-card--coffee {
  padding: 2.5rem;
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(245, 237, 214, 0.08);
}

.menu-cat-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.menu-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
}

/* Coffee price list */
.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(245, 237, 214, 0.05);
}

.menu-item:last-child {
  border-bottom: none;
}

.item-name {
  font-size: 0.925rem;
  color: var(--cream-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.item-prices {
  font-size: 0.8rem;
  color: var(--muted-light);
  white-space: nowrap;
  font-weight: 600;
  text-align: right;
}

/* Featured items (house specialties) */
.menu-item--star .item-name {
  color: var(--cream);
  font-weight: 700;
}

.menu-item--star .item-prices {
  color: var(--gold-dim);
}

.menu-item--star .item-name::before {
  content: '★ ';
  font-size: 0.7em;
  color: var(--gold);
  margin-right: 0.15em;
}

.menu-card-body {
  font-size: 0.93rem;
  color: var(--cream-muted);
  line-height: 1.78;
  margin-bottom: 1.5rem;
}

.menu-card-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted-light);
  padding: 0.7rem 1rem;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(212, 168, 83, 0.35);
}

/* ─── 10. Experience ───────────────────────────────────────── */
.experience {
  padding: var(--section-v) 0;
  background: var(--green-warm);
  position: relative;
}

.experience-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* 3 blocks — not equal-width cards. Middle is taller and accented. */
.exp-blocks {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}

.exp-block {
  position: relative;
  padding: 2.5rem 2rem 2.5rem;
  border-radius: var(--radius-card);
  background: rgba(26, 46, 26, 0.65);
  border: 1px solid rgba(245, 237, 214, 0.06);
  transition:
    transform   0.4s var(--ease-spring),
    box-shadow  0.4s var(--ease-spring),
    border-color 0.4s var(--ease-out);
}

.exp-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  border-color: rgba(245, 237, 214, 0.1);
}

.exp-block--mid {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: rgba(196, 98, 45, 0.09);
  border-color: rgba(196, 98, 45, 0.15);
}

.exp-block--mid:hover {
  border-color: rgba(196, 98, 45, 0.28);
}

.exp-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--terracotta);
  opacity: 0.15;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.exp-icon {
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.exp-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}

.exp-desc {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.78;
}

/* ─── 11. Testimonials ─────────────────────────────────────── */
.testimonials {
  padding: var(--section-v) 0;
  background: var(--green-mid);
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Staggered offset layout — NOT 3 equal horizontal cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.testimonial {
  padding: 2.25rem 2.25rem 2rem;
  border-radius: var(--radius-card);
  background: rgba(26, 46, 26, 0.55);
  border: 1px solid rgba(245, 237, 214, 0.07);
  position: relative;
  transition: border-color 0.35s var(--ease-out);
}

.testimonial:hover {
  border-color: rgba(245, 237, 214, 0.13);
}

/* Large decorative opening quote */
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  left: 1.75rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.22;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1.4rem;
  padding-top: 2rem;
}

.testimonial cite {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* Vertical offset to break the grid monotony */
.testimonial:nth-child(2) { margin-top: 2.75rem; }
.testimonial:nth-child(3) { margin-top: 1.25rem; }

/* ─── 12. Visit ────────────────────────────────────────────── */
.visit {
  padding: var(--section-v) 0;
  background: var(--green-deep);
}

.visit-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.visit-details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 3rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--terracotta);
}

.visit-detail strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.2rem;
}

.visit-detail span,
.visit-detail a {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.5;
  transition: color 0.28s var(--ease-out);
}

.visit-detail a:hover { color: var(--terracotta); }

/* Hours */
.visit-hours h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 237, 214, 0.07);
  font-size: 0.9rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  color: var(--cream-muted);
  font-weight: 600;
}

.hours-time {
  color: var(--cream);
  font-weight: 500;
}

.hours-closed .hours-time { color: var(--muted); }

/* Map */
.visit-map {
  position: relative;
}

.map-frame {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(245, 237, 214, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(245, 237, 214, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.28);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(140deg) saturate(60%) brightness(0.85);
  border-radius: 12px;
  display: block;
}

/* ─── 13. Footer ───────────────────────────────────────────── */
.footer {
  background: var(--green-footer);
  border-top: 1px solid rgba(245, 237, 214, 0.07);
  padding: 4.5rem 0 2.5rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 237, 214, 0.07);
}

.footer-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-light);
}

.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-credit {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.5;
}

/* ─── 14. Responsive — Mobile ──────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --section-v: 5rem;
  }

  /* Nav */
  .nav-links { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 3.5rem);
    padding-bottom: 4rem;
    gap: 3.5rem;
  }

  .hero-content { max-width: 100%; }
  .hero-subtext { max-width: 100%; }

  .hero-cards {
    height: 360px;
  }

  .hero-card { width: 230px; }
  .card-1 { top: 10px;  left: 5px; }
  .card-2 { top: 100px; left: 65px; }
  .card-3 { top: 205px; left: 20px; }

  /* Story */
  .story-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-visual {
    position: static;
    padding-top: 0;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Experience */
  .exp-blocks {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .exp-block--mid {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonial:nth-child(2),
  .testimonial:nth-child(3) {
    margin-top: 0;
  }

  /* Visit */
  .visit-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .map-frame { height: 340px; }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  :root {
    --section-v: 4rem;
  }

  .hero-headline    { font-size: 2.4rem; }
  .story-headline   { font-size: 2.2rem; }
  .section-headline { font-size: 1.9rem; }
  .story-motto      { font-size: 1.8rem; }

  /* Hide floating cards — text-only hero at mobile */
  .hero-cards { display: none; }

  /* Single-column hero with no wasted card column */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    gap: 0;
  }

  .menu-inner,
  .story-inner,
  .experience-inner,
  .testimonials-inner,
  .visit-inner,
  .footer-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  /* Full-width buttons — 44px+ touch target via padding */
  .btn {
    width: 100%;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .story-badge-wrap {
    width: 230px;
    height: 230px;
  }

  .map-frame { height: 280px; }

  /* Footer — stack and center everything */
  .footer-top {
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: center;
    align-items: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}

/* ─── 15. Reduced motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  /* Cards: skip float, still fade in (opacity only, no translate) */
  .card-1, .card-2, .card-3 {
    animation: hero-fadein 0.4s ease both;
  }

  .circle-text-svg { animation: none; }
  .badge-dot       { animation: none; }
  .scroll-line     { animation: none; opacity: 0.5; }
  .hero-scroll     { animation: none; opacity: 1; }
}
