/* ======================
   COLOR PALETTES
   To switch palettes, change the data-palette attribute on <html> in index.html
   (and any other pages) to one of: forest | teal | rose | floral | floral1 | floral_final | slate
   ====================== */

/* --- forest (default: deep green + gold) --- */
:root,
[data-palette="forest"] {
  --color-primary: #286346;           /* forest green */
  --color-primary-light: #4d9e6e;     /* sage green */
  --color-primary-dark: #1a4a30;      /* very dark forest green */
  --color-accent: #264653;            /* deep navy blue */
  --color-accent-light: #3a6b7e;      /* slate blue */
  --color-warm: #e9c46a;              /* golden yellow */
  --color-warm-dark: #d4a03c;         /* darker mustard gold */
  --color-bg: #fafaf7;                /* warm off-white cream */
  --color-bg-alt: #f0efeb;            /* warm light beige */
  --color-text: #2c2c2c;              /* near-black charcoal */
  --color-text-light: #5a5a5a;        /* medium gray */
  --color-white: #ffffff;             /* white */
}

/* --- teal (ocean + amber) --- */
[data-palette="teal"] {
  --color-primary: #2a9d8f;           /* ocean teal */
  --color-primary-light: #52c4b8;     /* bright aqua teal */
  --color-primary-dark: #1f7a6e;      /* deep teal blue-green */
  --color-accent: #264653;            /* deep navy blue */
  --color-accent-light: #3a6b7e;      /* slate blue */
  --color-warm: #e9c46a;              /* golden yellow */
  --color-warm-dark: #d4a03c;         /* darker mustard gold */
  --color-bg: #f5fafa;                /* cool off-white blue-tinted */
  --color-bg-alt: #e8f4f3;            /* very light cool cyan */
  --color-text: #2c2c2c;              /* near-black charcoal */
  --color-text-light: #5a5a5a;        /* medium gray */
  --color-white: #ffffff;             /* white */
}

/* --- rose (dusty rose + sage) --- */
[data-palette="rose"] {
  --color-primary: #b5677a;           /* dusty mauve rose */
  --color-primary-light: #d4909f;     /* lighter dusty rose */
  --color-primary-dark: #8f4a5a;      /* deep burgundy rose */
  --color-accent: #4a7c59;            /* sage green */
  --color-accent-light: #6a9e76;      /* lighter sage green */
  --color-warm: #f2c4a0;              /* warm peach tan */
  --color-warm-dark: #e0a070;         /* deeper warm tan */
  --color-bg: #fdf8f5;                /* warm off-white peachy */
  --color-bg-alt: #f5ebe5;            /* light warm beige */
  --color-text: #2c2420;              /* very dark brown */
  --color-text-light: #6b5550;        /* warm taupe gray */
  --color-white: #ffffff;             /* white */
}

/* --- floral (plum + mauve + butter, from bouquet) --- */
[data-palette="floral"] {
  --color-primary: #783A61;           /* deep plum purple */
  --color-primary-light: #9D5E82;     /* mauve purple */
  --color-primary-dark: #56244A;      /* very dark plum */
  --color-accent: #6B4A74;            /* purple mauve */
  --color-accent-light: #B99EB9;      /* light lavender mauve */
  --color-warm: #E8CB78;              /* warm buttery yellow */
  --color-warm-dark: #CCA84A;         /* deeper golden butter */
  --color-bg: #FAF9F8;                /* warm off-white ivory */
  --color-bg-alt: #F3EEF3;            /* light cool lavender tint */
  --color-text: #2c2020;              /* very dark brown-black */
  --color-text-light: #6b5560;        /* warm mauve gray */
  --color-white: #ffffff;             /* white */
}

/* --- floral1 (dark purple + amethyst + thistle + olive + cal poly green, from swatch) --- */
[data-palette="floral1"] {
  --color-primary: #9B71B2;            /* amethyst */
  --color-primary-light: #E3D0EA;      /* thistle */
  --color-primary-dark: #3A1C36;       /* dark purple */
  --color-accent: #374126;             /* cal poly green */
  --color-accent-light: #6C6D11;       /* olive */
  --color-warm: #ffffff;               /* missing from swatch: defaulted to white */
  --color-warm-dark: #ffffff;          /* missing from swatch: defaulted to white */
  --color-bg: #ffffff;                 /* missing from swatch: defaulted to white */
  --color-bg-alt: #ffffff;             /* missing from swatch: defaulted to white */
  --color-text: #ffffff;               /* missing from swatch: defaulted to white */
  --color-text-light: #ffffff;         /* missing from swatch: defaulted to white */
  --color-white: #ffffff;              /* white */
}

/* --- floral_final (thistle + dark purple + cal poly green, refined from floral1) --- */
[data-palette="floral_final"] {
  --color-primary: #9B71B2;            /* amethyst — kept for the 0.4-opacity Our Story column names */
  --color-primary-light: #FCFAFC;      /* thistle */
  /* --color-primary-dark: #3A1C36;       /* dark purple */
  --color-primary-dark: #56244A;      /* very dark plum */
  --color-accent: #835E81;             /* dark purple — drives headings + footer background */
  --color-accent-light: #6C6D11;       /* olive */
  --color-warm: #374126;               /* cal poly green — replaces the gold/warm role */
  --color-warm-dark: #374126;          /* cal poly green — replaces the gold/warm role */
  --color-bg: #FCFAFC;                 /* thistle */
  --color-bg-alt: color-mix(in srgb, #E3D0EA 85%, #3A1C36 15%);  /* deeper thistle for section contrast */
  --color-text: #3A1C36;               /* dark purple */
  --color-text-light: #3A1C36;         /* dark purple */
  --color-white: #ffffff;              /* white */
}

/* Header brand + footer both sit on the dark purple accent now;
   ampersand shouldn't stand out as its own gold/green accent in this palette. */
[data-palette="floral_final"] .nav-logo {
  color: var(--color-primary-light);
}
[data-palette="floral_final"] .footer,
[data-palette="floral_final"] .footer-names,
[data-palette="floral_final"] .footer-date {
  color: var(--color-primary-light);
}
[data-palette="floral_final"] .hero-ampersand,
[data-palette="floral_final"] .hero .hero-ampersand,
[data-palette="floral_final"] body .hero .hero-ampersand {
  color: inherit;
}

/* --- slate (charcoal + champagne) --- */
[data-palette="slate"] {
  --color-primary: #4a5568;           /* slate gray blue */
  --color-primary-light: #718096;     /* lighter slate gray */
  --color-primary-dark: #2d3748;      /* dark charcoal */
  --color-accent: #744210;            /* warm dark brown */
  --color-accent-light: #9c6b2e;      /* warm tan brown */
  --color-warm: #e8d5b0;              /* champagne beige */
  --color-warm-dark: #d4b87a;         /* deeper tan champagne */
  --color-bg: #f7f8fa;                /* cool off-white blue-gray */
  --color-bg-alt: #edf0f4;            /* light cool gray-blue */
  --color-text: #1a202c;              /* very dark almost-black */
  --color-text-light: #4a5568;        /* slate gray */
  --color-white: #ffffff;             /* white */
}

:root {
  /* Site-wide two-font system: change these two lines to re-theme all typography. */
  --font-heading: 'Sacramento', 'Snell Roundhand', cursive;
  --font-body: 'Alice', Georgia, serif;

  --max-width: 1100px;
  --nav-height: 72px;
}

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

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

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

/* ======================
   TYPOGRAPHY
   ====================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* ======================
   NAVIGATION
   ====================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: color-mix(in srgb, var(--color-accent) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--color-primary-light);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-primary-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

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

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary-light);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ======================
   LAYOUT
   ====================== */
.page-content {
  margin-top: var(--nav-height);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

/* ======================
   HERO (Landing page)
   ====================== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.0) 35%,
    rgba(0, 0, 0, 0.52) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-names {
  font-family: var(--font-heading);
  /* font-size: clamp(3rem, 5.4vw, 5.2rem); */
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  font-weight: 400;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.hero-ampersand {
  color: var(--color-primary);
  font-style: italic;
  display: inline-block;
  margin: 0 0.3em;
}

.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--color-primary);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.hero-venue {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--color-accent);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.7rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin: 0;
  z-index: 0;
}

/* Text color overrides for photo background */
.hero .hero-names {
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero .hero-ampersand {
  color: var(--color-warm);
}

.hero .hero-tagline {
  color: color-mix(in srgb, var(--color-white) 88%, transparent);
}

.hero .hero-date {
  color: color-mix(in srgb, var(--color-white) 95%, transparent);
}

.hero .hero-venue {
  color: color-mix(in srgb, var(--color-white) 78%, transparent);
}

.hero .btn-outline {
  color: var(--color-white);
  border-color: color-mix(in srgb, var(--color-white) 80%, transparent);
}

.hero .btn-outline:hover {
  background: color-mix(in srgb, var(--color-white) 15%, transparent);
  color: var(--color-white);
}

/* ======================
   BUTTONS
   ====================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ======================
   PAGE HEADER
   ====================== */
.page-header {
  text-align: center;
  padding: 5rem 2rem 3rem;
  background: var(--color-bg);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 4.6rem);
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ======================
   CARDS (Logistics, FAQ)
   ====================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--color-white);
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--color-accent);
}

.card-soon {
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-primary-light);
  box-shadow: none;
}

.card-soon:hover {
  transform: none;
  box-shadow: none;
}

.card-soon h3 {
  color: var(--color-text-light);
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

/* Standalone section heading with no subtitle beneath it (Logistics) needs more clearance */
.section-heading-lg {
  text-align: center;
  margin-bottom: 3rem;
}

/* ======================
   RUN OF SHOW (Logistics)
   ====================== */
.run-of-show {
  max-width: 680px;
  margin: 0 auto;
}

.show-day {
  margin-bottom: 3rem;
}

.show-day-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--color-bg-alt);
}

.show-event {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0 2.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.show-time {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-primary);
  padding-top: 0.2rem;
  text-align: right;
  white-space: nowrap;
}

.show-details h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--color-accent);
}

.show-details p {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.show-details p:last-child {
  margin-bottom: 0;
}

.show-venue {
  font-size: 0.85rem !important;
  color: var(--color-text-light);
  font-style: italic;
}

/* ======================
   LOGISTICS LIST (Travel & Hotels)
   ====================== */
.logistics-list {
  max-width: 680px;
  margin: 0 auto;
}

.logistics-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 2rem;
  align-items: start;
}

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

.logistics-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
}

.logistics-item p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.logistics-item p:last-child {
  margin-bottom: 0;
}

/* ======================
   FAQ ACCORDION
   ====================== */
.faq-section {
  padding-top: 1.5rem;
}

.faq-list {
  max-width: 750px;
  margin: 0.5rem auto 0;
}

.faq-item {
  background: var(--color-white);
  border-radius: 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-accent);
  cursor: pointer;
  display: block;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ======================
   FOOTER
   ====================== */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-accent);
  color: color-mix(in srgb, var(--color-white) 70%, transparent);
  font-size: 0.9rem;
}

.footer-names {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

/* Explicit color needed: the global "p" rule (color: var(--color-text-light))
   otherwise wins over the inherited .footer color since it targets the
   element directly, which made this text invisible against the footer bg. */
.footer-date {
  color: color-mix(in srgb, var(--color-white) 70%, transparent);
}

.footer-date-both {
  display: none;
}

[data-events="both"] .footer-date-solo {
  display: none;
}

[data-events="both"] .footer-date-both {
  display: block;
}

[data-events="both"] .footer-date-both .footer-date {
  margin: 0.2rem 0;
}

/* ======================
   ANIMATIONS (fade in on scroll)
   ====================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ======================
   ACCESSIBILITY
   ====================== */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ======================
   GUEST GATE OVERLAY
   ====================== */
body.gate-locked .page-content,
body.gate-locked .footer {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--color-accent) 55%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.gate-overlay.gate-fade-out {
  opacity: 0;
}

.gate-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.gate-header {
  margin-bottom: 2rem;
}

.gate-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--color-primary-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.gate-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.gate-label {
  display: block;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.gate-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--color-bg-alt);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  outline: none;
  transition: border-color 0.2s;
}

.gate-input:focus {
  border-color: var(--color-primary);
}

.gate-input::placeholder {
  color: #aaa;
}

.gate-btn {
  width: 100%;
  margin-top: 1rem;
}

.gate-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.gate-greeting {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

#gate-guest-greeting,
#gate-step-success .gate-greeting {
  font-size: 2.6rem;
  color: var(--color-primary-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.gate-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-style: italic;
}

.gate-chat-messages {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  padding: 0.25rem 0;
}

.gate-chat-bubble {
  padding: 0.65rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 85%;
  word-wrap: break-word;
  animation: gateBubbleIn 0.2s ease-out;
}

@keyframes gateBubbleIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gate-chat-user {
  align-self: flex-end;
  background: var(--color-primary);
  color: var(--color-white);
  border-bottom-right-radius: 4px;
  margin-bottom: 0;
}

.gate-chat-assistant {
  align-self: flex-start;
  background: var(--color-bg-alt);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
  margin-bottom: 0;
}

.gate-chat-input-row {
  display: flex;
  gap: 0.5rem;
}

.gate-chat-field {
  flex: 1;
  min-width: 0;
}

.gate-chat-send {
  padding: 0.85rem 1.4rem;
  margin-top: 0;
  flex-shrink: 0;
}

/* Typing indicator */
.gate-typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.75rem 1rem;
}

.gate-typing-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text-light);
  animation: gateDotBounce 1.2s infinite;
}

.gate-typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.gate-typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes gateDotBounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-4px); }
}

.gate-disambig-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gate-disambig-options .gate-btn {
  margin-top: 0;
}

.gate-back {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.gate-back a {
  color: var(--color-text-light);
}

.gate-back a:hover {
  color: var(--color-primary);
}

.gate-code-alt {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
}

.gate-code-alt > a {
  color: var(--color-text-light);
}

.gate-code-alt > a:hover {
  color: var(--color-primary);
}

.gate-code-display {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  margin: 1rem 0;
  letter-spacing: 0.35em;
  font-size: 2rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--color-primary);
}

.gate-hint {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 1rem;
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: color-mix(in srgb, var(--color-bg) 98%, transparent);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links a {
    color: var(--color-text-light);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--color-primary);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: block;
  }

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

  .show-event {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .show-time {
    text-align: left;
    font-size: 0.8rem;
  }

  .logistics-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero-names {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
}

/* ======================
   DUAL-EVENT SPLIT LAYOUT
   ====================== */

/* --- Hero: show/hide --- */
.hero-panels {
  display: none;
  width: 100%;
}

.hero-avignon-solo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

[data-events="both"] .hero-panels {
  display: flex;
}

[data-events="both"] .hero-avignon-solo {
  display: none;
}

/* --- Split hero: two event blocks side by side in the cream text column --- */
[data-events="both"] .hero-panels {
  display: flex;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  width: 100%;
  border-top: 1px solid color-mix(in srgb, var(--color-primary) 16%, transparent);
  padding-top: 1.8rem;
  position: relative;
  z-index: 2;
}

[data-events="both"] .hero-panel {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.25rem;
}

/* Vertical rule between the two events */
[data-events="both"] .hero-panel + .hero-panel {
  border-left: 1px solid color-mix(in srgb, var(--color-primary) 16%, transparent);
  padding-left: clamp(1.5rem, 3.5vw, 3rem);
}

.hero-panel-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-warm-dark);
  margin: 0 0 0.2rem;
}

.hero-panel-date {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  margin: 0;
  color: var(--color-primary);
  white-space: nowrap;
}

.hero-panel-venue {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.02em;
  color: var(--color-accent);
  margin: 0;
  white-space: nowrap;
}

.hero-panel-loc {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--color-text-light);
  margin: 0;
}

/* --- Logistics tabs --- */
.logistics-tab-nav {
  display: none;
}

.tab-panel-ny {
  display: none;
}

[data-events="both"] .logistics-tab-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid var(--color-bg-alt);
  margin: 0 0 0;
  padding: 0 1rem;
}

[data-events="both"] .tab-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 2.5rem;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

[data-events="both"] .tab-btn:hover {
  color: var(--color-primary);
}

[data-events="both"] .tab-btn.tab-btn-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

[data-events="both"] .tab-panel-avignon {
  display: none;
}

[data-events="both"] .tab-panel.tab-active {
  display: block;
}

/* --- Split sections (what-to-do) --- */
.split-col-ny,
.split-divider,
.split-col-label {
  display: none;
}

.avignon-only-content {
  display: block;
}

[data-events="both"] .avignon-only-content {
  display: none;
}

[data-events="both"] .split-section-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3rem;
  align-items: start;
}

[data-events="both"] .split-col-ny,
[data-events="both"] .split-divider,
[data-events="both"] .split-col-label {
  display: block;
}

[data-events="both"] .split-divider {
  background: var(--color-bg-alt);
  align-self: stretch;
  min-height: 100px;
}

.split-col-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-bg-alt);
}

/* Remove centering constraints inside split columns */
[data-events="both"] .split-col .run-of-show,
[data-events="both"] .split-col .logistics-list {
  max-width: none;
  margin: 0;
}

/* --- Mobile: stack panels --- */
@media (max-width: 768px) {
  [data-events="both"] .hero-panels {
    flex-direction: column;
    gap: 1.8rem;
  }

  [data-events="both"] .hero-panel {
    align-items: center;
    text-align: center;
  }

  [data-events="both"] .hero-panel + .hero-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--color-primary) 16%, transparent);
    padding-top: 1.8rem;
  }

  [data-events="both"] .split-section-inner {
    grid-template-columns: 1fr;
  }

  [data-events="both"] .split-divider {
    width: 100%;
    height: 1px;
    min-height: unset;
    margin: 2rem 0;
  }
}

/* ======================
   LOGISTICS PAGE HERO
   ====================== */

.logistics-hero {
  display: flex;
  min-height: 60vh;
}

.logistics-hero-img {
  flex: 0 0 58%;
  overflow: hidden;
}

.logistics-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.logistics-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
  background: var(--color-bg);
}

.logistics-hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 5.5vw, 5.6rem);
  color: var(--color-primary-dark);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.logistics-hero-text p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 320px;
}

@media (max-width: 768px) {
  .logistics-hero {
    flex-direction: column;
    min-height: unset;
  }

  .logistics-hero-img {
    flex: none;
    height: 55vw;
    min-height: 240px;
  }

  .logistics-hero-text {
    padding: 2.5rem 1.5rem;
  }
}

/* ======================
   OUR STORY — COMBINED
   ====================== */

/* Header: B's proportions and ornamental rules, A's plum palette */
.osc-header {
  background: var(--color-bg);
  text-align: center;
  padding: 5.5rem 2rem 4.5rem;
}

.osc-header-inner {
  max-width: 620px;
  margin: 0 auto;
}

/* Double-rule ornament */
.osc-rule {
  position: relative;
  width: 110px;
  margin: 1.5rem auto;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.4;
}

.osc-rule::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: 4px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.6;
}

.osc-title {
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 400;
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin: 0;
}

.osc-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Timeline section: A's clean open layout */
.osc-section {
  background: var(--color-bg);
  padding: 0.5rem 0 8rem;
}

.osc-outer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* 3-column grid: Nicole | spine | Vittorio */
.osc-grid {
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  position: relative;
}

/* Vertical spine */
.osc-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-primary);
  opacity: 0.28;
  transform: translateX(-50%);
  pointer-events: none;
}

.osc-spine-cap {
  /* grid alignment only */
}

/* Large faded italic column names */
.osc-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400;
  color: var(--color-primary);
  opacity: 0.4;
  padding-top: 0.25rem;
  padding-bottom: 4rem;
  line-height: 1;
}

.osc-name--n {
  text-align: right;
  padding-right: 2rem;
}

.osc-name--v {
  text-align: left;
  padding-left: 2rem;
}

/* Chapter node: dot + italic date */
.osc-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 0;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.osc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.osc-date {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.0rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
  opacity: 0.9;
}

/* Story entries */
.osc-entry {
  padding: 2.75rem 0;
  display: flex;
  flex-direction: column;
}

.osc-entry--n {
  text-align: right;
  align-items: flex-end;
  padding-right: 2rem;
}

.osc-entry--v {
  text-align: left;
  align-items: flex-start;
  padding-left: 2rem;
}

.osc-etitle {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.osc-entry p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--color-text);
  max-width: 390px;
}

.osc-entry--n p {
  margin-left: auto;
}

/* Slide-in animations */
.osc-entry--n.fade-in {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.osc-entry--v.fade-in {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.osc-entry--n.fade-in.visible,
.osc-entry--v.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 680px) {
  .osc-header {
    padding: 3.5rem 1.5rem 3rem;
  }

  .osc-outer {
    padding: 0 1.25rem;
  }

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

  .osc-grid::before,
  .osc-spine-cap {
    display: none;
  }

  .osc-name {
    opacity: 0.55;
    font-size: 2rem;
    padding-bottom: 1rem;
    padding-right: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
  }

  .osc-name--v {
    display: none;
  }

  .osc-node {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1.5rem 0 0.35rem;
    gap: 0.55rem;
  }

  .osc-node .osc-date {
    text-align: left;
  }

  .osc-entry {
    text-align: left !important;
    align-items: flex-start !important;
    padding-right: 0 !important;
    padding-left: 1rem !important;
    padding-top: 0.25rem;
    padding-bottom: 1.5rem;
    border-left: 1.5px solid color-mix(in srgb, var(--color-primary) 22%, transparent);
  }

  .osc-entry p {
    max-width: none;
    margin-left: 0 !important;
    font-size: 1rem;
  }

  .osc-entry--n.fade-in,
  .osc-entry--v.fade-in {
    transform: none;
  }

  .osc-entry--v::before {
    content: 'Vittorio';
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 0.4rem;
  }
}

/* ======================
   RSVP FORM
   ====================== */
.rsvp-section {
  padding-top: 1.5rem;
}

.rsvp-card {
  background: var(--color-white);
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 3rem 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.rsvp-status-text {
  text-align: center;
  color: var(--color-text-light);
}

.rsvp-status-text .btn {
  margin-top: 1rem;
}

.rsvp-field {
  margin-bottom: 1.75rem;
}

.rsvp-field .gate-input {
  border-radius: 0;
}

.rsvp-ny-section {
  display: none;
}

[data-events="both"] .rsvp-ny-section {
  display: block;
}

.rsvp-toggle-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rsvp-toggle-btn {
  flex: 1;
  min-width: 160px;
  padding: 0.85rem 1.2rem;
  border-radius: 0;
  border: 2px solid var(--color-bg-alt);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rsvp-toggle-btn:hover {
  border-color: var(--color-primary-light);
}

.rsvp-toggle-btn.rsvp-toggle-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.rsvp-party-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rsvp-party-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  border: 2px solid var(--color-bg-alt);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rsvp-party-option:hover {
  border-color: var(--color-primary-light);
}

.rsvp-party-option:has(.rsvp-party-checkbox:checked) {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-white));
}

.rsvp-party-checkbox {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.rsvp-textarea {
  min-height: 90px;
  resize: vertical;
  font-family: var(--font-body);
}

.rsvp-field-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

.rsvp-summary-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0 0 1.5rem;
}

.rsvp-summary-list {
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1.25rem;
}

.rsvp-summary-list dt {
  font-weight: 600;
  color: var(--color-text);
}

.rsvp-summary-list dd {
  margin: 0;
  color: var(--color-text-light);
}

.rsvp-summary .gate-btn {
  width: 100%;
}

@media (max-width: 600px) {
  .rsvp-card {
    padding: 2.25rem 1.5rem;
  }

  .rsvp-toggle-row {
    flex-direction: column;
  }
}

/* ======================
   OSC PHOTO INTERLUDES
   ====================== */

.osc-interlude {
  grid-column: 1 / -1;
  padding: 1.5rem 0 2rem;
  position: relative;
}

.osc-interlude::before,
.osc-interlude::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.15;
}

.osc-interlude::before {
  margin-bottom: 2rem;
}

.osc-interlude::after {
  margin-top: 2rem;
}

/* Single photo */
.osc-interlude--single .osc-interlude-figure {
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
}

.osc-interlude--single .osc-interlude-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: saturate(0.85) contrast(1.02);
  transition: filter 0.4s ease;
}

.osc-interlude--single .osc-interlude-img:hover {
  filter: saturate(1) contrast(1);
}

.osc-interlude-caption {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-text-light);
  letter-spacing: 0.01em;
}

/* Carousel */
.osc-interlude--carousel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.osc-carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.osc-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.osc-carousel-track:active {
  cursor: grabbing;
}

.osc-carousel-item {
  flex: 0 0 calc(50% - 0.75rem);
  min-width: 220px;
  margin: 0;
  text-align: center;
}

.osc-carousel-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  filter: saturate(0.85) contrast(1.02);
  transition: filter 0.3s ease;
}

.osc-carousel-item img:hover {
  filter: saturate(1) contrast(1);
}

.osc-carousel-item figcaption {
  margin-top: 0.55rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.osc-carousel-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
  padding: 0;
  line-height: 1;
}

.osc-carousel-btn:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  opacity: 1;
}

.osc-carousel-btn:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 680px) {
  .osc-interlude {
    padding: 1rem 0 1.5rem;
  }

  .osc-interlude--carousel {
    display: block;
  }

  .osc-carousel-btn {
    display: none;
  }

  .osc-carousel-track-wrap {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .osc-carousel-track-wrap::-webkit-scrollbar {
    display: none;
  }

  .osc-carousel-track {
    transition: none;
  }

  .osc-carousel-item {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .osc-carousel-item img {
    height: 46vw;
  }
}

/* ============================================================
   HERO DIRECTION D — ARCHED WINDOW PORTRAIT, SIDE BY SIDE
   Arch-framed photo on left; names + date on soft cream right.
   ============================================================ */
body .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  text-align: left;
  padding: 0;
  background: var(--color-bg);
  overflow: hidden;
}
body .hero::before { display: none; }

body .hero-photo {
  position: relative;
  inset: auto;
  align-self: center;
  justify-self: start;
  width: min(46vw, 360px);
  height: min(76vh, 560px);
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 180px 180px 8px 8px;
  /* ----- ARCH FRAME STYLE -------------------------------------------------
     Active: CREAM frame with a gold hairline on BOTH edges (inside + outside).
     The cream `border` is the mat; the two box-shadow rings draw the gold
     lines — `inset 0 0 0 2px` sits against the photo, plain `0 0 0 2px` wraps
     the outside of the cream.
     Three styles below — keep ONE uncommented, comment out the other two.
     (The big offset drop-shadow stays either way.) */
  /* --- Cream frame, gold line inside + outside 
  border: 8px solid var(--color-bg);
  box-shadow:
    inset 0 0 0 2px var(--color-warm-dark),
    0 0 0 2px var(--color-warm-dark),
    0 32px 64px -20px color-mix(in srgb, var(--color-primary-dark) 50%, transparent);
--- */
  /* --- Solid gold (original) ---
  border: 8px solid var(--color-warm-dark);
  box-shadow: 0 32px 64px -20px color-mix(in srgb, var(--color-primary-dark) 50%, transparent);
  */
  /* --- No border (bare photo) ---
  */
  border: none;
  box-shadow: 0 32px 64px -20px color-mix(in srgb, var(--color-primary-dark) 50%, transparent);
  margin: 2.5rem 3rem 2.5rem 8.2rem;
  z-index: 1;
}

body .hero-text-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-self: end;
  padding: clamp(2rem, 5.5vw, 5rem) 8.2rem clamp(2rem, 5.5vw, 5rem) clamp(2rem, 5.5vw, 5rem);
  max-width: 640px;
}

body .hero-identity {
  position: relative;
  z-index: 2;
}
body .hero-avignon-solo {
  position: relative;
  z-index: 2;
  border-top: 1px solid color-mix(in srgb, var(--color-primary) 16%, transparent);
  padding-top: 1.8rem;
  width: 100%;
}

body .hero .hero-names {
  color: var(--color-primary-dark);
  text-shadow: none;
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 1.02;
  margin: 0.7rem 0 0.6rem;
  white-space: nowrap;
}
body .hero .hero-ampersand { color: var(--color-warm-dark); }
body .hero .hero-tagline {
  color: var(--color-text-light);
  font-size: 1.3rem;
  margin: 0 0 2.2rem;
}
body .hero .hero-date {
  color: var(--color-primary);
  text-shadow: none;
}
body .hero .hero-venue {
  color: var(--color-accent);
  text-shadow: none;
}

@media (max-width: 760px) {
  body .hero {
    grid-template-columns: 1fr;
  }
  body .hero-photo {
    width: min(76vw, 300px);
    height: 56vh;
    margin: 2.5rem auto 0.5rem;
  }
  body .hero-text-col {
    padding: 2.4rem 1.6rem 3rem;
    align-items: center;
    text-align: center;
  }
  body .hero-avignon-solo { text-align: center; }
}
