/* ============================================================
   ACQUA E FARINA — Modern Bistro Template
   style.css
   ============================================================ */

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

/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --color-bg:          #0E0C0A;
  --color-text:        #F8F3EC;
  --color-accent:      #8B1D1D;
  --color-amber:       #C4956A;
  --color-card-bg:     #2A2520;
  --color-muted:       #6B6258;
  --color-footer-bg:   #070504;
  --color-divider-bg:  #1A1612;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --gradient-food:     linear-gradient(135deg, #3D2B1F, #5C3D2E);
  --gradient-interior: linear-gradient(135deg, #1A2A1A, #2D3D2D);

  --nav-height: 80px;
  --max-width:  1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   Typography Helpers
   ============================================================ */
.heading-serif {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-text);
}

.label-small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-amber);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.btn-primary:hover {
  background-color: #a32222;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid var(--color-text);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.btn-outline-amber {
  display: inline-block;
  background-color: transparent;
  color: var(--color-amber);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid var(--color-amber);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-outline-amber:hover {
  background-color: var(--color-amber);
  color: var(--color-bg);
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
  background-color: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.25em;
  color: var(--color-text);
  white-space: nowrap;
}

.nav-brand-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-amber);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--color-amber);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav open state */
.site-nav.nav-open .nav-links {
  display: flex;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background-color: var(--color-bg);
  padding-top: var(--nav-height);
}

.hero-text {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-label {
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 4rem;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 28px;
}

.hero-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 360px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 60%;
  background: var(--gradient-food);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 12%);
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196, 149, 106, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(139, 29, 29, 0.08) 0%, transparent 50%);
  z-index: 2;
}

/* ============================================================
   Section Shared
   ============================================================ */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   Featured Dishes
   ============================================================ */
.featured-dishes {
  background-color: var(--color-card-bg);
  padding: 100px 0;
}

.featured-dishes .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-dishes-header {
  text-align: center;
  margin-bottom: 64px;
}

.featured-dishes-header .section-label {
  margin-bottom: 16px;
}

.featured-dishes-header h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 3rem;
  color: var(--color-text);
}

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

.dish-card {
  display: flex;
  flex-direction: column;
}

.dish-image {
  background: var(--gradient-food);
  aspect-ratio: 4 / 3;
  border-radius: 0;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.dish-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(14, 12, 10, 0.4) 100%);
}

.dish-info {
  padding: 24px 0 0 0;
}

.dish-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.dish-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.dish-price {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-amber);
}

.featured-link {
  margin-top: 60px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.2s ease;
}

.featured-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-amber);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.featured-link:hover {
  opacity: 0.75;
}

/* ============================================================
   About / Story
   ============================================================ */
.about-section {
  background-color: var(--color-bg);
  padding: 100px 0;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  background: var(--gradient-interior);
  aspect-ratio: 3 / 4;
  border-radius: 0;
  width: 100%;
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 70%, rgba(196, 149, 106, 0.07) 0%, transparent 60%);
}

.about-content .section-label {
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 36px;
  line-height: 1.15;
}

.about-content p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin-bottom: 22px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Private Dining
   ============================================================ */
.private-dining {
  background-color: var(--color-card-bg);
  padding: 100px 0;
  text-align: center;
}

.private-dining .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}

.private-dining .section-label {
  margin-bottom: 20px;
}

.private-dining h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 28px;
  line-height: 1.2;
}

.private-dining p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin-bottom: 22px;
}

.event-types {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.event-type-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  border: 1px solid rgba(196, 149, 106, 0.35);
  padding: 6px 16px;
}

/* ============================================================
   Press / Accolades
   ============================================================ */
.press-strip {
  background-color: var(--color-divider-bg);
  padding: 64px 0;
}

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

.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.press-item:not(:last-child) {
  border-right: 1px solid rgba(248, 243, 236, 0.08);
}

.press-quote {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.45;
}

.press-source {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-amber);
}

/* ============================================================
   Reserve CTA
   ============================================================ */
.reserve-cta {
  background-color: var(--color-accent);
  padding: 100px 0;
  text-align: center;
}

.reserve-cta .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
}

.reserve-cta h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 3.5rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.reserve-cta p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(248, 243, 236, 0.75);
  margin-bottom: 40px;
  max-width: 480px;
}

.reserve-cta .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.reserve-cta .btn-outline {
  border-color: rgba(248, 243, 236, 0.6);
}

.reserve-cta .phone-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(248, 243, 236, 0.6);
  align-self: center;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-footer-bg);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(248, 243, 236, 0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248, 243, 236, 0.06);
}

.footer-brand .footer-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--color-text);
  margin-bottom: 6px;
}

.footer-brand .footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.footer-address {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(248, 243, 236, 0.45);
}

.footer-address a {
  color: rgba(248, 243, 236, 0.45);
  transition: color 0.2s ease;
}

.footer-address a:hover {
  color: var(--color-amber);
}

.footer-col-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(248, 243, 236, 0.45);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--color-amber);
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-hours-item {
  display: flex;
  flex-direction: column;
}

.footer-hours-item .day {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.4);
}

.footer-hours-item .time {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(248, 243, 236, 0.55);
}

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

.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(248, 243, 236, 0.25);
}

/* ============================================================
   Page Header (inner pages)
   ============================================================ */
.page-header {
  background-color: var(--color-bg);
  padding: 140px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(248, 243, 236, 0.06);
}

.page-header .section-label {
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 4rem;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-header p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   Menu Page
   ============================================================ */
.menu-page {
  background-color: var(--color-bg);
  padding: 72px 0 120px;
}

.menu-page .section-inner {
  max-width: 860px;
}

.menu-section {
  margin-bottom: 72px;
}

.menu-section-header {
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(248, 243, 236, 0.12);
}

.menu-section-header h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.menu-section-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--color-amber);
  font-style: italic;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(248, 243, 236, 0.08);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.menu-item-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.menu-item-price {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-amber);
  flex-shrink: 0;
  white-space: nowrap;
}

.wine-section {
  background-color: var(--color-card-bg);
  padding: 48px;
  margin-top: 80px;
  text-align: center;
}

.wine-section h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 16px;
}

.wine-section p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ============================================================
   Reservations Page
   ============================================================ */
.reservations-page {
  background-color: var(--color-bg);
  padding: 80px 0 120px;
}

.reservations-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.reservations-info h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 28px;
  line-height: 1.2;
}

.res-info-block {
  margin-bottom: 36px;
}

.res-info-block h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 12px;
}

.res-info-block p,
.res-info-block ul {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-muted);
}

.res-info-block ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
}

.res-info-block ul li {
  list-style: disc;
  list-style-position: outside;
}

.res-info-block a {
  color: var(--color-amber);
  border-bottom: 1px solid rgba(196, 149, 106, 0.35);
  transition: border-color 0.2s ease;
}

.res-info-block a:hover {
  border-color: var(--color-amber);
}

.res-hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.res-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.res-hours-row .day {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-text);
}

.res-hours-row .time {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Reservation Form */
.reservation-form-wrapper h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 36px;
  line-height: 1.2;
}

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

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

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

.form-group label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--color-card-bg);
  border: 1px solid rgba(248, 243, 236, 0.1);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group select {
  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='%236B6258' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(196, 149, 106, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

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

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4);
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}

.form-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.reservation-success {
  display: none;
  background-color: var(--color-card-bg);
  border: 1px solid rgba(196, 149, 106, 0.25);
  padding: 40px 36px;
  text-align: center;
  margin-top: 8px;
}

.reservation-success.visible {
  display: block;
}

.reservation-success h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 12px;
}

.reservation-success p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.success-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 149, 106, 0.4);
  color: var(--color-amber);
  font-size: 1.1rem;
  line-height: 38px;
  text-align: center;
  margin-bottom: 20px;
}

/* ============================================================
   Responsive — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --nav-height: 72px;
  }

  .nav-inner {
    padding: 0 28px;
  }

  .hero-text {
    padding: 60px 40px 60px 40px;
  }

  .hero-headline {
    font-size: 3.2rem;
  }

  .section-inner {
    padding: 0 28px;
  }

  .about-inner {
    padding: 0 28px;
    gap: 48px;
  }

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

  .reservations-inner {
    padding: 0 28px;
    gap: 48px;
  }

  .dishes-grid {
    gap: 24px;
  }

  .press-strip .section-inner {
    padding: 0 28px;
  }

  .footer-inner {
    padding: 0 28px;
  }
}

/* ============================================================
   Responsive — 640px
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(14, 12, 10, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px 20px 32px;
    gap: 22px;
    border-top: 1px solid rgba(248, 243, 236, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero becomes vertical */
  .hero {
    flex-direction: column;
  }

  .hero-text {
    flex: none;
    width: 100%;
    padding: 56px 20px 48px;
  }

  .hero-headline {
    font-size: 2.6rem;
  }

  .hero-image {
    flex: none;
    width: 100%;
    min-height: 280px;
  }

  .hero-image::before {
    background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 20%);
  }

  /* Sections */
  .section-inner {
    padding: 0 20px;
  }

  .featured-dishes {
    padding: 72px 0;
  }

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

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .about-image {
    aspect-ratio: 4 / 3;
  }

  .private-dining {
    padding: 72px 0;
  }

  .press-strip {
    padding: 56px 0;
  }

  .press-strip .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .press-item {
    padding: 0;
  }

  .press-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(248, 243, 236, 0.08);
    padding-bottom: 40px;
  }

  .reserve-cta {
    padding: 72px 0;
  }

  .reserve-cta h2 {
    font-size: 2.6rem;
  }

  .reserve-cta .section-inner {
    padding: 0 20px;
  }

  /* Footer */
  .footer-inner {
    padding: 0 20px;
  }

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

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

  /* Page header */
  .page-header {
    padding: 120px 20px 60px;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }

  /* Menu */
  .menu-page .section-inner {
    padding: 0 20px;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .wine-section {
    padding: 36px 20px;
  }

  /* Reservations */
  .reservations-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 20px;
  }

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

/* ============================================================
   Utility
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.text-amber {
  color: var(--color-amber);
}

.mt-0 { margin-top: 0; }
