/* ===================================================================
   ICONIQ GIFTS — DIWALI HAMPERS LANDING PAGE
   Palette: warm red/maroon primary, cream background, gold accents
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
    --maroon: #8B1E2F;
    --maroon-dark: #6d1624;
    --maroon-soft: #a83848;
    --gold: #C9A227;
    --gold-light: #e6c65c;
    --cream: #FFF8EF;
    --cream-deep: #f6ead9;
    --ink: #3a2a2a;
    --muted: #7a6a63;
    --white: #ffffff;
    --shadow-sm: 0 4px 10px rgba(139, 30, 47, 0.08);
    --shadow-md: 0 12px 28px rgba(139, 30, 47, 0.14);
    --radius: 14px;
    --header-h: 92px;
    --maxw: 1200px;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--cream);
    overflow-x: hidden;
    line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--maroon);
    text-align: center;
    margin: 0 0 .5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.gold-rule {
    width: 72px;
    height: 3px;
    margin: .75rem auto 1.75rem;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: 0;
}

section { padding: 3.5rem 0; }

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===================================================================
   1. HEADER
   =================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 248, 239, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cream-deep);
    transition: box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.25rem;
    gap: 1rem;
}

.logo img { height: 76px; width: auto; }

.main-nav { display: none; gap: 1.75rem; }
.main-nav a {
    color: var(--ink);
    font-weight: 500;
    font-size: .95rem;
    position: relative;
    transition: color .25s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}
.main-nav a:hover { color: var(--maroon); }
.main-nav a:hover::after { width: 100%; }

.btn-cta {
    background: var(--maroon);
    color: var(--white);
    padding: .6rem 1.15rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    border: 1px solid var(--maroon);
    transition: background .25s, transform .2s;
    white-space: nowrap;
    cursor: pointer;
}
.btn-cta:hover { background: var(--maroon-dark); transform: translateY(-2px); }

.header-actions { display: flex; align-items: center; gap: .75rem; }

.menu-toggle {
    display: inline-flex;
    background: none;
    border: none;
    color: var(--maroon);
    cursor: pointer;
    padding: .35rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-deep);
    padding: .5rem 1.25rem 1rem;
    position: sticky;
    top: var(--header-h);
    z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: .7rem .25rem;
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid var(--cream-deep);
}
.mobile-menu a:last-child { border-bottom: 0; }

@media (min-width: 940px) {
    .main-nav { display: flex; }
    .menu-toggle { display: none; }
}

/* ===================================================================
   MARQUEE / INFO TICKER
   =================================================================== */
.ticker {
    background: var(--maroon);
    color: var(--cream);
    overflow: hidden;
    white-space: nowrap;
    padding: .55rem 0;
    border-block: 1px solid var(--gold);
}
.ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    padding-left: 2.5rem;
    animation: ticker-scroll 22s linear infinite;
    font-weight: 600;
    letter-spacing: .06em;
    font-size: .82rem;
    text-transform: uppercase;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { display: inline-flex; align-items: center; }
.ticker__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===================================================================
   2. HERO
   =================================================================== */
.hero {
    background: var(--cream);
    padding: 0;
}
.hero__heading {
    text-align: center;
    margin-bottom: 1.75rem;
}
.hero__eyebrow {
    display: inline-block;
    color: var(--maroon);
    background: var(--cream-deep);
    border: 1px solid var(--gold);
    padding: .3rem .9rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}
.hero__title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    color: var(--maroon);
    margin: 0;
    line-height: 1.1;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
    color: var(--muted);
    max-width: 560px;
    margin: .8rem auto 0;
}

.hero__posters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1040px;
    margin: 0 auto;
}
.poster-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold);
    cursor: pointer;
    background: var(--white);
    aspect-ratio: 16 / 11;
    max-height: 68vh;
}
.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.poster-card:hover img { transform: scale(1.05); }
.poster-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.25rem 1.25rem 1.1rem;
    background: linear-gradient(to top, rgba(109, 22, 36, 0.92), transparent);
    color: var(--white);
}
.poster-card__overlay h3 {
    font-family: var(--font-head);
    margin: 0 0 .25rem;
    font-size: 1.25rem;
}
.poster-card__overlay p { margin: 0; font-size: .85rem; opacity: .9; }

@media (max-width: 640px) {
    .hero__posters { grid-template-columns: 1fr; }
    .poster-card { aspect-ratio: 16 / 10; max-height: 46vh; }
}

/* ---------- Hero slider (Slider/1.jpg & Slider/2.jpg) — full bleed ---------- */
.hero-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);   /* break out of the .hero container */
    overflow: hidden;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.hero-slider__track {
    display: flex;
    transition: transform .6s ease;
}
.hero-slide {
    min-width: 100%;
    height: calc(100vh - var(--header-h));
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(139, 30, 47, 0.55);
    color: var(--cream);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s;
}
.hero-slider__nav:hover { background: var(--maroon); }
.hero-slider__nav--prev { left: 14px; }
.hero-slider__nav--next { right: 14px; }
.hero-slider__dots {
    position: absolute;
    left: 0; right: 0; bottom: 14px;
    display: flex;
    justify-content: center;
    gap: .5rem;
}
.hero-slider__dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 248, 239, 0.55);
    cursor: pointer;
    transition: background .25s, transform .25s;
}
.hero-slider__dots button.active { background: var(--gold); transform: scale(1.2); }
@media (max-width: 640px) {
    .hero-slide { height: calc(100vh - var(--header-h)); }
}

/* ===================================================================
   3. FEATURED CLIENTS
   =================================================================== */
.clients { background: var(--white); }
.logo-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: logo-scroll 30s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__track img {
    height: 42px;
    width: auto;
    filter: grayscale(100%);
    opacity: .7;
    transition: filter .3s, opacity .3s;
}
.logo-marquee__track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes logo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===================================================================
   4. DIWALI HAMPER COLLECTION (tiered tabs)
   =================================================================== */
.collection { background: var(--cream); }

.tier-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 2.25rem;
}
.tier-tab {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    color: var(--maroon);
    background: var(--white);
    border: 1.5px solid var(--gold);
    padding: .55rem 1.35rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background .25s, color .25s, transform .2s;
}
.tier-tab:hover { transform: translateY(-2px); }
.tier-tab.active {
    background: var(--maroon);
    color: var(--white);
    border-color: var(--maroon);
}

.hamper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* fade transition for tier switching */
.hamper-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, opacity .4s ease;
    animation: card-fade .45s ease both;
}
.hamper-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.hamper-card.is-hidden { display: none; }
@keyframes card-fade {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

.hamper-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--maroon-dark);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: .3rem .6rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    max-width: calc(100% - 24px);
}

/* Placeholder image box — replace inner div with <img> when ready */
.hamper-img {
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        repeating-linear-gradient(45deg, var(--cream-deep) 0 12px, #f1e3cf 12px 24px);
    border-bottom: 2px dashed var(--gold);
    color: var(--maroon-soft);
}
.hamper-img i { font-size: 2.4rem; opacity: .5; }
.hamper-img img {                 /* used when a real <img> is dropped in */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hamper-body {
    padding: 1.1rem 1.1rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}
.hamper-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--maroon);
    margin: 0;
}
.hamper-price {
    align-self: flex-start;
    background: var(--maroon);
    color: var(--white);
    font-weight: 700;
    font-size: .82rem;
    padding: .2rem .7rem;
    border-radius: 999px;
}
.hamper-desc {
    color: var(--muted);
    font-size: .86rem;
    margin: 0;
    flex: 1;
}
.hamper-btn {
    margin-top: .35rem;
    text-align: center;
    background: transparent;
    color: var(--maroon);
    border: 1.5px solid var(--maroon);
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    transition: background .25s, color .25s;
}
.hamper-btn:hover { background: var(--maroon); color: var(--white); }

/* ===================================================================
   5. ABOUT US
   =================================================================== */
.about { background: var(--white); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.about__img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__content h2 { text-align: left; }
.about__content .gold-rule { margin-left: 0; }
.about__content p { color: var(--muted); }
@media (min-width: 860px) {
    .about__grid { grid-template-columns: 1fr 1.15fr; }
}

/* ===================================================================
   6. HOW IT WORKS — stepper
   =================================================================== */
.how { background: var(--cream); }
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}
.step {
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.step__num {
    width: 46px; height: 46px;
    margin: 0 auto .75rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--maroon);
    color: var(--gold-light);
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.step h3 { margin: 0 0 .35rem; color: var(--maroon); font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: .85rem; }
.step__arrow {
    display: none;
    position: absolute;
    right: -1.05rem; top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.4rem;
    z-index: 2;
}
@media (min-width: 820px) {
    .steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
    .step__arrow { display: block; }
    .step:last-child .step__arrow { display: none; }
}

/* ===================================================================
   7. TESTIMONIALS
   =================================================================== */
.testimonials { background: var(--maroon); color: var(--cream); }
.testimonials .section-title { color: var(--white); }
.testimonials .gold-rule { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }

.tcarousel {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
}
.tcarousel__track {
    display: flex;
    transition: transform .5s ease;
}
.tslide {
    min-width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
}
.tslide__quote {
    font-family: var(--font-head);
    font-size: 3rem;
    line-height: 0;
    color: var(--gold);
    display: block;
    margin-bottom: 1.25rem;
    height: 1rem;
}
.tslide__text { font-size: 1rem; margin: 0 auto 1.25rem; max-width: 620px; }
.tslide__stars { color: var(--gold-light); letter-spacing: .15em; margin-bottom: .5rem; }
.tslide__name { font-weight: 700; margin: 0; }
.tslide__role { font-size: .85rem; opacity: .85; margin: 0; }

.tnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s;
}
.tnav:hover { background: var(--gold); color: var(--maroon-dark); }
.tnav--prev { left: 0; }
.tnav--next { right: 0; }

.tdots { display: flex; justify-content: center; gap: .5rem; margin-top: .5rem; }
.tdot {
    width: 9px; height: 9px; border-radius: 50%;
    border: none; background: rgba(255, 248, 239, 0.4); cursor: pointer;
    transition: background .25s, transform .25s;
}
.tdot.active { background: var(--gold); transform: scale(1.2); }

/* ===================================================================
   8. STATS BAR
   =================================================================== */
.stats { background: var(--cream-deep); }
.stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.stat {
    background: var(--white);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.75rem 1rem;
    box-shadow: var(--shadow-sm);
}
.stat__num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 0;
}
.stat__label { color: var(--muted); font-size: .9rem; margin: .25rem 0 0; }
@media (min-width: 720px) {
    .stats__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================================
   9. ENQUIRY FORM  (structure preserved, restyled only)
   =================================================================== */
.enquiry { background: var(--white); }
.enquiry__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}
.enquiry__banner {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold);
}
.enquiry__form-wrap h2 { text-align: center; }
.enquiry-form { display: flex; flex-direction: column; gap: 1rem; }
.form-input, .form-input-phone {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid var(--cream-deep);
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    background: var(--cream);
    color: var(--ink);
}
.form-input:focus, .form-input-phone:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(139, 30, 47, 0.12);
}
.form-phone-input-group { display: flex; gap: .5rem; }
.country-code-dropdown {
    display: flex; align-items: center;
    padding: 0 .85rem;
    background: var(--cream);
    border: 1px solid var(--cream-deep);
    border-radius: 10px;
    font-size: 1.1rem;
}
.form-input-phone { flex: 1; }
.submit-button {
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: .9rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background .25s, transform .2s;
}
.submit-button:hover { background: var(--maroon-dark); transform: translateY(-2px); }
@media (min-width: 860px) {
    .enquiry__grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   10. FOOTER  (structure preserved)
   =================================================================== */
.site-footer {
    background: var(--maroon-dark);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.footer-column .logo img { height: 84px; margin-bottom: .75rem; }
.footer-title { font-family: var(--font-head); margin: 0 0 .5rem; color: var(--gold-light); }
.footer-subtitle { color: var(--gold-light); margin: 0 0 1rem; font-size: 1.05rem; }
.footer-column p { color: rgba(255, 248, 239, 0.8); font-size: .9rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: .6rem; font-size: .9rem; }
.footer-links a { color: rgba(255, 248, 239, 0.85); transition: color .25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: .6rem; color: rgba(255, 248, 239, 0.85); }
.footer-contact i { color: var(--gold); margin-top: .25rem; }
.newsletter-form { display: flex; gap: .5rem; margin: .75rem 0 1rem; }
.newsletter-input {
    flex: 1; min-width: 0;
    padding: .65rem .85rem;
    border: 1px solid rgba(255, 248, 239, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
}
.newsletter-input::placeholder { color: rgba(255, 248, 239, 0.6); }
.newsletter-button {
    background: var(--gold);
    color: var(--maroon-dark);
    border: none;
    padding: 0 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.social-links { display: flex; gap: .75rem; }
.social-links a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
    transition: background .25s, color .25s;
}
.social-links a:hover { background: var(--gold); color: var(--maroon-dark); }
.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 248, 239, 0.15);
    text-align: center;
    font-size: .85rem;
    color: rgba(255, 248, 239, 0.7);
}
@media (min-width: 720px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; }
}

/* ===================================================================
   FLOATING MOBILE ENQUIRE BUTTON
   =================================================================== */
.float-enquire {
    position: fixed;
    left: 16px;
    bottom: 20px;
    z-index: 900;
    background: var(--maroon);
    color: var(--white);
    padding: .8rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--gold);
}
.float-enquire i { color: var(--gold-light); }
@media (min-width: 940px) { .float-enquire { display: none; } }

/* ===================================================================
   LIGHTBOX (download catalogue)
   =================================================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(58, 20, 28, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox-overlay.hidden { display: none; }
.lightbox-content {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    max-width: 460px;
    width: 100%;
    padding: 2rem 1.75rem;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
}
.lightbox-close {
    position: absolute;
    top: .5rem; right: .75rem;
    background: none; border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--maroon);
    cursor: pointer;
}
.lightbox-content h2 { text-align: center; }

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 900;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold);
    color: var(--maroon-dark);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }
