:root {
      --navy: #31479d;
      --red: #cc0c00;
      --cream: #faf8f3;
      --light-blue: #e8edf7;
      --gold: #c9a84c;
      --text: #2d2d2d;
      --border-stripe: repeating-linear-gradient(
        -45deg,
        var(--red) 0px, var(--red) 10px,
        white 10px, white 14px,
        var(--navy) 14px, var(--navy) 24px,
        white 24px, white 28px
      );
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── AIRMAIL STRIPE ── */
    .airmail-stripe {
      height: 18px;
      background: var(--border-stripe);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 18px;
      left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      padding: 1rem 2rem;
      background: rgba(250, 248, 243, 0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(26,42,94,0.12);
    }

    nav a {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--red); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      max-width: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 40%, var(--light-blue) 0%, var(--cream) 100%);
      z-index: 0;
    }

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

    .monogram {
      position: relative;
      display: inline-block;
    }

    .names {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1rem, 3vw, 1.4rem);
      font-weight: 300;
      letter-spacing: 0.5em;
      color: var(--navy);
      margin: 1.5rem 0 0.5rem;
      text-transform: uppercase;
    }

    .date-tag {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.5rem 2rem;
      border: 1.5px solid var(--navy);
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      font-weight: 500;
      color: var(--navy);
      text-transform: uppercase;
    }

    .hero-sub {
      margin-top: 1.2rem;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      color: var(--navy);
      opacity: 0.75;
    }

    /* Plane animation */
    .plane-trail {
      position: absolute;
      top: 28%;
      left: -80px;
      z-index: 1;
      display: flex;
      align-items: center;
      animation: flyAcross 14s linear infinite;
    }
    .plane-trail svg { width: 52px; fill: var(--navy); opacity: 0.18; }
    .trail-line {
      width: 120px;
      height: 1.5px;
      background: linear-gradient(to right, transparent, var(--red));
      margin-right: 4px;
      opacity: 0.25;
    }

    @keyframes flyAcross {
      0%   { transform: translateX(0); opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 1; }
      100% { transform: translateX(110vw); opacity: 0; }
    }

    .countdown-row {
      display: flex;
      gap: 2rem;
      justify-content: center;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .countdown-box {
      text-align: center;
      min-width: 70px;
    }

    .countdown-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--navy);
      line-height: 1;
    }

    .countdown-label {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-top: 0.3rem;
      font-weight: 600;
    }

    .countdown-sep {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      color: var(--navy);
      opacity: 0.3;
      align-self: flex-start;
      padding-top: 0.2rem;
    }

    /* ── SECTIONS ── */
    section {
      padding: 6rem clamp(2rem, 8vw, 8rem);
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1.5px;
      background: var(--red);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    /* ── DIVIDER ── */
    .full-stripe {
      height: 10px;
      background: var(--border-stripe);
      opacity: 0.7;
    }

    /* ── CEREMONY ── */
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .info-card {
      background: white;
      border: 1px solid rgba(26,42,94,0.1);
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .info-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: var(--red);
    }

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

    .info-card-label {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .info-card-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--navy);
      line-height: 1.4;
    }

    .info-card-sub {
      font-size: 0.75rem;
      color: #777;
      margin-top: 0.4rem;
    }

    /* ── MAP ── */
    #map {
      height: 380px;
      width: 100%;
      border: 1px solid rgba(26,42,94,0.15);
      margin-top: 1rem;
    }

    .map-actions {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.65rem 1.5rem;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }

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

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--navy);
      color: var(--navy);
    }
    .btn-outline:hover { background: var(--navy); color: white; }

    /* ── SCHEDULE ── */
    .timeline {
      position: relative;
      padding-left: 2rem;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--navy), var(--red));
      opacity: 0.2;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 2.5rem;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -2.5rem;
      top: 0.4rem;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--red);
    }

    .tl-time {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      color: var(--red);
      font-weight: 600;
      text-transform: uppercase;
    }

    .tl-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--navy);
      margin: 0.2rem 0;
    }

    .tl-desc {
      font-size: 0.8rem;
      color: #666;
      line-height: 1.6;
    }

    /* ── PRESENTES ── */
    .gift-intro {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.25rem;
      color: var(--navy);
      line-height: 1.7;
      margin-bottom: 3rem;
    }

    .gift-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .gift-card {
      background: white;
      border: 1px solid rgba(26,42,94,0.1);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: default;
    }

    .gift-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(26,42,94,0.1);
    }

    .gift-icon { font-size: 2.5rem; margin-bottom: 1rem; }

    .gift-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    .gift-desc {
      font-size: 0.78rem;
      color: #666;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .gift-detail {
      display: inline-block;
      padding: 0.4rem 1.2rem;
      background: var(--light-blue);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.05em;
      font-family: 'Montserrat', monospace;
    }

    /* ── RSVP ── */
    .rsvp-box {
      background: var(--navy);
      color: white;
      padding: 4rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .rsvp-box::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      border-radius: 50%;
      border: 40px solid rgba(255,255,255,0.04);
    }

    .rsvp-box .section-label { justify-content: center; color: var(--gold); }
    .rsvp-box .section-label::before { background: var(--gold); }

    .rsvp-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 300;
      color: white;
      margin: 0.5rem 0 1rem;
    }

    .rsvp-text {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .rsvp-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: white;
      color: var(--navy);
    }
    .btn-white:hover { background: var(--gold); }

    .btn-ghost {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.4);
      color: white;
    }
    .btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }

    /* ── CONTACTS ── */
    .contacts-row {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .contact-item {
      display: flex;
      flex-direction: column;
    }

    .contact-name {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .contact-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--navy);
    }

    /* ── FOOTER ── */
    footer {
      text-align: center;
      padding: 3rem 2rem;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: #aaa;
      text-transform: uppercase;
    }

    footer .footer-mono {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--navy);
      display: block;
      margin-bottom: 0.5rem;
    }

    /* ── FULL WIDTH WRAPPERS ── */
    .section-full {
      padding: 6rem clamp(2rem, 8vw, 8rem);
    }

    .section-full > .inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ── LANGUAGE SWITCHER ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      margin-left: 1rem;
    }

    .lang-btn {
      background: none;
      border: 1px solid transparent;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--navy);
      padding: 0.25rem 0.4rem;
      line-height: 1;
      transition: color 0.2s, border-color 0.2s;
      opacity: 0.5;
    }

    .lang-btn:hover { opacity: 0.85; }

    .lang-btn.active {
      border-color: var(--red);
      color: var(--red);
      opacity: 1;
    }

    /* ── NAV TOGGLE (hamburger) ── */
    .nav-toggle {
      display: none;
    }

    /* responsive */
    @media (max-width: 700px) {
      nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        transition: transform 0.3s ease;
      }

      nav.nav-hidden {
        transform: translateY(-100%);
      }

      .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.85rem 1.5rem;
        align-self: flex-end;
      }

      .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        transition: transform 0.3s, opacity 0.3s;
        transform-origin: center;
      }

      nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
      nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      nav a {
        display: none;
        padding: 0.75rem 1.5rem;
        border-top: 1px solid rgba(26,42,94,0.08);
        font-size: 0.75rem;
      }

      nav.open a {
        display: block;
      }

      .lang-switcher {
        margin-left: 0;
        padding: 0.6rem 1.5rem;
        border-top: 1px solid rgba(26,42,94,0.08);
        justify-content: flex-start;
      }
    }

    @media (max-width: 600px) {
      .rsvp-box { padding: 3rem 1.5rem; }
      section { padding: 4rem 1.5rem; }
    }
  

    @media (max-width: 700px) {
      .historia-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    }