:root { --cream:#faf6f0; --ink:#3d2c1e; }
* { box-sizing:border-box; }
body { margin:0; font-family:'Inter',system-ui,sans-serif; color:var(--ink); background:var(--cream); }

.landing { display:flex; min-height:100vh; }
/* Hero image fit:
   - "contain" shows the WHOLE photo (no zoom/crop); empty space uses the backdrop colour below.
   - change to "cover" to fill the panel edge-to-edge (crops the photo, looks more zoomed). */
.hero { flex:1 1 50%; background-size:contain; background-repeat:no-repeat;
        background-position:center; background-color:#2b2622; position:relative;
        display:flex; align-items:flex-end; }
.hero-overlay { padding:48px; color:#fff; width:100%;
        background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0)); }
.hero-couple { font-family:'Playfair Display',Georgia,serif; font-size:2rem; text-shadow:0 2px 12px rgba(0,0,0,.5); }

.content { flex:1 1 50%; display:flex; align-items:center; justify-content:center; padding:48px 32px; }
.content-inner { max-width:460px; text-align:center; }
.eyebrow { letter-spacing:3px; text-transform:uppercase; font-size:.72rem; color:var(--accent); margin:0 0 12px; }
.title { font-family:'Playfair Display',Georgia,serif; font-size:2.6rem; margin:0 0 6px; color:var(--primary); }
.couple { font-size:1.3rem; margin:0 0 20px; color:var(--accent); }
.desc { color:#6b5d50; line-height:1.7; }
.meta { margin:24px 0; display:flex; flex-direction:column; gap:6px; color:#5a4a3a; }
.meta-item { font-size:.95rem; }

.countdown { display:flex; gap:14px; justify-content:center; margin:28px 0; }
.cd { background:#fff; border-radius:14px; padding:14px 10px; min-width:64px; box-shadow:0 6px 20px rgba(61,44,30,.08); }
.cd span { display:block; font-size:1.6rem; font-weight:700; color:var(--primary); }
.cd small { color:#9b8a78; font-size:.68rem; text-transform:uppercase; letter-spacing:1px; }

.btn-rsvp { background:var(--primary); color:#fff; border:0; border-radius:50px;
  padding:15px 40px; font-size:1rem; font-weight:600; cursor:pointer; margin-top:12px;
  box-shadow:0 10px 28px rgba(176,137,104,.4); transition:transform .15s, box-shadow .15s; }
.btn-rsvp:hover { transform:translateY(-2px); box-shadow:0 14px 34px rgba(176,137,104,.5); }
.closed { color:#a08; font-style:italic; }

/* Themes */
body.theme-modern { --cream:#f4f4f6; }
body.theme-botanical { --cream:#f3f6f1; }

/* Modal */
.rsvp-card { border:0; border-radius:20px; }
.rsvp-card .modal-title { font-family:'Playfair Display',serif; color:var(--primary,#b08968); }
.btn-submit { background:var(--primary,#b08968); color:#fff; border:0; border-radius:50px;
  padding:13px; font-weight:600; }
.attending-only { transition:opacity .2s; }

@media (max-width:860px){
  .landing { flex-direction:column; }
  .hero { min-height:38vh; }
  .title { font-size:2.1rem; }
}
