  :root {
    --sand: #f5ede0;
    --cream: #fdf7f0;
    --gold: #c9974a;
    --gold-light: #e8c07a;
    --palm: #2d5a27;
    --palm-light: #4a8a3f;
    --ocean: #1a6b8a;
    --ocean-light: #3498b8;
    --coral: #e05c3a;
    --night: #0d1f2d;
    --text: #2c1a0e;
    --text-light: #6b4c2a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; overflow-y: scroll; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 2.5rem;
    background: rgba(13,31,45,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,151,74,0.3);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-light);
    letter-spacing: 0.02em;
  }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-rsvp {
    background: var(--gold);
    color: var(--night) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 2rem;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    transition: background 0.2s !important;
  }
  .nav-rsvp:hover { background: var(--gold-light) !important; color: var(--night) !important; }

  .hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 0.3rem;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--gold-light); border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--night);
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(26,107,138,0.35) 0%, transparent 55%),
      radial-gradient(ellipse at 80% 20%, rgba(45,90,39,0.35) 0%, transparent 55%),
      linear-gradient(to bottom, rgba(13,31,45,0.45) 0%, rgba(13,31,45,0.35) 40%, rgba(13,31,45,0.65) 100%),
      url('images/hero.jpg') center 30% / cover no-repeat;
  }

  /* Animated palm silhouettes */
  .palm-left, .palm-right {
    position: absolute; bottom: 0;
    width: 220px; opacity: 0.4;
  }
  .palm-left { left: -20px; transform-origin: bottom center; animation: sway 6s ease-in-out infinite; }
  .palm-right { right: -20px; transform: scaleX(-1); transform-origin: bottom center; animation: sway 7s ease-in-out infinite reverse; }

  @keyframes sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
  }
  .palm-right { animation-name: swayRight; }
  @keyframes swayRight {
    0%, 100% { transform: scaleX(-1) rotate(-3deg); }
    50% { transform: scaleX(-1) rotate(3deg); }
  }

  /* Stars */
  .stars {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 30% 8%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 55% 5%, rgba(255,255,255,0.7) 0%, transparent 100%),
      radial-gradient(1px 1px at 70% 12%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 85% 7%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 20% 25%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 90% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 65% 22%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 15% 40%, rgba(255,255,255,0.3) 0%, transparent 100%);
    animation: twinkle 4s ease-in-out infinite alternate;
  }
  @keyframes twinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeUp 1.2s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeUp 1.2s 0.2s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95;
    color: #fff;
    margin-bottom: 0.3em;
    animation: fadeUp 1.2s 0.3s ease both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 2.5rem;
    animation: fadeUp 1.2s 0.5s ease both;
  }

  .hero-date-badge {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 3rem;
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeUp 1.2s 0.6s ease both;
  }

  .hero-date-line {
    text-align: center;
    padding: 0.4rem 0;
  }

  .hero-date-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(201,151,74,0.5);
    letter-spacing: normal;
    padding: 0.15rem 0;
  }

  .hero-date-divider::before,
  .hero-date-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201,151,74,0.5);
  }

  .hero-cta {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 1.2s 0.8s ease both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--night);
    padding: 0.9rem 2.5rem;
    border-radius: 3rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,151,74,0.4); }

  .btn-outline {
    background: transparent;
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 3rem;
    border: 1px solid rgba(255,255,255,0.3);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

  .scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }
  .scroll-hint svg { width: 20px; opacity: 0.5; }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ── SECTION COMMON ── */
  section { padding: 6rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
  }

  .section-title em { font-style: italic; color: var(--palm); }

  /* ── ABOUT / EXCITEMENT ── */
  #about { background: var(--cream); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
  }

  .vibes-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }

  .vibe-card {
    background: var(--sand);
    border-radius: 1.2rem;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(201,151,74,0.2);
    transition: transform 0.2s;
    overflow: hidden;
  }
  .vibe-card:hover { transform: translateY(-4px); }
  .vibe-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
  }

  /* ── DETAILS ── */
  #details { background: var(--night); position: relative; overflow: hidden; }
  #details .section-inner { position: relative; z-index: 1; }
  #details .section-title { color: #fff; }
  #details .section-title em { color: var(--gold-light); }
  #details .section-tag { color: var(--gold); }

  .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .detail-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,151,74,0.2);
    border-radius: 1.2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
  }

  .detail-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
  }
  .detail-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.4;
  }
  .detail-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.3rem;
  }

  /* ── TRAVEL ── */
  .travel-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
  }

  .travel-card {
    background: rgba(255,255,255,0.05);
    border-radius: 1.4rem;
    padding: 2.2rem;
    border: 1px solid rgba(201,151,74,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.25s;
  }
  .travel-card:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }

  .travel-card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .travel-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
  }
  .travel-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
  }
  .travel-card .tip {
    background: rgba(201,151,74,0.15);
    border-left: 3px solid var(--gold);
    padding: 0.8rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
  }

  /* tips */
  .tips-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 3rem;
  }
  .tip-pill {
    background: var(--palm);
    color: #fff;
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .tip-pill strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.3rem; }

  /* ── PACKING LIST ── */
  .packing-list { margin-top: 4rem; }

  .packing-accordion {
    display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem;
  }

  .packing-item {
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    border: 1px solid rgba(201,151,74,0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.25s;
  }
  .packing-item:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
  .packing-item[open] { background: rgba(255,255,255,0.08); }

  .packing-item summary {
    display: flex; align-items: center; gap: 0.9rem;
    padding: 1.2rem 1.6rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    user-select: none;
  }
  .packing-item summary::-webkit-details-marker { display: none; }

  .packing-item-icon { font-size: 1.4rem; flex-shrink: 0; }

  .packing-item-chevron {
    margin-left: auto;
    color: var(--gold);
    font-size: 0.8rem;
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .packing-item[open] .packing-item-chevron { transform: rotate(180deg); }

  .packing-item-body {
    padding: 0 1.6rem 1.4rem;
    border-top: 1px solid rgba(201,151,74,0.12);
  }

  .packing-item-body ul {
    margin: 1rem 0 0;
    padding-left: 1.3rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 2rem;
  }

  .packing-item-body li {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
  }

  .packing-item-body .packing-note {
    margin-top: 1rem;
    background: rgba(201,151,74,0.15);
    border-left: 3px solid var(--gold);
    padding: 0.7rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .packing-item-body ul { grid-template-columns: 1fr; }
  }

  /* ── FAQ ── */
  #faq { background: var(--cream); }

  .faq-accordion {
    display: flex; flex-direction: column; gap: 0.75rem; margin-top: 3rem; max-width: 780px; margin-left: auto; margin-right: auto;
  }

  .faq-item {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(201,151,74,0.18);
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .faq-item:hover { box-shadow: 0 6px 24px rgba(201,151,74,0.13); }
  .faq-item[open] { box-shadow: 0 8px 32px rgba(201,151,74,0.18); }

  .faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.3rem 1.6rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text);
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }

  .faq-chevron {
    color: var(--gold);
    font-size: 0.8rem;
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .faq-item[open] .faq-chevron { transform: rotate(180deg); }

  .faq-body {
    padding: 0 1.6rem 1.4rem;
    border-top: 1px solid rgba(201,151,74,0.12);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
  }
  .faq-body p { margin-top: 1rem; }
  .faq-body ul { margin: 1rem 0 0; padding-left: 1.3rem; }
  .faq-body li { margin-bottom: 0.4rem; }

  .faq-contact {
    text-align: center;
    margin-top: 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
  }
  .faq-contact a { color: var(--gold); text-decoration: none; }
  .faq-contact a:hover { text-decoration: underline; }

  /* ── RSVP / PAYMENT ── */
  #rsvp {
    background: linear-gradient(135deg, var(--night) 0%, #122030 50%, #0d2518 100%);
    position: relative; overflow: hidden;
  }
  #rsvp::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 15% 50%, rgba(26,107,138,0.3) 0%, transparent 40%),
      radial-gradient(circle at 85% 20%, rgba(45,90,39,0.3) 0%, transparent 40%);
  }

  .rsvp-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
  }

  .rsvp-left .section-title { color: #fff; }
  .rsvp-left .section-title em { color: var(--gold-light); }
  .rsvp-left .section-tag { color: var(--gold); }

  .rsvp-left p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .price-display {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,151,74,0.3);
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    padding-left: 3.5rem;
  }
  .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold-light);
    line-height: 1;
  }
  .price-label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
  }
  .price-includes {
    margin-top: 1.5rem;
    text-align: left;
  }
  .price-includes li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    display: flex; gap: 0.7rem; align-items: flex-start;
    list-style: none;
  }
  .price-includes li::before { content: '✓'; color: var(--gold); flex-shrink: 0; }

  /* FORM */
  .rsvp-form {
    background: #fff;
    border-radius: 1.6rem;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: var(--text);
  }
  .form-sub {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { margin-bottom: 1rem; }

  .form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #e8e0d5;
    border-radius: 0.7rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
  }

  /* Card section */
  .payment-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e0d5;
  }
  .payment-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .payment-label svg { width: 16px; color: var(--palm); }

  .card-icons { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
  .card-icon {
    background: #f0f0f0;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.05em;
  }
  .card-icon.visa { background: #1a1f71; color: #fff; }
  .card-icon.mc { background: #eb001b; color: #fff; }
  .card-icon.amex { background: #007bc1; color: #fff; }

  .card-number-field {
    position: relative;
  }
  .card-number-field input { padding-right: 3rem; }
  .card-number-field svg {
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    width: 20px; color: #aaa;
  }

  .secure-note {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--palm);
    margin-top: 0.8rem;
  }
  .secure-note svg { width: 13px; }

  .submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--palm), var(--palm-light));
    color: #fff;
    padding: 1.1rem;
    border-radius: 0.8rem;
    border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(45,90,39,0.4); }
  .submit-btn:active { transform: translateY(0); }

  .submit-btn .btn-inner { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

  /* success state */
  .success-screen {
    display: none;
    text-align: center; padding: 2rem 0;
  }
  .success-screen.show { display: block; }
  .success-icon { font-size: 4rem; margin-bottom: 1rem; }
  .success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: var(--palm); margin-bottom: 0.5rem;
  }
  .success-msg { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

  .rsvp-summary { margin-top: 1.5rem; text-align: left; }
  .summary-member {
    background: var(--cream);
    border: 1.5px solid #e8e0d5;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    margin-bottom: 0.75rem;
  }
  .summary-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .summary-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    background: var(--sand);
    color: var(--text-light);
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
  }
  .summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.83rem;
    padding: 0.25rem 0;
    border-top: 1px solid #ede6da;
    color: var(--text);
  }
  .summary-row span:first-child { color: var(--text-light); flex-shrink: 0; }
  .summary-row span:last-child  { text-align: right; }

  /* RSVP two-step flow */
  .form-error {
    display: none;
    background: #fef0f0;
    border: 1px solid #f5c5c5;
    color: #c0392b;
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .member-card {
    background: var(--cream);
    border: 1.5px solid #e8e0d5;
    border-radius: 1rem;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
  }

  .member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.8rem;
  }

  .attendance-options {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.25rem;
  }

  .attendance-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
  }

  .attendance-label input[type="radio"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--palm);
    cursor: pointer;
    flex-shrink: 0;
  }

  .attendance-text { font-size: 0.9rem; color: var(--text); }

  .member-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
  .guest-type-badge {
    font-size: 0.7rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ocean);
    background: rgba(26,107,138,0.1);
    border-radius: 2rem;
    padding: 0.15rem 0.55rem;
  }

  .fee-summary {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    background: rgba(201,151,74,0.08);
    border: 1px solid rgba(201,151,74,0.25);
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
  }
  .fee-summary strong { font-size: 1.05rem; color: var(--gold); }

  .member-fee-status {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: 2rem;
    padding: 0.15rem 0.6rem;
    margin-left: 0.4rem;
    white-space: nowrap;
  }
  .member-fee-status.fee-paid    { color: var(--palm);  background: rgba(45,90,39,0.1); }
  .member-fee-status.fee-pending { color: #9a6f1a;      background: rgba(201,151,74,0.15); }
  .member-fee-status.fee-unpaid  { color: var(--coral); background: rgba(224,92,58,0.1); }

  .dietary-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0d8ce;
    transition: opacity 0.2s;
  }

  .dietary-section.dimmed {
    opacity: 0.35;
    pointer-events: none;
  }

  .diet-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .diet-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    border: 1.5px solid #e0d8ce;
    border-radius: 2rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
  }

  .diet-pill:has(input:checked) {
    background: var(--palm);
    border-color: var(--palm);
    color: #fff;
  }

  .diet-pill input[type="checkbox"] { display: none; }

  .reset-link { font-size: 0.8rem; color: var(--text-light); text-decoration: none; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
  .reset-link:hover { text-decoration: underline; }
  .submit-btn:disabled { cursor: not-allowed; }

  /* ── FLIGHT STEP ── */
  .flight-card {
    background: var(--cream);
    border: 1.5px solid #e8e0d5;
    border-radius: 1rem;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
  }

  .flight-section-title {
    font-size: 0.72rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(44,26,14,0.45);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .flight-card .flight-section-title:first-of-type { margin-top: 0.75rem; }

  .flight-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.5rem;
    align-items: end;
  }

  .flight-lookup-btn {
    background: rgba(201,151,74,0.12);
    border: 1.5px solid rgba(201,151,74,0.4);
    border-radius: 0.5rem;
    padding: 0.62rem 0.85rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
  }
  .flight-lookup-btn:hover { background: rgba(201,151,74,0.22); }
  .flight-lookup-btn:disabled { opacity: 0.5; cursor: not-allowed; }

  .flight-lookup-result {
    margin-top: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    display: none;
    line-height: 1.4;
  }
  .flight-lookup-result.found {
    background: rgba(45,90,39,0.08);
    border: 1px solid rgba(45,90,39,0.2);
    color: var(--palm);
  }
  .flight-lookup-result.flight-warning {
    background: rgba(232,192,122,0.45);
    border: 1px solid var(--gold);
    color: var(--text);
  }
  .flight-lookup-result.not-found {
    background: rgba(201,151,74,0.08);
    border: 1px solid rgba(201,151,74,0.3);
    color: var(--text);
  }
  .flight-hint { margin: 0.15rem 0 0.6rem; font-size: 0.78rem; color: var(--text); opacity: 0.7; line-height: 1.4; }
  .flight-leg-header { margin: 0 0 0.5rem; font-size: 0.8rem; opacity: 0.75; }
  .flight-leg-option {
    display: flex; align-items: center; gap: 0.45rem;
    margin: 0.25rem 0; cursor: pointer; font-size: 0.82rem;
  }
  .flight-leg-option input[type=radio] { cursor: pointer; accent-color: var(--palm); }

  @media (max-width: 480px) {
    .flight-row { grid-template-columns: 1fr 1fr; }
    .flight-lookup-btn { grid-column: 1 / -1; }
  }

  /* ── PAYMENT STEP ── */
  .payment-amount-display {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e0d8ce;
  }
  .payment-amount-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(44,26,14,0.45);
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0.25rem;
  }
  .payment-amount-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: var(--palm);
    line-height: 1;
  }

  /* Venmo payment step */
  .venmo-memo-display {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(44,26,14,0.55);
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1.5rem;
  }
  .venmo-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #008CFF;
    color: #fff;
    border-radius: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 1.5rem;
  }
  .venmo-pay-btn:hover { background: #0077d9; }
  .venmo-qr-wrap {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  /* QR codes can't be scanned from the same device — hide on touch screens */
  @media (hover: none) and (pointer: coarse) {
    .venmo-qr-wrap { display: none; }
  }
  .venmo-qr-label {
    font-size: 0.78rem;
    color: rgba(44,26,14,0.45);
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0.5rem;
  }
  .venmo-qr-img {
    width: 180px;
    height: 180px;
    border-radius: 0.5rem;
    border: 1px solid #e0d8ce;
  }
  .venmo-alt-note {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(44,26,14,0.45);
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0;
  }

  /* ── PACKING PAGE ── */
  .packing-page-back {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }
  .packing-page-back:hover { color: var(--gold-light); }

  .packing-page-hero {
    background: var(--night);
    padding: 9rem 2rem 5rem;
    position: relative;
  }
  .packing-page-hero .section-title em { color: var(--gold-light); }
  .packing-page-hero .section-tag { color: var(--gold); }

  .packing-page-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    margin-top: 0.5rem;
    line-height: 1.7;
  }

  .packing-page-body {
    background: var(--night);
    padding-top: 0;
  }

  .packing-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .packing-page-category {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,151,74,0.2);
    border-radius: 1.4rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
  }

  .packing-page-cat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
  }

  .packing-page-cat-icon { font-size: 1.8rem; flex-shrink: 0; }

  .packing-page-cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
  }

  .packing-page-list {
    padding-left: 1.3rem;
    margin: 0;
  }
  .packing-page-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.2rem;
  }

  .packing-page-category .packing-note {
    background: rgba(201,151,74,0.15);
    border-left: 3px solid var(--gold);
    padding: 0.7rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .packing-page-grid { grid-template-columns: 1fr; }
    .packing-page-hero { padding: 8rem 1.5rem 4rem; }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--night);
    border-top: 1px solid rgba(201,151,74,0.2);
    padding: 3rem 2rem;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
  }
  footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    line-height: 1.8;
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,31,45,0.97); padding: 1.5rem; gap: 1.2rem; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    section { padding: 4rem 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .travel-grid { grid-template-columns: 1fr; }
    .rsvp-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .vibes-grid { grid-template-columns: 1fr 1fr; }
    /* Swap tall portrait photos to square on mobile to avoid endless scroll */
    .vibe-photo { aspect-ratio: 1 / 1; }
  }

  @media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .vibes-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
    .details-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── COUNTDOWN ── */
  .countdown {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2.5rem;
    margin-bottom: 0;
    animation: fadeUp 1.2s 1s ease both;
  }
  .countdown-unit {
    text-align: center;
    min-width: 64px;
  }
  .countdown-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.2rem);
    color: #fff;
    line-height: 1;
    font-weight: 700;
  }
  .countdown-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.4rem;
  }
  .countdown-sep {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgba(255,255,255,0.25);
    line-height: 1;
    padding-top: 0.15rem;
    user-select: none;
  }

  /* ── ANIMATIONS ON SCROLL ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── FOLIAGE LOADING STATE ── */
  /* Hero title is visible through the transparent overlay.
     Everything else is held at the animation's from-state until foliage clears. */
  .foliage-loading .hero-eyebrow,
  .foliage-loading .hero-sub,
  .foliage-loading .hero-date-badge,
  .foliage-loading .countdown,
  .foliage-loading .hero-cta {
    animation: none !important;
    opacity: 0 !important;
    transform: translateY(40px) !important;
  }
  .foliage-loading .hero-title {
    animation: none;           /* immediately visible at full opacity */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;        /* prevent "& Brian" from wrapping mid-phrase */
    max-width: 92vw;           /* safety on narrow viewports */
  }
  .foliage-loading .scroll-hint {
    animation: none !important;
    opacity: 0 !important;
  }

  /* ── FOLIAGE INTRO OVERLAY ── */
  #foliage-intro {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 9999;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
  }
  #foliage-intro .foliage-leaf {
    position: absolute;
    overflow: visible;
    user-select: none;
    pointer-events: none;
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1),
                opacity 0.4s 0.9s ease-out;
  }
  #foliage-intro.is-gone { display: none; }
