/* ==========================================================================
   Salem Travels — Endless Discoveries
   Modern 2026 redesign · Pilgrimage + Hill Stations
   Palette: deep navy + brand red (logo) + saffron/gold (spiritual)
   ========================================================================== */

:root {
    /* Brand — pulled from logo */
    --navy-900: #060a16;
    --navy-800: #0a1226;
    --navy: #101a30;
    --navy-700: #1a2540;
    --navy-600: #2a3a5e;
    --navy-500: #3d4f74;

    --brand: #e24b39;       /* Logo red-orange */
    --brand-dark: #c63a29;
    --brand-soft: #fde9e5;
    --brand-soft-2: #fff5f3;

    --saffron: #f59e0b;     /* Spiritual saffron */
    --saffron-light: #fbbf24;
    --saffron-soft: #fef3c7;
    --gold: #d97706;

    --temple: #b45309;      /* Earth temple tone */
    --hills: #16a34a;       /* Hill station green */
    --hills-soft: #dcfce7;

    /* Neutrals */
    --white: #ffffff;
    --page-bg: #f7f7f7;     /* Page surface — matches logo background so the logo blends seamlessly */
    --cream: #ffffff;       /* section-alt now renders as clean white panels, alternating with page-bg */
    --bg: #f1f1f1;
    --bg-soft: #fafafa;
    --line: #e5e5e5;
    --line-2: #d4d4d4;
    --text: #1a1f2e;
    --muted: #5a6275;
    --muted-2: #8a92a6;

    /* Fonts */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', var(--font);

    /* Radii (modern: bigger) */
    --r-sm: 10px;
    --r: 16px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-2xl: 40px;
    --r-full: 999px;

    /* Shadow (softer, modern) */
    --sh-sm: 0 1px 2px rgba(15, 23, 42, .05);
    --sh: 0 4px 16px rgba(15, 23, 42, .07);
    --sh-md: 0 10px 28px rgba(15, 23, 42, .09);
    --sh-lg: 0 20px 52px rgba(15, 23, 42, .12);
    --sh-xl: 0 32px 72px rgba(15, 23, 42, .16);
    --sh-glow: 0 12px 36px rgba(226, 75, 57, .25);
    --sh-saffron: 0 12px 36px rgba(245, 158, 11, .25);

    /* Layout */
    --container: 1240px;
    --topbar-h: 38px;
    --header-h: 76px;

    /* Motion */
    --ease: cubic-bezier(.2, .7, .2, 1);
    --bounce: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--page-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font: inherit; color: inherit; }

.skip-link {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    background: var(--navy); color: #fff;
    padding: 10px 16px; border-radius: var(--r-sm);
    z-index: 1000;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

/* ---------------- Utilities ---------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy-900); color: #cbd2e0; }
.muted { color: var(--muted-2); font-weight: 400; }

.text-saffron {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-brand {
    background: linear-gradient(135deg, var(--brand) 0%, #f6724d 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.badge-saffron { background: var(--saffron-soft); color: var(--gold); }
.badge-hills { background: var(--hills-soft); color: #15803d; }
.badge-dark {
    background: rgba(255,255,255,.1); color: #fff;
    backdrop-filter: blur(8px);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head .badge { margin-bottom: 16px; }
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--navy);
    margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 18px; }

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
                background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    border: 2px solid transparent;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(226,75,57,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(226,75,57,.5); }
.btn-primary:active { transform: translateY(0); }

.btn-saffron {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(245,158,11,.4);
}
.btn-saffron:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(245,158,11,.5); }

.btn-ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

.btn-white {
    background: #fff;
    color: var(--navy);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: #fff; color: var(--navy); }

.btn-dark {
    background: var(--navy);
    color: #fff;
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }

/* ---------------- Topbar ---------------- */
.topbar {
    background: var(--navy-900);
    color: #cbd2e0;
    font-size: 13px;
    height: var(--topbar-h);
    display: flex; align-items: center;
}
.topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; height: 100%;
}
.topbar-left { display: inline-flex; align-items: center; gap: 8px; }
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--saffron-light);
    box-shadow: 0 0 0 0 rgba(251,191,36,.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,.7); }
    50% { box-shadow: 0 0 0 8px rgba(251,191,36,0); }
}
.topbar-right { display: none; align-items: center; gap: 14px; }
.topbar-right a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-right a:hover { color: #fff; }
.topbar-sep { opacity: .4; }
.topbar-socials { display: inline-flex; align-items: center; gap: 10px; }
.topbar-socials a {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s, transform .2s;
}
.topbar-socials a:hover { background: var(--saffron); color: var(--navy-900); transform: translateY(-1px); }
@media (min-width: 640px) { .topbar-right { display: inline-flex; } }

/* ---------------- Header ---------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* Exact same colour as the logo background — the logo blends seamlessly */
    background: var(--page-bg);
    border-bottom: 1px solid transparent;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
@supports (backdrop-filter: blur(10px)) {
    .header {
        background: rgba(247,247,247,.94);
        backdrop-filter: saturate(180%) blur(14px);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
    }
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}
.logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    /* Header background is set to the same #f7f7f7 as the logo's own
       background, so the logo merges naturally — no blend mode required. */
}
@media (min-width: 768px) { .logo-img { height: 52px; } }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.nav-menu {
    position: fixed;
    inset: calc(var(--topbar-h) + var(--header-h)) 0 auto 0;
    background: var(--page-bg);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    display: flex; flex-direction: column; gap: 4px;
}
.nav-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-link {
    display: block;
    padding: 12px 8px;
    font-weight: 500;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}
.nav-link.active, .nav-link:hover { color: var(--brand); }
.nav-cta { padding-top: 8px; }
.nav-cta .btn { width: 100%; }

.hamburger {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 992px) {
    .hamburger { display: none; }
    .nav-menu {
        position: static;
        flex-direction: row;
        align-items: center;
        padding: 0;
        background: transparent;
        border: 0; box-shadow: none;
        transform: none; opacity: 1; pointer-events: auto;
        gap: 4px;
    }
    .nav-link {
        padding: 10px 14px;
        border: 0;
        border-radius: var(--r-sm);
    }
    .nav-link.active { color: var(--brand); background: var(--brand-soft); }
    .nav-link:hover { background: var(--bg-soft); color: var(--navy); }
    .nav-cta { padding: 0 0 0 8px; }
    .nav-cta .btn { width: auto; }
}

/* ---------------- Hero (refreshed) ---------------- */
.hero {
    position: relative;
    background:
        radial-gradient(800px 500px at 88% 18%, rgba(245,158,11,.28), transparent 60%),
        radial-gradient(700px 420px at 8% 90%, rgba(226,75,57,.22), transparent 60%),
        linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 55%, var(--navy-700) 100%);
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}
.hero .container { position: relative; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--r-full);
    font-size: 13px;
    letter-spacing: .04em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--saffron-light);
    box-shadow: 0 0 0 4px rgba(251,191,36,.25);
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 5.8vw, 64px);
    line-height: 1.04;
    letter-spacing: -.025em;
    margin-bottom: 20px;
}
.hero-sub {
    font-size: clamp(16px, 1.6vw, 19px);
    color: #c8d0de;
    max-width: 560px;
    margin-bottom: 32px;
}
.hero-cta {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 40px);
    color: #fff;
    line-height: 1;
    display: inline-block;
}
.stat-suffix {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(22px, 2.8vw, 32px);
    color: var(--saffron-light);
    margin-left: 2px;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #b6c0d0;
}

.hero-visual {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: visible;
}
.hero-media {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--sh-xl);
    border: 1px solid rgba(255,255,255,.1);
}
.hero-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: var(--r-2xl);
}
.hero-play {
    position: absolute;
    inset: auto 16px 16px 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    background: rgba(255,255,255,.92);
    color: var(--navy);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: var(--sh-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .25s var(--ease), background .25s var(--ease);
    max-width: calc(100% - 32px);
}
.hero-play:hover { transform: translateY(-3px); background: #fff; }
.hero-play-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(238,42,123,.45);
}
.hero-play-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.hero-play-text strong { font-size: 14px; font-weight: 700; color: var(--navy); }
.hero-play-text span { font-size: 11px; color: var(--muted); margin-top: 2px; }
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .98);
    color: var(--navy);
    padding: 12px 16px;
    border-radius: var(--r);
    box-shadow: var(--sh-lg);
    display: flex; align-items: center; gap: 12px;
    max-width: 250px;
    backdrop-filter: blur(8px);
}
.hero-floating-card.hf-2 { right: -8px; bottom: -18px; }
.hero-floating-card:not(.hf-2) { left: -8px; top: 18px; }
.hf-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hf-icon-saffron { background: var(--saffron-soft); color: var(--gold); }
.hf-text strong { display: block; font-size: 14px; }
.hf-text span { font-size: 12px; color: var(--muted); }

@media (min-width: 768px) {
    .hero { padding: 110px 0 130px; }
    .hero-floating-card { padding: 14px 18px; }
    .hero-floating-card:not(.hf-2) { left: -22px; top: 30px; }
    .hero-floating-card.hf-2 { right: -22px; bottom: -22px; }
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 60px; }
    .hero { padding: 130px 0 160px; }
}

/* ---------------- Specialties (NEW – Sabarimala + Yercaud) ---------------- */
.specialties-section {
    padding: 100px 0 80px;
    background: var(--cream);
}
.specialties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.specialty {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    text-decoration: none;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.specialty:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.specialty-img {
    position: absolute; inset: 0;
    z-index: 0;
}
.specialty-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.specialty:hover .specialty-img img { transform: scale(1.08); }
.specialty::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(6,10,22,.85) 100%);
    z-index: 1;
}
.specialty-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    width: 100%;
}
.specialty-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.specialty-tag-saffron { background: rgba(245,158,11,.85); border-color: rgba(245,158,11,1); }
.specialty-tag-hills { background: rgba(22,163,74,.85); border-color: rgba(22,163,74,1); }
.specialty-tag-brand { background: rgba(226,75,57,.85); border-color: rgba(226,75,57,1); }

.specialty h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.specialty p {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    margin-bottom: 14px;
    max-width: 380px;
}
.specialty-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 700;
    font-size: 14px;
    color: var(--saffron-light);
    transition: gap .25s var(--ease);
}
.specialty:hover .specialty-link { gap: 12px; }

/* Layout: featured (large) + 3 smaller */
.specialty-featured { grid-row: span 2; min-height: 480px; }

@media (min-width: 768px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .specialty-featured h3 { font-size: 36px; }
}
@media (min-width: 1024px) {
    .specialties-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .specialty-featured { grid-row: 1 / 3; grid-column: 1; min-height: 540px; }
    .specialty-featured h3 { font-size: 40px; }
}

/* ---------------- Booking / Inquiry ---------------- */
.booking-section {
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
}
.booking-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-xl);
    padding: 32px 22px;
    max-width: 1080px;
    margin: 0 auto;
}
.booking-card-head { text-align: center; margin-bottom: 28px; }
.booking-card-head .badge { margin-bottom: 12px; }
.booking-card-head h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -.01em;
}
.booking-card-head p { color: var(--muted); }

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    padding-left: 4px;
}
.field-full { grid-column: 1 / -1; }
.input { position: relative; display: flex; align-items: center; }
.input > svg {
    position: absolute; left: 14px;
    color: var(--muted-2);
    pointer-events: none;
}
.input input,
.input select,
.input textarea {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    color: var(--navy);
    transition: border-color .2s, box-shadow .2s;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
}
.input select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%235a6275' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 38px;
}
.input input:focus,
.input select:focus,
.input textarea:focus {
    outline: 0;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(226,75,57,.12);
}
.input input::placeholder { color: var(--muted-2); }

.form-foot {
    text-align: center;
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
}
.form-foot a { color: var(--brand); font-weight: 600; }

@media (min-width: 640px) {
    .booking-card { padding: 40px 36px; }
    .booking-form { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .booking-form { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------- Services ---------------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.service {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: transparent;
}
.service-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    background: var(--brand-soft);
    margin-bottom: 20px;
    transition: background .3s, color .3s;
}
.service-icon-saffron { background: var(--saffron-soft); color: var(--gold); }
.service-icon-hills { background: var(--hills-soft); color: #15803d; }
.service-icon svg { width: 30px; height: 30px; }
.service h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}
.service p { color: var(--muted); font-size: 15px; }

.service-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: #cbd2e0;
    border-color: var(--navy);
}
.service-featured h3 { color: #fff; }
.service-featured .service-icon { background: rgba(245,158,11,.2); color: var(--saffron-light); }
.service-featured p { color: #c1c9d8; }

.ribbon {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--saffron);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-full);
    box-shadow: 0 6px 16px rgba(245,158,11,.35);
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------- Destinations (NEW – Tabs) ---------------- */
.dest-tabs {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    padding: 5px;
    margin: 0 auto 44px;
    box-shadow: var(--sh-sm);
}
.dest-tabs-wrap { text-align: center; }
.dest-tab {
    padding: 11px 22px;
    border-radius: var(--r-full);
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    transition: color .25s, background .25s;
    display: inline-flex; align-items: center; gap: 8px;
}
.dest-tab:hover { color: var(--navy); }
.dest-tab.active {
    background: var(--navy);
    color: #fff;
}
.dest-tab svg { width: 18px; height: 18px; }

.dest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.dest-panel { display: none; }
.dest-panel.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    animation: fadeUp .4s var(--ease);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.dest-card {
    position: relative;
    background: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    text-decoration: none;
    color: var(--text);
    display: flex; flex-direction: column;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dest-card-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bg);
}
.dest-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.dest-card:hover .dest-card-img img { transform: scale(1.06); }

.dest-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.dest-pin {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.dest-pin svg { width: 14px; height: 14px; }
.dest-pin-saffron { color: var(--gold); }
.dest-pin-hills { color: #15803d; }

.dest-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -.01em;
}
.dest-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
    flex: 1;
}
.dest-meta {
    display: flex; gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 13px;
}
.dest-meta strong { color: var(--navy); font-weight: 700; }
.dest-card-popular {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(245,158,11,.95);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-full);
    z-index: 1;
}

@media (min-width: 640px) {
    .dest-panel.active { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .dest-panel.active { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------- Fleet ---------------- */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.fleet-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.fleet-img {
    background: linear-gradient(135deg, #f4f7fc 0%, #e8eef8 100%);
    padding: 24px;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 3 / 2;
}
.fleet-img img { width: 88%; }
.fleet-img-photo {
    padding: 0;
    background: var(--bg);
    overflow: hidden;
}
.fleet-img-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.fleet-card:hover .fleet-img-photo img { transform: scale(1.05); }
.fleet-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.fleet-tag {
    align-self: flex-start;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 5px 12px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.fleet-tag-saffron {
    background: var(--saffron-soft);
    color: var(--gold);
}
.fleet-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -.01em;
}
.fleet-features {
    color: var(--muted);
    margin-bottom: 20px;
    flex: 1;
}
.fleet-features li {
    padding: 5px 0 5px 24px;
    position: relative;
    font-size: 14px;
}
.fleet-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 14px; height: 14px;
    background: var(--brand-soft);
    border-radius: 50%;
}
.fleet-features li::after {
    content: '';
    position: absolute;
    left: 4px; top: 16px;
    width: 6px; height: 6px;
    background: var(--brand);
    border-radius: 50%;
}
.fleet-cta {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand);
    font-weight: 700;
    align-self: flex-start;
    transition: gap .25s var(--ease);
}
.fleet-cta:hover { gap: 12px; }

.fleet-card.popular { border-color: var(--saffron); border-width: 2px; }
.fleet-card.popular .ribbon { top: 18px; left: 18px; right: auto; }

@media (min-width: 768px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------- About ---------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}
.about-visual {
    position: relative;
    border-radius: var(--r-xl);
    overflow: visible;
}
.about-visual > img {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-xl);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.experience-badge {
    position: absolute;
    bottom: -22px; left: 22px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--r-lg);
    box-shadow: 0 16px 36px rgba(245,158,11,.45);
    display: flex; align-items: center; gap: 14px;
}
.experience-badge strong {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1;
}
.experience-badge span { font-size: 13px; line-height: 1.3; }

.about-content .badge { margin-bottom: 14px; }
.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.about-content .lead { color: var(--muted); margin-bottom: 26px; font-size: 17px; }

.checklist { display: flex; flex-direction: column; gap: 20px; }
.checklist li { display: flex; gap: 14px; }
.check-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
}
.checklist strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
.checklist p { color: var(--muted); font-size: 14px; }

@media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* ---------------- Gallery ---------------- */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.gallery-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--line);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
    position: absolute; left: 16px; right: 16px; bottom: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
    }
    .gallery-large { grid-row: 1 / 3; aspect-ratio: auto; }
    .gallery-item:not(.gallery-large) { aspect-ratio: 16 / 11; }
}

/* ---------------- Testimonials ---------------- */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
    position: relative;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: 12px; right: 24px;
    font-family: Georgia, serif;
    font-size: 70px;
    color: var(--brand-soft);
    line-height: 1;
}
.stars { color: var(--saffron); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial blockquote {
    color: var(--navy);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.testimonial figcaption strong { display: block; color: var(--navy); font-size: 15px; }
.testimonial figcaption small { color: var(--muted-2); font-size: 13px; }

@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

/* ---------------- CTA Section ---------------- */
.cta-section {
    background:
        radial-gradient(600px 320px at 88% 50%, rgba(245,158,11,.25), transparent 60%),
        radial-gradient(500px 280px at 12% 50%, rgba(226,75,57,.18), transparent 60%),
        linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 60%, var(--navy-700) 100%);
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}
.cta-inner p { color: #c8d0de; max-width: 520px; font-size: 17px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (min-width: 768px) {
    .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------- Contact ---------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 44px;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
a.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--brand);
}
.contact-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
}
.contact-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 6px;
}
.contact-card p { color: var(--muted); font-size: 14px; }

@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }

.map-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh);
    border: 1px solid var(--line);
}
.map-wrap iframe { display: block; }

/* ---------------- Footer ---------------- */
.footer {
    background: var(--navy-900);
    color: #a4adbf;
    padding: 70px 0 26px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: block;
    height: 56px;
    width: auto;
    margin-bottom: 18px;
    /* Convert the dark-text/light-bg logo into a clean white silhouette
       so it blends with the dark navy footer. */
    filter: brightness(0) invert(1);
    opacity: 0.96;
}
.footer p { font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.footer h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer ul li { padding: 5px 0; }
.footer ul li a { color: #a4adbf; transition: color .2s; }
.footer ul li a:hover { color: var(--saffron-light); }
.footer-contact li { font-size: 14px; }

.socials { display: flex; gap: 10px; }
.socials a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    transition: background .2s, transform .2s, color .2s;
}
.socials a:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--muted-2);
}
.footer-links { display: inline-flex; justify-content: center; gap: 20px; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--saffron-light); }

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------------- Floating Action Buttons ---------------- */
.fab {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-lg);
    z-index: 90;
    transition: transform .25s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.04); }
.fab-whatsapp {
    background: #25D366;
    color: #fff;
    animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.back-to-top {
    position: fixed;
    bottom: 92px;
    right: 22px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s, background .25s;
    z-index: 90;
}
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--brand); }

/* ---------------- Toast ---------------- */
.toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%) translateY(80px);
    background: var(--navy);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--r);
    box-shadow: var(--sh-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 200;
    max-width: 92vw;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid var(--saffron);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast.success { border-left-color: #10b981; }
.toast.error { border-left-color: var(--brand); }

/* ---------------- FAQ Section ---------------- */
.faq-section { background: var(--page-bg); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] {
    border-color: transparent;
    box-shadow: var(--sh-md);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    transition: background .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-item summary:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }
.faq-chev {
    flex-shrink: 0;
    color: var(--brand);
    transition: transform .3s var(--ease);
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-answer {
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer a {
    color: var(--brand);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    transition: color .2s var(--ease);
}
.faq-answer a:hover { color: var(--brand-dark); }

@media (min-width: 768px) {
    .faq-item summary { font-size: 18px; padding: 22px 26px; }
    .faq-answer { padding: 0 26px 26px; }
}

/* ---------------- Follow Us / Social Section ---------------- */
.follow-section {
    position: relative;
    background:
        radial-gradient(700px 380px at 90% 10%, rgba(245,158,11,.10), transparent 60%),
        radial-gradient(600px 360px at 10% 90%, rgba(226,75,57,.08), transparent 60%),
        var(--cream);
}
.social-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
}
@media (min-width: 720px) { .social-cta-grid { grid-template-columns: repeat(3, 1fr); } }

.social-cta {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--sh-sm);
    color: var(--navy);
    text-decoration: none;
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.social-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, transparent 60%, currentColor 200%);
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}
.social-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}
.social-cta:hover::before { opacity: .08; }

.social-cta-icon {
    flex: 0 0 56px;
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
}
.social-cta-ig .social-cta-icon {
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}
.social-cta-fb .social-cta-icon { background: #1877f2; }
.social-cta-wa .social-cta-icon { background: #25d366; }

.social-cta-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.social-cta-platform {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--muted);
}
.social-cta-body strong {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    line-height: 1.1;
}
.social-cta-body p {
    font-size: 14px;
    color: var(--muted);
    margin: 4px 0 8px;
    line-height: 1.4;
}
.social-cta-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--brand);
    margin-top: auto;
}
.social-cta-ig .social-cta-link { color: #ee2a7b; }
.social-cta-fb .social-cta-link { color: #1877f2; }
.social-cta-wa .social-cta-link { color: #128c4e; }
.social-cta:hover .social-cta-link svg { transform: translateX(4px); }
.social-cta-link svg { transition: transform .25s var(--ease); }

/* Image strip showcasing real destination photos */
.social-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 560px) { .social-strip { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 992px) { .social-strip { grid-template-columns: repeat(8, 1fr); } }

.ss-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
}
.ss-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.ss-tile figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 6px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    background: linear-gradient(180deg, transparent 0%, rgba(6,10,22,.78) 100%);
    transform: translateY(100%);
    transition: transform .35s var(--ease);
}
.ss-tile:hover img { transform: scale(1.08); }
.ss-tile:hover figcaption { transform: translateY(0); }

/* ---------------- Reveal ---------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Reduced Motion ---------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ---------------- Print ---------------- */
@media print {
    .header, .topbar, .fab, .back-to-top, .toast, .cta-section, .hero-floating-card { display: none !important; }
    .hero { background: #fff; color: #000; padding: 20px 0; }
}
