/* ─── Custom Properties ─────────────────────────────────────────────────── */
:root {
  --green:        #0E3B2E;
  --green-dark:   #0a2d23;
  --green-mid:    #1a5240;
  --cream:        #F4EFE6;
  --cream-dark:   #EDE7DA;
  --champagne:    #C9B894;
  --stone:        #A89F8F;
  --charcoal:     #2C2A26;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h:        72px;
  --section-pad:  clamp(80px, 10vw, 140px);
  --container:    1160px;
  --gutter:       clamp(20px, 5vw, 60px);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* ─── Body ───────────────────────────────────────────────────────────────── */
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}
body.lang-cjk {
  font-family: 'Noto Sans HK', 'Noto Sans SC', var(--font-body);
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green);
}
.headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--green);
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
}
.body-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: var(--charcoal);
  font-weight: 300;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--champagne);
  margin: 24px 0;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.section-alt {
  background: var(--green);
  color: var(--cream);
}
.section-alt .headline { color: var(--cream); }
.section-alt .eyebrow  { color: var(--champagne); }
.section-alt .divider  { background: var(--champagne); }
.section-cream {
  background: var(--cream-dark);
}

/* ─── Reveal Animations ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.12s; }
  .reveal-delay-2 { transition-delay: 0.24s; }
  .reveal-delay-3 { transition-delay: 0.36s; }
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(14, 59, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 184, 148, 0.15);
  transition: transform 0.4s var(--ease-out);
}
.nav-hidden {
  transform: translateY(-100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--cream); }
.nav-cta {
  background: var(--champagne);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.nav-cta:hover { opacity: 0.88; }
#lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 230, 0.5);
  padding: 4px 6px;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active {
  color: var(--cream);
  background: rgba(244, 239, 230, 0.12);
}
#nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
}
.burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
#nav-burger[aria-expanded="true"] .burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#nav-burger[aria-expanded="true"] .burger-line:nth-child(2) { opacity: 0; }
#nav-burger[aria-expanded="true"] .burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--green-dark);
  padding: 32px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
  z-index: 999;
}
#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--cream); }
.mobile-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--champagne);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-align: center;
}
#lang-switcher-mobile {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-out);
  z-index: 0;
}
#hero.loaded .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 45, 35, 0.92) 0%,
    rgba(10, 45, 35, 0.5) 50%,
    rgba(10, 45, 35, 0.1) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: clamp(60px, 8vw, 100px);
  max-width: calc(860px + var(--gutter) * 2);
}
.hero-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(244, 239, 230, 0.7);
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.btn-primary {
  display: inline-block;
  background: var(--champagne);
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 45, 35, 0.3);
}
.hero-cta-sub {
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.45);
  letter-spacing: 0.04em;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--champagne));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
}
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(244, 239, 230, 0.4);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.btn-outline-light:hover {
  background: rgba(244, 239, 230, 0.08);
  border-color: var(--cream);
}

/* ─── About ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--champagne);
  z-index: -1;
  pointer-events: none;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.about-text { display: flex; flex-direction: column; gap: 0; }
.about-text .headline { margin-bottom: 28px; }
.about-text .body-text { margin-bottom: 16px; }
.about-meta {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 184, 148, 0.35);
}
.about-meta-item {}
.meta-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}
.meta-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green);
  font-weight: 400;
  line-height: 1.4;
}

/* ─── Menu Section ───────────────────────────────────────────────────────── */
.menu-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.menu-header .headline { color: var(--cream); }
.menu-season-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#menu-season {
  color: var(--champagne);
}
#menu-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}
.menu-section {
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  border-right: 1px solid rgba(244, 239, 230, 0.08);
}
.menu-section:nth-child(even) {
  border-right: none;
}
.menu-section-header {
  margin-bottom: 28px;
}
.menu-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.menu-section-subtitle {
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.4);
  letter-spacing: 0.06em;
  font-style: italic;
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-item {}
.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.menu-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(201, 184, 148, 0.4);
  padding: 2px 7px;
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.5);
  line-height: 1.6;
  font-weight: 300;
}
.menu-footer {
  margin-top: clamp(48px, 6vw, 64px);
  padding-top: 32px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-note p {
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.4);
  letter-spacing: 0.02em;
  line-height: 1.7;
}

/* ─── Private Dining ─────────────────────────────────────────────────────── */
.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.private-image-wrap {
  position: relative;
}
.private-image-wrap::before {
  content: '';
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--green);
  z-index: 0;
  pointer-events: none;
}
.private-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.private-text { display: flex; flex-direction: column; gap: 0; }
.private-text .headline { margin-bottom: 20px; }
.private-text .body-text { margin-bottom: 32px; }
.private-capacity {
  display: inline-flex;
  flex-direction: column;
  background: var(--green);
  padding: 20px 28px;
  margin-bottom: 40px;
  align-self: flex-start;
}
.private-capacity-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.private-capacity-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
}
#private-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.private-feature {}
.private-feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 6px;
}
.private-feature-desc {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── Reservations ───────────────────────────────────────────────────────── */
.reservations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.reservations-info {}
.reservations-info .headline { margin-bottom: 20px; color: var(--cream); }
.reservations-info .body-text {
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 184, 148, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--champagne);
  font-size: 0.9rem;
}
.contact-detail {
  font-size: 0.92rem;
  color: rgba(244, 239, 230, 0.8);
  letter-spacing: 0.02em;
}
.contact-detail a { color: inherit; }
.contact-detail a:hover { color: var(--champagne); }
.reservations-widget-area {
  min-height: 320px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  gap: 16px;
}
.widget-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.2;
  margin-bottom: 8px;
}
.widget-placeholder-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.5);
  margin-bottom: 6px;
}
.widget-sub-text {
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.3);
  line-height: 1.6;
}

/* ─── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info {}
.contact-info .headline { margin-bottom: 36px; }
.contact-groups { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.contact-group {}
.contact-group-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.contact-group-value {
  font-size: 0.96rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-group-value a { color: var(--green); }
.contact-group-value a:hover { color: var(--champagne); }
.contact-map-wrap {
  position: relative;
  height: 100%;
  min-height: 440px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}
.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(201, 184, 148, 0.25);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  text-align: center;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  opacity: 0.85;
}
.footer-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
  margin-bottom: 24px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 32px;
}
.footer-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--cream); }
.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(244, 239, 230, 0.12);
  margin: 0 auto 24px;
}
.footer-rights {
  font-size: 0.7rem;
  color: rgba(244, 239, 230, 0.3);
  margin-bottom: 6px;
}
.footer-managed {
  font-size: 0.65rem;
  color: rgba(244, 239, 230, 0.2);
  letter-spacing: 0.04em;
}

/* ─── Enquiry Modal ──────────────────────────────────────────────────────── */
#enquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 59, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#enquiry-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--cream);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease-out);
}
#enquiry-modal.open .modal-box {
  transform: translateY(0);
}
#modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 1.2rem;
  transition: color 0.2s ease;
}
#modal-close:hover { color: var(--green); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 32px;
}
#enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(168, 159, 143, 0.4);
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--green);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.date-fields { display: flex; gap: 8px; }
.date-part { flex: 1; }

.form-submit {
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  margin-top: 8px;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}
.form-submit:hover { background: var(--green-mid); }
.form-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

/* ─── Staff Link ─────────────────────────────────────────────────────────── */
.staff-link {
  display: block;
  margin-top: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.15);
  transition: color 0.2s;
}
.staff-link:hover { color: rgba(244, 239, 230, 0.4); }

/* ─── Print Header (hidden on screen) ────────────────────────────────────── */
#print-header {
  display: none;
}

/* ─── Print Styles ───────────────────────────────────────────────────────── */
@media print {
  @page {
    size: A4;
    margin: 15mm;
  }

  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  #main-nav,
  #hero,
  #about,
  #private-dining,
  #reservations,
  #contact,
  footer,
  #enquiry-modal,
  .menu-header .eyebrow,
  .menu-note { display: none !important; }

  body {
    background: white;
    color: black;
    font-size: 9pt;
  }

  #print-header {
    display: block !important;
    text-align: center;
    margin-bottom: 20mm;
    padding-bottom: 10mm;
    border-bottom: 1px solid var(--champagne);
  }

  #print-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 8px;
  }

  #print-header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--green);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }

  #print-header .print-address {
    font-size: 0.75rem;
    color: var(--stone);
    letter-spacing: 0.08em;
  }

  #print-header .print-season {
    font-size: 0.7rem;
    color: var(--champagne);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  #menu {
    padding: 0 !important;
  }

  #menu-sections {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    border: none !important;
    background: white !important;
  }

  .menu-section {
    padding: 12mm 8mm !important;
    border: none !important;
    border-bottom: 0.5pt solid #ddd !important;
    break-inside: avoid;
  }

  .menu-section-title {
    font-family: var(--font-display) !important;
    font-size: 1.2rem !important;
    color: var(--green) !important;
    margin-bottom: 8pt !important;
  }

  .menu-section-subtitle {
    font-size: 7pt !important;
    color: var(--stone) !important;
    margin-bottom: 10pt !important;
  }

  .menu-item-name {
    font-size: 9pt !important;
    color: black !important;
  }

  .menu-tag {
    font-size: 6pt !important;
    color: var(--champagne) !important;
    border-color: var(--champagne) !important;
    vertical-align: middle;
  }

  .menu-item-desc {
    font-size: 7.5pt !important;
    color: #555 !important;
  }

  .section-alt {
    background: white !important;
    color: black !important;
  }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta,
  #lang-switcher { display: none !important; }

  #nav-burger { display: flex; }

  .about-grid,
  .private-grid,
  .reservations-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-image-wrap img,
  .private-image-wrap img {
    aspect-ratio: 16/9;
  }

  .about-image-wrap::after,
  .private-image-wrap::before { display: none; }

  #menu-sections { grid-template-columns: 1fr; }

  .menu-section:nth-child(even) { border-right: 1px solid rgba(244, 239, 230, 0.08); }

  .contact-map-wrap { min-height: 300px; }
  .contact-map-wrap iframe { min-height: 300px; }

  #private-features { grid-template-columns: 1fr; }

  .about-meta { flex-direction: column; gap: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .date-fields { gap: 6px; }

  .modal-box { padding: 24px 20px; }
}
