
:root {
    --sage-deep: #5a7a62;
    --sage: #7a9e7e;
    --sage-light: #a8c5ab;
    --sage-mist: #c8dbc9;
    --pine: #4a6b52;
    --pine-dark: #3a5542;
    --cream: #f8f5ef;
    --cream-warm: #f0ebe0;
    --cream-dark: #e8e1d3;
    --gold: #b89d6a;
    --gold-light: #d4bc7e;
    --charcoal: #3a3a3a;
    --text-dark: #2c2c2c;
    --text-body: #4a4a4a;
    --text-soft: #7a7a7a;
    --white: #ffffff;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

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

/* NAV */
nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    padding: 1rem 2rem;
    display: flex; justify-content: center; align-items: center;
    background: rgba(248,245,239,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184,157,106,0.12);
    transition: all 0.4s ease;
}
nav.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(248,245,239,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-menu {
    display: flex; align-items: center; justify-content: center;
    gap: 1.8rem; flex-wrap: wrap;
}
.nav-hamburger { display: none; }
nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400; font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; color: var(--pine);
    padding: 0.3rem 0; position: relative; transition: color 0.3s;
}
nav a::after {
    content:''; position:absolute; bottom:0; left:50%;
    width:0; height:1px; background:var(--gold);
    transition: all 0.3s; transform: translateX(-50%);
}
nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }
.lang-switcher {
    display: flex; align-items: center; gap: 0.5rem;
    padding-left: 0.75rem;
    margin-left: 0.75rem;
    border-left: 1px solid rgba(184,157,106,0.3);
}
.lang-switcher .lang-sep {
    color: rgba(184,157,106,0.45);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
}
nav a.lang-active { color: var(--gold); }
nav a.lang-active::after { width: 100%; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: #2c3a2e;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%); }
.hero-bg-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 45% at 50% 65%, rgba(0,0,0,0.55) 0%, transparent 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 2rem; color: #fff; }

.hero-names {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    opacity:0; animation: fadeUp 1.2s 0.5s ease forwards;
}
.hero-names .amp {
    font-family: 'Great Vibes', cursive;
    color: var(--sage-deep); margin: 0 0.2em;
}
.hero-date-line {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400; font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--text-dark); margin-bottom: 0.6rem;
    opacity:0; animation: fadeUp 1s 0.8s ease forwards;
}
.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1.1rem;
    color: var(--sage-deep); margin-bottom: 2.5rem;
    opacity:0; animation: fadeUp 1s 1s ease forwards;
}
.countdown {
    display: flex; gap: 2rem; justify-content: center;
    opacity:0; animation: fadeUp 1s 1.2s ease forwards;
}
.countdown-item { text-align: center; }
.countdown-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; font-size: 2.8rem;
    color: var(--text-dark); line-height: 1;
}
.countdown-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300; font-size: 0.55rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--sage-deep); margin-top: 0.3rem;
}
.hero .hero-names,
.hero .hero-date-line,
.hero .hero-names .amp,
.hero .hero-tagline,
.hero .countdown-num,
.hero .countdown-label {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 2px 12px rgba(0,0,0,0.5);
}
.scroll-hint {
    position:absolute; bottom:2rem; left:50%;
    transform: translateX(-50%); z-index:10;
    opacity:0; animation: fadeUp 1s 1.8s ease forwards;
}
.scroll-hint span {
    display:block; width:1px; height:35px;
    background: linear-gradient(to bottom, var(--sage), transparent);
    margin:0 auto; animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.7)} 50%{opacity:1;transform:scaleY(1)} }

/* GENERAL */
section { padding: 5rem 2rem; max-width: 960px; margin: 0 auto; }
.full-width { max-width: 100%; }
.section-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400; font-size: 0.6rem;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--sage); text-align: center; margin-bottom: 0.8rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; font-size: clamp(1.8rem,4.5vw,2.8rem);
    color: var(--text-dark); text-align:center;
    margin-bottom: 0.6rem; line-height:1.2;
}
.section-divider {
    width:40px; height:1px; background:var(--gold);
    margin: 0 auto 2.5rem; position:relative;
}
.section-divider::after {
    content:''; position:absolute; top:-2px; left:50%;
    width:5px; height:5px; border:1px solid var(--gold);
    transform: translateX(-50%) rotate(45deg);
}

/* US */
.us-section { background: var(--white); max-width:100%; padding:5rem 2rem; }
.us-section .inner { max-width:900px; margin:0 auto; }
.us-photos {
    display: flex; align-items:center; justify-content:center;
    gap:2.5rem; margin:2rem 0; flex-wrap:wrap;
}
.us-photo-frame {
    width: 260px; height: 340px; position:relative;
    border: 1px solid rgba(184,157,106,0.2);
    background: var(--cream);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.6rem;
}
.us-photo-frame::before {
    content:''; position:absolute; inset:6px;
    border:1px solid rgba(184,157,106,0.25); pointer-events:none;
}
.us-photo-frame svg { width:32px; height:32px; opacity:0.2; stroke:var(--sage); fill:none; stroke-width:1.5; }
.us-photo-frame span { font-size:0.55rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-soft); opacity:0.5; }
.us-photo-single { width: 560px; height: 380px; padding: 0; overflow: hidden; }
.us-photo-single img { width: 100%; height: 100%; object-fit: cover; display: block; }
.us-text {
    text-align:center; max-width:600px; margin:2rem auto 0;
    font-family:'Cormorant Garamond',serif;
    font-size:1.1rem; line-height:1.9; color:var(--text-body); font-style:italic;
}

/* VENUE */
.venue-section { background: var(--white); max-width:100%; padding:5rem 2rem; }
.venue-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; align-items: center;
    max-width: 900px; margin: 0 auto;
}
.venue-image {
    position: relative; overflow: hidden;
    border: 1px solid rgba(184,157,106,0.2);
}
.venue-image::before {
    content: ''; position: absolute; inset: 8px;
    border: 1px solid rgba(184,157,106,0.25);
    pointer-events: none; z-index: 1;
}
.venue-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.venue-info h3 { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:1.6rem; color:var(--text-dark); margin-bottom:0.4rem; }
.venue-addr { font-size:0.75rem; color:var(--text-soft); letter-spacing:0.1em; margin-bottom:1.2rem; }
.venue-info p { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1rem; line-height:1.9; color:var(--text-body); margin-bottom:1.8rem; }
.venue-links { display: flex; flex-direction: row; gap: 1.5rem; flex-wrap: wrap; }
.venue-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem;
    font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--pine); text-decoration: none;
    border-bottom: 1px solid rgba(184,157,106,0.3);
    padding-bottom: 0.5rem; transition: color 0.3s;
    width: fit-content;
}
.venue-link:hover { color: var(--gold); }
.venue-link svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* GETTING THERE */
.getting-there .inner { max-width:900px; margin:0 auto; }
.transport-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:1rem; }
.transport-card { padding:1.8rem; background:var(--cream); border-left:2px solid var(--gold); }
.transport-card:hover { background:var(--cream-warm); transition:0.3s; }
.transport-card h4 { font-family:'Cormorant Garamond',serif; font-weight:600; font-size:1.15rem; color:var(--text-dark); margin-bottom:0.6rem; display:flex; align-items:center; gap:0.5rem; }
.transport-card h4 svg { width:18px; height:18px; stroke:var(--gold); fill:none; stroke-width:1.5; }
.transport-card p { font-size:0.8rem; line-height:1.8; color:var(--text-soft); }
.transport-card strong { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine); display: block; margin-top: 0.9rem; margin-bottom: 0.3rem; padding-bottom: 0.2rem; border-bottom: 1px solid rgba(184,157,106,0.25); }
.transport-card ol,
.transport-card ul { padding-left: 1.2rem; margin: 0.3rem 0 0.2rem; }
.transport-card ol { list-style: decimal; }
.transport-card ul { list-style: disc; }
.transport-card li { font-size: 0.78rem; line-height: 1.75; color: var(--text-soft); margin-bottom: 0.15rem; }
.transport-note { text-align:center; max-width:600px; margin:2.5rem auto 0; padding:1.5rem; border:1px solid rgba(184,157,106,0.15); background:rgba(184,157,106,0.03); }
.transport-note p { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1rem; line-height:1.8; color:var(--text-body); }

/* ACCOMMODATION */
.stay-section { background: var(--white); max-width:100%; padding:5rem 2rem; }
.stay-layout { display:grid; grid-template-columns:1fr 1fr; gap:2rem; max-width:900px; margin:0 auto; align-items:stretch; }
.accom-card { padding:2rem; background:var(--white); border:1px solid rgba(184,157,106,0.12); text-align:left; transition:0.3s; }
.accom-card:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,0.04); }
.accom-featured { background:var(--cream-warm); border-left:2px solid var(--gold); }
.accom-card h4 { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:1.25rem; color:var(--text-dark); margin-bottom:1.2rem; padding-bottom:0.6rem; border-bottom:1px solid rgba(184,157,106,0.2); }
.accom-body { font-size:0.78rem; line-height:1.8; color:var(--text-soft); }
.accom-body p { margin-bottom: 0.5rem; }
.accom-body a { color: var(--pine); text-decoration: none; border-bottom: 1px solid rgba(184,157,106,0.4); transition: color 0.3s, border-color 0.3s; }
.accom-body a:hover { color: var(--gold); border-color: var(--gold); }
.accom-body strong { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--pine); display: block; margin-top: 1.1rem; margin-bottom: 0.3rem; padding-bottom: 0.2rem; border-bottom: 1px solid rgba(184,157,106,0.25); }
.accom-body strong:first-child { margin-top: 0.4rem; }
.accom-body strong a { color: inherit; border-bottom: none; font-size: inherit; letter-spacing: inherit; text-transform: inherit; font-weight: inherit; }
.accom-body strong a:hover { color: var(--gold); border-bottom: none; }
.accom-note { margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid rgba(184,157,106,0.2); font-style: italic; }
.accom-card p { font-size:0.78rem; line-height:1.7; color:var(--text-soft); }

/* THINGS TO DO */
.activities-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:1rem; }
.activity-card { padding:2rem 1.5rem; border-left:2px solid var(--sage-light); background:var(--white); transition:0.3s; }
.activity-card:hover { background:var(--cream-warm); }
.activity-card h4 { font-family:'Cormorant Garamond',serif; font-weight:600; font-size:1.15rem; color:var(--text-dark); margin-bottom:0.5rem; display:flex; align-items:center; gap:0.5rem; }
.activity-card h4 svg { width:18px; height:18px; stroke:var(--sage); fill:none; stroke-width:1.5; flex-shrink:0; }
.activity-card p { font-size:0.8rem; line-height:1.8; color:var(--text-soft); }
.activity-card strong { font-size:0.68rem; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; color:var(--pine); display:block; margin-bottom:0.5rem; padding-bottom:0.2rem; border-bottom:1px solid rgba(184,157,106,0.25); }
.activity-card ul { list-style:none; padding:0; margin:0; }
.activity-card li { font-size:0.78rem; line-height:1.75; color:var(--text-soft); padding:0.25rem 0; border-bottom:1px solid rgba(184,157,106,0.08); display:flex; gap:0.6rem; align-items:baseline; }
.activity-card li:last-child { border-bottom:none; }
.route-label { font-family:'Josefin Sans',sans-serif; font-size:0.6rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--sage-deep); white-space:nowrap; flex-shrink:0; }

/* TIMELINE */
.timeline { position:relative; max-width:550px; margin:2rem auto 0; }
.timeline::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:1px; background:linear-gradient(to bottom, transparent, var(--sage-light), transparent); transform:translateX(-50%); }
.timeline-item { display:flex; align-items:center; margin-bottom:2rem; position:relative; }
.timeline-time { flex:1; text-align:right; padding-right:1.5rem; font-family:'Cormorant Garamond',serif; font-weight:600; font-size:1.2rem; color:var(--sage-deep); }
.timeline-dot { width:8px; height:8px; background:var(--sage); border-radius:50%; flex-shrink:0; z-index:2; box-shadow:0 0 0 3px var(--cream); }
.timeline-desc { flex:1; padding-left:1.5rem; }
.timeline-desc h4 { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:1.05rem; color:var(--text-dark); margin-bottom:0.2rem; }
.timeline-desc p { font-size:0.75rem; color:var(--text-soft); line-height:1.5; }

/* RSVP */
.rsvp-section { background: var(--pine-dark); max-width:100%; padding:5rem 2rem; position:relative; overflow:hidden; }
.rsvp-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 80%, rgba(122,158,126,0.15), transparent 50%),radial-gradient(ellipse at 80% 20%, rgba(143,168,184,0.1), transparent 50%); }
.rsvp-section .inner { max-width:750px; margin:0 auto; position:relative; z-index:2; }
.rsvp-section .section-label { color: var(--sage-light); }
.rsvp-section .section-title { color: var(--cream); }
.rsvp-section .section-divider { background: var(--gold); }
.rsvp-intro { text-align:center; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.05rem; color:var(--sage-light); margin-bottom:1rem; line-height:1.8; }
.rsvp-deadline { text-align:center; font-family:'Josefin Sans',sans-serif; font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(168,197,171,0.55); margin-bottom:2.5rem; }
.rsvp-form { display:flex; flex-direction:column; gap:1.2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label { font-weight:400; font-size:0.55rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--sage-light); margin-top: 10px; }
.form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.06); border:1px solid rgba(168,197,171,0.2);
    padding:0.8rem 0.9rem; font-family:'Josefin Sans',sans-serif; font-weight:300;
    font-size:0.82rem; color:var(--cream); outline:none; transition:border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color:rgba(200,219,201,0.55); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-group select option { background:var(--pine-dark); color:var(--cream); }
.form-group textarea { resize:vertical; min-height:80px; }
.form-group ul { list-style:none; padding:0; margin:0; color:#b89d6a; font-size:0.7rem; }

.guest-block { background:rgba(255,255,255,0.03); border:1px solid rgba(168,197,171,0.12); padding:1.2rem; margin-top:0.5rem; }
.guest-block-title { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:1rem; color:var(--sage-light); margin-bottom:1rem; display:flex; align-items:center; justify-content:space-between; }
.remove-btn { background:none; border:1px solid rgba(168,197,171,0.2); color:var(--sage-light); font-size:0.55rem; padding:0.3rem 0.6rem; cursor:pointer; letter-spacing:0.1em; text-transform:uppercase; font-family:'Josefin Sans',sans-serif; transition:0.3s; }
.remove-btn:hover { border-color:rgba(255,100,100,0.4); color:rgba(255,150,150,0.8); }

.add-btn { background:none; border:1px dashed rgba(168,197,171,0.25); color:var(--sage-light); padding:0.7rem; font-family:'Josefin Sans',sans-serif; font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; cursor:pointer; width:100%; transition:0.3s; margin-top:0.5rem; }
.add-btn:hover { border-color:var(--gold); color:var(--gold); }

.rsvp-submit { display:block; margin:1rem auto 0; padding:1rem 3rem; background:transparent; border:1px solid var(--gold); color:var(--gold-light); font-family:'Josefin Sans',sans-serif; font-weight:400; font-size:0.65rem; letter-spacing:0.3em; text-transform:uppercase; cursor:pointer; transition:0.4s; }
.rsvp-submit:hover { background:var(--gold); color:var(--pine-dark); }
.rsvp-submit:disabled { cursor:not-allowed; }
.rsvp-submit--loading { color:transparent; pointer-events:none; position:relative; }
.rsvp-submit--loading::after { content:''; position:absolute; top:50%; left:50%; width:14px; height:14px; margin:-7px 0 0 -7px; border:1px solid rgba(184,157,106,0.3); border-top-color:var(--gold); border-radius:50%; animation:rsvp-spin 0.7s linear infinite; }
.rsvp-status { text-align:center; font-family:'Josefin Sans',sans-serif; font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; margin-top:0.6rem; margin-bottom:1rem; color:var(--text-soft); }
.rsvp-status strong { font-weight:500; letter-spacing:0.18em; }
.rsvp-status--waiting strong { color:var(--gold-light); }
.rsvp-status--confirmed strong { color:var(--sage-light); }
.rsvp-status--rejected strong { color:#c97b7b; }
.rsvp-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:1rem; }
.rsvp-actions .rsvp-submit { margin:0; }
.rsvp-submit--reject { border-color:rgba(201,123,123,0.6); color:rgba(201,123,123,0.95); }
.rsvp-submit--reject:hover { background:rgba(201,123,123,0.85); color:var(--cream,#fff); }
.rsvp-submit--reject.rsvp-submit--loading { color:transparent; }
.rsvp-submit--reject.rsvp-submit--loading::after { border-color:rgba(201,123,123,0.3); border-top-color:rgba(201,123,123,0.95); }
@keyframes rsvp-spin { to { transform:rotate(360deg); } }
.rsvp-feedback { text-align:center; font-family:'Josefin Sans',sans-serif; font-size:0.85rem; letter-spacing:0.1em; margin-top:1.2rem; }
.rsvp-feedback--success { color:var(--sage-light); }
.rsvp-feedback--error { color:#c97b7b; }

/* FOOTER */
footer { background:var(--charcoal); padding:3rem 2rem; text-align:center; }
footer .f-names { font-family:'Great Vibes',cursive; font-size:1.8rem; color:var(--cream); margin-bottom:0.4rem; }
footer .f-date { font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--text-soft); margin-bottom:1.5rem; }
footer .f-heart { font-size:0.7rem; color:var(--sage); opacity:0.4; }

footer .f-phones { font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--text-soft); margin-bottom:1.5rem; }
footer .f-phones a { color:var(--text-soft); text-decoration:none; transition:color 0.3s; }
footer .f-phones a:hover { color:var(--sage-light); }
footer .f-phones-sep { margin:0 0.8rem; opacity:0.3; }

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

/* RESPONSIVE */
@media(max-width:768px) {
    /* NAV — hamburger */
    nav { justify-content:flex-end; padding:0.85rem 1.2rem; }
    nav.scrolled { padding:0.6rem 1.2rem; }
    .nav-hamburger {
        display:flex; flex-direction:column; justify-content:center; gap:5px;
        background:none; border:none; cursor:pointer; padding:0.3rem; z-index:101;
    }
    .nav-hamburger span { display:block; width:22px; height:1px; background:var(--pine); transition:transform 0.3s, opacity 0.3s; }
    nav.nav-open .nav-hamburger span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
    nav.nav-open .nav-hamburger span:nth-child(2) { opacity:0; transform:scaleX(0); }
    nav.nav-open .nav-hamburger span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
    .nav-menu {
        display:none; position:absolute; top:100%; left:0; right:0;
        flex-direction:column; align-items:center; gap:1.6rem;
        background:rgba(248,245,239,0.98); backdrop-filter:blur(10px);
        padding:2rem 1.5rem 2.5rem;
        border-bottom:1px solid rgba(184,157,106,0.12);
        box-shadow:0 8px 24px rgba(0,0,0,0.06);
    }
    nav.nav-open .nav-menu { display:flex; }
    .lang-switcher { border-left:none; padding-left:0; margin-right:0.75rem; }

    /* HERO */
    .hero-names { white-space:nowrap; font-size:clamp(2.2rem,10vw,4rem); }
    .hero-date-line { font-size:0.9rem; letter-spacing:0.08em; }
    .hero-tagline { font-size:0.95rem; }
    .countdown { gap:1.2rem; }
    .countdown-num { font-size:2rem; }

    /* GENERAL */
    section { padding:3.5rem 1.5rem; }
    .details-grid, .activities-grid, .transport-grid, .form-row { grid-template-columns:1fr; }
    .form-group.full { grid-column:span 1; }

    /* US */
    .us-photos { flex-direction:column; }
    .us-photo-single { width:100%; height:240px; }

    /* VENUE */
    .venue-layout { grid-template-columns:1fr; gap:2rem; }
    .venue-info { text-align:center; }
    .venue-info h3, .venue-addr { text-align:center; }
    .venue-links { flex-direction:column; gap:1rem; align-items:center; }

    /* GETTING THERE */
    .getting-there .section-label { letter-spacing:0.12em; }

    /* RSVP */
    .rsvp-section { padding-bottom:2.5rem; }

    /* STAY */
    .stay-layout { grid-template-columns:1fr; gap:2rem; }

    /* TIMELINE */
    .timeline::before { display:none; }
    .timeline-dot { display:none; }
    .timeline-item { flex-direction:column; align-items:center; text-align:center; margin-bottom:1.8rem; }
    .timeline-time { flex:none; padding:0; text-align:center; }
    .timeline-desc { flex:none; padding:0; text-align:center; }

    /* FOOTER */
    footer .f-phones { display:flex; flex-direction:column; gap:0.4rem; align-items:center; }
    footer .f-phones-sep { display:none; }
}
