/* ============================
   VARIABLES & RESET
   ============================ */
:root {
    --gold:        #B8922A;
    --gold-light:  #D4AF37;
    --gold-dark:   #8A6B1E;
    --gold-glow:   rgba(184,146,42,0.10);
    --gold-border: rgba(184,146,42,0.40);
    --black:       #1A1A1A;
    --grey-alt:    #F0EDE8;
    --grey-card:   #FFFFFF;
    --grey-input:  #F5F2ED;
    --grey-mid:    #E0DAD2;
    --grey-muted:  #888888;
    --text:        #1A1A1A;
    --text-soft:   #555555;
    --bg:          #FAF9F6;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Montserrat', Arial, sans-serif;
    --radius:      16px;
    --ease:        0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ============================
   INTRO VIDÉO
   ============================ */
.intro {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #0a0a0a;
    overflow: hidden;
}

.intro-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.intro-video.playing { opacity: 1; }

/* Overlay texte */
.intro-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,10,0.72);
    transition: opacity 0.5s ease;
}

.intro-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    text-align: center;
    padding: 2rem 1.5rem;
    animation: introIn 1.3s ease both;
}

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

.intro-ornament {
    display: block;
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.55; }
}

.intro-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.42em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.intro-names {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 10vw, 4.8rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.65rem;
}

.intro-names em { color: var(--gold-light); font-style: italic; }

.intro-dates {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
}

.intro-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid rgba(212,175,55,0.5);
    background: transparent;
    color: var(--gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    transition: var(--ease);
}

.intro-btn:hover,
.intro-btn:focus-visible {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold-light);
    transform: scale(1.06);
    outline: none;
}

.intro-play { margin-left: 4px; }

.intro-hint {
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.4);
}

.intro.hiding {
    animation: introFadeOut 0.7s ease forwards;
    pointer-events: none;
}

@keyframes introFadeOut {
    to { opacity: 0; }
}

/* ============================
   AUDIO BUTTON
   ============================ */
.audio-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: rgba(250,249,246,0.92);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--ease);
}

.audio-btn:hover { border-color: var(--gold); background: var(--gold-glow); }
.audio-btn.muted { color: var(--grey-muted); }

/* ============================
   LAYOUT
   ============================ */
.container   { width: 100%; max-width: 560px; margin: 0 auto; padding: 0 1.125rem; }
.section-pad { padding: 3rem 0; }
.section-alt { background: var(--grey-alt); }

/* ============================
   CARD
   ============================ */
.card {
    background: var(--grey-card);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--grey-mid);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.gold-border { border-color: var(--gold-border); }

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    width: 100%;
    height: 100svh;          /* safe viewport height on mobile */
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-img-wrap { position: absolute; inset: 0; }

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,0.05) 0%,
        rgba(26,26,26,0.20) 40%,
        rgba(26,26,26,0.82) 100%
    );
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.25rem 1.5rem;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 11vw, 5rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.hero-title .amp { color: var(--gold-light); }

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 0.65rem;
}

.orn-line    { display: block; width: 48px; height: 1px; background: rgba(212,175,55,0.5); }
.orn-diamond { color: var(--gold-light); font-size: 0.75rem; }

.hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.75);
}

/* Scroll indicator */
.scroll-hint {
    position: relative;
    z-index: 2;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.7);
    animation: bounce 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0);   opacity: 0.6; }
    50%       { transform: translateY(6px); opacity: 1;   }
}

/* ============================
   INVITATION
   ============================ */
.card-ornament {
    display: block;
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.invite-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

.gold-divider {
    width: 56px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.25rem auto;
}

.invite-sub {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

.invite-sign {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}

/* ============================
   SAVE THE DATE / COUNTDOWN
   ============================ */
.section-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.std-date {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.std-time {
    font-size: 0.75rem;
    color: var(--grey-muted);
    letter-spacing: 0.15em;
    margin-bottom: 1.75rem;
}

.countdown-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.75rem;
    flex-wrap: nowrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}

.c-num {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 7vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1;
}

.c-lbl {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    color: var(--grey-muted);
    margin-top: 0.25rem;
}

.countdown-sep {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
    padding-top: 0.1rem;
}

.add-cal-label {
    display: block;
    font-size: 0.56rem;
    letter-spacing: 0.36em;
    color: var(--grey-muted);
    margin-bottom: 0.7rem;
}

.cal-btns {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cal {
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    border: 1px solid var(--gold-border);
    background: transparent;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-cal:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* ============================
   PROGRAMME
   ============================ */
.section-heading { text-align: center; margin-bottom: 2rem; }

.section-title {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 0.65rem;
}

/* Titre programme bien lisible, sans label au-dessus */
.section-title-main {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 600;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.gold-bar { width: 36px; height: 2px; background: var(--gold-light); margin: 0 auto; }

.event-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--grey-mid);
    margin-bottom: 1.25rem;
    background: var(--grey-card);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.event-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.event-card:hover .event-img { transform: scale(1.04); }

.event-body {
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.event-pin { font-size: 1.2rem; margin-bottom: 0.6rem; }

.event-tag {
    display: inline-block;
    font-size: 0.56rem;
    letter-spacing: 0.36em;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.event-dt {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--grey-muted);
    margin-bottom: 0.35rem;
}

.event-place {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.1rem;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: var(--gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.04em;
    transition: var(--ease);
}

.btn-maps:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ============================
   COUPLE PHOTO
   ============================ */
.couple-photo-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.75rem;
    border: 1px solid var(--grey-mid);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.couple-photo { width: 100%; display: block; object-fit: cover; }

.closing-block { text-align: center; }

.closing-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-soft);
    margin-bottom: 0.4rem;
}

.closing-names {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text);
}

/* ============================
   RSVP
   ============================ */
.rsvp-card { text-align: left; }

.rsvp-deadline {
    font-size: 0.76rem;
    color: var(--text-soft);
    text-align: center;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

.rsvp-deadline strong { color: var(--gold-dark); }

.rsvp-header-block {
    background: var(--grey-input);
    border-radius: 12px;
    padding: 1.4rem 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--grey-mid);
}

.rsvp-heart {
    display: block;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.rsvp-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.rsvp-subtitle { font-size: 0.76rem; color: var(--text-soft); line-height: 1.6; }

.presence-row { margin-bottom: 1.4rem; }

.form-label-upper {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.33em;
    color: var(--grey-muted);
    margin-bottom: 0.6rem;
}

.presence-btns { display: flex; gap: 0.65rem; }

.pres-btn {
    flex: 1;
    padding: 0.7rem 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--grey-mid);
    background: transparent;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--ease);
}

.pres-btn.active {
    background: var(--black);
    color: #FAF9F6;
    border-color: var(--black);
}

/* --- Compteurs inline --- */
.counters-inline-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.counter-group {
    flex: 1;
    background: var(--grey-input);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border: 1px solid var(--grey-mid);
}

.counter-group .form-label-upper {
    margin-bottom: 0;
    white-space: nowrap;
}

.counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cnt-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
    line-height: 1;
    flex-shrink: 0;
}

.cnt-btn:hover { background: var(--gold-dark); }

.cnt-val {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text);
    min-width: 1.6rem;
    text-align: center;
}

/* --- Champs noms dynamiques --- */
.dynamic-names { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.25rem; }

.dynamic-name-field {
    position: relative;
    animation: slideDown 0.25s ease both;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dynamic-name-field .name-label {
    display: block;
    font-size: 0.56rem;
    letter-spacing: 0.28em;
    color: var(--grey-muted);
    margin-bottom: 0.4rem;
}

/* --- Form fields --- */
.form-group { margin-bottom: 1.1rem; }

.req { color: var(--gold); }
.opt { text-transform: lowercase; letter-spacing: 0; font-size: 0.68rem; color: var(--grey-muted); }

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--grey-mid);
    background: var(--grey-input);
    color: var(--text);
    font-size: 0.88rem;
    font-family: var(--font-sans);
    transition: var(--ease);
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus { border-color: var(--gold); background: #fff; }
.form-input::placeholder { color: #BBBBBB; }

.form-hint {
    display: block;
    font-size: 0.68rem;
    color: var(--grey-muted);
    margin-top: 0.35rem;
    line-height: 1.5;
}

.checkbox-group { display: flex; flex-direction: column; gap: 0.65rem; }

.chk-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--grey-mid);
    background: var(--grey-input);
    transition: var(--ease);
    user-select: none;
}

.chk-label:hover { border-color: var(--gold-border); }

.chk-input { display: none; }

.chk-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 4px;
    border: 2px solid var(--grey-mid);
    background: #fff;
    transition: var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: #fff;
    font-weight: 700;
}

.chk-input:checked + .chk-box { background: var(--gold); border-color: var(--gold); }
.chk-input:checked + .chk-box::after { content: '✓'; }
.chk-label:has(.chk-input:checked) { border-color: var(--gold-border); background: rgba(184,146,42,0.05); }

.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--grey-mid);
    background: var(--grey-input);
    color: var(--text);
    font-size: 0.88rem;
    font-family: var(--font-sans);
    resize: vertical;
    min-height: 88px;
    transition: var(--ease);
    outline: none;
    -webkit-appearance: none;
}

.form-textarea:focus { border-color: var(--gold); background: #fff; }
.form-textarea::placeholder { color: #BBBBBB; }

/* --- WhatsApp --- */
.wa-section { margin-top: 1.5rem; text-align: center; }

.wa-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: var(--grey-muted);
    margin-bottom: 0.7rem;
}

.wa-btns { display: flex; flex-direction: column; gap: 0.65rem; }

.btn-wa {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    border: none;
    background: #25D366;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--ease);
    letter-spacing: 0.02em;
}

.btn-wa:hover { background: #1DB954; transform: translateY(-1px); }

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #1A1A1A;
    text-align: center;
    padding: 2.75rem 1.5rem;
    border-top: 3px solid var(--gold);
}

.footer-ornament {
    display: block;
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.footer-names {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-style: italic;
    font-weight: 300;
    color: #FAF9F6;
    margin-bottom: 0.9rem;
}

.footer-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 0.65rem;
}

.fd-line    { display: block; width: 36px; height: 1px; background: rgba(184,146,42,0.4); }
.fd-diamond { color: var(--gold); font-size: 0.65rem; }

.footer-date {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: #888;
    margin-bottom: 0.35rem;
}

.footer-love {
    font-family: var(--font-serif);
    font-size: 0.92rem;
    font-style: italic;
    color: var(--gold-light);
}

/* ============================
   DRESS CODE
   ============================ */
.dc-intro {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.dc-intro strong {
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
}

.dc-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dc-card {
    flex: 1;
    background: var(--grey-card);
    border-radius: var(--radius);
    border: 1px solid var(--grey-mid);
    padding: 1.5rem 0.9rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--ease);
}

.dc-card:hover {
    border-color: var(--gold-border);
    box-shadow: 0 6px 24px rgba(184,146,42,0.12);
    transform: translateY(-2px);
}

.dc-illustration {
    height: 108px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1rem;
}

.dc-svg {
    height: 100%;
    width: auto;
    color: var(--gold-dark);
}

.dc-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.dc-card-desc {
    font-size: 0.7rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* Palette */
.dc-palette {
    background: var(--grey-card);
    border-radius: var(--radius);
    border: 1px solid var(--grey-mid);
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.dc-palette-label {
    font-size: 0.56rem;
    letter-spacing: 0.38em;
    color: var(--grey-muted);
    margin-bottom: 1.1rem;
}

.dc-swatches {
    display: flex;
    justify-content: center;
    gap: 2.25rem;
    margin-bottom: 1.1rem;
}

.dc-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dc-swatch-color {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border: 2px solid transparent;
}

.dc-swatch--white {
    background: #FFFFFF;
    border-color: var(--grey-mid) !important;
}

.dc-swatch--gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-color: var(--gold-border) !important;
}

.dc-swatch-name {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: var(--grey-muted);
    text-transform: uppercase;
}

.dc-note {
    font-size: 0.68rem;
    font-style: italic;
    color: var(--grey-muted);
    border-top: 1px solid var(--grey-mid);
    padding-top: 0.9rem;
    margin-top: 0.25rem;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================
   RESPONSIVE — tablet & up
   ============================ */
@media (min-width: 480px) {
    .wa-btns { flex-direction: row; }
    .btn-wa  { flex: 1; }

    .counter-group { padding: 0.9rem 1.1rem; }
}

@media (min-width: 600px) {
    .section-pad { padding: 3.5rem 0; }
    .card        { padding: 2.5rem 2rem; }
    .hero-text   { padding: 0 2rem 2rem; }
}

/* ============================
   SMALL PHONES
   ============================ */
@media (max-width: 360px) {
    .countdown-sep  { display: none; }
    .countdown-wrap { gap: 0.75rem; }
    .c-num          { font-size: 1.75rem; }
    .pres-btn       { font-size: 0.7rem; padding: 0.6rem 0.3rem; }
    .counters-inline-row { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-img { object-position: top center; }
}
