/* ═══════════════════════════════════════════════════════════
   wedding.css — Gemeinsames Stylesheet für alle Hochzeitsseiten
   Sabrina & Patrick · 2027
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLEN ── */
:root {
  --green-dark:  #1a2e1e;
  --green-mid:   #243828;
  --green-light: #2f4a33;
  --gold:        #c9a84c;
  --gold-light:  #e8c87a;
  --gold-pale:   #f5e9c8;
  --cream:       #faf6ed;
  --text-light:  #e8dfc8;
  --text-muted:  #9aaa90;
  --radius:      2px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--green-dark);
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .5;
}

/* ── TYPOGRAPHY HELPERS ── */
.font-display {
  font-family: 'Cormorant Garamond', serif;
}
.gold-text   { color: var(--gold-light); }
.muted-text  { color: var(--text-muted); }
.italic      { font-style: italic; }

/* ── SECTION SHARED ── */
.section-divider { border-top: 1px solid rgba(201,168,76,.1); }

.section-label {
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: block;
}

.section-divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(201,168,76,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,168,76,.07) 0%, transparent 60%);
}
.hero-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 20vw, 14rem); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.18);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; letter-spacing: .1em; user-select: none;
}
.hero-eyebrow {
  font-size: .7rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7rem); font-weight: 300;
  line-height: 1; color: var(--gold-light); letter-spacing: .04em;
  opacity: 0; animation: fadeUp .9s .4s forwards;
}
.hero-title em { font-style: italic; color: var(--cream); }
.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto; opacity: 0; animation: fadeUp .8s .6s forwards;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem); font-style: italic;
  color: var(--text-muted); max-width: 520px; line-height: 1.7;
  opacity: 0; animation: fadeUp .8s .8s forwards;
}

/* ── COUNTDOWN ── */
.countdown-section { padding: 5rem 2rem; text-align: center; }
.countdown-grid { display: flex; justify-content: center; gap: clamp(1rem,4vw,3rem); flex-wrap: wrap; }
.countdown-item { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,8vw,5.5rem); font-weight: 300;
  color: var(--gold-light); line-height: 1; min-width: 2ch; text-align: center;
}
.countdown-label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted); }
.countdown-sep {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  color: rgba(201,168,76,.3); line-height: 1; align-self: flex-start; padding-top: .4rem;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--green-dark); padding: .85rem 2rem; border: none; cursor: pointer;
  text-decoration: none; display: inline-block; font-weight: 500;
  transition: opacity .2s, transform .2s; border-radius: var(--radius);
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-secondary {
  font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  background: transparent; color: var(--gold); padding: .85rem 2rem;
  border: 1px solid rgba(201,168,76,.4); cursor: pointer; text-decoration: none;
  display: inline-block; transition: background .2s; border-radius: var(--radius);
}
.btn-secondary:hover { background: rgba(201,168,76,.08); }

.btn-contact {
  font-family: 'Jost', sans-serif; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,.35); background: transparent;
  padding: .5rem 1rem; cursor: pointer; transition: background .2s, color .2s;
  text-decoration: none; display: inline-block; border-radius: var(--radius);
}
.btn-contact:hover { background: rgba(201,168,76,.12); color: var(--gold-light); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,18,11,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border: 1px solid rgba(201,168,76,.2); box-shadow: 0 0 80px rgba(0,0,0,.8); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.5rem; color: var(--gold); cursor: pointer; background: none; border: none; font-family: 'Jost', sans-serif; }
.lightbox-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-muted); font-size: 1rem; white-space: nowrap; }

/* ── LOADING OVERLAY ── */
.loading-overlay {
  position: fixed; inset: 0; background: var(--green-dark); z-index: 9999;
  display: flex; align-items: center; justify-content: center; transition: opacity .5s;
}
.loading-overlay.hidden { opacity: 0; pointer-events: none; }
.loading-dot { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); letter-spacing: .5em; animation: pulse 1.2s ease-in-out infinite; }

/* ── GATE / CODE EINGABE ── */
.gate-overlay {
  position: fixed; inset: 0; z-index: 8888;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.gate-box {
  text-align: center; max-width: 420px; width: 100%;
}
.gate-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 15vw, 8rem); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.2);
  line-height: 1; margin-bottom: 1.5rem; letter-spacing: .1em;
  user-select: none;
}
.gate-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 5vw, 2.5rem); font-weight: 300;
  color: var(--gold-light); margin-bottom: .75rem;
}
.gate-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 2.5rem;
}
.gate-input-row { display: flex; gap: .75rem; justify-content: center; margin-bottom: 1rem; }
.gate-input {
  font-family: 'Jost', sans-serif; font-size: .9rem; letter-spacing: .2em;
  text-transform: uppercase; text-align: center;
  background: var(--green-mid); color: var(--cream);
  border: 1px solid rgba(201,168,76,.3); padding: .75rem 1.25rem;
  border-radius: var(--radius); outline: none; width: 100%; max-width: 240px;
  transition: border-color .2s;
}
.gate-input:focus { border-color: var(--gold); }
.gate-input::placeholder { color: var(--text-muted); letter-spacing: .1em; }
.gate-error {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: #c97a7a; margin-bottom: 1rem; min-height: 1rem;
  opacity: 0; transition: opacity .3s;
}
.gate-error.visible { opacity: 1; }
.gate-hint {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .85rem; color: rgba(154,170,144,.4); margin-top: 2rem;
}

/* ── PROGRESS BAR ── */
.progress-section { padding: 4rem 2rem; text-align: center; }
.progress-box { max-width: 600px; margin: 0 auto; }
.progress-numbers { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.progress-current { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,5vw,3rem); color: var(--gold-light); font-weight: 300; }
.progress-current small { font-family: 'Jost', sans-serif; font-size: .65rem; letter-spacing: .2em; color: var(--text-muted); display: block; }
.progress-goal { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-muted); font-style: italic; }
.progress-bar-bg { width: 100%; height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; margin-bottom: .75rem; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); border-radius: 3px; transition: width 1.5s cubic-bezier(.16,1,.3,1); width: 0%; }
.progress-pct { font-size: .7rem; letter-spacing: .2em; color: var(--text-muted); text-align: right; }

/* ── STORY ── */
.story-section { padding: 5rem 2rem; max-width: 680px; margin: 0 auto; text-align: center; }
.story-section p { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem,2.5vw,1.4rem); line-height: 1.85; color: var(--text-light); font-weight: 300; }
.story-section p + p { margin-top: 1.4rem; }

/* ── FILTER TABS ── */
.filter-bar { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: 'Jost', sans-serif; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,.1);
  padding: .45rem 1.1rem; cursor: pointer; transition: all .2s; border-radius: var(--radius);
}
.filter-btn:hover { color: var(--gold); border-color: rgba(201,168,76,.3); }
.filter-btn.active { color: var(--gold-light); border-color: var(--gold); background: rgba(201,168,76,.08); }

/* ── ARTICLE CARDS ── */
.articles-section { padding: 5rem 2rem; }
.articles-section .section-label { text-align: center; }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,280px),1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.article-card { background: var(--green-mid); border: 1px solid rgba(201,168,76,.15); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.article-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.4); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.article-card[data-hidden="true"] { display: none; }
.article-img { width: 100%; aspect-ratio: 4/3; background: var(--green-light); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.article-img.has-photo { cursor: zoom-in; }
.article-img img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .2s; }
.article-img:hover img { opacity: 1; }
.article-img-placeholder { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(201,168,76,.25); }
.article-status { position: absolute; top: .75rem; right: .75rem; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; padding: .25rem .6rem; border-radius: var(--radius); }
.status-available { background: rgba(201,168,76,.2); color: var(--gold-light); border: 1px solid rgba(201,168,76,.3); }
.status-sold { background: rgba(255,255,255,.06); color: var(--text-muted); border: 1px solid rgba(255,255,255,.1); }
.status-reserved { background: rgba(100,150,100,.15); color: #9ec49e; border: 1px solid rgba(100,150,100,.25); }
.article-body { padding: 1.25rem 1.5rem 1.5rem; }
.article-category { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.article-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--cream); margin-bottom: .35rem; }
.article-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.article-footer { display: flex; align-items: center; justify-content: space-between; }
.article-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold-light); font-weight: 300; }
.article-price small { font-size: .65rem; font-family: 'Jost', sans-serif; color: var(--text-muted); display: block; letter-spacing: .1em; }

/* ── WISHLIST ── */
.wishlist-section { padding: 5rem 2rem; }
.wishlist-section .section-label { text-align: center; }
.wishlist-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text-muted); text-align: center; max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,240px),1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.wish-card { background: var(--green-mid); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; transition: border-color .3s, transform .3s; }
.wish-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-3px); }
.wish-icon { font-size: 1.8rem; }
.wish-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--cream); font-weight: 400; }
.wish-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.wish-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-light); font-weight: 300; }
.wish-funded { height: 3px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.wish-funded-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; transition: width 1.5s cubic-bezier(.16,1,.3,1); width: 0%; }
.wish-funded-label { font-size: .6rem; color: var(--text-muted); letter-spacing: .1em; }
.btn-wish { font-family: 'Jost', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05)); color: var(--gold); border: 1px solid rgba(201,168,76,.3); padding: .55rem 1rem; cursor: pointer; text-decoration: none; display: block; text-align: center; transition: background .2s; border-radius: var(--radius); }
.btn-wish:hover { background: rgba(201,168,76,.2); }

/* ── THANKS ── */
.thanks-section { padding: 5rem 2rem; text-align: center; }
.thanks-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text-muted); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; }
.thanks-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; max-width: 700px; margin: 0 auto; }
.thanks-chip { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--gold-light); background: rgba(201,168,76,.07); border: 1px solid rgba(201,168,76,.2); padding: .4rem 1.1rem; border-radius: var(--radius); }
.thanks-chip span { color: var(--text-muted); font-size: .8rem; font-style: normal; margin-left: .4rem; }

/* ── CONTACT ── */
.contact-section { padding: 5rem 2rem 6rem; text-align: center; }
.contact-box { max-width: 500px; margin: 0 auto; }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,5vw,3rem); font-weight: 300; color: var(--gold-light); margin-bottom: 1rem; }
.contact-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text-muted); line-height: 1.7; margin-bottom: 2.5rem; }
.contact-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SAVE THE DATE SPEZIFISCH ── */
.std-hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 3vw, 1.6rem); font-weight: 300; font-style: italic;
  color: var(--text-muted); letter-spacing: .15em; margin-top: 1rem;
  opacity: 0; animation: fadeUp .8s 1s forwards;
}
.std-details-section { padding: 5rem 2rem; text-align: center; }
.std-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; max-width: 700px; margin: 0 auto 3rem; }
.std-detail-card { background: var(--green-mid); border: 1px solid rgba(201,168,76,.12); border-radius: var(--radius); padding: 1.75rem 1.25rem; }
.std-detail-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.std-detail-label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.std-detail-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); font-weight: 300; line-height: 1.4; }
.std-rsvp-section { padding: 0 2rem 5rem; text-align: center; }
.std-rsvp-box { max-width: 460px; margin: 0 auto; }
.std-rsvp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 300; color: var(--gold-light); margin-bottom: 1rem; }
.std-rsvp-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

/* ── FOOTER ── */
footer { padding: 2rem; text-align: center; border-top: 1px solid rgba(201,168,76,.08); }
footer p { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-style: italic; color: rgba(154,170,144,.5); }
footer span { color: rgba(201,168,76,.4); }

/* ── ANIMATIONEN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: .3; }
  50%      { opacity: 1; }
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.shake { animation: shake .4s ease; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: fixed; top: 1.2rem; right: 1.5rem; z-index: 9999;
  display: flex; align-items: center; gap: .35rem;
  font-family: 'Jost', sans-serif;
}
.lang-btn {
  background: transparent; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: .6rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--text-muted); padding: .3rem .1rem;
  transition: color .2s;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover  { color: var(--gold-light); }
.lang-sep        { font-size: .55rem; color: rgba(201,168,76,.25); }

/* ── TIMELINE ── */
.timeline-section { padding: 5rem 2rem; }
.timeline-section .section-label { text-align: center; }
.timeline {
  max-width: 520px; margin: 0 auto;
  position: relative; padding-left: 1rem;
}
.timeline::before {
  content: ''; position: absolute; left: 2rem; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.2) 15%, rgba(201,168,76,.2) 85%, transparent);
}
.timeline-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  margin-bottom: 2.25rem; position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.28);
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; z-index: 1;
  transition: border-color .3s;
}
.timeline-item:hover .timeline-dot { border-color: rgba(201,168,76,.6); }
.timeline-content { padding-top: .25rem; }
.timeline-time {
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .2rem;
}
.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--cream); font-weight: 300;
  margin-bottom: .2rem;
}
.timeline-desc {
  font-size: .8rem; color: var(--text-muted); line-height: 1.6;
}

/* ── INVITATION PAGE ── */
.invite-text-section { padding: 5rem 2rem; text-align: center; }
.invite-card {
  max-width: 580px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,.18);
  padding: 3rem 3.5rem;
  background: linear-gradient(135deg, var(--green-mid) 0%, rgba(47,74,51,.4) 100%);
  position: relative;
}
.invite-card::before,
.invite-card::after {
  content: '❧';
  font-size: 1.2rem;
  color: rgba(201,168,76,.3);
  position: absolute;
}
.invite-card::before { top: 1rem; left: 1.25rem; }
.invite-card::after  { bottom: 1rem; right: 1.25rem; transform: rotate(180deg); }

.invite-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-style: italic; line-height: 1.9;
  color: var(--text-light); font-weight: 300;
}
.invite-ornament-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
}
.invite-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold-light);
  font-weight: 300; letter-spacing: .05em;
}

/* Personal info cards */
.personal-section  { padding: 4rem 2rem; text-align: center; }
.personal-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1rem; max-width: 600px; margin: 0 auto;
}
.personal-card {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  display: flex; align-items: center; gap: 1rem; min-width: 200px;
}
.personal-card-icon { font-size: 1.4rem; }
.personal-card-body {}
.personal-card-label {
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .2rem;
}
.personal-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--cream); font-weight: 300;
}

/* Practical info */
.practical-section { padding: 5rem 2rem; }
.practical-section .section-label { text-align: center; }
.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem; max-width: 680px; margin: 0 auto;
}
.practical-card {
  background: var(--green-mid); border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
}
.practical-card-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.practical-card-title {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.practical-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.7; font-style: italic; font-weight: 300;
}

/* Invite nav footer */
.invite-nav {
  display: flex; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  padding: 0 2rem 1.5rem;
}

/* ── LOCATION MAP ── */
.location-map-wrap {
  max-width: 480px; margin: 2rem auto 0;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius); overflow: hidden;
  height: 220px; position: relative;
}
.location-map {
  width: 100%; height: 100%; border: none; display: block;
  filter: saturate(.6) brightness(.85);
  transition: filter .3s;
}
.location-map-wrap:hover .location-map { filter: saturate(.8) brightness(.95); }
.location-maps-link {
  display: inline-block; margin-top: .75rem;
  font-family: 'Jost', sans-serif; font-size: .6rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: color .2s;
}
.location-maps-link:hover { color: var(--gold-light); }
.location-maps-link::before { content: '↗ '; }

/* ── STD BACK LINK ── */
.std-back-link {
  display: block; text-align: center;
  font-family: 'Jost', sans-serif; font-size: .65rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: .5rem; transition: color .2s;
  margin-bottom: 1.5rem;
}
.std-back-link:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .countdown-sep { display: none; }
  .gate-input-row { flex-direction: column; align-items: center; }
  .lang-switcher { top: .9rem; right: 1rem; }
}
