/* ============================================================
   VELLUTO OSTERIA — Main Stylesheet
   Warm Minimalism | Bridge Park, Dublin, Ohio
   ============================================================ */

/* 1. Custom Properties
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Navigation
   6. Heroes
   7. Sections & Components
   8. Home Page
   9. Menu Page
  10. Private Dining Page
  11. About Page
  12. Reservations Page
  13. Contact Page
  14. Footer
  15. Animations
  16. Responsive
   ============================================================ */


/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */

:root {
  /* Colors */
  --cream:         #F9F5EE;
  --cream-alt:     #F2EDE3;
  --cream-dark:    #E8E0D0;
  --white:         #FDFAF5;
  --green:         #1D3120;
  --green-mid:     #2D4A30;
  --green-light:   #3A5E3E;
  --brass:         #B8924A;
  --brass-light:   #CDA96B;
  --brass-muted:   #9A7A3E;
  --charcoal:      #1A1917;
  --text:          #1C1A18;
  --text-mid:      #4A4640;
  --text-light:    #7A7468;
  --border:        #E2DAC8;
  --border-light:  #EDE7D9;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max-w:        1280px;
  --nav-h:        88px;
  --section-py:   120px;
  --section-px:   48px;
  --gutter:       24px;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-mid:    0.32s ease;
  --t-slow:   0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* ── 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-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}


/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 400; }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 500; }
h5 { font-size: 1rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

p {
  line-height: 1.75;
  color: var(--text-mid);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-mid);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow-light {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.divider-line {
  width: 48px;
  height: 1px;
  background-color: var(--brass);
  margin: 20px 0;
}

.divider-line--center {
  margin: 20px auto;
}

.divider-line--light {
  background-color: var(--brass-light);
  opacity: 0.5;
}


/* ── 4. LAYOUT UTILITIES ──────────────────────────────────── */

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

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }

.section {
  padding: var(--section-py) 0;
}

.section--sm {
  padding: 72px 0;
}

.section--lg {
  padding: 160px 0;
}

.bg-cream    { background-color: var(--cream); }
.bg-white    { background-color: var(--white); }
.bg-green    { background-color: var(--green); }
.bg-charcoal { background-color: var(--charcoal); }

.text-green { color: var(--green); }
.text-brass { color: var(--brass); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }
.text-light { color: var(--text-light); }


/* ── 5. NAVIGATION ────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color var(--t-mid), box-shadow var(--t-mid);
}

.nav--transparent {
  background-color: transparent;
}

.nav--solid {
  background-color: rgba(249, 245, 238, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.nav--dark {
  background-color: rgba(29, 49, 32, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: color var(--t-mid);
}

.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
  transition: color var(--t-mid);
}

.nav--solid .nav__logo-name {
  color: var(--green);
}

.nav--solid .nav__logo-sub {
  color: var(--brass);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.85);
  transition: color var(--t-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brass-light);
  transition: width var(--t-mid);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav--solid .nav__link {
  color: var(--text-mid);
}

.nav--solid .nav__link::after {
  background-color: var(--brass);
}

.nav--solid .nav__link:hover,
.nav--solid .nav__link--active {
  color: var(--green);
}

.nav__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(184, 146, 74, 0.4);
  padding: 10px 22px;
  transition: all var(--t-fast);
}

.nav__cta:hover {
  background-color: var(--brass);
  border-color: var(--brass);
  color: var(--white);
}

.nav--solid .nav__cta {
  color: var(--brass);
  border-color: rgba(184, 146, 74, 0.5);
}

.nav--solid .nav__cta:hover {
  background-color: var(--brass);
  color: var(--white);
}

/* Mobile menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--white);
  transition: all var(--t-mid);
}

.nav--solid .nav__toggle span {
  background-color: var(--green);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--green);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}

.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}

.nav__mobile-link:hover {
  color: var(--brass-light);
}

.nav__mobile-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 1.5rem;
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
}

.nav__mobile-cta {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(205, 169, 107, 0.4);
  padding: 14px 36px;
}


/* ── 6. HEROES ────────────────────────────────────────────── */

/* Home Hero */
.hero-home {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--charcoal);
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 12, 8, 0.38) 0%, rgba(8, 12, 8, 0.15) 35%, rgba(8, 12, 8, 0.72) 100%),
    url('../pics/nighttimediningroom.jpg') center/cover no-repeat;
  background-color: #0A0D0A;
}

.hero-home__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--section-px) 96px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-home__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 24px;
}

.hero-home__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 32px;
}

.hero-home__headline em {
  font-style: normal;
  color: var(--brass-light);
}

.hero-home__sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 300;
  color: rgba(253, 250, 245, 0.65);
  letter-spacing: 0.04em;
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-home__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Subpage Hero */
.hero-page {
  position: relative;
  height: 52vh;
  min-height: 380px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--charcoal);
  padding-top: var(--nav-h);
}

.hero-page__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 15, 10, 0.88) 0%, rgba(10, 15, 10, 0.4) 60%, rgba(10, 15, 10, 0.2) 100%),
    radial-gradient(ellipse 70% 60% at 30% 70%, rgba(184, 146, 74, 0.08) 0%, transparent 60%),
    linear-gradient(145deg, #0E1A0F 0%, #121510 40%, #18130E 100%);
}

.hero-page__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px) 64px;
}

.hero-page__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-page__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.015em;
}


/* ── 7. SECTIONS & COMPONENTS ─────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--brass);
  color: var(--white);
  border: 1px solid var(--brass);
}

.btn--primary:hover {
  background-color: var(--brass-muted);
  border-color: var(--brass-muted);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(253, 250, 245, 0.4);
}

.btn--outline:hover {
  border-color: var(--white);
  background-color: rgba(253, 250, 245, 0.08);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--green);
  border: 1px solid rgba(29, 49, 32, 0.4);
}

.btn--outline-dark:hover {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--brass-light);
  border: 1px solid rgba(184, 146, 74, 0.35);
  padding: 14px 32px;
}

.btn--ghost:hover {
  background-color: var(--brass);
  border-color: var(--brass);
  color: var(--white);
}

/* Arrows */
.btn .arrow {
  font-style: normal;
  transition: transform var(--t-fast);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* Section header */
.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .divider-line {
  margin: 20px auto;
}

/* Cards */
.card {
  background-color: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--border-light);
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}

.card:hover {
  border-color: var(--brass-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.card--dark {
  background-color: var(--green-mid);
  border-color: rgba(255,255,255,0.06);
  color: var(--cream);
}

.card--dark p {
  color: rgba(249, 245, 238, 0.75);
}

/* Accent block */
.accent-rule {
  width: 1px;
  height: 64px;
  background-color: var(--brass);
  opacity: 0.4;
}

/* Horizontal divider */
.hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--green);
  padding-left: 36px;
  border-left: 2px solid var(--brass);
  position: relative;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.feature-list__item::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--brass);
  margin-top: 8px;
}

/* Decorative number */
.deco-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--brass);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: -16px;
  right: 0;
  pointer-events: none;
}

/* ── 8. HOME PAGE ──────────────────────────────────────────── */

/* Intro section */
.home-intro {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-intro__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.home-intro__location {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}

.home-intro__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.home-intro__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.home-intro__stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.home-intro__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
}

.home-intro__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Experience pillars */
.home-pillars {
  padding: var(--section-py) 0;
  background-color: var(--white);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.pillar__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--brass);
  font-style: italic;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
}

.pillar__body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 340px;
}

/* Menu preview strip */
.home-menu-preview {
  padding: var(--section-py) 0;
  background-color: var(--green);
}

.home-menu-preview h2 {
  color: var(--cream);
}

.home-menu-preview .eyebrow-light {
  color: var(--brass-light);
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.07);
}

.menu-preview-item {
  padding: 40px 44px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background-color var(--t-mid);
}

.menu-preview-item:hover {
  background-color: rgba(255,255,255,0.03);
}

.menu-preview-item:nth-child(even) {
  border-right: none;
}

.menu-preview-item__cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 12px;
}

.menu-preview-item__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}

.menu-preview-item__desc {
  font-size: 0.85rem;
  color: rgba(249, 245, 238, 0.55);
  line-height: 1.7;
}

.home-menu-preview__cta {
  margin-top: 56px;
  text-align: center;
}

/* Bar section */
.home-bar {
  padding: var(--section-py) 0;
  background:
    linear-gradient(to right, rgba(20, 19, 17, 0.97) 0%, rgba(20, 19, 17, 0.94) 50%, rgba(20, 19, 17, 0.75) 100%),
    url('../pics/tablewithglassesdark.jpg') center/cover no-repeat;
  background-color: var(--charcoal);
}

.home-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-bar__text h2 {
  color: var(--white);
}

.home-bar__text .eyebrow-light {
  color: var(--brass-light);
}

.home-bar__text p {
  color: rgba(249, 245, 238, 0.65);
}

.home-bar__text .divider-line {
  background-color: var(--brass);
}

.home-bar__visual {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: rgba(255,255,255,0.06);
}

.home-bar__cocktail {
  background-color: var(--charcoal);
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background-color var(--t-fast);
}

.home-bar__cocktail:hover {
  background-color: rgba(255,255,255,0.03);
}

.home-bar__cocktail-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}

.home-bar__cocktail-desc {
  font-size: 0.78rem;
  color: rgba(249, 245, 238, 0.4);
  max-width: 200px;
  text-align: right;
}

/* Patio / Atmosphere */
.home-atmosphere {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}

.home-atmosphere__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-atmosphere__visual {
  position: relative;
  height: 520px;
  background:
    linear-gradient(to top, rgba(8, 12, 8, 0.55) 0%, rgba(8, 12, 8, 0.1) 55%),
    url('../pics/nighttimepatio.jpg') center/cover no-repeat;
  background-color: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 48px;
  overflow: hidden;
}

.home-atmosphere__caption {
  position: relative;
  z-index: 1;
}

.home-atmosphere__caption-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 8px;
}

.home-atmosphere__caption-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

/* Reservation CTA Banner */
.home-res-cta {
  padding: 88px 0;
  background:
    linear-gradient(rgba(29, 49, 32, 0.87), rgba(29, 49, 32, 0.87)),
    url('../pics/toastwithwine.jpg') center/cover no-repeat;
  background-color: var(--green);
  text-align: center;
}

.home-res-cta h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.home-res-cta p {
  color: rgba(249, 245, 238, 0.6);
  margin-bottom: 40px;
  font-size: 1rem;
}


/* Home photo strip */
.home-photo-strip {
  height: 440px;
  overflow: hidden;
  display: block;
}

.home-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.8s ease;
}

.home-photo-strip:hover img {
  transform: scale(1.02);
}


/* ── 9. MENU PAGE ──────────────────────────────────────────── */

.menu-nav-tabs {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}

.menu-nav-tabs__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu-nav-tabs__inner::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 20px 28px;
  border-bottom: 2px solid transparent;
  transition: all var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}

.menu-tab:hover,
.menu-tab.is-active {
  color: var(--green);
  border-bottom-color: var(--brass);
}

.menu-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

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

.menu-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.menu-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1;
}

.menu-section__note {
  font-size: 0.8rem;
  color: var(--text-light);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 40px;
}

.menu-item:nth-child(even) {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid var(--border-light);
}

.menu-item:last-child,
.menu-item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.2;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--brass);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

.menu-item__tags {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.menu-item__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-muted);
  border: 1px solid rgba(154, 122, 62, 0.3);
  padding: 3px 8px;
}

/* Wine section image */
.wine-section-img {
  height: 360px;
  overflow: hidden;
  margin-bottom: 64px;
}

.wine-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Wine list */
.wine-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wine-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.wine-item__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 4px;
}

.wine-item__origin {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.wine-item__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--brass);
  text-align: right;
  white-space: nowrap;
}

.wine-item__price span {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-body);
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-note {
  background-color: var(--cream-alt);
  padding: 40px 48px;
  margin-top: 64px;
  border-left: 2px solid var(--brass);
}

.menu-note p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
}


/* ── 10. PRIVATE DINING PAGE ──────────────────────────────── */

.pd-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}

.pd-option {
  background-color: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.pd-option__visual {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.pd-option__visual--counter {
  background:
    linear-gradient(to top, rgba(8, 12, 8, 0.5) 0%, rgba(8, 12, 8, 0.1) 55%),
    url('../pics/pizzapatio.jpg') center/cover no-repeat;
  background-color: var(--charcoal);
}

.pd-option__visual--room {
  background:
    linear-gradient(to top, rgba(8, 12, 8, 0.5) 0%, rgba(8, 12, 8, 0.1) 55%),
    url('../pics/privateroom.jpg') center/cover no-repeat;
  background-color: var(--charcoal);
}

.pd-option__visual-label {
  position: absolute;
  bottom: 28px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
}

.pd-option__body {
  padding: 40px;
}

.pd-option__capacity {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.pd-option__cap-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
}

.pd-option__cap-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.pd-option__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 16px;
}

.pd-option__desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.pd-features {
  margin-top: 80px;
  padding: 72px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pd-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.pd-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-feature__icon {
  width: 40px;
  height: 1px;
  background-color: var(--brass);
  margin-bottom: 8px;
}

.pd-feature__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green);
}

.pd-feature__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Inquiry Form */
.pd-inquiry {
  padding: var(--section-py) 0;
  background-color: var(--green);
}

.pd-inquiry h2 {
  color: var(--cream);
}

.pd-inquiry .eyebrow-light {
  color: var(--brass-light);
}

.pd-inquiry p {
  color: rgba(249, 245, 238, 0.65);
}

.pd-inquiry .divider-line {
  background-color: var(--brass-light);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.5);
}

.form-label--dark {
  color: var(--text-mid);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-size: 0.9rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--t-fast), background-color var(--t-fast);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input--light,
.form-select--light,
.form-textarea--light {
  background-color: var(--white);
  border-color: var(--border);
  color: var(--text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(205, 169, 107, 0.6);
  background-color: rgba(255,255,255,0.09);
}

.form-input--light:focus,
.form-select--light:focus,
.form-textarea--light:focus {
  border-color: var(--brass);
  background-color: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(249, 245, 238, 0.25);
}

.form-input--light::placeholder,
.form-textarea--light::placeholder {
  color: var(--text-light);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(205,169,107,0.6)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}


/* About kitchen image */
.about-kitchen-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 40px;
}

.about-kitchen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}


/* ── 11. ABOUT PAGE ───────────────────────────────────────── */

.about-story {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.about-story__visual {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  height: 600px;
  background:
    linear-gradient(to bottom, rgba(8, 12, 8, 0.22) 0%, rgba(8, 12, 8, 0.08) 40%, rgba(8, 12, 8, 0.48) 100%),
    url('../pics/kneadingdough.jpg') center/cover no-repeat;
  background-color: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 48px;
  overflow: hidden;
}

.about-story__visual-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(249, 245, 238, 0.7);
  line-height: 1.5;
  border-left: 2px solid var(--brass);
  padding-left: 24px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* Values */
.about-values {
  padding: var(--section-py) 0;
  background-color: var(--green);
}

.about-values h2 {
  color: var(--cream);
}

.about-values .eyebrow-light {
  color: var(--brass-light);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255,255,255,0.06);
  margin-top: 64px;
}

.about-value {
  background-color: var(--green);
  padding: 56px 44px;
  transition: background-color var(--t-mid);
}

.about-value:hover {
  background-color: var(--green-mid);
}

.about-value__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--brass);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 24px;
}

.about-value__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.about-value__body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(249, 245, 238, 0.6);
}

/* Team */
.about-team {
  padding: var(--section-py) 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-card__photo {
  height: 320px;
  background-color: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.team-card__photo--1 {
  background:
    linear-gradient(175deg, #2C3E2D 0%, #1A2B1C 60%, #131210 100%);
}
.team-card__photo--2 {
  background:
    linear-gradient(175deg, #1A1810 0%, #2C3E2D 60%, #1A2B1C 100%);
}
.team-card__photo--3 {
  background:
    linear-gradient(175deg, #131210 0%, #1A1810 60%, #2C3E2D 100%);
}

.team-card__photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green);
}

.team-card__role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.team-card__bio {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-light);
}


/* ── 12. RESERVATIONS PAGE ────────────────────────────────── */

.res-page {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}

.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.res-opentable {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.res-opentable__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.res-opentable h3 {
  color: var(--green);
}

.res-opentable p {
  font-size: 0.88rem;
}

.res-opentable .btn--primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px 36px;
}

.res-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.res-hours {}

.res-hours__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 24px;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
}

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

.hours-row__day {
  font-weight: 500;
  color: var(--text);
}

.hours-row__time {
  color: var(--text-light);
}

.hours-row__closed {
  color: var(--text-light);
  font-style: italic;
}

.res-policy {
  background-color: var(--cream-alt);
  padding: 28px 32px;
  border-left: 2px solid var(--brass);
}

.res-policy p {
  font-size: 0.85rem;
  line-height: 1.75;
}


/* ── 13. CONTACT PAGE ─────────────────────────────────────── */

.contact-page {
  padding: var(--section-py) 0;
  background-color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-block {}

.contact-block__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}

.contact-block__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1.6;
}

.contact-block__sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.contact-map {
  height: 280px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(45, 74, 48, 0.15) 0%, transparent 70%),
    linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-alt) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-map__label {
  text-align: center;
}

.contact-map__label p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
}

.contact-map__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  color: var(--brass);
}

.contact-social {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-social__link,
.contact-social__text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all var(--t-fast);
}

.contact-social__link:hover {
  color: var(--green);
  border-bottom-color: var(--brass);
}

.contact-social__note {
  width: 100%;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-heading-kicker {
  margin-bottom: 20px;
}

.contact-heading-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.contact-heading-subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.contact-meta-link {
  display: block;
  font-size: 1rem;
}

.contact-map__address {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--green);
}

.contact-map__action {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid rgba(184,146,74,0.3);
  padding-bottom: 2px;
}

.contact-form-wrap {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 56px 48px;
}

.contact-form-wrap h3 {
  color: var(--green);
  margin-bottom: 8px;
}

.contact-form-wrap .lead {
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.contact-form-wrap .form-label {
  color: var(--text-light);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.contact-form-wrap .form-input,
.contact-form-wrap .form-textarea {
  background-color: var(--cream);
  border-color: var(--border);
  color: var(--text);
}

.contact-form-wrap .form-input:focus,
.contact-form-wrap .form-textarea:focus {
  border-color: var(--brass);
  background-color: var(--white);
}

.contact-form-wrap .form-input::placeholder,
.contact-form-wrap .form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea--tall {
  min-height: 160px;
}

.form-submit-full {
  width: 100%;
  justify-content: center;
  padding: 18px;
}

.form-submit-full.btn--primary {
  background-color: var(--green);
  border-color: var(--green);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

.form-note a {
  color: var(--brass);
}

.form-success {
  display: none;
  background-color: rgba(29, 49, 32, 0.06);
  border: 1px solid rgba(29, 49, 32, 0.15);
  padding: 20px 24px;
  color: var(--green);
  font-size: 0.88rem;
}

.form-success.is-visible {
  display: block;
}


/* ── 14. FOOTER ───────────────────────────────────────────── */

.footer {
  background-color: var(--charcoal);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}

.footer__logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(249, 245, 238, 0.45);
  max-width: 260px;
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(249, 245, 238, 0.55);
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--cream);
}

.footer__contact p {
  font-size: 0.85rem;
  color: rgba(249, 245, 238, 0.55);
  line-height: 1.75;
}

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(249, 245, 238, 0.25);
  letter-spacing: 0.04em;
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal a,
.footer__legal span {
  font-size: 0.75rem;
  color: rgba(249, 245, 238, 0.25);
  transition: color var(--t-fast);
}

.footer__legal a:hover {
  color: rgba(249, 245, 238, 0.55);
}

.footer__hours-note {
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(249,245,238,0.3);
}

.stack-md {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stack-lg {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background-color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.quick-link-card:hover {
  background-color: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.quick-link-card__eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.quick-link-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.quick-link-card__body {
  font-size: 0.82rem;
  color: rgba(249,245,238,0.45);
}

.res-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.res-card {
  margin-top: 24px;
  padding: 32px 36px;
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.res-card__kicker,
.res-eyebrow-sm {
  font-size: 0.62rem;
}

.res-call-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.res-card__body,
.res-muted-copy {
  font-size: 0.82rem;
  color: rgba(249,245,238,0.5);
  line-height: 1.6;
}

.res-panel {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 28px 32px;
}

.res-panel__body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.res-inline-link {
  color: var(--brass);
  border-bottom: 1px solid rgba(184,146,74,0.3);
}

.res-location-copy {
  font-size: 0.88rem;
  color: rgba(249,245,238,0.55);
  line-height: 1.75;
}

.res-location-address,
.res-location-contact,
.res-location-contact a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.6;
}

.res-location-email,
.res-location-email a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(249,245,238,0.6);
  line-height: 1.6;
}

.margin-top-sm {
  margin-top: 4px;
}

.margin-top-md {
  margin-top: 8px;
}

.margin-top-lg {
  margin-top: 12px;
}

.margin-top-xl {
  margin-top: 20px;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-150 {
  transition-delay: 0.15s;
}

.align-center {
  align-items: center;
}

.text-cream-heading {
  color: var(--cream);
}

.bg-white-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 36px 40px;
}

.quote-display {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
}

.flex-wrap-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 15. ANIMATIONS ───────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

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

.fade-in {
  opacity: 0;
  transition: opacity var(--t-slow);
}

.fade-in.is-visible {
  opacity: 1;
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger-children.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger-children.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger-children.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger-children.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger-children.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }
.stagger-children.is-visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.6s; }
.stagger-children.is-visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.7s; }


/* ── 16. RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 1100px) {
  :root {
    --section-px: 32px;
    --section-py: 96px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pd-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-px: 24px;
    --section-py: 72px;
  }

  .grid-2,
  .home-intro__grid,
  .home-bar__inner,
  .home-atmosphere__inner,
  .about-story__grid,
  .res-grid,
  .contact-grid,
  .pd-options {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .grid-3,
  .about-values__grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-values__grid {
    gap: 1px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
  }

  .menu-preview-grid {
    grid-template-columns: 1fr;
  }

  .menu-preview-item:nth-child(even) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .hero-home__headline {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .about-story__visual {
    position: relative;
    top: 0;
    height: 360px;
  }

  .menu-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .menu-section__note {
    text-align: left;
    max-width: 100%;
  }

  .home-intro__stat-num {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --section-px: 20px;
    --section-py: 56px;
    --nav-h: 72px;
  }

  .hero-home {
    min-height: 100svh;
  }

  .hero-home__content {
    padding: 0 var(--section-px) 64px;
  }

  .hero-home__headline {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero-home__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-page {
    height: 44vh;
    min-height: 300px;
  }

  .hero-page__title {
    font-size: 2.2rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  h2 {
    font-size: 1.9rem;
  }

  .menu-nav-tabs__inner {
    gap: 0;
  }

  .menu-tab {
    padding: 16px 18px;
    font-size: 0.65rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pd-features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 36px 24px;
  }

  .res-opentable {
    padding: 40px 28px;
  }

  .menu-item {
    padding-right: 0;
  }
}

/* Print styles */
@media print {
  .nav, .footer { display: none; }
  .hero-page { height: auto; padding: 40px 0; }
  .hero-page__bg { display: none; }
  .hero-page__title { color: var(--green); }
}
