@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

  :root {
    --cream: #FAF7F2;
    --warm-white: #FFFEF9;
    --sage: #7C8F7A;
    --sage-light: #B4C1B2;
    --sage-dark: #4A5C48;
    --gold: #C4A96C;
    --gold-light: #E8D9B8;
    --charcoal: #2C2C2A;
    --mid: #5F5E5A;
    --muted: #9A9890;
    --border: rgba(44,44,42,0.12);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.7;
    min-height: 100vh;
    padding-top: 56px;
  }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── DECORATIVE TOP BANNER ── */
  .theme-top {
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, var(--sage-dark) 0%, var(--sage) 40%, var(--gold) 70%, var(--sage-dark) 100%);
    opacity: 0.25;
    position: relative;
  }
  .theme-top::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 3rem 1.5rem;
  }
  .hero-monogram {
    font-family: var(--serif);
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .hero-ampersand {
    color: var(--gold-light);
    font-style: italic;
    font-size: 5.5rem;
  }
  .hero-date {
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
  }
  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-light);
    margin: 1rem auto;
    opacity: 0.7;
  }

  /* ── NAV ── */
  nav {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }
  .nav-link {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--mid);
    text-decoration: none;
    padding: 1.1rem 1.3rem;
    cursor: pointer;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--charcoal);
    border-bottom-color: var(--gold);
  }
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 254, 249, 0.92);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s, background 0.3s;
  }
  #main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(44, 44, 42, 0.08);
    background: rgba(255, 254, 249, 0.98);
  }
  .nav-brand {
    display: none;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--sage-dark);
    letter-spacing: 0.12em;
    text-decoration: none;
    padding: 0.9rem 0.5rem;
  }
  .nav-amp, .footer-amp {
    color: var(--gold);
    font-style: italic;
  }
  @media (max-width: 640px) {
    .nav-brand { display: block; }
  }
  /* mobile hamburger */
  .nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    color: var(--charcoal);
  }
  .nav-links { display: flex; flex-wrap: wrap; justify-content: center; }

  /* ── PAGE TITLE ── */
  .page-header {
    text-align: center;
    padding: 3.5rem 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  .page-title {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--charcoal);
    font-style: italic;
    letter-spacing: 0.02em;
  }
  .page-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
  }
  .page-ornament::before, .page-ornament::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--gold);
  }
  .ornament-diamond {
    width: 7px; height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  /* ── MAIN CONTENT WRAPPER ── */
  .content {
    max-width: 820px;
    margin: 0 auto;
    padding: 1rem 1.5rem 4rem;
  }

  /* ── HOME PAGE ── */
  .home-couple-block {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
  }
  .home-initials {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--sage-dark);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }
  .home-couple-block img {
    width: 100%;
    max-width: 680px;
    border-radius: 2px;
    margin: 1.5rem auto;
    display: block;
    object-fit: cover;
    height: 420px;
    background: var(--sage-light);
  }

  .rsvp-btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--warm-white);
    background: var(--sage-dark);
    border: none;
    padding: 0.85rem 2.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 0;
  }
  .rsvp-btn:hover { background: var(--charcoal); }

  /* ── SCHEDULE CARDS ── */
  .section-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 0.25rem;
  }
  .section-heading {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .event-card {
    border: 1px solid var(--border);
    background: var(--warm-white);
    padding: 1.75rem 2rem;
    margin-bottom: 1rem;
    position: relative;
  }
  .event-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
  }
  .event-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
  }
  .event-date {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .event-detail {
    font-size: 0.88rem;
    color: var(--mid);
    margin-bottom: 0.3rem;
    display: flex;
    gap: 0.5rem;
  }
  .event-detail strong {
    color: var(--charcoal);
    font-weight: 500;
    min-width: 70px;
  }
  .event-attire {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    border: 1px solid var(--sage-light);
    padding: 0.3rem 0.75rem;
  }

  /* sub-events */
  .sub-events { margin-top: 1.5rem; }
  .sub-event {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.5rem 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    align-items: start;
  }
  .sub-event-time {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    padding-top: 0.1rem;
  }
  .sub-event-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 0.2rem;
  }
  .sub-event-loc {
    font-size: 0.82rem;
    color: var(--mid);
  }

  .post-party {
    background: var(--cream);
    border: 1px dashed var(--sage-light);
    padding: 1.5rem 2rem;
    margin-top: 1rem;
  }
  .post-party-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.5rem;
  }
  .post-party-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
  }
  .post-party-text {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.7;
  }

  /* ── PHOTOS GRID ── */
  .photos-grid {
    columns: 3;
    column-gap: 10px;
  }
  .photos-grid img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    object-fit: cover;
    background: var(--sage-light);
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .photos-grid img:hover { opacity: 0.85; }

  /* lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
  }
  .lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    z-index: 2;
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
  }
  .lightbox-nav:hover { background: rgba(255, 255, 255, 0.28); }
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }

  /* ── WEDDING PARTY ── */
  .party-section {
    margin-bottom: 3rem;
  }
  .party-role {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
  }
  .party-member {
    text-align: center;
  }
  .party-member img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    background: var(--sage-light);
    margin-bottom: 0.75rem;
  }
  .party-name {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 0.1rem;
  }
  .party-title {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ── TRAVEL ── */
  .hotel-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
  }
  .hotel-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
  }
  .hotel-address {
    font-size: 0.83rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
  }
  .hotel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
  .hotel-meta-item {
    font-size: 0.82rem;
    color: var(--mid);
  }
  .hotel-meta-item strong {
    color: var(--charcoal);
    font-weight: 500;
  }
  .hotel-code {
    display: inline-block;
    background: var(--gold-light);
    color: var(--charcoal);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .hotel-desc {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .hotel-link {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--sage-light);
    padding-bottom: 0.1rem;
    transition: border-color 0.2s;
  }
  .hotel-link:hover { border-color: var(--sage-dark); }

  .transport-card {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    margin-top: 0.5rem;
  }
  .transport-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
  }

  /* ── Q&A ── */
  .qa-item {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
  }
  .qa-item:last-child { border-bottom: 1px solid var(--border); }
  .qa-question {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .qa-toggle {
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: transform 0.25s;
  }
  .qa-answer {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.8;
    display: none;
  }
  .qa-item.open .qa-answer { display: block; }
  .qa-item.open .qa-toggle { transform: rotate(45deg); }

  /* ── REGISTRY ── */
  .registry-placeholder {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--muted);
  }
  .registry-placeholder p {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--mid);
  }

  /* ── RSVP ── */
  .rsvp-form {
    max-width: 560px;
    margin: 0 auto;
  }
  .rsvp-error {
    display: none;
    color: #6b2a2a;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    background: #fdf0f0;
    border: 1px solid rgba(107, 42, 42, 0.2);
    line-height: 1.5;
  }
  .form-group {
    margin-bottom: 1.25rem;
  }
  .form-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--warm-white);
    padding: 0.75rem 1rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--sage);
  }
  .form-textarea { min-height: 100px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .radio-group { display: flex; gap: 1.5rem; }
  .radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--charcoal);
    cursor: pointer;
  }
  .form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--sage-dark);
    color: var(--warm-white);
    border: none;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--charcoal); }
  .rsvp-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
  }
  .rsvp-success-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--sage-dark);
    margin-bottom: 1rem;
  }

  .content--wide {
    max-width: 760px;
  }
  .google-form-embed {
    border: 1px solid var(--border);
    background: var(--warm-white);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 44, 42, 0.06);
  }
  .google-form-embed iframe {
    display: block;
    width: 100%;
    min-height: 1800px;
    border: 0;
  }
  @media (max-width: 640px) {
    .google-form-embed iframe {
      min-height: 2100px;
    }
  }

  /* ── FOOTER ── */
  footer {
    text-align: center;
    padding: 2.5rem 1.5rem 3rem;
    border-top: 1px solid var(--border);
    background: var(--warm-white);
  }
  .footer-initials {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--sage-dark);
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
  }
  .footer-date {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-nav a {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-nav a:hover { color: var(--charcoal); }
  .footer-credit {
    font-size: 0.78rem;
    color: var(--muted);
  }

  /* ── BOTTOM THEME ── */
  .theme-bottom {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, var(--sage-dark) 0%, var(--sage) 50%, var(--gold) 80%, var(--sage-dark) 100%);
    opacity: 0.2;
  }

  .img-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

  /* ── HERO ── */
  .hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin: -56px 0 0;
    padding-top: 56px;
  }
  .hero-carousel {
    position: absolute;
    inset: 0;
  }
  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .carousel-slide.active { opacity: 1; }
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(44, 44, 42, 0.15) 0%,
      rgba(44, 44, 42, 0.45) 50%,
      rgba(44, 44, 42, 0.75) 100%
    );
    z-index: 1;
  }
  .hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 3rem 1.5rem 4rem;
    width: 100%;
    max-width: 900px;
  }
  .hero-names {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  }
  .hero-names .amp {
    color: var(--gold-light);
    font-style: italic;
    font-size: 1.15em;
  }
  .hero-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0.9;
  }
  .hero-divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold-light);
    margin: 1.25rem auto;
    opacity: 0.8;
  }
  .carousel-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
  }
  .carousel-dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: scale(1.2);
  }
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
  }
  .carousel-arrow:hover { background: rgba(255, 255, 255, 0.3); }
  .carousel-prev { left: 1rem; }
  .carousel-next { right: 1rem; }

  /* ── COUNTDOWN ── */
  .countdown-section {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .countdown-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }
  .countdown-grid {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    flex-wrap: wrap;
  }
  .countdown-unit {
    min-width: 72px;
  }
  .countdown-num {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--sage-dark);
    line-height: 1;
  }
  .countdown-name {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.35rem;
  }

  /* ── QUICK INFO CARDS ── */
  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }
  .info-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 44, 42, 0.06);
  }
  .info-card-value {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-top: 0.35rem;
  }

  /* ── HOME PHOTO PREVIEW (4-up) ── */
  .home-photo-preview {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }
  .home-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }
  .home-photo-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: var(--sage-light);
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 4px 16px rgba(44, 44, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .home-photo-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.25s;
    pointer-events: none;
  }
  .home-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 44, 42, 0.14);
  }
  .home-photo-item:hover::after {
    border-color: var(--gold);
  }
  .home-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .home-photo-item:hover img {
    transform: scale(1.05);
  }
  @media (max-width: 720px) {
    .home-photo-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.65rem;
    }
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    color: #fff;
    margin: 2rem 0 0;
  }
  .cta-strip h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0.75rem;
  }
  .cta-strip p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-strip .rsvp-btn {
    background: var(--gold);
    color: var(--charcoal);
  }
  .cta-strip .rsvp-btn:hover {
    background: var(--gold-light);
  }

  /* ── STORY PAGE ── */
  .story-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    margin-bottom: 2rem;
  }
  .story-intro {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--sage-dark);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
  }
  .story-body p {
    font-size: 0.95rem;
    color: var(--mid);
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  .story-quote {
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--warm-white);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--sage-dark);
  }
  .timeline {
    margin: 2.5rem 0;
    position: relative;
    padding-left: 2rem;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .timeline-item {
    position: relative;
    padding-bottom: 2rem;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--cream);
  }
  .timeline-year {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  .timeline-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
  }
  .timeline-text {
    font-size: 0.88rem;
    color: var(--mid);
  }

  /* ── MAP / VENUE ── */
  .maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: start;
  }
  .map-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .map-card-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 0.35rem;
  }
  .map-card-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
  }
  .map-card-desc {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 0;
  }
  .venue-map {
    width: 100%;
    height: 260px;
    border: 1px solid var(--border);
    background: var(--sage-light);
    flex-grow: 1;
  }
  .map-link {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.15rem;
  }
  .map-link:hover { color: var(--charcoal); }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    .hero-monogram { font-size: 3rem; }
    .hero-ampersand { font-size: 3.8rem; }
    .photos-grid { columns: 2; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; width: 100%; }
    .nav-menu-btn { display: block; }
    .nav-inner { justify-content: space-between; padding: 0 1rem; }
    .nav-link { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); border-left: 3px solid transparent; }
    .nav-link.active { border-left-color: var(--gold); border-bottom-color: var(--border); }
    .sub-event { grid-template-columns: 1fr; }
    .party-grid { grid-template-columns: repeat(2, 1fr); }
    .maps-grid { grid-template-columns: 1fr; }
  }




  