/* =========================================
Design tokens
========================================= */
:root {
  --void: #080808;
  --surface: #111318;
  --petal: #F0EDE8;
  --orchid: #6B2D5E;
  --orchid-light: #9B4D8A;
  --orchid-glow: rgba(107, 45, 94, 0.35);
  --forest: #1E3D2F;
  --forest-light: #2A5A42;
  --overlay-tint: rgba(4, 4, 4, 0.60);
  --panel-bg: rgba(8, 8, 8, 0.92);
  --panel-border: rgba(107, 45, 94, 0.45);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.85);
  --enter-bg-fade-ms: 650ms;
}

/* =========================================
Reset / base
========================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; height: 100%; }

body {
  background: var(--void);
  color: var(--petal);
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
Global scroll rules (authoritative)
========================================= */
html, body {
  height: 100%;
  overflow: hidden; /* never scroll the page */
}

body:not(.site-entered) { overflow: hidden; }
body.site-entered { overflow: hidden; }

body.site-entered.in-menu,
body.site-entered.in-section {
  height: 100vh;
  overflow: hidden;
}

body:not(.site-entered) footer,
body:not(.site-entered) #footer {
  display: none !important;
}

img { max-width: 100%; display: block; }
a { color: var(--orchid); text-decoration: none; }
a:hover, a:focus { color: var(--petal); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--orchid);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

p { margin: 0 0 1rem; font-size: 0.98rem; }

/* Allow scrolling only inside these containers */
.slide-v2-scroll,
.page-content-section .content,
.rendezvous-content,
.etiquette-content,
.galerie-content,
.rsvp-content {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar baseline — desktop overrides in responsive block below */
.slide-v2-scroll,
.page-content-section .content,
.rendezvous-content,
.etiquette-content,
.galerie-content,
.rsvp-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(107,45,94,0.55) transparent;
}

/* =========================================
Preloader
========================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.6s ease;
}
.preloader.is-hidden { opacity: 0; pointer-events: none; }

.preloader-name {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orchid);
}
.preloader-name span {
  background: linear-gradient(
    110deg,
    rgba(107, 45, 94, 0.2) 0%,
    rgba(107, 45, 94, 1) 20%,
    rgba(240, 237, 232, 1) 40%,
    rgba(107, 45, 94, 1) 60%,
    rgba(107, 45, 94, 0.2) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% 100%;
  animation: cm-shimmer 1.8s linear infinite;
}
@keyframes cm-shimmer { to { background-position: -220% 0; } }

/* =========================================
Background slideshow
========================================= */
#page-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}
/* Dark overlay over background only — activates on site entry */
#page-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 1.2s ease;
  pointer-events: none;
}
body.site-entered #page-overlay {
  background: rgba(0, 0, 0, 0.62);
}
.page-background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--enter-bg-fade-ms) ease;
}
.page-background-image.current {
  opacity: 1;
  animation: cm-kenburns 7s ease-in-out infinite alternate;
}
.page-background-image.frozen {
  animation: none !important;
  transform: none !important;
}
@keyframes cm-kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.22) translate3d(-2%, -1%, 0); }
}

/* =========================================
Simple grid helpers
========================================= */
.container-fluid { width: 100%; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; }
.col-xs-8,.col-xs-4,.col-sm-6 { padding: 0 10px; }
.col-xs-8 { flex: 0 0 66.666%; }
.col-xs-4 { flex: 0 0 33.333%; }
.col-sm-6 { flex: 0 0 50%; }
.text-right { text-align: right; }

@media (max-width: 767px) {
  .col-xs-8,.col-xs-4,.col-sm-6 { flex: 0 0 50%; }
}

/* =========================================
Page wrapper
========================================= */
#page {
  min-height: 100vh;
  position: relative;
  color: var(--petal);
  padding-bottom: 90px; /* room for fixed footer */
}

/* =========================================
Header
========================================= */
#main-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 0 18px;
}
#main-logo a { text-decoration: none; }
#main-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orchid);
}
#main-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-section-nav.single-next a { margin-left: auto; }

/* Hamburger (mobile only; JS hides on desktop) */
#main-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(107, 45, 94, 0.7);
  background: rgba(8, 8, 8, 0.9);
  cursor: pointer;
}
.hamburger-box { display: inline-block; width: 18px; height: 14px; position: relative; }
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background-color: var(--orchid);
  content: "";
}
.hamburger-inner { top: 6px; }
.hamburger-inner::before { top: -5px; }
.hamburger-inner::after { top: 5px; }

/* =========================================
Hero section
========================================= */
#main-promo {
  min-height: 100vh;
  display: table;
  width: 100%;
  text-align: center;
}
.display-table { display: table; width: 100%; height: 100vh; }
.display-cell { display: table-cell; vertical-align: middle; padding: 0 20px; }

#main-promo-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--petal);
  margin-bottom: 1rem;
}
#main-promo-description {
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.85);
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--orchid);
  background: var(--orchid);
  color: var(--void);
  padding: 10px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease, border-color 0.2s ease;
}
.button-2x { padding: 12px 36px; }
.button:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--petal);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
}

/* =========================================
Hero verification logos (TER + P411)
========================================= */
#main-promo-timer-container { display: none; }
#main-promo.is-hidden { display: none; }

#hero-verification-logos {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 300;
}
#hero-verification-logos img {
  height: 42px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
#hero-verification-logos img:hover { opacity: 1; }

body.site-entered #hero-verification-logos { display: none; }

/* =========================================
Main menu tiles
========================================= */
#main-menu-section.menu-centered {
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 20px 40px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #main-menu-section.menu-centered {
    min-height: calc(100vh - 80px);
    padding: 96px 16px 24px;
    overflow: hidden;
  }
}

#main-menu-section { padding: 80px 20px 60px; }
#main-menu { max-width: 1280px; width: 100%; margin: 0 auto; }

.main-menu-6 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

/* =========================================
Desktop panoramic menu image
One image spans all 6 tiles seamlessly
========================================= */
@media (min-width: 1024px) {
  .main-menu-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    height: clamp(320px, 55vh, 520px);
  }

  /* Remove individual tile borders/radius so tiles merge into one panel */
  .main-menu-6 .menu-tile {
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(107, 45, 94, 0.25);
    box-shadow: none;
    background: transparent !important;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .main-menu-6 li {
    height: 100%;
    display: flex;
  }
  .main-menu-6 li:last-child .menu-tile {
    border-right: none;
  }

  /* Each tile's background shows a slice of the panoramic */
  .main-menu-6 li:nth-child(1) .background { background-image: url('../images/panoramic.jpg') !important; background-position: 0% center; }
  .main-menu-6 li:nth-child(2) .background { background-image: url('../images/panoramic.jpg') !important; background-position: 20% center; }
  .main-menu-6 li:nth-child(3) .background { background-image: url('../images/panoramic.jpg') !important; background-position: 40% center; }
  .main-menu-6 li:nth-child(4) .background { background-image: url('../images/panoramic.jpg') !important; background-position: 60% center; }
  .main-menu-6 li:nth-child(5) .background { background-image: url('../images/panoramic.jpg') !important; background-position: 80% center; }
  .main-menu-6 li:nth-child(6) .background { background-image: url('../images/panoramic.jpg') !important; background-position: 100% center; }

  /* background-size needs to account for the tile being 1/6th of total width */
  .main-menu-6 .menu-tile .background {
    background-size: 600% 100%;
    background-repeat: no-repeat;
    filter: grayscale(20%);
    transform: none;
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  /* Hover: reveal full color, slight zoom */
  .main-menu-6 .menu-tile:hover .background {
    filter: grayscale(0%);
    transform: scale(1.04);
  }

  /* Hover glow on the tile itself */
  .main-menu-6 .menu-tile:hover,
  .main-menu-6 .menu-tile:focus-visible {
    border-right-color: rgba(107, 45, 94, 0.8);
    box-shadow: inset 0 0 0 2px rgba(107, 45, 94, 0.9), 0 0 28px rgba(107, 45, 94, 0.5);
  }

  /* Text color change on hover */
  .main-menu-6 .menu-tile:hover .menu-title-main,
  .main-menu-6 .menu-tile:focus-visible .menu-title-main {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(107, 45, 94, 0.9), 0 0 20px rgba(107, 45, 94, 0.6);
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  .main-menu-6 .menu-tile:hover .menu-title-sub,
  .main-menu-6 .menu-tile:focus-visible .menu-title-sub {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(107, 45, 94, 0.7);
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  /* Smooth transition on text at rest */
  .main-menu-6 .menu-title-main,
  .main-menu-6 .menu-title-sub {
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  /* Tile text — centered */
  .main-menu-6 .menu-tile .text {
    position: relative;
    padding: 16px 10px;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.35);
  }
  .main-menu-6 .menu-title-main {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  }
  .main-menu-6 .menu-title-sub {
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  }
}

.menu-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(107, 45, 94, 0.45);
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  background: rgba(0,0,0,0.38) !important;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.7);
}
.menu-tile .background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transform: scale(1.02);
  transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.menu-tile .overlay { display: none !important; }
.menu-tile .text { position: relative; padding: 32px 14px 26px; }
.menu-title-main {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: #fff;
}
.menu-title-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: rgba(240, 237, 232, 0.7);
}
.menu-tile:hover .background { filter: grayscale(0%); transform: scale(1.06); }
.menu-tile:hover,
.menu-tile:focus-visible {
  border-color: rgba(107, 45, 94, 0.8);
  box-shadow: 0 0 0 1px rgba(107, 45, 94, 0.45), 0 0 22px rgba(107, 45, 94, 0.25);
}

/* =========================================
Slide-style show/hide (authoritative)
========================================= */
.page-section {
  display: none !important;
  position: relative;
  padding: 80px 18px 60px;
  height: 100vh;
  overflow: hidden;
}
.page-section.active-section { display: block !important; }

.page-section.active-section.page-content-section {
  display: flex !important;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* =========================================
Content sections (slides)
========================================= */
.page-content-section { min-height: 100vh; align-items: stretch; }

.page-section-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.25;
  z-index: -1;
}

.page-section-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background: var(--panel-bg);
  border-radius: 22px;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-soft);
  padding: 34px 26px 26px;
  position: relative;

  /* important layout rules */
  max-height: calc(100vh - 160px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* =========================================
THIS FIXES A PROPOS CLIPPING
page-section-content becomes a flex column and the .content becomes the scroll box
========================================= */
.page-section-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.page-section-content .content {
  flex: 1 1 auto;
  min-height: 0;
}

/* =========================================
Slide v2 layout (media + panel)
========================================= */
.slide-v2-shell {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
  align-items: stretch;
  height: 100%;
  min-height: 0;
}

/* left media */
.slide-v2-media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
}
.slide-v2-media-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(35%);
}

/* right panel */
.slide-v2-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

/* header stays fixed, body scrolls */
.slide-v2-header {
  flex: 0 0 auto;
  margin-bottom: 10px;
}

.slide-v2-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  padding-right: 10px;
  padding-bottom: 70px; /* room for the pinned arrow */
}

.slide-v2-scroll p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Mobile: stack */
@media (max-width: 768px) {
  .slide-v2-shell { grid-template-columns: 1fr; }
  .slide-v2-media { min-height: 240px; }
  .slide-v2-panel { min-height: 0; }
  .slide-v2-scroll { max-height: 52vh; padding-bottom: 80px; }
}

/* =========================================
Section titles
========================================= */
.page-section-title { margin-bottom: 1.5rem; }
.page-section-title .title-main {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.page-section-title .title-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: rgba(240, 237, 232, 0.75);
}

/* =========================================
Section nav arrows (global)
========================================= */
.page-section-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.page-section-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(107, 45, 94, 0.6);
  color: var(--orchid);
  background: rgba(8, 8, 8, 0.9);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.page-section-nav a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--petal);
  transform: translateY(-1px);
}

/* =========================================
Close button inside slides
========================================= */
.section-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(107, 45, 94, 0.6);
  background: rgba(8, 8, 8, 0.95);
  color: var(--petal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 60;
  padding: 0;
}

/* =========================================
Stats
========================================= */
.stats-container { display: flex; gap: 30px; margin-top: 1.2rem; }
.stats-column { flex: 1 1 50%; }
.stats-list { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.stats-list li { margin-bottom: 0.35rem; letter-spacing: 0.03em; }

/* =========================================
Galerie section
========================================= */
.galerie-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.8);
  margin-bottom: 1.5rem;
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.gallery-item {
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #111;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transform: scale(1.03);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.gallery-item:hover { filter: grayscale(0%); transform: scale(1.07); }
.gallery-item:hover::after { opacity: 0.3; }


/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1800;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; margin: 0 20px; }
.lightbox-image {
  width: min(800px, 90vw);
  height: min(85vh, 900px);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}
.lightbox-caption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(240, 237, 232, 0.8);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(8, 8, 8, 0.9);
  color: var(--petal);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close { top: -14px; right: -14px; }
.lightbox-prev { top: 50%; left: -18px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: -18px; transform: translateY(-50%); }

/* =========================================
Rendez-Vous / packages
========================================= */
.rendezvous-intro {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.8);
  margin-bottom: 1.8rem;
}
.package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.package-card {
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.95);
  border: 1px solid rgba(107, 45, 94, 0.4);
  overflow: hidden;
}
.package-summary { list-style: none; cursor: pointer; }
.package-summary::-webkit-details-marker { display: none; }
.package-figure { position: relative; margin: 0; overflow: hidden; height: 200px; }
@media (min-width: 1024px) {
  .package-figure { height: 220px; }
}
.package-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.04);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.package-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--petal);
}
.package-card[open] .package-figure img,
.package-card:hover .package-figure img { filter: grayscale(0%); transform: scale(1.08); }
.package-body { padding: 16px 16px 18px; font-size: 0.9rem; }
.package-body p { margin-bottom: 0.8rem; }
.package-details { list-style: none; padding: 0; margin: 0; font-size: 0.86rem; }
.package-details li { margin-bottom: 0.35rem; }
.etiquette-invite-wrapper { margin-top: 2.2rem; text-align: center; }
.etiquette-invite { font-size: 0.9rem; margin-bottom: 1rem; }
.etiquette-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--orchid);
  padding: 8px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--orchid);
}
.etiquette-button:hover { background: var(--orchid); color: var(--void); }

/* =========================================
Etiquette accordion
========================================= */
.etiquette-intro { font-size: 0.95rem; margin-bottom: 1.5rem; }
.etiquette-accordion {
  border-radius: 14px;
  border: 1px solid rgba(107, 45, 94, 0.25);
  background: rgba(8, 8, 8, 0.8);
  padding: 10px 12px;
  margin-bottom: 1.5rem;
}
.etiquette-block { border-bottom: 1px solid rgba(107, 45, 94, 0.18); }
.etiquette-block:last-of-type { border-bottom: none; }
.etiquette-summary { list-style: none; cursor: pointer; padding: 10px 6px; }
.etiquette-summary::-webkit-details-marker { display: none; }
.etiquette-heading {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orchid);
}
.etiquette-body { padding: 0 6px 10px; font-size: 0.9rem; }
.etiquette-body p { margin-bottom: 0.7rem; }
.etiquette-closing { font-size: 0.9rem; font-style: italic; }

/* =========================================
RSVP form
========================================= */
.rsvp-intro, .rsvp-screening-note { font-size: 0.95rem; margin-bottom: 1rem; }
.rsvp-form { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.form-row { margin-bottom: 0.9rem; }
.form-row label {
display: block;
font-size: 0.8rem;
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 0.25rem;
color: rgba(240, 237, 232, 0.85);
}
.required { color: var(--orchid); margin-left: 3px; }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
width: 100%;
border-radius: 8px;
border: 1px solid rgba(107, 45, 94, 0.4);
background: rgba(6, 6, 6, 0.9);
color: var(--petal);
padding: 8px 10px;
font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
font-size: 0.9rem;
}
input::placeholder, textarea::placeholder { color: rgba(240, 237, 232, 0.6); }
textarea { resize: vertical; }
.rsvp-privacy-note { font-size: 0.8rem; color: rgba(240, 237, 232, 0.7); margin-top: 0.5rem; }
.form-actions { margin-top: 1rem; }
.rsvp-submit {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
border: 1px solid var(--orchid);
background: var(--orchid);
color: var(--void);
padding: 10px 26px;
font-family: "Montserrat", Arial, sans-serif;
font-size: 0.8rem;
letter-spacing: 0.2em;
text-transform: uppercase;
cursor: pointer;
}
.rsvp-submit:hover { background: var(--forest); border-color: var(--forest); color: var(--petal); }
/* Contact list */
.list-contact { list-style: none; padding: 0; margin: 1rem 0 0; }
.list-contact li { display: flex; align-items: center; margin-bottom: 0.4rem; }
.list-contact-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
border-radius: 999px;
border: 1px solid rgba(107, 45, 94, 0.5);
margin-right: 8px;
}
.list-contact-icon svg { width: 18px; height: 18px; }
.list-contact-text { font-size: 0.9rem; }
/* =========================================
Footer (fixed bottom)
========================================= */
#main-footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 1600;
padding: 14px 20px;
background: rgba(8, 8, 8, 0.96);
color: rgba(240, 237, 232, 0.7);
font-size: 0.75rem;
}
@media (max-width: 768px) {
  #main-footer { padding: 7px 14px; }
}
.footer-inner {
max-width: 1100px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-follow {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.55);
  margin-right: 2px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.footer-social-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(107, 45, 94, 0.8));
}
.footer-social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =========================================
Teaser (bottom pill)
========================================= */
.hidden { display: none; }
#teaser-section {
position: fixed;
right: 20px;
bottom: 64px;
z-index: 1700;
display: flex;
align-items: center;
gap: 10px;
background: rgba(8, 8, 8, 0.96);
border-radius: 999px;
border: 1px solid rgba(107, 45, 94, 0.5);
padding: 6px 10px 6px 8px;
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
max-width: 520px;
pointer-events: auto;
}
#teaser-mark { display: none; }
#teaser-text { font-size: 0.75rem; }
.teaser-headline {
display: block;
text-transform: uppercase;
letter-spacing: 0.16em;
font-family: "Montserrat", Arial, sans-serif;
}
.teaser-link { font-size: 0.75rem; }
#teaser-dismiss,
#teaser-close {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border-radius: 999px;
border: 1px solid rgba(107, 45, 94, 0.55);
background: transparent;
color: var(--petal);
cursor: pointer;
line-height: 1;
}
#teaser-close { font-size: 18px; }
#teaser-dismiss:hover,
#teaser-close:hover {
background: rgba(0, 0, 0, 0.30);
border-color: rgba(107, 45, 94, 0.80);
}
#teaser-dismiss:focus,
#teaser-close:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(107, 45, 94, 0.22);
}
#teaser-section[data-collapsed="true"] #teaser-text { display: none; }
#teaser-dismiss .teaser-icon-expand,
#teaser-dismiss .teaser-icon-collapse { display: none; }
#teaser-section[data-collapsed="true"] #teaser-dismiss .teaser-icon-expand { display: inline-flex; }
#teaser-section[data-collapsed="false"] #teaser-dismiss .teaser-icon-collapse { display: inline-flex; }
/* Collapsed: keep pill visible but compact */
#teaser-section[data-collapsed="true"] {
  padding: 6px 8px;
  max-width: 140px;
  gap: 6px;
}
#teaser-section[data-collapsed="true"] .teaser-headline,
#teaser-section[data-collapsed="true"] .teaser-link {
  display: none;
}

/* =========================================
Scrollbars (desktop) - apply to the ACTUAL scroll containers
========================================= */
@media (min-width: 768px) {
.slide-v2-scroll,
.page-content-section .content,
.rendezvous-content,
.etiquette-content,
.galerie-content,
.rsvp-content {
scrollbar-width: thin;
scrollbar-color: var(--orchid) transparent;
}
.slide-v2-scroll::-webkit-scrollbar,
.page-content-section .content::-webkit-scrollbar,
.rendezvous-content::-webkit-scrollbar,
.etiquette-content::-webkit-scrollbar,
.galerie-content::-webkit-scrollbar,
.rsvp-content::-webkit-scrollbar {
width: 10px;
}
.slide-v2-scroll::-webkit-scrollbar-track,
.page-content-section .content::-webkit-scrollbar-track,
.rendezvous-content::-webkit-scrollbar-track,
.etiquette-content::-webkit-scrollbar-track,
.galerie-content::-webkit-scrollbar-track,
.rsvp-content::-webkit-scrollbar-track {
background: transparent;
}
.slide-v2-scroll::-webkit-scrollbar-thumb,
.page-content-section .content::-webkit-scrollbar-thumb,
.rendezvous-content::-webkit-scrollbar-thumb,
.etiquette-content::-webkit-scrollbar-thumb,
.galerie-content::-webkit-scrollbar-thumb,
.rsvp-content::-webkit-scrollbar-thumb {
background: rgba(107,45,94,0.55);
border-radius: 999px;
border: 2px solid transparent;
background-clip: content-box;
}
.slide-v2-scroll::-webkit-scrollbar-thumb:hover,
.page-content-section .content::-webkit-scrollbar-thumb:hover,
.rendezvous-content::-webkit-scrollbar-thumb:hover,
.etiquette-content::-webkit-scrollbar-thumb:hover,
.galerie-content::-webkit-scrollbar-thumb:hover,
.rsvp-content::-webkit-scrollbar-thumb:hover {
background: rgba(107,45,94,0.85);
}
}


/* =========================================
Responsive tweaks
========================================= */
@media (max-width: 1024px) {
.stats-container { flex-direction: column; }
.page-section-wrapper { padding: 26px 18px 22px; }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
#main-header { padding: 0 14px; }
#main-title {
font-size: 0.9rem;
letter-spacing: 0.26em;
white-space: nowrap;
}
#main-promo-title { letter-spacing: 0.2em; }
.page-content-section { min-height: auto; }
.page-section { padding: 70px 14px 50px; }
.page-section-wrapper { border-radius: 18px; }
.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.package-grid { grid-template-columns: minmax(0, 1fr); }
#teaser-section {
right: 12px;
left: 12px;
bottom: 64px;
justify-content: space-between;
}
}
/* Tablet+: 3 cards per row */
@media (min-width: 768px) {
.main-menu-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* Desktop: 6 cards in one row */
@media (min-width: 1200px) {
.main-menu-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
/* Desktop: hide hamburger */
@media (min-width: 1024px) {
#main-hamburger { display: none !important; }
}
/* =========================================================
NAV SYSTEM (authoritative)
Fixes: arrows missing on À Propos + Etiquette
========================================================= */

/* Make wrapper a proper column stack so nav can sit at bottom */
.page-section-wrapper{
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative; /* needed for pinned nav on v2 slides */
}

/* Content area grows, nav stays visible */
.page-section-content{
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* If a section uses .content as a scroll box, keep it flexible */
.page-section-content .content{
  flex: 1 1 auto;
  min-height: 0;
}

/* Default nav behavior (non-v2 slides): always visible, bottom of wrapper */
.page-section-nav{
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 80;
}

/* Ensure the buttons stay clickable above overlays */
.page-section-nav a{
  position: relative;
  z-index: 81;
}

/* =========================
V2 slides (split layout)
========================= */

/* The split grid must be allowed to shrink so nav has room */
.slide-v2-shell{
  flex: 1 1 auto;
  min-height: 0;
}

/* Right panel layout: header + scroll */
.slide-v2 .slide-v2-panel{
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.slide-v2 .slide-v2-scroll{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
/* Enchantée: single NEXT arrow pinned bottom-right */
.slide-v2 .page-section-nav.single-next{
position: absolute;
right: 22px;
bottom: 18px;
margin: 0;
padding: 0;
justify-content: flex-end;
z-index: 90;
}

/* Single BACK arrow pinned bottom-left */
.slide-v2 .page-section-nav.single-prev{
position: absolute;
left: 22px;
bottom: 18px;
margin: 0;
padding: 0;
justify-content: flex-start;
z-index: 90;
}

/* V2 with TWO arrows (only when not single-next AND not single-prev) */
.slide-v2 .page-section-nav:not(.single-next):not(.single-prev){
position: absolute;
left: 22px;
right: 22px;
bottom: 18px;
margin: 0;
padding: 0;
justify-content: space-between;
z-index: 90;
}
.hp-field{
position:absolute !important;
left:-9999px !important;
width:1px !important;
height:1px !important;
overflow:hidden !important;
opacity:0 !important;
pointer-events:none !important;
}
/* Give scroll areas breathing room so text never hides under pinned nav */
.slide-v2 .slide-v2-scroll{
padding-bottom: 76px;
}
/* RSVP Status*/
.rsvp-status{
display:none;
margin: 0 0 14px;
padding: 10px 12px;
border-radius: 12px;
border: 1px solid rgba(107,45,94,0.35);
background: rgba(8,8,8,0.85);
font-size: 0.92rem;
}
.rsvp-status.is-sending{
display:block;
color: rgba(240,237,232,0.75);
}
.rsvp-status.is-success{
display:block;
color: rgba(107,45,94,0.95);
}
.rsvp-status.is-error{
display:block;
color: rgba(255,200,200,0.9);
border-color: rgba(160,60,60,0.45);
}

/* =========================================
RSVP Screening Form
========================================= */
.rsvp-form-section { margin-bottom: 28px; }

.rsvp-section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orchid-light);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--panel-border);
}

.rsvp-field { margin-bottom: 16px; }
.rsvp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.rsvp-field > label,
.rsvp-field > div > label:not(.rsvp-radio-item):not(.rsvp-checkbox-item):not(.rsvp-ack-item) {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orchid-light);
  margin-bottom: 6px;
}

.rsvp-req { color: var(--orchid); margin-left: 3px; }
.rsvp-opt {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(240,237,232,0.45);
  text-transform: none;
  margin-left: 4px;
}

/* Checkboxes */
.rsvp-checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.rsvp-checkbox-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.rsvp-checkbox-item input[type="checkbox"] { display: none; }
.rsvp-check-box {
  flex-shrink: 0;
  width: 17px; height: 17px;
  border: 1px solid var(--orchid);
  border-radius: 2px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  transition: background 0.2s;
}
.rsvp-check-box::after {
  content: '';
  display: block;
  width: 8px; height: 5px;
  border-left: 1.5px solid var(--orchid-light);
  border-bottom: 1.5px solid var(--orchid-light);
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}
.rsvp-checkbox-item input:checked ~ .rsvp-check-box { background: var(--orchid-glow); }
.rsvp-checkbox-item input:checked ~ .rsvp-check-box::after { opacity: 1; }
.rsvp-checkbox-item input:checked ~ .rsvp-check-label { color: var(--petal); }
.rsvp-check-label { font-size: 0.85rem; color: rgba(240,237,232,0.7); line-height: 1.45; user-select: none; }

/* Radio buttons */
.rsvp-radio-group { display: flex; flex-direction: column; gap: 10px; }
.rsvp-radio-item { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-wrap: nowrap; }
.rsvp-radio-item input[type="radio"] { display: none; }
.rsvp-radio-dot {
  flex-shrink: 0;
  width: 17px; height: 17px;
  border: 1px solid var(--orchid);
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.rsvp-radio-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orchid-light);
  opacity: 0;
  transition: opacity 0.15s;
}
.rsvp-radio-item input:checked ~ .rsvp-radio-dot::after { opacity: 1; }
.rsvp-radio-item input:checked ~ .rsvp-radio-label { color: var(--petal); }
.rsvp-radio-label { font-size: 0.85rem; color: rgba(240,237,232,0.7); user-select: none; line-height: 1.45; display: inline; }

/* Sub-fields (conditional) */
.rsvp-sub-field {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
  margin-left: 27px;
}
.rsvp-sub-field.visible { max-height: 120px; margin-top: 8px; margin-bottom: 4px; }

/* Select wrap */
.rsvp-select-wrap { position: relative; }
.rsvp-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--orchid-light);
  pointer-events: none;
  font-size: 0.8rem;
}

/* Acknowledgement item */
.rsvp-ack-item {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  padding: 14px 16px;
  background: rgba(107,45,94,0.08);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
}
.rsvp-ack-item input[type="checkbox"] { display: none; }
.rsvp-ack-item input:checked ~ .rsvp-check-box { background: var(--orchid-glow); }
.rsvp-ack-item input:checked ~ .rsvp-check-box::after { opacity: 1; }
.rsvp-ack-label {
  font-size: 0.82rem; font-style: italic;
  color: rgba(240,237,232,0.7); line-height: 1.65;
}

/* Submit */
.rsvp-submit-wrap { margin-top: 28px; text-align: center; }
.rsvp-submit {
  display: inline-block;
  position: relative; overflow: hidden;
  background: var(--orchid);
  color: var(--petal);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--orchid-light);
  border-radius: 3px;
  padding: 14px 44px;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  outline: none;
}
.rsvp-submit:hover {
  background: var(--orchid-light);
  box-shadow: 0 4px 20px var(--orchid-glow);
  transform: translateY(-1px);
}
.rsvp-submit:active { transform: translateY(0); }
.rsvp-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success state */
.rsvp-success-msg { display: none; text-align: center; padding: 40px 24px; }
.rsvp-success-msg.visible { display: block; }
.rsvp-success-icon { font-size: 2rem; color: var(--orchid-light); margin-bottom: 16px; }
.rsvp-success-msg p { font-size: 0.9rem; color: rgba(240,237,232,0.8); line-height: 1.7; }

/* Validation */
.rsvp-field input.invalid,
.rsvp-field select.invalid,
.rsvp-field textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
.rsvp-error-msg { font-size: 0.72rem; color: #e05c5c; margin-top: 4px; letter-spacing: 0.03em; }
.rsvp-email-link { color: var(--orchid-light); text-decoration: none; }
.rsvp-email-link:hover { text-decoration: underline; }

/* Rendezvous annotation */
.rendezvous-note-ref { font-size: 0.6rem; color: var(--orchid-light); vertical-align: super; margin-left: 1px; }
.rendezvous-annotation {
  font-size: 0.75rem;
  color: rgba(240,237,232,0.55);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 18px;
  padding-top: 4px;
}
.rendezvous-annotation sup { color: var(--orchid-light); margin-right: 3px; }
.rendezvous-rsvp-link { color: var(--orchid-light); text-decoration: none; border-bottom: 1px solid var(--orchid-glow); }
.rendezvous-rsvp-link:hover { color: var(--petal); border-bottom-color: var(--orchid-light); }

/* =========================================
Travel Popup
========================================= */
.travel-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.travel-overlay.is-visible {
  opacity: 1; pointer-events: all;
}
.travel-popup {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--panel-border);
  border-top: 2px solid var(--orchid);
  border-radius: 12px;
  padding: 40px 36px 36px;
  max-width: 480px; width: 90%;
  max-height: 85vh; overflow-y: auto;
  transform: translateY(18px);
  transition: transform 0.35s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--orchid-glow);
}
.travel-overlay.is-visible .travel-popup {
  transform: translateY(0);
}
.travel-popup-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: rgba(240,237,232,0.45); font-size: 1.4rem; line-height: 1;
  transition: color 0.2s;
}
.travel-popup-close:hover { color: var(--petal); }
.travel-popup-eyebrow {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--orchid-light);
  margin-bottom: 10px;
}
.travel-popup-title {
  font-size: 1.4rem; font-weight: 300; letter-spacing: 0.08em;
  color: var(--petal); margin-bottom: 6px;
}
.travel-popup-subtitle {
  font-size: 0.82rem; color: rgba(240,237,232,0.55);
  margin-bottom: 24px; line-height: 1.6;
}
.travel-dates-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.travel-dates-loading {
  font-size: 0.8rem; color: rgba(240,237,232,0.4);
  text-align: center; padding: 12px 0;
}
.travel-date-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: rgba(107,45,94,0.08);
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  gap: 12px;
}
.travel-date-city {
  font-size: 0.85rem; color: var(--petal); font-weight: 400;
}
.travel-date-dates {
  font-size: 0.75rem; color: var(--orchid-light);
  letter-spacing: 0.04em; white-space: nowrap;
}
.travel-notify-btn {
  width: 100%; padding: 13px;
  background: transparent; border: 1px solid var(--orchid);
  color: var(--orchid-light); border-radius: 4px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.travel-notify-btn:hover {
  background: var(--orchid-glow); color: var(--petal);
}

/* Notify popup */
.travel-notify-popup { max-width: 400px; }
.travel-notify-field { margin-bottom: 14px; }
.travel-notify-field input[type="email"] {
  width: 100%; padding: 11px 14px;
  background: var(--void); border: 1px solid var(--panel-border);
  border-radius: 4px; color: var(--petal); font-size: 0.88rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.travel-notify-field input[type="email"]:focus {
  border-color: var(--orchid); box-shadow: 0 0 0 3px var(--orchid-glow);
}
.travel-notify-submit {
  width: 100%; padding: 13px;
  background: var(--orchid); border: 1px solid var(--orchid-light);
  color: var(--petal); border-radius: 4px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  margin-bottom: 12px;
}
.travel-notify-submit:hover {
  background: var(--orchid-light);
  box-shadow: 0 4px 20px var(--orchid-glow);
}
.travel-notify-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.travel-notify-privacy {
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,237,232,0.35); text-align: center;
}
.travel-notify-success { display: none; text-align: center; padding: 20px 0; }
.travel-notify-success.visible { display: block; }
.travel-notify-success p {
  color: var(--orchid-light); font-size: 0.9rem; letter-spacing: 0.06em;
}
