/* ═══════════════════════════════════════════════════════════════
   Fredy Bar — style.css
   Aesthetic: Organic / Warm Italian Neighborhood Bar
   Fonts: Cormorant Garamond (display) + Nunito (body)
   Palette: Espresso · Cream · Caramel · Bark
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --espresso:      #6b4c3b;
  --espresso-dark: #4a3128;
  --espresso-deep: #3a231a;
  --caramel:       #c08960;
  --caramel-light: #d4a574;
  --cream:         #fdf6ee;
  --cream-warm:    #f5e8d4;
  --cream-deep:    #ede0cc;
  --sand:          #d6c0a0;
  --bark:          #7a5c44;
  --leaf:          #7a8c5e;
  --charcoal:      #2b1f17;
  --warm-white:    #fffaf4;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1180px;

  /* Border radius */
  --radius-sm: 0.5rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 4rem;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(107, 76, 59, 0.12);
  --shadow-warm: 0 8px 40px rgba(107, 76, 59, 0.18);
  --shadow-deep: 0 16px 64px rgba(58, 35, 26, 0.22);

  /* Easing */
  --ease-organic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Dark Mode ─────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --cream:         #1e150f;
    --cream-warm:    #2a1c13;
    --cream-deep:    #241710;
    --warm-white:    #2a1e16;
    --sand:          #5a3e2b;
    --charcoal:      #f5ede3;
    --caramel:       #d4a574;
    --caramel-light: #e0b98a;
    --espresso:      #b08060;
    --espresso-dark: #c09070;
    --bark:          #c0a080;
  }
}

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

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

html.menu-open {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--espresso-deep);
}

@media (prefers-color-scheme: dark) {
  h1, h2, h3, h4 { color: var(--caramel-light); }
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--espresso-dark);
  line-height: 1.8;
}

@media (prefers-color-scheme: dark) {
  p { color: #c8b09a; }
}

/* ── Containers ───────────────────────────────────────────────── */
.container {
  width: min(var(--container-max), 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

/* ── Section Labels ───────────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.75rem;
}

/* ── Ornament ─────────────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1.5rem;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  opacity: 0.5;
}

.ornament-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-organic), box-shadow 0.25s var(--ease-smooth), background 0.2s;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-warm);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn:focus-visible {
  outline: 3px solid var(--caramel);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--espresso);
  color: #fdf6ee;
  border-color: var(--espresso);
}

.btn--primary:hover {
  background: var(--espresso-dark);
  border-color: var(--espresso-dark);
  color: #fdf6ee;
}

.btn--outline {
  background: transparent;
  color: var(--espresso-deep);
  border-color: var(--espresso);
}

.btn--outline:hover {
  background: var(--espresso);
  color: #fdf6ee;
}

.btn--light {
  background: rgba(253, 246, 238, 0.15);
  color: #fdf6ee;
  border-color: rgba(253, 246, 238, 0.5);
}

.btn--light:hover {
  background: rgba(253, 246, 238, 0.25);
  color: #fdf6ee;
}

@media (prefers-color-scheme: dark) {
  .btn--outline {
    color: var(--caramel-light);
    border-color: var(--caramel);
  }
  .btn--outline:hover {
    background: var(--espresso);
    color: #fdf6ee;
  }
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 76, 59, 0.1);
  transition: background 0.3s;
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(30, 21, 15, 0.93);
    border-bottom-color: rgba(192, 137, 96, 0.12);
  }
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  font-style: italic;
  color: var(--espresso);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.nav-brand:hover { color: var(--caramel); }

@media (prefers-color-scheme: dark) {
  .nav-brand { color: var(--caramel-light); }
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--espresso-dark);
  padding: 0.45em 1em;
  border-radius: var(--radius-xl);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--espresso);
  color: #fdf6ee;
}

@media (prefers-color-scheme: dark) {
  .nav-links a { color: #c8b09a; }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--espresso);
    color: #fdf6ee;
  }
}

/* ── Hamburger ────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  position: fixed;
  top: 12px;
  right: 1rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--espresso);
  background: var(--cream);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.nav-hamburger:focus-visible {
  outline: 3px solid var(--caramel);
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  .nav-hamburger {
    background: var(--cream-warm);
    border-color: var(--caramel);
  }
}

.nav-hamburger .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--espresso-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
  transform-origin: center;
}

@media (prefers-color-scheme: dark) {
  .nav-hamburger .bar { background: var(--caramel); }
}

.nav-hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Overlay ───────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--espresso-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth);
}

.nav-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.nav-overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  color: #fdf6ee;
  padding: 0.3em 1.2em;
  border-radius: var(--radius-xl);
  transition: color 0.2s, background 0.2s;
  display: block;
  text-align: center;
}

.nav-overlay-links a:hover,
.nav-overlay-links a[aria-current="page"] {
  color: var(--caramel-light);
}

/* Responsive toggle */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-overlay { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(0.85);
  transform: scale(1.04);
  animation: hero-pan 20s ease-in-out infinite alternate;
}

@keyframes hero-pan {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.04) translateX(-2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(58, 35, 26, 0.6) 0%,
      rgba(107, 76, 59, 0.15) 50%,
      rgba(20, 12, 6, 0.72) 100%);
}

/* Organic curve at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 110px;
  background: var(--cream);
  clip-path: ellipse(58% 100% at 50% 100%);
  z-index: 3;
}

@media (prefers-color-scheme: dark) {
  .hero::after { background: var(--cream); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  animation: hero-fade-up 1s var(--ease-smooth) 0.1s both;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  font-style: italic;
  color: #fdf6ee;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-title span {
  display: block;
  font-style: normal;
  color: var(--caramel-light);
  font-size: 0.48em;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(253, 246, 238, 0.85);
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

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

/* ══════════════════════════════════════════════════════════════
   INTRO STRIP  (background hardcoded — NOT a CSS variable)
   ══════════════════════════════════════════════════════════════ */

.intro-strip {
  background: #111111;
  padding-block: 1.4rem;
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel-light);
  white-space: nowrap;
}

.intro-strip-item .icon {
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SPLIT (index + about page)
   ══════════════════════════════════════════════════════════════ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.about-split__image {
  position: relative;
  overflow: hidden;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.about-split__image:hover img {
  transform: scale(1.04);
}

/* Organic wave between image and content */
.about-split__image::after {
  content: '';
  position: absolute;
  top: 0;
  right: -44px;
  bottom: 0;
  width: 88px;
  background: var(--cream);
  clip-path: polygon(44px 0, 100% 0, 100% 100%, 44px 100%, 0 50%);
  z-index: 2;
}

@media (prefers-color-scheme: dark) {
  .about-split__image::after { background: var(--cream); }
}

.about-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  background: var(--cream);
}

@media (prefers-color-scheme: dark) {
  .about-split__content { background: var(--cream); }
}

.about-split__content h2 {
  margin-bottom: 1.25rem;
}

.about-split__content p + p {
  margin-top: 1rem;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.85rem 1.5rem;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
}

.rating-pill .stars {
  color: var(--caramel);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.rating-pill .score {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--espresso-deep);
  line-height: 1;
}

.rating-pill .count {
  font-size: 0.82rem;
  color: var(--bark);
  font-weight: 600;
}

@media (prefers-color-scheme: dark) {
  .rating-pill {
    background: var(--cream-warm);
    border-color: rgba(192, 137, 96, 0.18);
  }
  .rating-pill .score { color: var(--caramel-light); }
  .rating-pill .count { color: var(--caramel); }
}

@media (max-width: 767px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split__image {
    height: 300px;
  }
  .about-split__image::after {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   PHOTO MOSAIC
   ══════════════════════════════════════════════════════════════ */

.photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 0.5rem;
}

.mosaic-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth), filter 0.4s;
}

.mosaic-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.1);
}

.mosaic-item--tall {
  grid-row: span 2;
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-md) var(--radius-lg);
}

@media (max-width: 900px) {
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .mosaic-item--tall {
    grid-row: span 1;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 540px) {
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
  }
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════════ */

.reviews-section {
  background: var(--espresso-deep);
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
}

/* Organic wave top */
.reviews-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--cream);
  clip-path: ellipse(58% 100% at 50% 0%);
  z-index: 1;
}

/* Organic wave bottom */
.reviews-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--cream-warm);
  clip-path: ellipse(58% 100% at 50% 100%);
  z-index: 1;
}

@media (prefers-color-scheme: dark) {
  .reviews-section::before { background: var(--cream); }
  .reviews-section::after  { background: var(--cream-warm); }
}

.reviews-section .container { position: relative; z-index: 2; }

.reviews-section .label  { color: var(--caramel-light); }
.reviews-section h2 { color: #fdf6ee; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: background 0.3s, transform 0.3s var(--ease-organic);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.1em;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--caramel);
  opacity: 0.3;
  pointer-events: none;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--caramel-light);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.review-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: rgba(253, 246, 238, 0.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel);
}

/* ══════════════════════════════════════════════════════════════
   HOURS TABLE
   ══════════════════════════════════════════════════════════════ */

.hours-section {
  background: var(--cream-warm);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

@media (prefers-color-scheme: dark) {
  .hours-section { background: var(--cream-warm); }
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--sand);
}

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

.hours-table th,
.hours-table td {
  padding: 0.8rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  text-align: left;
}

.hours-table th {
  font-weight: 700;
  color: var(--espresso-dark);
  width: 50%;
}

.hours-table td {
  color: var(--bark);
  font-weight: 500;
}

.closed-row th,
.closed-row td {
  opacity: 0.5;
  font-style: italic;
}

@media (prefers-color-scheme: dark) {
  .hours-table th  { color: var(--caramel-light); }
  .hours-table td  { color: var(--caramel); }
  .hours-table tr  { border-color: rgba(192, 137, 96, 0.15); }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-detail .icon {
  font-size: 1.25rem;
  margin-top: 0.1em;
  flex-shrink: 0;
}

.contact-detail a,
.contact-detail span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--espresso-dark);
  font-weight: 500;
  line-height: 1.55;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--caramel);
}

@media (prefers-color-scheme: dark) {
  .contact-detail a,
  .contact-detail span { color: #c8b09a; }
}

@media (max-width: 767px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   DRINKS PAGE
   ══════════════════════════════════════════════════════════════ */

.drinks-hero-img {
  width: 100%;
  height: clamp(260px, 40vw, 500px);
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: block;
}

.drinks-category {
  margin-bottom: 3.5rem;
}

.drinks-category:last-child {
  margin-bottom: 0;
}

.drinks-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sand);
}

@media (prefers-color-scheme: dark) {
  .drinks-category-header { border-color: rgba(192, 137, 96, 0.2); }
}

.drinks-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 600;
  font-style: italic;
  color: var(--espresso-deep);
  line-height: 1.1;
}

.cat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.drinks-category-subtitle {
  font-size: 0.85rem;
  color: var(--bark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

@media (prefers-color-scheme: dark) {
  .drinks-category-title { color: var(--caramel-light); }
  .drinks-category-subtitle { color: var(--caramel); }
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.drink-card {
  background: var(--cream-warm);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  transition: transform 0.3s var(--ease-organic), box-shadow 0.3s;
}

.drink-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.drink-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso-dark);
  margin-bottom: 0.35rem;
}

.drink-desc {
  font-size: 0.86rem;
  color: var(--bark);
  line-height: 1.6;
  font-style: italic;
}

@media (prefers-color-scheme: dark) {
  .drink-card { background: var(--cream-warm); border-color: rgba(192, 137, 96, 0.14); }
  .drink-name { color: var(--caramel-light); }
  .drink-desc { color: var(--caramel); }
}

.food-note {
  background: var(--cream-deep);
  border-left: 3px solid var(--caramel);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--espresso-dark);
  margin-top: 2rem;
}

@media (prefers-color-scheme: dark) {
  .food-note { background: var(--cream-deep); color: #c8b09a; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (about, drinks, contact)
   ══════════════════════════════════════════════════════════════ */

.page-hero {
  padding-top: calc(68px + 3.5rem);
  padding-bottom: 3.5rem;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--cream);
  clip-path: ellipse(62% 100% at 50% 100%);
}

@media (prefers-color-scheme: dark) {
  .page-hero { background: var(--cream-warm); }
  .page-hero::after { background: var(--cream); }
}

.page-hero h1 {
  font-style: italic;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 600px;
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--cream-warm);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.3s var(--ease-organic), box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.value-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--espresso-deep);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--bark);
}

@media (prefers-color-scheme: dark) {
  .value-card { background: var(--cream-warm); border-color: rgba(192, 137, 96, 0.14); }
  .value-card h3 { color: var(--caramel-light); }
  .value-card p  { color: var(--caramel); }
}

/* Full-width image strip */
.full-image {
  height: clamp(260px, 40vw, 520px);
  overflow: hidden;
  position: relative;
}

.full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.9s var(--ease-smooth);
}

.full-image:hover img {
  transform: scale(1.03);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */

.map-container {
  height: clamp(280px, 45vw, 500px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--sand);
  box-shadow: var(--shadow-warm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (prefers-color-scheme: dark) {
  .map-container { border-color: rgba(192, 137, 96, 0.2); }
}

.contact-card {
  background: var(--cream-warm);
  border: 1px solid var(--sand);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
}

@media (prefers-color-scheme: dark) {
  .contact-card { background: var(--cream-warm); border-color: rgba(192, 137, 96, 0.14); }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 767px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--espresso-deep);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  font-style: italic;
  color: #fdf6ee;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.55);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.68);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--caramel-light); }

.footer-info {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.68);
  line-height: 1.9;
}

.footer-info a {
  color: rgba(253, 246, 238, 0.68);
  transition: color 0.2s;
}

.footer-info a:hover { color: var(--caramel-light); }

.footer-bottom {
  max-width: var(--container-max);
  margin: 2rem auto 0;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.76rem;
  color: rgba(253, 246, 238, 0.38);
  text-align: center;
}

.footer-bottom a {
  color: rgba(253, 246, 238, 0.5);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--caramel); }

@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-inner > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner > :first-child {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }

/* Scroll-triggered fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════════ */

@media print {
  .site-header,
  .nav-hamburger,
  .nav-overlay {
    display: none !important;
  }
  body { background: white; color: black; }
}
