/* ============================================================
   RIVER BEND KITCHEN — Premium Restaurant Stylesheet
   Gateway Digital Co.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
  --green:        #2D5016;
  --green-mid:    #3a6a1d;
  --green-light:  #4a8025;
  --green-dark:   #1e360e;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D5;
  --cream-darker: #DDD3BF;
  --brown:        #8B6914;
  --brown-light:  #C4961A;
  --rust:         #A0522D;
  --white:        #FFFFFF;
  --charcoal:     #1C1C1C;
  --gray-mid:     #6B6456;
  --gray-light:   #9B9086;
  --shadow-sm:    0 2px 12px rgba(45,80,22,0.08);
  --shadow-md:    0 8px 40px rgba(45,80,22,0.12);
  --shadow-lg:    0 24px 72px rgba(0,0,0,0.18);
  --radius:       4px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sub:     'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

/* ---------- PORTFOLIO BANNER ---------- */
.portfolio-banner {
  background: var(--green-dark);
  color: rgba(245,240,232,0.75);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sub);
}
.portfolio-banner a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- TYPOGRAPHY ---------- */
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; line-height: 1.1; }
h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.3; }
h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }
p  { font-size: 1rem; line-height: 1.8; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.reveal-left  { transform: translateX(-30px); }
.reveal.reveal-right { transform: translateX(30px); }
.reveal.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-cream {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-green {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,80,22,0.3);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--cream);
}
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.6);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  padding: 0.75rem 0;
}
#site-header.solid {
  background: var(--green-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.12em;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--brown-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--cream); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-reserve {
  background: var(--brown) !important;
  color: var(--cream) !important;
  border-radius: var(--radius) !important;
  padding: 0.55rem 1.3rem !important;
  margin-left: 0.5rem;
  border: 1px solid var(--brown) !important;
  transition: background var(--transition) !important;
}
.nav-reserve::after { display: none !important; }
.nav-reserve:hover { background: var(--rust) !important; border-color: var(--rust) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 9px 8px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}
#mobile-nav a:hover { opacity: 1; color: var(--brown-light); }
#mobile-nav .mob-reserve {
  font-family: var(--font-body);
  font-size: 0.85rem !important;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--brown);
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--green-dark);
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(245,240,232,0.015) 60px,
      rgba(245,240,232,0.015) 61px
    );
}
.page-hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
  display: block;
}
.page-hero h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(245,240,232,0.65); font-size: 1.05rem; font-family: var(--font-sub); font-style: italic; font-size: 1.2rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark); }
.section-green { background: var(--green); }
.section-green-dark { background: var(--green-dark); }
.section-white { background: var(--white); }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.85rem;
}
.eyebrow-cream { color: rgba(245,240,232,0.55); }
.eyebrow-gold  { color: var(--brown-light); }

.section-title { color: var(--green-dark); margin-bottom: 0.5rem; }
.section-title-cream { color: var(--cream); }
.section-desc { font-family: var(--font-sub); font-size: 1.15rem; color: var(--gray-mid); margin-bottom: 3rem; font-style: italic; }
.section-desc-cream { color: rgba(245,240,232,0.65); }

.ruled-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.ruled-title::before,
.ruled-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-darker);
}
.ruled-title span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
}
.ornament-diamond {
  width: 7px; height: 7px;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
}
.text-center { text-align: center; }
.text-center .section-desc { max-width: 580px; margin-left: auto; margin-right: auto; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

/* Textured background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(30,54,14,0.55) 0%,
      rgba(30,54,14,0.72) 50%,
      rgba(30,54,14,0.88) 100%
    );
  background-color: var(--green-dark);
  z-index: 1;
}

/* Simulated food photography placeholder */
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(139,105,20,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(74,128,37,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 20%, rgba(160,82,45,0.2) 0%, transparent 45%),
    linear-gradient(160deg, #1a3008 0%, #2d5016 35%, #1e360e 70%, #0f1f07 100%);
}
/* Grain texture overlay */
.hero-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 5rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1.75rem;
  padding: 0.45rem 1.5rem;
  border: 1px solid rgba(196,150,26,0.35);
  border-radius: 30px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--cream);
  display: block;
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-family: var(--font-sub);
  margin-bottom: 0.25rem;
}

.hero-tagline {
  font-family: var(--font-sub);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(245,240,232,0.7);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 2.5rem;
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius);
  background: rgba(245,240,232,0.05);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-hours-item { text-align: center; }
.hero-hours-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 0.25rem;
}
.hero-hours-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
}
.hero-hours-sep {
  width: 1px;
  height: 36px;
  background: rgba(245,240,232,0.15);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,240,232,0.35);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   FEATURE STRIP (home)
   ============================================================ */
.feature-strip {
  background: var(--green);
  padding: 0;
}
.feature-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-item {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.feature-item + .feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(245,240,232,0.15);
}
.feature-item-icon {
  width: 40px; height: 40px;
  margin: 0 auto 1rem;
}
/* SVG icons inline via CSS mask */
.icon-fork-knife {
  background: var(--brown-light);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h0a2 2 0 002-2V2'/%3E%3Cpath d='M7 2v20M21 2v20M11 7V2a5 5 0 015 5v3h-5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h0a2 2 0 002-2V2'/%3E%3Cpath d='M7 2v20M21 2v20M11 7V2a5 5 0 015 5v3h-5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
.feature-item h4 {
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.feature-item p {
  color: rgba(245,240,232,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================================
   HOME — SIGNATURE SECTION
   ============================================================ */
.signature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.signature-img {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(139,105,20,0.35) 0%, transparent 60%),
    linear-gradient(135deg, #2d5016 0%, #1a3008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.signature-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F0E8' fill-opacity='0.03'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.img-label {
  position: relative;
  z-index: 2;
  text-align: center;
}
.img-label-text {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.12em;
  margin-top: 1rem;
}
.img-placeholder-icon {
  width: 64px; height: 64px;
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-icon::after {
  content: '';
  width: 28px; height: 28px;
  background: rgba(245,240,232,0.2);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.signature-body {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.signature-body .eyebrow { margin-bottom: 1rem; }
.signature-body h2 { color: var(--green-dark); margin-bottom: 0.75rem; }
.signature-body p { color: var(--gray-mid); margin-bottom: 1.25rem; font-size: 0.97rem; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-intro {
  background: var(--cream);
  padding: 5rem 0 3rem;
  text-align: center;
}

.menu-body { background: var(--cream); padding: 2rem 0 6rem; }

.menu-section { margin-bottom: 4.5rem; }

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-darker);
}
.menu-section-header h2 {
  font-size: 1.75rem;
  color: var(--green-dark);
  white-space: nowrap;
}
.menu-section-line {
  flex: 1;
  height: 1px;
  background: var(--cream-darker);
}
.menu-section-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--cream-darker);
  border-radius: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--cream-darker);
  transition: background var(--transition);
}
.menu-item:nth-child(odd) { border-right: 1px solid var(--cream-darker); }
.menu-item:hover { background: rgba(245,240,232,0.7); }

.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.menu-item-desc {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.55;
}
.menu-item-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  background: rgba(196,150,26,0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
  display: inline-block;
  margin-top: 0.4rem;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  padding-top: 0.1rem;
}

/* Drinks — 3 column */
.menu-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.menu-grid-3 .menu-item:nth-child(odd) { border-right: none; }
.menu-grid-3 .menu-item { border-right: 1px solid var(--cream-darker); }
.menu-grid-3 .menu-item:nth-child(3n) { border-right: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.about-story-img {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(74,128,37,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(139,105,20,0.2) 0%, transparent 50%),
    linear-gradient(145deg, #1e360e 0%, #2d5016 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-story-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F0E8' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-story-body {
  padding: 5rem 4.5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-story-body h2 { color: var(--green-dark); margin-bottom: 0.75rem; }
.about-story-body p { color: var(--gray-mid); font-size: 0.97rem; margin-bottom: 1.1rem; }

/* Values */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-darker);
}
.value-box {
  background: var(--cream);
  padding: 3rem 2.5rem;
  text-align: center;
}
.value-box-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-dark);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-box h3 { color: var(--green-dark); font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-box p { color: var(--gray-mid); font-size: 0.88rem; line-height: 1.65; }

/* Chef section */
.chef-section {
  background: var(--green-dark);
  padding: 6rem 0;
}
.chef-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}
.chef-portrait {
  width: 340px;
  height: 420px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(196,150,26,0.2) 0%, transparent 55%),
    linear-gradient(160deg, #3a6a1d 0%, #2d5016 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chef-portrait::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(30,54,14,0.8), transparent);
}
.chef-portrait-label {
  position: absolute;
  bottom: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
}

.chef-body .eyebrow { color: var(--brown-light); }
.chef-body h2 { color: var(--cream); margin-bottom: 0.4rem; }
.chef-title {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: 1.75rem;
  display: block;
}
.chef-body p { color: rgba(245,240,232,0.7); font-size: 0.97rem; margin-bottom: 1rem; }
.chef-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brown-light);
  margin-top: 1.5rem;
  opacity: 0.8;
}

/* Atmosphere section */
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.atm-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.atm-img {
  height: 280px;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
.atm-card:hover .atm-img { transform: scale(1.04); }
.atm-label {
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-top: none;
}
.atm-label h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.25rem; }
.atm-label p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.5; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-group { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-group h2 { color: var(--green-dark); }
.contact-info-group > p { color: var(--gray-mid); font-family: var(--font-sub); font-style: italic; font-size: 1.05rem; }

.info-block {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--cream-darker);
}
.info-block:last-of-type { border-bottom: none; }
.info-block h4 { color: var(--brown); margin-bottom: 0.65rem; }
.info-block p { color: var(--gray-mid); font-size: 0.93rem; line-height: 1.7; }
.info-block a { color: var(--green); transition: color var(--transition); }
.info-block a:hover { color: var(--green-light); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--cream-darker); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.5rem 0; font-size: 0.9rem; color: var(--gray-mid); }
.hours-table td:first-child { font-weight: 700; color: var(--green-dark); width: 40%; }
.hours-table td:last-child { text-align: right; }

/* Reservation form */
.res-form-card {
  background: var(--white);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.res-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.res-form-sub {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 0.97rem;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}

/* Floating label fields */
.field {
  position: relative;
  margin-bottom: 1.5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 1.5rem 1rem 0.5rem;
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; padding-top: 1.75rem; }
.field select { cursor: pointer; }
.field label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 400;
  pointer-events: none;
  transition: all var(--transition);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.08);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field.has-val label {
  top: 0.42rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.res-submit {
  width: 100%;
  padding: 1.05rem;
  background: var(--green);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(45,80,22,0.25);
}
.res-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,80,22,0.35);
}
.res-submit.success { background: var(--brown); box-shadow: none; }
.form-legal {
  font-size: 0.75rem;
  color: var(--gray-light);
  text-align: center;
  margin-top: 1rem;
}

/* Map placeholder */
.map-block {
  height: 360px;
  background: linear-gradient(160deg, var(--green-dark) 0%, #1a3008 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}
.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(245,240,232,0.04) 39px, rgba(245,240,232,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(245,240,232,0.04) 39px, rgba(245,240,232,0.04) 40px);
}
.map-label-main {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
}
.map-label-sub {
  position: relative;
  z-index: 2;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
  font-style: italic;
  font-family: var(--font-sub);
}
.map-link {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
  border: 1px solid rgba(196,150,26,0.35);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-top: 0.25rem;
}
.map-link:hover { background: var(--brown-light); color: var(--green-dark); border-color: var(--brown-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--green);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,150,26,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(245,240,232,0.04) 0%, transparent 55%);
}
.cta-banner-inner { position: relative; }
.cta-banner .eyebrow { color: var(--brown-light); }
.cta-banner h2 { color: var(--cream); margin-bottom: 0.75rem; }
.cta-banner p {
  color: rgba(245,240,232,0.65);
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.15rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(245,240,232,0.5);
  padding: 5rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.footer-brand .nav-logo-main { display: block; font-size: 1.5rem; margin-bottom: 0.2rem; }
.footer-brand .nav-logo-sub { display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 1rem; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.45);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-col ul a:hover { color: var(--brown-light); padding-left: 4px; }

.footer-contact-line {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  align-items: flex-start;
}
.footer-contact-line a { color: rgba(245,240,232,0.45); transition: color var(--transition); }
.footer-contact-line a:hover { color: var(--brown-light); }

.social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.45);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--brown-light); color: var(--brown-light); background: rgba(196,150,26,0.1); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-tagline { font-family: var(--font-sub); font-style: italic; color: rgba(245,240,232,0.25); }
.footer-credit a { color: var(--brown-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .chef-inner { grid-template-columns: 1fr; gap: 3rem; }
  .chef-portrait { width: 100%; height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .signature-split, .about-story { grid-template-columns: 1fr; }
  .about-story-img, .signature-img { min-height: 320px; }
  .about-story-body, .signature-body { padding: 3.5rem 2.5rem; }
}

@media (max-width: 780px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .menu-grid, .menu-grid-3 { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: none; }
  .menu-grid-3 .menu-item { border-right: none; }
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-item + .feature-item::before { display: none; }
  .atmosphere-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .hero-hours-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .res-form-card { padding: 2rem 1.5rem; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-hours { flex-direction: column; gap: 1rem; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
