/* =============================================================
   SYDNEY & KEATON — Global Stylesheet
   March 13, 2027 · The Wrigley Mansion · Scottsdale, AZ
   ============================================================= */

/* -- Custom Properties --------------------------------------- */
:root {
  /* Soft Roses palette — muted sage greens + dusty rose + warm neutrals */
  --green-primary:  #5b6e4e;   /* muted deep sage — for text & headings */
  --green-mid:      #7b9068;   /* mid sage */
  --green-asparagus:#94a77c;   /* soft asparagus */
  --green-sage:     #a8b89b;   /* soft sage */
  --green-light:    #c1cfb3;   /* pale sage */
  --green-pale:     #d7dfc9;
  --green-faint:    #e9eee1;
  --bg:             #eef2e6;   /* bg tinted slightly warmer */
  --cream:          #faf5ec;   /* warm cream */
  --cream-warm:     #efe4d4;
  --white:          #ffffff;

  /* Blush & Rose accents */
  --blush-pale:     #faece9;
  --blush:          #f1d5cf;   /* pale pink */
  --blush-mid:      #e3b8b0;   /* dusty pink */
  --rose:           #d89a92;   /* dusty rose */
  --rose-deep:      #c58a82;   /* deeper rose */

  /* Warm neutrals */
  --taupe:          #c2b3a1;
  --taupe-pale:     #e2d9cb;

  /* Supporting */
  --gold:           #c9a96e;
  --gold-light:     #e8d5b0;
  --text-dark:      #2d382e;
  --text-medium:    #4d5a4e;
  --text-light:     #7a8678;

  --font-script: 'Italianno', 'Pinyon Script', cursive;
  --font-serif:  'Cormorant Garamond', Georgia, serif;

  --nav-h:     160px;
  --max-w:     1100px;
  --max-w-lg:  1300px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* -- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-serif);
  background-color: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageFadeIn 0.7s ease-out both;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
::selection { background: var(--green-pale); color: var(--green-primary); }
:focus-visible { outline: 2px solid var(--green-primary); outline-offset: 3px; }

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

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.45s var(--ease-inout),
              box-shadow 0.45s var(--ease-inout);
}

body.is-home .site-nav {
  background: rgba(238, 244, 234, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.is-home .site-nav.scrolled {
  background: rgba(249, 246, 242, 0.97);
  box-shadow: 0 1px 24px rgba(13, 102, 36, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body:not(.is-home) .site-nav {
  background: rgba(249, 246, 242, 0.97);
  box-shadow: 0 1px 24px rgba(13, 102, 36, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--max-w-lg);
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  gap: 20px;
}

.nav-logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  height: 140px;
  width: auto;
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
}
body.is-home .site-nav:not(.scrolled) .nav-logo img {
  mix-blend-mode: normal;
  filter: brightness(0) invert(1) opacity(0.88);
}

.nav-links-left  { grid-column: 1; justify-self: end; }
.nav-links-right { grid-column: 3; justify-self: start; }
.nav-links-left,
.nav-links-right {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links-left a,
.nav-links-right a {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-primary);
  position: relative;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-links-left a::after,
.nav-links-right a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}
.nav-links-left a:hover::after,
.nav-links-right a:hover::after,
.nav-links-left a.active::after,
.nav-links-right a.active::after { transform: scaleX(1); }
.nav-links-left a.active,
.nav-links-right a.active { color: var(--green-primary); }

body.is-home .site-nav:not(.scrolled) .nav-links-left a,
body.is-home .site-nav:not(.scrolled) .nav-links-right a {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
  grid-column: 3;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-primary);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
body.is-home .site-nav:not(.scrolled) .nav-hamburger span { background: #fff; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 980;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease-inout), transform 0.4s var(--ease-inout);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-overlay-logo {
  margin-bottom: 48px;
}
.nav-overlay-logo img {
  height: 80px;
  mix-blend-mode: multiply;
}
.nav-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.nav-overlay ul a {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--green-primary);
  letter-spacing: 0;
  display: block;
  padding: 6px 0;
  line-height: 1.15;
  transition: color 0.2s;
}
.nav-overlay ul a:hover { color: var(--gold); }
.nav-overlay-date {
  margin-top: 36px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
}
.stagger.visible > *:nth-child(1)  { animation: fadeUp 0.8s var(--ease-out) 0.00s forwards; }
.stagger.visible > *:nth-child(2)  { animation: fadeUp 0.8s var(--ease-out) 0.10s forwards; }
.stagger.visible > *:nth-child(3)  { animation: fadeUp 0.8s var(--ease-out) 0.18s forwards; }
.stagger.visible > *:nth-child(4)  { animation: fadeUp 0.8s var(--ease-out) 0.26s forwards; }
.stagger.visible > *:nth-child(5)  { animation: fadeUp 0.8s var(--ease-out) 0.34s forwards; }
.stagger.visible > *:nth-child(6)  { animation: fadeUp 0.8s var(--ease-out) 0.40s forwards; }
.stagger.visible > *:nth-child(7)  { animation: fadeUp 0.8s var(--ease-out) 0.46s forwards; }
.stagger.visible > *:nth-child(8)  { animation: fadeUp 0.8s var(--ease-out) 0.50s forwards; }
.stagger.visible > *:nth-child(n+9){ animation: fadeUp 0.8s var(--ease-out) 0.54s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   PAGE HEADER (inner pages)
   ============================================================= */

.page-header {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-blob {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  border-radius: 55% 45% 50% 60% / 45% 55% 45% 55%;
  background: var(--green-sage);
  opacity: 0.2;
  filter: blur(60px);
  pointer-events: none;
}
.page-header-blob::after {
  content: '';
  position: absolute;
  top: 30%; left: 58%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--blush-mid);
  opacity: 0.45;
  filter: blur(50px);
}
.page-header-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  color: var(--green-primary);
  letter-spacing: 0;
  line-height: 1.05;
}
.page-header-sub {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* =============================================================
   CALLA LILY DIVIDER
   ============================================================= */

.lily-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 52px auto;
  color: var(--green-primary);
  opacity: 0.55;
}
.lily-divider-line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-light));
}
.lily-divider-line.right {
  background: linear-gradient(to left, transparent, var(--green-light));
}
.lily-divider svg { flex-shrink: 0; }

/* Ornamental divider (thin line + diamond) */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px auto;
  max-width: 320px;
}
.ornament-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-light), transparent);
}
.ornament-divider-gem {
  width: 6px; height: 6px;
  background: var(--blush-mid);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ornament-divider-gem.gold { background: var(--gold); }

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

.site-footer {
  background: var(--green-primary);
  color: var(--cream);
  text-align: center;
  padding: 60px 24px 44px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  border-radius: 50%;
  background: rgba(184, 217, 176, 0.12);
  filter: blur(50px);
  pointer-events: none;
}
.footer-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1) opacity(0.75);
  position: relative;
}
.footer-names {
  font-family: var(--font-script);
  font-size: 3.4rem;
  letter-spacing: 0;
  color: var(--green-pale);
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
}
.footer-details {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 217, 176, 0.7);
  line-height: 2;
  position: relative;
}
.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(184, 217, 176, 0.3);
  margin: 24px auto;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(184, 217, 176, 0.5);
  position: relative;
}

/* =============================================================
   HOME PAGE
   ============================================================= */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../photos/IMG_6268.JPG');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  transition: transform 9s var(--ease-out);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 26, 12, 0.42) 0%,
    rgba(10, 26, 12, 0.52) 50%,
    rgba(10, 26, 12, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  height: 116px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1) opacity(0.9);
  animation: heroReveal 1.6s var(--ease-out) 0.2s both;
}
.hero-names {
  font-family: var(--font-script);
  font-size: clamp(3.8rem, 11vw, 8.5rem);
  color: var(--white);
  letter-spacing: 0;
  line-height: 1;
  animation: heroReveal 1.6s var(--ease-out) 0.5s both;
  text-shadow: 0 4px 32px rgba(0,0,0,0.2);
}
.hero-ampersand {
  color: var(--green-pale);
}
.hero-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: heroReveal 1.6s var(--ease-out) 0.8s both;
}
.hero-date-text {
  font-family: var(--font-serif);
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.hero-location-text {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 18px 0;
}

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

/* Countdown */
.hero-countdown-wrap {
  position: absolute;
  bottom: 64px;
  left: 0; right: 0;
  z-index: 2;
  animation: heroReveal 1.6s var(--ease-out) 1.2s both;
}
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.countdown-unit {
  text-align: center;
  padding: 0 22px;
}
.countdown-unit + .countdown-unit {
  border-left: 1px solid rgba(255,255,255,0.18);
}
.countdown-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
  min-width: 54px;
}
.countdown-label {
  font-family: var(--font-serif);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  display: block;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: heroReveal 2s var(--ease-out) 2s both;
}
.hero-scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(0.7); opacity: 0.4; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* Home intro */
.home-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 88px 24px 72px;
  position: relative;
}
.home-intro-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.home-intro-heading {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--green-primary);
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 28px;
}
.home-intro-body {
  font-family: var(--font-serif);
  font-size: 1.14rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.9;
}

/* Home nav links panel */
.home-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(184, 217, 176, 0.45);
  border-top: 1px solid rgba(184, 217, 176, 0.45);
  border-bottom: 1px solid rgba(184, 217, 176, 0.45);
  margin-bottom: 80px;
}
.home-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 44px 20px;
  text-align: center;
  background: var(--bg);
  transition: background 0.3s, transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.home-nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-pale);
  opacity: 0;
  transition: opacity 0.3s;
}
.home-nav-item:hover::before { opacity: 0.35; }
.home-nav-item:hover { transform: translateY(-3px); }
.home-nav-item svg { color: var(--green-light); position: relative; }
.home-nav-item:hover svg { color: var(--green-primary); }
.home-nav-title {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--green-primary);
  letter-spacing: 0;
  line-height: 1.05;
  position: relative;
}
.home-nav-sub {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}

/* Our Venue — Wrigley Mansion section */
.venue-section {
  position: relative;
  padding: 80px 24px 96px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, var(--blush-pale) 50%, transparent 100%);
}
.venue-section::before {
  content: '';
  position: absolute;
  top: 40px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 55% 45% 50% 60% / 45% 55% 45% 55%;
  background: var(--green-sage);
  opacity: 0.12;
  filter: blur(50px);
  pointer-events: none;
}
.venue-section::after {
  content: '';
  position: absolute;
  bottom: 20px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50% 60% 40% 55% / 55% 40% 60% 45%;
  background: var(--blush-mid);
  opacity: 0.18;
  filter: blur(46px);
  pointer-events: none;
}
.venue-inner {
  max-width: var(--max-w-lg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.venue-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(135, 169, 107, 0.4),
    0 20px 60px rgba(77, 107, 62, 0.18),
    0 6px 20px rgba(0, 0, 0, 0.08);
}
.venue-image-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px; right: -14px; bottom: -14px;
  border: 1px solid var(--green-asparagus);
  opacity: 0.35;
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}
.venue-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}
.venue-image-wrap:hover img { transform: scale(1.04); }

.venue-content { padding: 20px 0; }
.venue-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 14px;
}
.venue-title {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  color: var(--green-primary);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 16px;
}
.venue-sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--text-medium);
  margin-bottom: 26px;
}
.venue-ornament {
  width: 44px;
  height: 1px;
  background: var(--blush-mid);
  margin-bottom: 26px;
}
.venue-body {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 28px;
}
.venue-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.venue-meta-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-serif);
}
.venue-meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush-deep);
  min-width: 74px;
  flex-shrink: 0;
}
.venue-meta-value {
  font-size: 1rem;
  color: var(--text-medium);
  font-style: italic;
}
.venue-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-primary);
  padding: 12px 26px;
  border: 1px solid var(--green-asparagus);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
  background: rgba(255,255,255,0.4);
}
.venue-cta:hover {
  background: var(--green-primary);
  color: var(--cream);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .venue-inner { grid-template-columns: 1fr; gap: 40px; }
  .venue-image-wrap { aspect-ratio: 4 / 3; max-width: 560px; margin: 0 auto; }
  .venue-content { text-align: center; }
  .venue-ornament { margin-left: auto; margin-right: auto; }
  .venue-meta-row { justify-content: center; }
}

/* Home photo mosaic */
.home-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 6px;
  max-width: var(--max-w-lg);
  margin: 0 auto 80px;
  padding: 0 24px;
}
.mosaic-item {
  overflow: hidden;
  position: relative;
}
.mosaic-item.span-row { grid-row: span 2; }
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 30, 16, 0);
  transition: background 0.4s;
}
.mosaic-item:hover .mosaic-item-overlay {
  background: rgba(13, 30, 16, 0.12);
}

/* =============================================================
   WEEKEND EVENTS PAGE
   ============================================================= */

.events-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px 96px;
}
.event-card {
  background: var(--cream);
  border-radius: 2px;
  padding: 56px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 217, 176, 0.4);
  box-shadow:
    0 2px 8px rgba(13, 102, 36, 0.04),
    0 8px 40px rgba(13, 102, 36, 0.06);
}
.event-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50% 60% 40% 55% / 55% 40% 60% 45%;
  background: var(--green-pale);
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
}
.event-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
  background: var(--green-faint);
  opacity: 0.5;
  filter: blur(32px);
  pointer-events: none;
}
.event-lily {
  margin-bottom: 20px;
  color: var(--green-primary);
  opacity: 0.5;
  position: relative;
}
.event-lily svg { margin: 0 auto; }
.event-number {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
  position: relative;
}
.event-title {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  color: var(--green-primary);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 28px;
  position: relative;
}
.event-ornament {
  width: 48px; height: 1px;
  background: var(--blush-mid);
  margin: 0 auto 28px;
  position: relative;
}
.event-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: relative;
}
.event-detail-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-serif);
}
.event-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 64px;
  text-align: right;
  flex-shrink: 0;
}
.event-detail-value {
  font-size: 1.04rem;
  font-style: italic;
  color: var(--text-medium);
  letter-spacing: 0.02em;
}
.event-detail-value.tbd {
  color: var(--green-light);
  font-style: italic;
}
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-primary);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px 5px;
  border-radius: 20px;
  margin-top: 20px;
  position: relative;
}

.event-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  color: var(--green-light);
  opacity: 0.7;
}
.event-separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-light), transparent);
  max-width: 200px;
}

/* =============================================================
   ACCOMMODATIONS PAGE
   ============================================================= */

.accom-wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 16px 24px 96px;
}
.accom-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.9;
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hotel-card {
  background: var(--cream);
  border: 1px solid rgba(184, 217, 176, 0.4);
  border-radius: 2px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(13, 102, 36, 0.12);
}
.hotel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--green-light), var(--green-pale));
}
.hotel-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--green-faint);
  opacity: 0.6;
  filter: blur(28px);
  pointer-events: none;
}
.hotel-num {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.hotel-name {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  color: var(--green-primary);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hotel-info {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 6px;
}
.hotel-info.phone { color: var(--green-mid); margin-bottom: 24px; }
.hotel-info.note {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.84rem;
  margin-bottom: 24px;
}
.hotel-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hotel-btn {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 1px;
  transition: all 0.25s;
  position: relative;
}
.hotel-btn.primary {
  background: var(--green-primary);
  color: var(--cream);
}
.hotel-btn.primary:hover { background: var(--green-mid); }
.hotel-btn.secondary {
  border: 1px solid rgba(13, 102, 36, 0.35);
  color: var(--green-primary);
}
.hotel-btn.secondary:hover {
  background: var(--green-faint);
  border-color: var(--green-primary);
}

/* =============================================================
   WEDDING PARTY PAGE
   ============================================================= */

.party-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px 96px;
}
.party-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 60px;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.9;
}
.party-columns {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  align-items: start;
}
.party-col {
  padding: 0 32px;
}
.party-col-label {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 44px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--green-pale);
}
.party-separator-v {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--green-light) 20%, var(--green-light) 80%, transparent);
  align-self: stretch;
}
.party-role-block {
  margin-bottom: 48px;
}
.party-role-title {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--green-primary);
  letter-spacing: 0;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 20px;
}
.party-name-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.party-name {
  font-family: var(--font-serif);
  font-size: 1.01rem;
  font-style: italic;
  color: var(--text-medium);
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  transition: color 0.2s;
  padding: 3px 0;
}
.party-name:hover { color: var(--green-primary); }

/* =============================================================
   THINGS TO DO PAGE
   ============================================================= */

.todo-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 24px 96px;
}
.todo-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.9;
}
.todo-category {
  margin-bottom: 72px;
  position: relative;
}
.todo-category-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 360px;
  border-radius: 55% 45% 60% 40% / 40% 60% 40% 60%;
  background: var(--green-light);
  opacity: 0.1;
  filter: blur(48px);
  pointer-events: none;
}
.todo-cat-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}
.todo-cat-title {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--green-primary);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 36px;
}
.todo-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(184, 217, 176, 0.35);
  border: 1px solid rgba(184, 217, 176, 0.35);
}
.todo-item {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-medium);
  padding: 16px 24px;
  background: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.todo-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  transition: background 0.2s;
}
.todo-item:hover {
  background: var(--green-faint);
  color: var(--green-primary);
}
.todo-item:hover::before { background: var(--green-primary); }

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

.gallery-wrap {
  max-width: var(--max-w-lg);
  margin: 0 auto;
  padding: 16px 24px 96px;
}
.gallery-intro {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 52px;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.9;
}
.gallery-grid {
  columns: 3 300px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  cursor: pointer;
  position: relative;
}
.gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  box-shadow:
    0 0 0 1px rgba(184, 217, 176, 0.45),
    0 4px 16px rgba(13, 102, 36, 0.08),
    0 2px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-frame {
  box-shadow:
    0 0 0 1px rgba(184, 217, 176, 0.6),
    0 12px 40px rgba(13, 102, 36, 0.14),
    0 4px 12px rgba(0,0,0,0.1);
}
.gallery-frame img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover .gallery-frame img { transform: scale(1.04); }
.gallery-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(13, 26, 15, 0.3)
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-frame-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 18, 11, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-inout);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-img-wrap {
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 1px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: opacity 0.35s;
}
.lb-close {
  position: fixed;
  top: 22px; right: 26px;
  z-index: 2001;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  font-family: var(--font-serif);
  transition: color 0.2s, background 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.lb-close:hover { color: white; background: rgba(255,255,255,0.1); }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2001;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1.5rem;
  font-family: var(--font-serif);
  transition: color 0.2s, background 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.lb-nav:hover { color: white; background: rgba(255,255,255,0.12); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-counter {
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
}

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

@media (max-width: 900px) {
  .home-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .party-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .party-separator-v { display: none; }
  .party-col { padding: 0; }
  .party-col + .party-col { border-top: 1px solid var(--green-pale); padding-top: 48px; margin-top: 16px; }

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

@media (max-width: 768px) {
  :root { --nav-h: 110px; }
  .nav-logo img { height: 90px; }

  /* Nav: hide split links, show hamburger */
  .nav-links-left,
  .nav-links-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 18px;
  }
  .nav-hamburger { grid-column: 3; justify-self: end; }
  .nav-logo { grid-column: 2; }

  /* Hero */
  .hero-logo { height: 82px; }
  .countdown { gap: 0; }
  .countdown-unit { padding: 0 14px; }
  .hero-countdown-wrap { bottom: 52px; }

  /* Home mosaic */
  .home-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic-item.span-row { grid-row: span 1; }
  .home-mosaic img { height: 200px; }

  /* Home nav grid */
  .home-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-nav-grid .home-nav-item:nth-child(5) {
    grid-column: span 2;
  }

  /* Events */
  .event-card { padding: 40px 28px; }
  .event-detail-label { min-width: 52px; }

  /* Gallery */
  .gallery-grid { columns: 2 160px; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }

  /* Lightbox nav */
  .lb-nav { display: none; }

  /* Todo */
  .todo-items { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .home-mosaic { grid-template-columns: 1fr; }
  .home-mosaic img { height: 240px; }
  .home-mosaic .mosaic-item:nth-child(n+4) { display: none; }
  .countdown-number { font-size: 2rem; }
  .countdown-unit { padding: 0 10px; }
}
