/* ============================================================
   THE NEW NEUS — thenewneus.com
   Pria & Adam · 5th September 2027
   Casino San Clemente, San Clemente, California

   Design: 1930s–40s Californian Art Deco / Streamline Moderne
   Editorial magazine aesthetic — ivory, black, warm gold
   ============================================================ */

/* --- Adobe Fonts (via Typekit) --- */
/* Loaded via <link> in each HTML page: https://use.typekit.net/tdj4rwn.css */

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="fade-up"] {
  transform: translateY(36px);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="fade-left"] {
  transform: translateX(-28px);
}

[data-reveal="fade-right"] {
  transform: translateX(28px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Staggered children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.5s; }

[data-stagger].revealed > * {
  opacity: 1;
  transform: none;
}

/* Delay utilities */
[data-delay="1"] { transition-delay: 0.1s !important; }
[data-delay="2"] { transition-delay: 0.2s !important; }
[data-delay="3"] { transition-delay: 0.3s !important; }
[data-delay="4"] { transition-delay: 0.4s !important; }
[data-delay="5"] { transition-delay: 0.6s !important; }

/* ============================================================
   HERO PARALLAX
   ============================================================ */

.hero-photo,
.hero-photo-placeholder {
  will-change: transform;
}

/* ============================================================
   NAV — SCROLL STATE & TRANSPARENT HERO MODE
   ============================================================ */

.site-nav {
  transition: background-color 0.5s ease,
              border-color 0.5s ease,
              box-shadow 0.4s ease;
}

/* Transparent state — used on homepage over hero photo */
.site-nav.nav-transparent {
  background-color: transparent;
  border-bottom-color: transparent;
}

.site-nav.nav-transparent .nav-links a {
  color: rgba(240, 237, 228, 0.88);
}

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

.site-nav.nav-transparent .nav-rsvp a {
  border-color: rgba(240, 237, 228, 0.45);
  color: rgba(240, 237, 228, 0.88);
}

.site-nav.nav-transparent .nav-rsvp a:hover {
  background: rgba(240, 237, 228, 0.12);
  border-color: var(--ivory);
  color: var(--ivory);
}

.site-nav.nav-transparent .nav-logo {
  filter: invert(1) brightness(1.8);
}

.site-nav.nav-transparent .nav-hamburger span {
  background-color: var(--ivory);
}

/* ============================================================
   RULE SHORT — ANIMATED WIPE
   ============================================================ */

.rule-short {
  width: 48px;
  max-width: 48px;
  border: none;
  border-top: var(--rule-gold);
  margin: 20px 0 20px auto;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              max-width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.rule-short.revealed {
  width: 120px;
  max-width: 120px;
}

/* --- Design Tokens --- */
:root {
  --black:       #292929;
  --ivory:       #F0EDE4;
  --cream:       #E6E2D8;
  --gold:        #B8936A;
  --gold-light:  #D4AF82;

  --font-title:  'le-havre', 'Josefin Sans', sans-serif;
  --font-body:   'malaga-otc', 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'redondo-ave', 'Dancing Script', cursive;

  --tracking-wide:   0.18em;
  --tracking-widest: 0.28em;

  --max-width: 780px;
  --nav-height: 68px;

  --rule: 1px solid rgba(41, 41, 41, 0.1);
  --rule-gold: 1px solid rgba(184, 147, 106, 0.35);

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ivory);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   PASSWORD GATE
   ============================================================ */

#password-gate {
  position: fixed;
  inset: 0;
  background-color: var(--ivory);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: opacity 0.6s ease;
}

#password-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.gate-logo {
  width: clamp(260px, 50vw, 480px);
  height: auto;
  display: block;
  margin: 0 auto 10px;
  opacity: 0.9;
}

.gate-date {
  display: none;
}

.gate-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}

.gate-label {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  color: var(--black);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.2;
}

.gate-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(41, 41, 41, 0.2);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 10px 0;
  text-align: center;
  outline: none;
  transition: border-color var(--transition);
}

.gate-input:focus {
  border-bottom-color: rgba(41, 41, 41, 0.6);
}

.gate-input::placeholder {
  color: rgba(41, 41, 41, 0.25);
}

.gate-btn {
  margin-top: 8px;
  background: transparent;
  border: 1px solid rgba(41, 41, 41, 0.3);
  color: rgba(41, 41, 41, 0.6);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 11px 36px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.gate-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--ivory);
}

.gate-error {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(180, 80, 60, 0.85);
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition);
  min-height: 1.2em;
}

.gate-error.visible {
  opacity: 1;
}

.gate-venue {
  display: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: var(--ivory);
  border-bottom: var(--rule);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 30px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(41, 41, 41, 0.5);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-links .nav-rsvp a {
  color: var(--gold);
  letter-spacing: var(--tracking-wide);
}

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

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */

.page-content {
  padding-top: var(--nav-height);
}

/* Homepage — hero bleeds behind the transparent nav */
.page-home .page-content {
  padding-top: 0;
}

.page-home .hero {
  height: 100vh;
}

/* ============================================================
   HERO — FULL BLEED PHOTO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 560px;
  overflow: hidden;
  background-color: var(--cream);
}

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

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  background-color: #1e1b17;
  background-image: url('../images/Normal Logo.png');
  background-size: 72% auto;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.18) sepia(0.4);
}

.placeholder-label {
  display: none;
}

/* Dark gradient so text stays readable over any photo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 17, 12, 0.18) 0%,
    rgba(20, 17, 12, 0.08) 40%,
    rgba(20, 17, 12, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
}

.hero-arch-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.25));
}

.hero-names {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ivory);
  margin-top: 12px;
  filter: drop-shadow(0 1px 12px rgba(0,0,0,0.5));
}

.hero-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(240, 237, 228, 0.7);
  margin-top: 10px;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.4));
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(240, 237, 228, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(240, 237, 228, 0.25);
}

/* Inner page hero (non-home pages) */
.hero-inner {
  height: 40vh;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 48px 56px;
  text-align: right;
  border-bottom: var(--rule);
  background: var(--ivory);
  position: relative;
}

.hero-inner-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-inner-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: 1;
  color: var(--black);
}

.hero-inner-sub {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(41,41,41,0.55);
  margin-top: 10px;
}

/* ============================================================
   SECTIONS — editorial, ivory throughout
   ============================================================ */

.section {
  padding: 96px 48px;
  background: var(--ivory);
}

.section + .section {
  border-top: var(--rule);
}

.section-inner {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: 0;
}

.section-inner.wide {
  max-width: 1000px;
}

/* Center override — for countdown, map, and other full-bleed moments */
.section-center .section-inner {
  margin-left: auto;
  margin-right: auto;
}

.section-center .eyebrow,
.section-center .section-title,
.section-center .section-body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  text-align: right;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--black);
  text-align: right;
}

.section-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(41, 41, 41, 0.75);
  max-width: 580px;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.section-body + .section-body {
  margin-top: 16px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ============================================================
   RULES / DIVIDERS
   ============================================================ */

.rule {
  border: none;
  border-top: var(--rule);
  margin: 0 auto;
}

/* rule-short defined with animation at top of file */

/* ============================================================
   STORY SECTION
   ============================================================ */

.story-wrap {
  text-align: right;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}

.story-names {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: rgba(41, 41, 41, 0.5);
  margin-bottom: 32px;
}

.story-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.95;
  color: rgba(41, 41, 41, 0.75);
}

/* ============================================================
   WEEKEND / EVENT LIST — editorial style
   ============================================================ */

.event-list {
  list-style: none;
  margin-top: 48px;
}

.event-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: var(--rule);
  align-items: start;
}

.event-row:last-child {
  border-bottom: var(--rule);
}

.event-when {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}

.event-what {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.event-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(41, 41, 41, 0.6);
}

/* ============================================================
   COUNTDOWN
   ============================================================ */

.countdown-wrap {
  text-align: center;
  padding: 72px 48px;
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

#countdown {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  color: rgba(41,41,41,0.7);
}

.cd-num {
  font-size: 2.8rem;
  color: var(--black);
  line-height: 1;
}

.cd-label {
  font-size: 0.62rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(41, 41, 41, 0.4);
}

.cd-sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 1.2rem;
}

/* ============================================================
   DETAIL LIST
   ============================================================ */

.detail-list {
  list-style: none;
  margin-top: 40px;
}

.detail-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: var(--rule);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.detail-list li:last-child {
  border-bottom: var(--rule);
}

.detail-label {
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}

.detail-value {
  color: rgba(41,41,41,0.75);
  line-height: 1.7;
}

/* ============================================================
   TIMELINE — editorial, large ghost numbers
   ============================================================ */

.timeline-list {
  list-style: none;
  margin-top: 64px;
}

.timeline-item {
  position: relative;
  padding: 48px 0 48px 0;
  border-top: var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.timeline-item:last-child {
  border-bottom: var(--rule);
}

.timeline-ghost-num {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-title);
  font-size: clamp(6rem, 14vw, 11rem);
  color: rgba(41, 41, 41, 0.04);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-time {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
}

.timeline-event-title {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.15;
}

.timeline-right {
  padding-left: 32px;
  border-left: var(--rule);
}

.timeline-event-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(41, 41, 41, 0.5);
  font-style: italic;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }

  .timeline-right {
    padding-left: 0;
    border-left: none;
    border-top: var(--rule);
    padding-top: 12px;
  }

  .timeline-ghost-num {
    font-size: 5rem;
    opacity: 0.03;
  }
}

/* ============================================================
   SPACES — the venue rooms
   ============================================================ */

.spaces-list {
  list-style: none;
  margin-top: 48px;
}

.space-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-top: var(--rule);
}

.space-row:last-child {
  border-bottom: var(--rule);
}

.space-name {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--black);
  padding-top: 2px;
}

.space-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(41,41,41,0.65);
  font-style: italic;
  text-align: right;
}

/* ============================================================
   COCKTAILS
   ============================================================ */

.cocktail-list {
  list-style: none;
  margin-top: 48px;
}

.cocktail-row {
  padding: 28px 0;
  border-top: var(--rule);
}

.cocktail-row:last-child {
  border-bottom: var(--rule);
}

.cocktail-name {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 6px;
  text-align: right;
}

.cocktail-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(41,41,41,0.55);
  font-style: italic;
  text-align: right;
}

/* ============================================================
   DRESS NOTE
   ============================================================ */

.dress-note {
  margin-top: 40px;
  padding: 32px 0;
  border-top: var(--rule-gold);
  border-bottom: var(--rule-gold);
  max-width: 520px;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.dress-note p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(41,41,41,0.7);
}

.dress-note em {
  color: var(--gold);
  font-style: italic;
}

/* ============================================================
   INFO BLOCKS — travel page
   ============================================================ */

.info-block {
  padding: 52px 0;
  border-top: var(--rule);
}

.info-block:last-child {
  border-bottom: var(--rule);
}

.info-block-title {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 18px;
  text-align: right;
}

.info-block p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(41,41,41,0.7);
  max-width: 560px;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.info-block p + p {
  margin-top: 14px;
}

/* ── Hotel cards grid ── */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hotel-card {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}

.hotel-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

/* Warm dark placeholders — replace with real photos when ready */
.hotel-placeholder-1 { background-color: #2e2520; }
.hotel-placeholder-2 { background-color: #202528; }
.hotel-placeholder-3 { background-color: #25221c; }

.hotel-card:hover .hotel-card-img {
  transform: scale(1.05);
}

.hotel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 12, 8, 0.82) 0%,
    rgba(15, 12, 8, 0.2) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: background 0.4s ease;
}

.hotel-card:hover .hotel-card-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 12, 8, 0.9) 0%,
    rgba(15, 12, 8, 0.35) 55%,
    transparent 100%
  );
}

.hotel-card-name {
  font-family: var(--font-title);
  font-size: 0.82rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.3;
}

.hotel-card-detail {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(240, 237, 228, 0.55);
  font-style: italic;
  margin-top: 5px;
}

@media (max-width: 600px) {
  .hotel-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hotel-card {
    aspect-ratio: 4 / 3;
  }
}

/* ── Live weather strip ── */
.weather-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: var(--rule);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(41, 41, 41, 0.45);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.weather-temp {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--black);
}

.info-block a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 147, 106, 0.25);
  transition: border-color var(--transition);
}

.info-block a:hover {
  border-bottom-color: var(--gold);
}

/* ============================================================
   CTA
   ============================================================ */

.cta-section {
  text-align: center;
  padding: 96px 48px;
  border-top: var(--rule);
}

.cta-accent {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: rgba(41,41,41,0.45);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(41,41,41,0.5);
  margin-bottom: 40px;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
  margin-bottom: 36px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(41, 41, 41, 0.2);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

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

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

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23B8936A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}

.form-hint {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(41,41,41,0.4);
  margin-top: 8px;
  font-style: italic;
}

.form-radio-group {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 6px 0;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  color: rgba(41,41,41,0.75);
}

.form-radio-label input[type="radio"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 6px 0;
  color: rgba(41,41,41,0.75);
  line-height: 1.6;
}

.form-checkbox-label input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

.form-divider {
  border: none;
  border-top: var(--rule);
  margin: 48px 0;
}

.form-subsection-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
}

.conditional-section {
  display: none;
  padding: 36px 0;
  margin-top: 8px;
  border-top: var(--rule-gold);
}

.conditional-section.visible {
  display: block;
}

.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 14px 44px;
  border: 1px solid rgba(41,41,41,0.3);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  margin-top: 8px;
}

.btn-primary:hover {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
}

.btn-primary.gold {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-primary.gold:hover {
  background: var(--gold);
  color: var(--ivory);
}

/* ============================================================
   RSVP
   ============================================================ */

.rsvp-not-found {
  background: rgba(180, 80, 60, 0.06);
  border-top: 1px solid rgba(180, 80, 60, 0.2);
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(160, 60, 40, 0.85);
  margin-top: 20px;
  display: none;
  font-style: italic;
}

.rsvp-not-found.visible {
  display: block;
}

/* ============================================================
   PHOTOS PAGE
   ============================================================ */

.photos-upload-zone {
  border: 1px solid rgba(41,41,41,0.15);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
  margin: 48px 0;
}

.photos-upload-zone:hover {
  border-color: var(--gold);
}

.photos-upload-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  opacity: 0.25;
}

.photos-upload-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(41,41,41,0.5);
  line-height: 1.7;
}

.photos-upload-text strong {
  display: block;
  font-size: 0.95rem;
  color: rgba(41,41,41,0.7);
  margin-bottom: 6px;
  font-weight: 400;
}

.photos-note {
  margin-top: 48px;
  padding-top: 40px;
  border-top: var(--rule);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(41,41,41,0.4);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--black);
  color: rgba(240, 237, 228, 0.4);
  text-align: center;
  padding: 64px 48px;
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
  filter: invert(1) brightness(1.2);
}

.footer-date {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(240,237,228,0.3);
  margin-bottom: 36px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin-bottom: 40px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(240,237,228,0.35);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(240,237,228,0.8);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(240,237,228,0.2);
  letter-spacing: 0.05em;
}

/* ============================================================
   MAP
   ============================================================ */

.map-section {
  border-top: var(--rule);
}

#wedding-map {
  width: 100%;
  height: 480px;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 20px 48px;
  border-top: var(--rule);
  border-bottom: var(--rule);
  flex-wrap: wrap;
  background: var(--ivory);
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot-venue  { background: var(--gold); }
.legend-dot-airport { background: rgba(41,41,41,0.3); }

.legend-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(41,41,41,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --nav-height: 58px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 32px 40px;
    gap: 20px;
    border-top: var(--rule);
    border-bottom: var(--rule);
  }

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

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: 64px 28px;
  }

  .hero-overlay {
    padding: 32px 24px;
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .space-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-radio-group {
    flex-direction: column;
    gap: 14px;
  }

  .cta-section {
    padding: 72px 28px;
  }

  .countdown-wrap {
    padding: 56px 28px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 52px 20px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}
