*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --crimson: #8B1A2B; --crimson-dark: #5c0e1a;
      --gold: #c9a84c; --gold-light: #e4c97e;
      --cream: #fdf6ee; --warm-white: #fffaf5;
      --charcoal: #2a2020; --text-mid: #5a4a42; --text-light: #9a8070;
      --border: rgba(139,26,43,0.13);
    }
    html { scroll-behavior: auto; }
    body { font-family: "Raleway", sans-serif; font-weight: 300; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

    /* ══ GATE ══ */
    #gate { position: fixed; inset: 0; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; background-image: url("images/gate-bg.png"); background-size: cover; background-position: center; }
    #gate::before { content: ""; position: absolute; inset: 0; background: rgba(50,6,12,0.76); }
    .gate-orn { width: 130px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 1rem 0; position: relative; z-index: 1; }
    .gate-title { font-family: "Great Vibes", cursive; font-size: clamp(3rem,9vw,5.8rem); color: var(--gold-light); position: relative; z-index: 1; line-height: 1.1; }
    .gate-sub { font-family: "Cormorant Garamond", serif; font-size: 0.78rem; letter-spacing: 0.45em; text-transform: uppercase; color: rgba(255,255,255,0.42); position: relative; z-index: 1; margin-top: 0.3rem; }
    .gate-form { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; margin-top: 0.6rem; position: relative; z-index: 1; }
    #pw-input { background: rgba(255,255,255,0.09); border: 1px solid rgba(201,168,76,0.4); color: #fff; padding: 0.8rem 1.6rem; font-family: "Cormorant Garamond", serif; font-size: 1rem; letter-spacing: 0.2em; text-align: center; width: 240px; outline: none; transition: border-color 0.3s; }
    #pw-input::placeholder { color: rgba(255,255,255,0.28); }
    #pw-input:focus { border-color: var(--gold); }
    .gate-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold-light); padding: 0.65rem 2.8rem; font-family: "Cormorant Garamond", serif; font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; transition: background 0.3s, color 0.3s; }
    .gate-btn:hover { background: var(--gold); color: var(--crimson-dark); }
    #pw-error { font-family: "Cormorant Garamond", serif; font-style: italic; color: #ffb5b5; font-size: 0.9rem; min-height: 1.1em; }

    /* ══ SITE ══ */
    #site { display: none; }
    #site.visible { display: block; }

    /* ══ NAV ══ */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 4rem; background: rgba(255,250,245,0.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: padding 0.3s; }
    nav.scrolled { padding: 0.75rem 4rem; }
    .nav-logo { font-family: "Great Vibes", cursive; font-size: 1.2rem; color: var(--crimson); text-decoration: none; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { font-family: "Cormorant Garamond", serif; font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; color: var(--text-mid); transition: color 0.25s; }
    .nav-links a:hover { color: var(--crimson); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 22px; height: 1px; background: var(--crimson); display: block; }
    .mob-nav {
      display: flex; position: fixed; inset: 0;
      background: var(--cream);
      flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
      z-index: 199;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s;
    }
    .mob-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .mob-nav a {
      font-family: "Cormorant Garamond", serif; font-size: 1.5rem; letter-spacing: 0.12em;
      color: var(--crimson); text-decoration: none;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s;
    }
    .mob-nav.open a {
      opacity: 1; transform: none;
    }
    .mob-nav.open a:nth-child(2) { transition-delay: 0.08s; }
    .mob-nav.open a:nth-child(3) { transition-delay: 0.14s; }
    .mob-nav.open a:nth-child(4) { transition-delay: 0.20s; }
    .mob-nav.open a:nth-child(5) { transition-delay: 0.26s; }
    .mob-nav.open a:nth-child(6) { transition-delay: 0.32s; }
    .mob-nav a:hover { color: var(--gold); }
    .mob-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.5rem; color: var(--text-mid); cursor: pointer; transition: color 0.2s; }
    .mob-close:hover { color: var(--crimson); }

    /* ══ HERO ══ */
    #hero {
      min-height: 100vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      padding: 12rem 2rem 6rem;
      background-image: url("images/gate-bg.png");
      background-size: cover; background-position: center;
      position: relative; overflow: hidden;
    }
    #hero::before {
      content: ""; position: absolute; inset: 0;
      background: rgba(28,5,10,0.55);
      pointer-events: none;
    }
    /* subtle corner ornaments */
    #hero::after {
      content: ""; position: absolute; inset: 2.5rem;
      border: 1px solid rgba(201,168,76,0.22);
      pointer-events: none;
    }
    .hero-eyebrow { font-family: "Cormorant Garamond", serif; font-size: 0.75rem; letter-spacing: 0.55em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; z-index: 2; animation: fadeUp 0.8s ease both; }
    .hero-name { font-family: "Great Vibes", cursive; font-size: clamp(5rem, 11vw, 10rem); color: var(--gold-light); line-height: 1; z-index: 2; }
    .hero-name.n1 { animation: fadeUp 0.9s ease 0.08s both; }
    .hero-and { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1rem,2.2vw,1.6rem); color: var(--gold); margin: 0.3rem 0; z-index: 2; animation: fadeUp 0.9s ease 0.14s both; }
    .hero-name.n2 { animation: fadeUp 0.9s ease 0.2s both; }
    .hero-rule { width: 100px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 2.2rem auto; z-index: 2; animation: fadeUp 0.9s ease 0.26s both; }
    .hero-tagline { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1rem,1.8vw,1.35rem); color: rgba(255,255,255,0.82); line-height: 2; max-width: 500px; z-index: 2; animation: fadeUp 0.9s ease 0.3s both; }
    .hero-date { font-family: "Raleway", sans-serif; font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 1.2rem; z-index: 2; animation: fadeUp 0.9s ease 0.34s both; }
    .hero-divider { width: 60px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 2.8rem auto 2.4rem; z-index: 2; animation: fadeUp 0.9s ease 0.38s both; }
    .hero-welcome { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,0.75); line-height: 2; max-width: 580px; z-index: 2; animation: fadeUp 0.9s ease 0.42s both; }
    .hero-cta { display: inline-block; margin-top: 2.8rem; font-family: "Cormorant Garamond", serif; font-size: 0.82rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; border: 1px solid var(--gold); padding: 0.95rem 3rem; transition: background 0.3s, color 0.3s; z-index: 2; animation: fadeUp 0.9s ease 0.48s both; }
    .hero-cta:hover { background: var(--gold); color: var(--crimson-dark); }

    /* ══ SHARED SECTION ══ */
    .sec-wrap { max-width: 1100px; margin: 0 auto; }
    .sec-eye { font-family: "Cormorant Garamond", serif; font-size: 0.72rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }
    .sec-head { font-family: "Great Vibes", cursive; font-size: clamp(2.5rem,6vw,4.5rem); color: var(--crimson); margin-bottom: 0.8rem; }
    .sec-rule { width: 55px; height: 1px; background: var(--gold); margin-bottom: 2.5rem; }
    .day-sep { display: flex; align-items: center; gap: 1.5rem; margin: 3rem 0 0; }
    .day-sep-line { flex: 1; height: 1px; background: var(--border); }
    .day-sep-txt { font-family: "Cormorant Garamond", serif; font-size: 0.7rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

    /* ══ SCHEDULE ══ */
    #schedule { padding: 6rem 2rem; background: var(--cream); }

    /* Event card: full-width image on top, text below */
    .event-card { border: 1px solid var(--border); overflow: hidden; background: var(--warm-white); margin-top: 0; opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .event-card.in-view { opacity: 1; transform: none; }
    .event-img { width: 100%; height: 300px; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
    .event-card:hover .event-img { transform: scale(1.03); }
    .event-body { padding: 1.6rem 2rem 1.8rem; }
    .event-badge { display: inline-block; font-family: "Raleway", sans-serif; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; background: var(--crimson); color: #fff; padding: 0.2rem 0.75rem; margin-bottom: 0.5rem; }
    .event-name { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 500; color: var(--crimson); margin-bottom: 0.2rem; }
    .event-time { font-family: "Raleway", sans-serif; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
    .event-desc { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 0.9rem; color: var(--text-mid); line-height: 1.4; margin-bottom: 1rem; }
    .event-chips { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
    .event-chip { font-family: "Raleway", sans-serif; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
    .event-chip::before { content: "◆"; color: var(--gold); font-size: 0.42rem; }

    /* Uniform 3-column grid — all cards same size */
    .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
    .events-grid--one { grid-template-columns: repeat(3, 1fr); }
    .events-grid--one .event-card { grid-column: 1 / 2; }

    /* ══ TRAVEL (mosaic) ══ */
    #travel { padding: 0; background: var(--warm-white); }
    .travel-header { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem 3rem; }

    .travel-mosaic {
      display: grid;
      grid-template-columns: 1.8fr 1.5fr 1.5fr;
      grid-template-rows: auto auto auto;
      grid-template-areas:
        "photo  hotel   hotel"
        "photo  flying  venue"
        "bridge around  todo";
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem 6rem;
      gap: 1.5rem;
    }

    /* Photo panels */
    .tm-photo  { grid-area: photo;  background-image: url("images/travel.png"); background-size: cover; background-position: center; min-height: 560px; }
    .tm-bridge { grid-area: bridge; background-image: url("images/bridge.png"); background-size: cover; background-position: center; min-height: 240px; }

    /* Shared panel animation */
    .tm-panel { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .tm-panel.in-view { opacity: 1; transform: none; }

    /* Hotel card — deep navy colour scheme, no image */
    .tm-hotel { grid-area: hotel; background: #1a2340; padding: 2.5rem 2.75rem; }
    .tm-label { font-family: "Cormorant Garamond", serif; font-size: 0.65rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 0.4rem; }
    .tm-title { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; font-weight: 500; color: #fff; margin-bottom: 0.3rem; }
    .tm-divider { width: 35px; height: 1px; background: var(--gold); margin-bottom: 1.2rem; }
    .tm-hotel p { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.02rem; color: rgba(220,230,255,0.82); line-height: 1.8; margin-bottom: 0.9rem; }
    .tm-code { display: inline-block; border: 1px solid var(--gold); color: var(--gold-light); font-family: "Raleway", sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; padding: 0.3rem 1rem; margin-bottom: 0.9rem; }
    .tm-warning { font-size: 0.95rem !important; color: rgba(220,230,255,0.6) !important; }
    .tm-hotel-link { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
    .tm-hotel-link:hover { color: #fff; }
    .tm-book-link { display: inline-block; font-family: "Cormorant Garamond", serif; font-size: 1rem; color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4); transition: border-color 0.2s, color 0.2s; }
    .tm-book-link:hover { color: #fff; border-color: rgba(201,168,76,0.8); }

    /* Info cards */
    .tm-info { background: var(--cream); border: 1px solid var(--border); padding: 2rem 2.25rem; }
    .tm-flying { grid-area: flying; }
    .tm-venue  { grid-area: venue; }
    .tm-around { grid-area: around; background: rgba(201,168,76,0.05); }
    .tm-todo   { grid-area: todo; background: var(--warm-white); }
    .tm-num { font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 300; color: rgba(139,26,43,0.07); line-height: 1; margin-bottom: 0.2rem; }
    .tm-info h4 { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; font-weight: 500; color: var(--crimson); margin-bottom: 0.7rem; }
    .tm-info p { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
    .tm-address { font-family: "Cormorant Garamond", serif; font-size: 1rem; color: var(--text-mid); font-style: normal; line-height: 1.9; }
    .tm-phone { font-family: "Raleway", sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gold); margin-top: 0.6rem; }
    .tm-list { list-style: none; padding: 0; margin-top: 0.25rem; }
    .tm-list li { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1rem; color: var(--text-mid); padding: 0.2rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 0.3rem; }
    .tm-list li:last-child { border-bottom: none; }
    .tm-list li::before { content: "◆"; color: var(--gold); font-size: 0.38rem; flex-shrink: 0; }

    /* ══ RSVP ══ */
    #rsvp { padding: 6rem 2rem; text-align: center; position: relative; overflow: hidden; background-image: url("images/rsvp-bg.png"); background-size: cover; background-position: center top; }
    #rsvp::before { content: ""; position: absolute; inset: 0; background: rgba(55,8,14,0.83); }
    #rsvp .sec-eye { color: var(--gold-light); position: relative; z-index: 1; }
    #rsvp .sec-head { color: #fff; position: relative; z-index: 1; }
    #rsvp .sec-rule { background: var(--gold-light); margin: 0 auto 2.5rem; position: relative; z-index: 1; }
    #rsvp p { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.18rem; color: rgba(255,255,255,0.78); line-height: 1.9; max-width: 480px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
    .rsvp-btn { display: inline-block; background: transparent; border: 1px solid var(--gold-light); color: var(--gold-light); font-family: "Cormorant Garamond", serif; font-size: 0.85rem; letter-spacing: 0.35em; text-transform: uppercase; padding: 1rem 3.5rem; text-decoration: none; transition: background 0.3s, color 0.3s, border-color 0.3s; position: relative; z-index: 1; }
    .rsvp-btn:hover { background: var(--gold); color: var(--crimson-dark); border-color: var(--gold); }
    .rsvp-note { margin-top: 1.5rem; font-family: "Raleway", sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); position: relative; z-index: 1; }

    /* ══ FAQ ══ */
    #faq { padding: 6rem 2rem; position: relative; background-image: url("images/faq-bg.png"); background-size: cover; background-position: center 25%; }
    #faq::before { content: ""; position: absolute; inset: 0; background: rgba(253,246,238,0.93); }
    .faq-wrap { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
    .faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; cursor: pointer; }
    .faq-q { font-family: "Cormorant Garamond", serif; font-size: 1.1rem; font-weight: 500; color: var(--crimson); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
    .faq-plus { font-size: 1.3rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-plus { transform: rotate(45deg); }
    .faq-a { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease, padding-top 0.35s ease; }
    .faq-a > span { overflow: hidden; }
    .faq-item.open .faq-a { grid-template-rows: 1fr; padding-top: 1rem; }

    /* ══ MESSAGES ══ */
    #messages { background: var(--cream); }

    /* Carousel */
    .msg-carousel-wrap { position: relative; max-width: 720px; margin: 0 auto; padding: 0 2rem 3rem; min-height: 200px; }
    .msg-carousel { position: relative; }
    .msg-slide {
      display: none;
      text-align: center;
      padding: 1rem 2rem 2rem;
      animation: msgFade 0.6s ease both;
    }
    .msg-slide.active { display: block; }
    @keyframes msgFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
    .msg-quote-mark { font-family: "Cormorant Garamond", serif; font-size: 5rem; color: var(--gold); line-height: 0.5; display: block; margin-bottom: 1rem; opacity: 0.4; }
    .msg-text {
      font-family: "Cormorant Garamond", serif;
      font-style: italic;
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      color: var(--charcoal);
      line-height: 1.85;
      max-width: 580px;
      margin: 0 auto 1.25rem;
    }
    .msg-name {
      font-family: "Raleway", sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
    }
    /* Dots */
    .msg-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
    .msg-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--border);
      border: 1px solid var(--gold);
      cursor: pointer;
      transition: background 0.3s;
    }
    .msg-dot.active { background: var(--gold); }

    /* Leave-a-message form */
    .msg-form-wrap { max-width: 620px; margin: 0 auto; padding: 0 2rem 6rem; }
    .msg-form-card {
      background: #fff;
      border: 1px solid var(--border);
      padding: 2.5rem;
      position: relative;
    }
    .msg-form-card::before {
      content: ""; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--crimson), var(--gold));
    }
    .msg-form-intro {
      font-family: "Cormorant Garamond", serif;
      font-style: italic;
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .msg-input {
      display: block;
      width: 100%;
      border: 1px solid var(--border);
      background: var(--warm-white);
      padding: 0.8rem 1rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 1.05rem;
      color: var(--charcoal);
      outline: none;
      margin-bottom: 1rem;
      transition: border-color 0.25s;
    }
    .msg-input::placeholder { color: var(--text-light); font-style: italic; }
    .msg-input:focus { border-color: var(--crimson); }
    .msg-textarea { resize: vertical; min-height: 110px; }
    .msg-submit-btn {
      background: transparent;
      border: 1px solid var(--crimson);
      color: var(--crimson);
      font-family: "Cormorant Garamond", serif;
      font-size: 0.85rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      padding: 0.9rem 2.5rem;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }
    .msg-submit-btn:hover:not(:disabled) { background: var(--crimson); color: #fff; }
    .msg-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; }
    .msg-form-status {
      font-family: "Cormorant Garamond", serif;
      font-style: italic;
      font-size: 0.95rem;
      margin-top: 0.9rem;
      min-height: 1.2em;
      color: var(--text-mid);
    }

    /* ══ FOOTER ══ */
    footer { background: var(--crimson-dark); padding: 3.5rem 2rem; text-align: center; }
    .f-names { font-family: "Great Vibes", cursive; font-size: 2.8rem; color: var(--gold-light); margin-bottom: 0.3rem; }
    .f-date { font-family: "Cormorant Garamond", serif; font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1.2rem; }
    .f-rule { width: 70px; height: 1px; background: linear-gradient(90deg,transparent,rgba(201,168,76,0.5),transparent); margin: 0 auto 1.2rem; }
    .f-contact { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 0.92rem; color: rgba(255,255,255,0.3); }
    .f-contact a { color: rgba(255,255,255,0.45); text-decoration: none; }
    .f-contact a:hover { color: var(--gold-light); }
    .f-made { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 0.78rem; color: rgba(255,255,255,0.2); margin-top: 1rem; letter-spacing: 0.08em; }

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

    @media(max-width:900px) {
      #hero { padding: 7rem 1.5rem 4rem; }
      #hero::after { inset: 1rem; }
      .events-grid { grid-template-columns: 1fr; }
      .travel-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "photo  photo"
          "hotel  hotel"
          "flying venue"
          "bridge bridge"
          "around todo";
      }
      .tm-photo { min-height: 300px; }
      .tm-bridge { min-height: 220px; }
    }
    @media(min-width:640px) and (max-width:900px) {
      .events-grid { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width:640px) {
      /* Nav */
      nav { padding: 1rem 1.5rem; }
      nav.scrolled { padding: 0.7rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      #hero { padding: 5.5rem 1.5rem 4rem; }
      #hero::after { display: none; }
      .hero-rule { margin: 1.5rem auto; }
      .hero-divider { margin: 2rem auto 1.6rem; }
      .hero-and { font-size: 1.1rem; }
      .hero-welcome { font-size: 1rem; }

      /* Sections */
      #schedule, #faq, #rsvp { padding: 3.5rem 1.25rem; }
      .travel-header { padding: 3.5rem 1.25rem 2rem; }
      .event-img { height: 200px; }
      .event-body { padding: 1.2rem 1.25rem 1.5rem; }

      /* Travel — hide image panels, show info cards only */
      .travel-mosaic {
        grid-template-columns: 1fr;
        grid-template-areas: "hotel" "flying" "venue" "around" "todo";
        padding: 0 1.25rem 3.5rem;
        gap: 1rem;
      }
      .tm-photo, .tm-bridge { display: none; }
      .tm-hotel { padding: 1.75rem 1.5rem; }
      .tm-info { padding: 1.5rem 1.25rem; }

      /* Messages — hidden on mobile */
      #messages { display: none; }

      /* FAQ */
      .faq-q { font-size: 1rem; }
      .faq-a { font-size: 0.98rem; }

      /* Footer */
      footer { padding: 2.5rem 1.5rem; }
      .f-names { font-size: 2.2rem; }
    }

    @media(max-width:400px) {
      .hero-name { font-size: clamp(3.8rem, 18vw, 5rem); }
      .gate-title { font-size: clamp(2.5rem, 12vw, 4rem); }
      .tm-hotel { padding: 1.5rem 1.25rem; }
    }
