/* ==========================================================
   LE PINCHO — CSS PRINCIPAL
   ========================================================== */

:root {
  --navy: #0d2842;
  --navy-deep: #071a2d;
  --navy-soft: #173852;
  --gold: #bc9456;
  --gold-light: #dec18d;
  --ivory: #f7f3ec;
  --cream: #efe7db;
  --white: #fff;
  --ink: #262626;
  --muted: #716e69;
  --line: rgba(13, 40, 66, .14);
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --container: 1240px;
  --section: 124px;
  --shadow: 0 25px 70px rgba(7, 26, 45, .13);
  --ease: .35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

body.age-locked { overflow: hidden; }

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.02;
}

h2 {
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -.035em;
}

p { color: var(--muted); }

.section-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.section-kicker-light { color: var(--gold-light); }

.lead {
  margin-top: 26px;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.35;
}

/* AGE GATE */

.age-gate {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  transition: opacity .45s ease, visibility .45s ease;
}

.age-gate.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.age-gate.is-hidden { display: none; }

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 19, 32, .78), rgba(5, 19, 32, .92)),
    url("../images/hero-port-vin.webp") center/cover no-repeat;
  filter: saturate(.8);
}

.age-gate-card {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: 55px 50px 46px;
  border: 1px solid rgba(222, 193, 141, .38);
  background: rgba(7, 26, 45, .92);
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(12px);
}

.age-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  color: var(--gold-light);
  line-height: 1;
}

.age-logo span {
  font-family: var(--font-title);
  font-size: 2.2rem;
  letter-spacing: .08em;
}

.age-logo small {
  margin-top: 10px;
  font-size: .5rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.age-kicker {
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.age-gate h1 {
  margin: 9px 0 24px;
  font-size: clamp(3rem, 8vw, 5rem);
}

.age-copy {
  max-width: 460px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.age-warning {
  margin-top: 32px;
  color: rgba(255,255,255,.43);
  font-size: .64rem;
  line-height: 1.6;
}

.button-age-secondary {
  border-color: rgba(255,255,255,.34) !important;
  color: var(--white);
}

/* BUTTONS */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.button:hover { transform: translateY(-3px); }

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover { background: var(--gold); }

.button-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.button-gold:hover { background: var(--gold-light); }

.button-outline {
  border-color: rgba(255,255,255,.68);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  color: var(--navy);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--ease);
}
.text-link:hover span { transform: translateX(6px); }

/* HEADER */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 54px;
  color: var(--white);
  transition: min-height var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}

.site-header.is-scrolled {
  min-height: 74px;
  background: rgba(247,243,236,.96);
  color: var(--navy);
  box-shadow: 0 9px 35px rgba(7,26,45,.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.brand-tagline {
  margin-top: 7px;
  font-size: .48rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-button)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width var(--ease);
}

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

.nav-button {
  padding: 10px 17px;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: var(--ease);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,18,31,.55) 0%, rgba(5,18,31,.15) 42%, rgba(5,18,31,.67) 100%),
    linear-gradient(90deg, rgba(5,18,31,.2), transparent 35%, rgba(5,18,31,.2));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding: 130px 24px 100px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--white);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(5.2rem, 13vw, 10rem);
  letter-spacing: -.04em;
}

.hero-subtitle {
  margin-top: -7px;
  color: var(--white);
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.hero-rule {
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px auto;
}

.hero-rule span {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.4);
}

.hero-rule i {
  color: var(--gold-light);
  font-style: normal;
  font-size: .7rem;
}

.hero-quote {
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-style: italic;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 37px;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  font-size: .5rem;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.scroll-indicator i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--white), transparent);
}

/* CONCEPT */

.intro {
  background:
    radial-gradient(circle at top left, rgba(188,148,86,.09), transparent 31%),
    var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 100px;
  align-items: center;
}

.intro-copy > p:not(.section-kicker) { margin-top: 25px; }

.concept-collage {
  position: relative;
  min-height: 700px;
}

.concept-photo {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.concept-photo img {
  height: 100%;
  object-fit: cover;
}

.concept-photo-main {
  width: 77%;
  height: 620px;
  margin-left: auto;
}

.concept-photo-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 330px;
  border: 10px solid var(--ivory);
}

.concept-stamp {
  position: absolute;
  left: 0;
  top: 55px;
  max-width: 210px;
  padding: 27px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.concept-stamp span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: .55rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.concept-stamp strong {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
}

/* SECTIONS */

.menu-section { background: var(--white); }

.section-heading {
  max-width: 820px;
  margin-bottom: 62px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-top: 23px;
}

.section-heading.centered > p:last-child { margin-inline: auto; }

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

.food-card {
  background: var(--ivory);
  transition: transform var(--ease), box-shadow var(--ease);
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.food-card > img {
  height: 430px;
  object-fit: cover;
}

.food-card-content {
  position: relative;
  min-height: 218px;
  padding: 33px;
}

.food-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 2.55rem;
}

.card-number {
  position: absolute;
  top: 29px;
  right: 29px;
  color: rgba(188,148,86,.55);
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.featured-food {
  margin-top: 85px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  background: var(--navy);
}

.featured-food-image img {
  height: 560px;
  object-fit: cover;
}

.featured-food-copy { padding: 55px 65px; }

.featured-food-copy h3 {
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.featured-food-copy p:last-child {
  margin-top: 25px;
  color: rgba(255,255,255,.64);
}

/* WINES */

.wine-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy-deep);
}

.wine-visual img {
  height: 100%;
  object-fit: cover;
}

.wine-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(44px, 7vw, 120px);
}

.wine-content h2 { color: var(--white); }

.wine-content > p {
  max-width: 640px;
  margin-top: 26px;
  color: rgba(255,255,255,.64);
}

.wine-content .wine-lead {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.7rem;
  line-height: 1.35;
}

.wine-list {
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.wine-list > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.wine-list strong {
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 500;
}

.wine-list span {
  color: rgba(255,255,255,.48);
  font-size: .7rem;
  text-align: right;
}

.wine-content .alcohol-note {
  margin-top: 32px;
  color: rgba(255,255,255,.38);
  font-size: .63rem;
}

/* BOTTLES */

.bottles-section { background: var(--ivory); }

.bottles-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 370px 370px;
  gap: 18px;
}

.bottle-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.bottle-card-large { grid-row: span 2; }

.bottle-card:last-child { grid-column: span 2; }

.bottle-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.bottle-card:hover img { transform: scale(1.035); }

.bottle-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(5,19,32,.8));
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.4rem;
}

/* PORT */

.port-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.port-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,20,35,.82), rgba(5,20,35,.07));
}

.port-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.port-content h2 {
  max-width: 800px;
  color: var(--white);
}

.port-content p:not(.section-kicker) {
  max-width: 590px;
  margin: 28px 0 36px;
  color: rgba(255,255,255,.75);
}

/* MOMENTS */

.moments-section { background: var(--ivory); }

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

.moment-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.moment-card > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.moment-card:hover > img { transform: scale(1.04); }

.moment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(5,20,35,.9));
}

.moment-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px;
  color: var(--white);
}

.moment-content span {
  color: var(--gold-light);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.moment-content h3 {
  margin: 10px 0 14px;
  font-size: 2.5rem;
}

.moment-content p { color: rgba(255,255,255,.67); }

/* GALLERY */

.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  background: var(--cream);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease, filter .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: brightness(1.04);
}

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* CONTACT */

.contact-section {
  padding: var(--section) 0;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 26px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-actions { margin-top: 40px; }

.contact-picture {
  height: 650px;
  box-shadow: var(--shadow);
}

.contact-picture img {
  height: 100%;
  object-fit: cover;
}

/* FOOTER */

.site-footer {
  padding: 70px 24px 34px;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.site-footer p { color: rgba(255,255,255,.5); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 27px 0 35px;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.footer-alcohol {
  margin-bottom: 28px;
  font-size: .63rem;
  line-height: 1.6;
}

.copyright { font-size: .58rem; }

/* RESPONSIVE */

@media (max-width: 1100px) {
  :root { --section: 100px; }

  .site-header { padding-inline: 28px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .55rem; }

  .intro-grid,
  .contact-grid { gap: 58px; }

  .featured-food-copy { padding: 45px; }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 23px;
    background: var(--navy-deep);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    font-family: var(--font-title);
    font-size: 2rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-button {
    margin-top: 12px;
    font-family: var(--font-body) !important;
    font-size: .65rem !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
  }

  .intro-grid,
  .wine-section,
  .featured-food,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .concept-collage { min-height: 600px; }
  .concept-photo-main { height: 530px; }

  .cards-grid,
  .moments-grid { grid-template-columns: 1fr; }

  .food-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .food-card > img { height: 100%; min-height: 360px; }

  .featured-food-image img { height: 500px; }

  .wine-visual { height: 550px; }
  .wine-content { padding: 78px 38px; }

  .bottles-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 360px);
  }

  .bottle-card-large { grid-row: span 2; }
  .bottle-card:last-child { grid-column: span 2; }

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

  .contact-details { grid-template-columns: 1fr; }
  .contact-picture { height: 520px; }
}

@media (max-width: 640px) {
  :root { --section: 76px; }

  .container { width: min(calc(100% - 30px), var(--container)); }

  .age-gate-card { padding: 42px 22px 34px; }
  .age-actions { flex-direction: column; }
  .age-actions .button { width: 100%; }

  .site-header {
    min-height: 76px;
    padding-inline: 18px;
  }

  .brand-name { font-size: 1.45rem; }
  .brand-tagline { font-size: .4rem; }

  .hero-image { object-position: center center; }
  .hero-content { padding-inline: 18px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button { width: 100%; }

  h2 { font-size: clamp(2.65rem, 13vw, 4rem); }

  .intro-grid { gap: 46px; }

  .concept-collage { min-height: 475px; }
  .concept-photo-main { width: 90%; height: 425px; }
  .concept-photo-small { width: 54%; height: 225px; border-width: 7px; }
  .concept-stamp { top: 26px; max-width: 175px; padding: 18px; }

  .food-card { display: block; }
  .food-card > img { min-height: 0; height: 350px; }

  .featured-food { margin-top: 60px; }
  .featured-food-image img { height: 420px; }
  .featured-food-copy { padding: 40px 24px; }

  .wine-visual { height: 430px; }
  .wine-content { padding: 65px 23px; }

  .wine-list > div {
    flex-direction: column;
    gap: 2px;
  }

  .wine-list span { text-align: left; }

  .bottles-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .bottle-card,
  .bottle-card-large,
  .bottle-card:last-child {
    grid-column: auto;
    grid-row: auto;
    height: 480px;
  }

  .port-section { min-height: 72vh; }
  .port-content { width: calc(100% - 30px); }

  .moment-card { min-height: 500px; }

  .gallery-grid {
    grid-auto-rows: 210px;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: span 2; }

  .contact-actions .button { width: 100%; }
  .contact-picture { height: 460px; }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}


/* Réservation — aide sous le choix de zone */
.form-hint {
  display: block;
  margin-top: 7px;
  color: var(--muted, #716e69);
  font-size: .68rem;
  line-height: 1.45;
}


/* ==========================================================
   RÉSERVATION — VERSION CHIC
   ========================================================== */

body.modal-open {
  overflow: hidden;
}

.reservation-trigger {
  appearance: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-body);
}

.reservation-modal {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.reservation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reservation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 26, .82);
  backdrop-filter: blur(12px);
}

.reservation-panel {
  position: relative;
  z-index: 2;
  width: min(1120px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: 38% 62%;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .38);
  transform: translateY(18px) scale(.985);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}

.reservation-modal.is-open .reservation-panel {
  transform: translateY(0) scale(1);
}

.reservation-close {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13, 40, 66, .18);
  background: rgba(247, 243, 236, .88);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.reservation-close:hover {
  background: var(--gold);
  transform: rotate(4deg);
}

.reservation-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: var(--navy);
}

.reservation-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.reservation-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reservation-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy-deep);
}

.reservation-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reservation-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 19, 32, .24), rgba(5, 19, 32, .82)),
    linear-gradient(90deg, rgba(5, 19, 32, .28), transparent);
}

.reservation-visual-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 42px;
  left: 34px;
  color: var(--white);
}

.reservation-monogram {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(222, 193, 141, .65);
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: .08em;
}

.reservation-visual-kicker {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.reservation-visual-content h3 {
  max-width: 320px;
  color: var(--white);
  font-size: clamp(2.6rem, 4vw, 4.1rem);
}

.reservation-visual-content > p:not(.reservation-visual-kicker) {
  max-width: 340px;
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
}

.reservation-capacity {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.reservation-capacity span {
  color: rgba(255,255,255,.62);
  font-size: .62rem;
  letter-spacing: .04em;
}

.reservation-capacity strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 500;
}

.reservation-content {
  max-height: 92vh;
  overflow-y: auto;
  padding: 58px 62px 48px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.reservation-heading {
  max-width: 590px;
  margin-bottom: 36px;
  padding-right: 35px;
}

.reservation-eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.reservation-heading h2 {
  font-size: clamp(3.2rem, 5vw, 4.9rem);
}

.reservation-heading > p:last-child {
  max-width: 545px;
  margin-top: 17px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.75;
}

.reservation-step {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
}

.reservation-step-second {
  margin-top: 34px;
}

.reservation-step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(188, 148, 86, .5);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: .84rem;
}

.reservation-step p {
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
}

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

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

.form-field {
  position: relative;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-field label span {
  color: #9c9993;
  font-size: .48rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(13, 40, 66, .22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .82rem;
  transition: border-color .25s ease, background .25s ease;
}

.form-field input,
.form-field select {
  height: 47px;
}

.form-field textarea {
  min-height: 82px;
  padding: 12px 0;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa69f;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field select {
  cursor: pointer;
}

.form-consent {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 27px;
  color: #7d7973;
  cursor: pointer;
  font-size: .63rem;
  line-height: 1.55;
}

.form-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-box {
  position: relative;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border: 1px solid rgba(13,40,66,.32);
  transition: background .2s ease, border-color .2s ease;
}

.form-consent input:checked + .consent-box {
  border-color: var(--gold);
  background: var(--gold);
}

.form-consent input:checked + .consent-box::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border-right: 1.5px solid var(--navy-deep);
  border-bottom: 1.5px solid var(--navy-deep);
  content: "";
  transform: rotate(45deg);
}

.reservation-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 31px;
  padding-top: 28px;
  border-top: 1px solid rgba(13,40,66,.12);
}

.reservation-reassurance {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.reservation-reassurance-icon {
  color: var(--gold);
  font-size: .7rem;
  line-height: 1.6;
}

.reservation-reassurance p {
  max-width: 310px;
  color: #8b877f;
  font-size: .61rem;
  line-height: 1.55;
}

.reservation-submit {
  min-width: 218px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 22px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}

.reservation-submit i {
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-style: normal;
}

.reservation-submit:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.reservation-submit:hover i {
  color: var(--navy-deep);
}

.reservation-submit:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.reservation-contact-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 23px;
  color: #908c85;
  font-size: .6rem;
}

.reservation-contact-line a {
  color: var(--navy);
  font-weight: 600;
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  font-size: .68rem;
  line-height: 1.55;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  border-left: 2px solid var(--gold);
  background: rgba(188,148,86,.09);
  color: var(--navy);
}

.form-status.is-error {
  border-left: 2px solid #9b4d42;
  background: rgba(155,77,66,.08);
  color: #783d35;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 980px) {
  .reservation-panel {
    width: min(760px, 95vw);
    grid-template-columns: 1fr;
  }

  .reservation-visual {
    min-height: 245px;
  }

  .reservation-visual-content {
    right: 30px;
    bottom: 28px;
    left: 30px;
  }

  .reservation-monogram {
    display: none;
  }

  .reservation-visual-content h3 {
    font-size: 2.8rem;
  }

  .reservation-visual-content > p:not(.reservation-visual-kicker),
  .reservation-capacity {
    display: none;
  }

  .reservation-content {
    padding: 42px 42px 38px;
  }

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

@media (max-width: 620px) {
  .reservation-modal {
    align-items: end;
    padding: 0;
  }

  .reservation-panel {
    width: 100%;
    max-height: 94svh;
    border-radius: 0;
  }

  .reservation-visual {
    min-height: 155px;
  }

  .reservation-visual-content {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .reservation-visual-content h3 {
    font-size: 2.1rem;
  }

  .reservation-content {
    padding: 30px 20px 28px;
  }

  .reservation-close {
    top: 14px;
    right: 14px;
    background: rgba(247,243,236,.95);
  }

  .reservation-heading {
    margin-bottom: 28px;
    padding-right: 0;
  }

  .reservation-heading h2 {
    font-size: 3rem;
  }

  .reservation-heading > p:last-child {
    font-size: .7rem;
  }

  .form-grid,
  .form-grid-visit {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .reservation-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reservation-submit {
    width: 100%;
  }

  .reservation-contact-line {
    flex-direction: column;
    gap: 4px;
  }
}
