@import url('branding.css');

/* ==========================================================================
   PAGE HERO — REFINED COMPACT VERSION
   ========================================================================== */
.page-hero {
    position: relative;
    min-height: clamp(500px, 78vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(110px, 11vw, 150px) 0 clamp(56px, 7vw, 80px);
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

/* Hero Overlay */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 0.34) 24%,
        rgba(0, 0, 0, 0.62) 64%,
        rgba(0, 0, 0, 0.88) 100%
    );
    z-index: -2;
}

/* Hero Glow Effect */
.page-hero::after {
    content: "";
    position: absolute;
    inset: -6%;
    background:
        radial-gradient(circle at 50% 18%, rgba(245, 196, 0, 0.18), transparent 28%),
        radial-gradient(circle at 14% 26%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 82% 22%, rgba(245, 196, 0, 0.10), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(245, 196, 0, 0.12), transparent 36%);
    z-index: -1;
    pointer-events: none;
    transform: scale(1.08);
    animation: heroGlow 14s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

/* Hero Container */
.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    justify-content: center;
}

/* Hero Content */
.page-hero-content {
    width: min(100%, 900px);
    padding: clamp(24px, 4vw, 40px);
    color: #fff;
    animation: heroContentReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Badge */
.page-hero .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin: 0 auto 16px;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #111111;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(245, 196, 0, 0.18);
    animation: badgeFloat 4.5s ease-in-out infinite;
}

/* Hero Heading */
.page-hero h1 {
    margin: 0 auto 16px;
    max-width: 14ch;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 2rem + 3.6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 12px 30px rgba(0, 0, 0, 0.38),
        0 2px 8px rgba(0, 0, 0, 0.26);
}

.page-hero h1 .text-yellow,
.page-hero h1 .highlight {
    color: var(--color-primary);
}

/* Hero Text */
.page-hero p {
    margin: 0 auto;
    max-width: 58ch;
    font-size: clamp(0.98rem, 0.95rem + 0.2vw, 1.08rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

/* Decorative Line */
.page-hero-content::after {
    content: "";
    display: block;
    width: 84px;
    height: 3px;
    margin: 24px auto 0;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(245, 196, 0, 0.08) 0%,
        rgba(245, 196, 0, 1) 50%,
        rgba(245, 196, 0, 0.08) 100%
    );
    animation: linePulse 3.8s ease-in-out infinite;
}

/* Grain Overlay */
.page-hero .container::before {
    content: "";
    position: absolute;
    inset: -20px;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: soft-light;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12) 0.6px, transparent 0.8px),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.10) 0.6px, transparent 0.8px),
        radial-gradient(circle at 40% 70%, rgba(255,255,255,0.08) 0.7px, transparent 0.9px),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.06) 0.7px, transparent 0.9px);
    background-size: 180px 180px, 220px 220px, 200px 200px, 240px 240px;
    animation: grainShift 16s linear infinite;
}

/* Hero Animations */
@keyframes heroGlow {
    0% { transform: scale(1.08); opacity: 0.88; }
    50% { transform: scale(1.12) translateY(-8px); opacity: 1; }
    100% { transform: scale(1.09) translateY(6px); opacity: 0.9; }
}

@keyframes heroContentReveal {
    0% { opacity: 0; transform: translateY(28px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes badgeFloat {
    50% { transform: translateY(-4px); }
}

@keyframes linePulse {
    50% { transform: scaleX(1.08); opacity: 1; }
}

@keyframes grainShift {
    50% { transform: translate(-6px, 4px); }
}

/* ==========================================================================
   CONTACT PAGE — PREMIUM BAUNDULE EDITION
   ========================================================================== */
.contact-page-wrapper {
    position: relative;
    isolation: isolate;
}

.contact-page-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(245,196,0,0.06), transparent 40%),
        radial-gradient(circle at 88% 80%, rgba(0,0,0,0.05), transparent 50%);
    z-index: -1;
}

.contact-section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-24);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(28px, 3vw, 48px);
    align-items: stretch;
}

.contact-card {
    position: relative;
    padding: clamp(28px, 3vw, 40px);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,253,248,0.98)),
        var(--color-surface);
    border: 1px solid rgba(245,196,0,0.14);
    box-shadow:
        0 24px 60px rgba(18,18,18,0.10),
        0 10px 30px rgba(18,18,18,0.06),
        inset 0 1px 0 rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    transition:
        transform var(--transition-smooth),
        box-shadow var(--transition-smooth),
        border-color var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 32px 70px rgba(18,18,18,0.14),
        0 14px 40px rgba(18,18,18,0.08);
    border-color: rgba(245,196,0,0.22);
}

/* Contact Form */
.contact-form {
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.field.full {
    grid-column: span 2;
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-size: var(--text-sm);
    font-weight: 700;
}

.required {
    color: var(--color-danger);
}

.field input,
.field textarea {
    width: 100%;
    background: linear-gradient(180deg, #fffdf8 0%, #fffaf0 100%);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: var(--text-sm);
    font-weight: 600;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.field input:hover,
.field textarea:hover {
    border-color: rgba(17,17,17,0.22);
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(245,196,0,0.7);
    background: #fffdf7;
    box-shadow:
        0 0 0 4px rgba(245,196,0,0.12),
        0 12px 28px rgba(22,18,8,0.08);
    transform: translateY(-1px);
}

.form-actions {
    margin-top: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-actions .btn {
    width: 100%;
}

.form-note {
    font-size: var(--text-xs);
    color: var(--color-text-faint);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-divider);
}

.contact-info li:last-child {
    border-bottom: none;
}

.contact-info i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    background: var(--color-primary-soft);
    color: #111;
    flex-shrink: 0;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.contact-info li:hover i {
    transform: translateY(-2px);
    background: rgba(245,196,0,0.18);
}

.contact-info strong {
    display: block;
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.contact-info span,
.contact-info a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.contact-info a:hover {
    color: var(--color-primary);
}

/* Map */
.map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.map iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

/* ==========================================================================
   ABOUT PAGE — BAUNDULE EDITION
   Premium Editorial Luxury UI
========================================================================== */

/* =========================================================
   PAGE WRAPPER
========================================================= */

.about-page-wrapper{
    position:relative;
    overflow:hidden;
    background:#ffffff;
}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero-section{
    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:#0b0b0b;
}

/* =========================================================
   HERO BACKGROUND
========================================================= */

.about-hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.about-hero-image{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transform:scale(1.04);

    filter:
        brightness(.72)
        saturate(1.08)
        contrast(1.04);
}

.about-hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.78),
            rgba(0,0,0,.48)
        );
}

/* =========================================================
   CONTAINER
========================================================= */

.about-hero-section .container{
    position:relative;
    z-index:5;
}

/* =========================================================
   HERO GRID
========================================================= */

.about-hero-grid{
    display:grid;
    grid-template-columns:1.1fr 420px;
    align-items:center;
    gap:60px;

    min-height:100vh;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.about-hero-content{
    max-width:860px;
}

.about-kicker{
    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-bottom:24px;

    color:#f5c400;

    font-size:12px;
    font-weight:700;

    letter-spacing:.22em;
    text-transform:uppercase;
}

.about-kicker::before,
.about-kicker::after{
    content:"";

    width:46px;
    height:1px;

    background:
        linear-gradient(
            to right,
            transparent,
            #f5c400
        );
}

.about-title{
    margin-bottom:30px;

    color:#ffffff;

    font-family:'Cormorant Garamond', serif;

    font-size:clamp(4rem,7vw,7rem);
    font-weight:700;
    line-height:.92;
    letter-spacing:-.05em;
}

.about-title span{
    display:block;

    margin-top:12px;

    color:#f5c400;
}

.about-description{
    max-width:620px;

    color:rgba(255,255,255,.78);

    font-size:19px;
    line-height:1.9;
}

/* =========================================================
   HERO FLOATING CARD
========================================================= */

.about-hero-card{
    position:relative;

    padding:36px 34px;

    border-radius:32px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.14),
            rgba(255,255,255,.08)
        );

    border:1px solid rgba(255,255,255,.14);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    box-shadow:
        0 24px 60px rgba(0,0,0,.28);

    overflow:hidden;
}

.about-hero-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(245,196,0,.14),
            transparent 42%
        );

    pointer-events:none;
}

.about-card-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 16px;
    margin-bottom:28px;

    border-radius:999px;

    background:rgba(245,196,0,.12);

    border:1px solid rgba(245,196,0,.20);

    color:#f5c400;

    font-size:12px;
    font-weight:700;

    letter-spacing:.12em;
    text-transform:uppercase;
}

.about-card-list{
    display:grid;
    gap:18px;
}

.about-card-item{
    display:flex;
    align-items:flex-start;
    gap:16px;

    padding:18px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);
}

.about-card-icon{
    width:54px;
    height:54px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #f5c400,
            #d4af37
        );

    color:#111111;

    font-size:20px;

    box-shadow:
        0 14px 28px rgba(245,196,0,.22);
}

.about-card-content h4{
    margin-bottom:6px;

    color:#ffffff;

    font-size:18px;
    font-weight:700;
}

.about-card-content p{
    margin:0;

    color:rgba(255,255,255,.70);

    font-size:14px;
    line-height:1.8;
}

/* =========================================================
   BRAND STORY
========================================================= */

.brand-story-section{
    position:relative;

    padding:130px 0;

    background:
        linear-gradient(
            to bottom,
            #fffdf8 0%,
            #f8f5ed 100%
        );
}

.brand-story-image-wrap{
    position:relative;
    overflow:hidden;

    border-radius:34px;
}

.brand-story-image{
    width:100%;
    height:720px;

    object-fit:cover;

    border-radius:34px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.14);

    transition:
        transform .6s ease;
}

.brand-story-image-wrap:hover .brand-story-image{
    transform:scale(1.04);
}

.brand-story-content{
    padding-left:20px;
}

/* =========================================================
   COMMON SECTION
========================================================= */

.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-bottom:24px;

    color:#b88917;

    font-size:12px;
    font-weight:700;

    letter-spacing:.2em;
    text-transform:uppercase;
}

.section-kicker::before,
.section-kicker::after{
    content:"";

    width:40px;
    height:1px;

    background:#d4af37;
}

.section-title{
    margin-bottom:30px;

    color:#111111;

    font-family:'Cormorant Garamond', serif;

    font-size:clamp(3rem,5vw,5rem);
    font-weight:700;
    line-height:.98;
    letter-spacing:-.04em;
}

.section-title span{
    display:block;

    margin-top:10px;

    color:#d4a017;
}

.story-text{
    margin-bottom:24px;

    color:#5f6975;

    font-size:17px;
    line-height:2;
}

/* =========================================================
   STORY POINTS
   Side By Side Layout
========================================================= */

.story-points{
    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:18px;

    margin-top:38px;
}

.story-point{
    display:flex;
    align-items:center;

    gap:16px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.75);

    border:1px solid rgba(0,0,0,.05);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.story-point:hover{
    transform:translateY(-4px);

    border-color:rgba(245,196,0,.18);

    box-shadow:
        0 18px 38px rgba(0,0,0,.08);
}

.story-point i{
    width:48px;
    height:48px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #f5c400,
            #d4af37
        );

    color:#111111;

    font-size:18px;

    box-shadow:
        0 12px 28px rgba(212,175,55,.22);
}

.story-point span{
    color:#111111;

    font-size:15px;
    font-weight:700;

    line-height:1.7;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px){

    .story-points{
        grid-template-columns:1fr;
    }

    .story-point{
        padding:16px 18px;

        border-radius:16px;
    }

    .story-point span{
        font-size:14px;
    }
}

/* =========================================================
   STATS
========================================================= */

.about-stats-section{
    position:relative;

    padding:110px 0;

    background:#0d1117;
}

.stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    position:relative;

    padding:42px 30px;

    text-align:center;

    border-radius:28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    overflow:hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.stat-card:hover{
    transform:translateY(-8px);

    border-color:rgba(245,196,0,.24);

    box-shadow:
        0 24px 50px rgba(0,0,0,.28);
}

.stat-icon{
    width:72px;
    height:72px;

    margin:0 auto 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            #f5c400,
            #d4af37
        );

    color:#111111;

    font-size:24px;
}

.stat-card h3{
    margin-bottom:12px;

    color:#ffffff;

    font-size:48px;
    font-weight:800;
    line-height:1;
}

.stat-card p{
    margin:0;

    color:rgba(255,255,255,.68);

    font-size:15px;
    line-height:1.7;
}

/* =========================================================
   FEATURES
========================================================= */

.about-features-section{
    position:relative;

    padding:130px 0;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #fcfbf8 100%
        );
}

.about-features-section .section-heading{
    margin-bottom:70px;

    text-align:center;
}

.heading-content{
    max-width:820px;
    margin:0 auto;
}

.section-subtitle{
    max-width:700px;
    margin:0 auto;

    color:#66707b;

    font-size:18px;
    line-height:1.9;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.feature-card{
    position:relative;

    padding:42px 32px;

    text-align:center;

    border-radius:30px;

    background:rgba(255,255,255,.84);

    border:1px solid rgba(0,0,0,.05);

    backdrop-filter:blur(10px);

    box-shadow:
        0 12px 34px rgba(0,0,0,.05);

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.feature-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    opacity:0;

    background:
        linear-gradient(
            to right,
            #f5c400,
            #d4af37
        );

    transition:opacity .35s ease;
}

.feature-card:hover{
    transform:translateY(-8px);

    border-color:rgba(245,196,0,.18);

    box-shadow:
        0 26px 54px rgba(0,0,0,.10);
}

.feature-card:hover::before{
    opacity:1;
}

.feature-icon{
    width:78px;
    height:78px;

    margin:0 auto 26px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            #f5c400,
            #d4af37
        );

    color:#111111;

    font-size:28px;

    box-shadow:
        0 14px 34px rgba(245,196,0,.24);
}

.feature-card h3{
    margin-bottom:16px;

    color:#111111;

    font-size:24px;
    font-weight:700;
}

.feature-card p{
    margin:0;

    color:#66707b;

    font-size:15px;
    line-height:1.9;
}

/* =========================================================
   CTA
========================================================= */

.about-cta-section{
    position:relative;

    padding:0 0 130px;

    background:
        linear-gradient(
            to bottom,
            #fcfbf8 0%,
            #f7f2e7 100%
        );
}

.about-cta-box{
    position:relative;

    padding:90px 60px;

    text-align:center;

    overflow:hidden;

    border-radius:40px;

    background:
        linear-gradient(
            135deg,
            #111111 0%,
            #1a1a1a 100%
        );

}

.about-cta-box .section-kicker{
    justify-content:center;

    color:#f5c400;
}

.about-cta-box .section-kicker::before{
    background:#f5c400;
}

.about-cta-box h2{
    max-width:760px;

    margin:0 auto 24px;

    color:#ffffff;

    font-family:'Cormorant Garamond', serif;

    font-size:clamp(3rem,5vw,5rem);
    font-weight:700;
    line-height:1;
    letter-spacing:-.04em;
}

.about-cta-box p{
    max-width:700px;

    margin:0 auto 38px;

    color:rgba(255,255,255,.72);

    font-size:18px;
    line-height:1.9;
}

/* =========================================================
   CTA BUTTONS
========================================================= */

.cta-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.primary-cta-btn,
.secondary-cta-btn{
    min-height:58px;
    padding:0 30px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.primary-cta-btn{
    background:#f5c400;
    color:#111111;
}

.primary-cta-btn:hover{
    background:#ffffff;

    color:#111111;

    transform:translateY(-2px);
}

.secondary-cta-btn{
    border:1px solid rgba(255,255,255,.14);

    background:rgba(255,255,255,.06);

    color:#ffffff;
}

.secondary-cta-btn:hover{
    background:#ffffff;

    color:#111111;

    transform:translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1199px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:991px){

    .about-hero-grid{
        grid-template-columns:1fr;
        gap:40px;

        padding:120px 0 90px;

        min-height:auto;
    }

    .about-hero-content{
        text-align:center;

        margin:0 auto;
    }

    .about-description{
        margin-inline:auto;

        font-size:17px;
    }

    .about-kicker{
        justify-content:center;
    }

    .about-hero-card{
        max-width:560px;
        margin:0 auto;
    }

    .brand-story-section,
    .about-features-section{
        padding:100px 0;
    }

    .about-stats-section{
        padding:90px 0;
    }

    .brand-story-image{
        height:560px;
    }

    .brand-story-content{
        padding-left:0;
        margin-top:40px;
    }

    .about-cta-section{
        padding-bottom:100px;
    }

    .about-cta-box{
        padding:70px 40px;
    }
}

@media (max-width:575px){

    .about-hero-section{
        min-height:auto;
    }

    .about-hero-grid{
        padding:110px 0 70px;
        gap:30px;
    }

    .about-title{
        font-size:3rem;

        line-height:1;
    }

    .about-title span{
        margin-top:8px;
    }

    .about-description{
        font-size:15px;
        line-height:1.8;
    }

    .about-hero-card{
        padding:24px 20px;

        border-radius:24px;
    }

    .about-card-item{
        padding:16px;

        border-radius:18px;
    }

    .about-card-icon{
        width:48px;
        height:48px;

        border-radius:14px;

        font-size:18px;
    }

    .about-card-content h4{
        font-size:16px;
    }

    .about-card-content p{
        font-size:13px;
    }

    .brand-story-section,
    .about-features-section{
        padding:80px 0;
    }

    .about-stats-section{
        padding:70px 0;
    }

    .brand-story-image{
        height:420px;

        border-radius:24px;
    }

    .section-title{
        font-size:2.5rem;

        line-height:1.05;
    }

    .story-text,
    .section-subtitle{
        font-size:15px;
        line-height:1.8;
    }

    .stats-wrapper,
    .features-grid{
        grid-template-columns:1fr;
    }

    .feature-card,
    .stat-card{
        padding:34px 24px;
    }

    .about-cta-box{
        padding:60px 24px;

        border-radius:28px;
    }

    .about-cta-box h2{
        font-size:2.5rem;

        line-height:1.08;
    }

    .about-cta-box p{
        font-size:15px;
        line-height:1.8;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .primary-cta-btn,
    .secondary-cta-btn{
        width:100%;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    .feature-card,
    .stat-card,
    .brand-story-image,
    .primary-cta-btn,
    .secondary-cta-btn{
        transition:none !important;
    }

    .feature-card:hover,
    .stat-card:hover,
    .primary-cta-btn:hover,
    .secondary-cta-btn:hover{
        transform:none !important;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-yellow {
    color: var(--color-primary);
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.policy-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5c400;
    font-size: 18px;
    line-height: 1.2;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .page-hero::after,
    .page-hero .container::before,
    .page-hero-content,
    .page-hero .badge,
    .page-hero-content::after {
        animation: none;
        transform: none;
    }
}

@media (max-width: 1199px) {
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .page-hero {
        min-height: 600px;
        padding-top: 110px;
        padding-bottom: 56px;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2.3rem, 1.9rem + 2.8vw, 3.8rem);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: 2;
    }

    .about-grid-modern {
        grid-template-columns: 1fr;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image {
        min-height: 420px;
        order: -1;
    }

    .india-text-image {
        font-size: clamp(4rem, 18vw, 8rem);
    }
}

@media (max-width: 767px) {
    .page-hero {
        min-height: 520px;
        padding-top: 100px;
        padding-bottom: 44px;
    }

    .page-hero .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-hero-content {
        padding: 20px 12px;
    }

    .page-hero .badge {
        margin-bottom: 14px;
        padding: 8px 14px;
        min-height: 38px;
    }

    .page-hero p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .page-hero-content::after {
        width: 70px;
        margin-top: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: span 1;
    }

    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-card,
    .feature-card,
    .cta-modern {
        border-radius: 18px;
    }

    .about-image {
        min-height: 340px;
        border-radius: 20px;
    }
}

@media (max-width: 575px) {
    .page-hero {
        min-height: 480px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 1.7rem + 2.8vw, 2.8rem);
        line-height: 1;
    }

    .contact-card {
        padding: 22px;
        border-radius: 18px;
    }

    .map iframe {
        height: 220px;
    }

    .about-modern {
        padding-block: 52px 64px;
    }

    .about-text h2 {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }

    .about-text .btn,
    .cta-modern .btn {
        width: 100%;
    }

    .about-image {
        min-height: 180px;
    }

    .india-text-image {
        font-size: clamp(3.2rem, 19vw, 5.4rem);
    }

    .feature-card i {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .cta-modern {
        padding: 26px 20px;
    }
}

/* ==========================================================================
   BAUNDULE MEDIA PAGE
   Premium Editorial Gallery
========================================================================== */

/* =========================================================
   MEDIA PAGE WRAPPER
========================================================= */

.media-page-wrapper{
    position:relative;
    overflow:hidden;

    background:#ffffff;
}

/* =========================================================
   HERO
========================================================= */

.media-page-hero{
    position:relative;

    min-height:88vh;

    display:flex;
    align-items:center;

    background-size:cover;
    background-position:center;

    overflow:hidden;
}

.media-page-hero::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.82),
            rgba(0,0,0,.48)
        );

    z-index:1;
}

.media-page-hero .container{
    position:relative;
    z-index:3;
}

.media-hero-content{
    max-width:760px;

    padding-top:90px;
}

.hero-overlay{
    position:absolute;
    inset:0;

    z-index:2;

    background:
        radial-gradient(
            circle at top right,
            rgba(245,196,0,.10),
            transparent 30%
        );
}

/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.about-kicker{
    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-bottom:24px;

    color:#f5c400;

    font-size:12px;
    font-weight:700;

    letter-spacing:.22em;
    text-transform:uppercase;
}

.about-kicker::before{
    content:"";

    width:44px;
    height:1px;

    background:
        linear-gradient(
            to right,
            transparent,
            #f5c400
        );
}

.about-title{
    margin-bottom:28px;

    color:#ffffff;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(4rem,7vw,7rem);
    font-weight:700;
    line-height:.92;
    letter-spacing:-.05em;
}

.about-title span{
    display:block;

    margin-top:10px;

    color:#f5c400;
}

.about-description{
    max-width:640px;

    color:rgba(255,255,255,.78);

    font-size:18px;
    line-height:1.9;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading{
    margin-bottom:70px;
}

.heading-content{
    max-width:860px;
    margin:0 auto;
}

.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-bottom:22px;

    color:#b88917;

    font-size:12px;
    font-weight:700;

    letter-spacing:.20em;
    text-transform:uppercase;
}

.section-kicker::before{
    content:"";

    width:40px;
    height:1px;

    background:#d4af37;
}

.section-title{
    margin-bottom:24px;

    color:#111111;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3rem,5vw,5rem);
    font-weight:700;
    line-height:1;
    letter-spacing:-.04em;
}

.section-title span{
    display:block;

    margin-top:10px;

    color:#d4a017;
}

.section-subtitle{
    max-width:760px;
    margin:0 auto;

    color:#66707b;

    font-size:18px;
    line-height:1.9;
}

/* ==========================================================================
   BAUNDULE MEDIA PAGE — PREMIUM CINEMATIC EDITION
========================================================================== */

/* =========================================================
   MEDIA PAGE WRAPPER
========================================================= */

.media-page-wrapper{
    position:relative;
    overflow:hidden;
    background:#ffffff;
}

/* =========================================================
   HERO
========================================================= */

.media-page-hero{
    position:relative;

    min-height:88vh;

    display:flex;
    align-items:center;

    background-size:cover;
    background-position:center;

    overflow:hidden;
}

.media-page-hero::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.82),
            rgba(0,0,0,.52)
        );

    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(245,196,0,.14),
            transparent 34%
        );

    z-index:2;
}

.media-page-hero .container{
    position:relative;
    z-index:5;
}

.media-hero-content{
    max-width:760px;
    padding-top:90px;
}

/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.about-kicker{
    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-bottom:24px;

    color:#f5c400;

    font-size:12px;
    font-weight:700;

    letter-spacing:.22em;
    text-transform:uppercase;
}

.about-kicker::before{
    content:"";

    width:46px;
    height:1px;

    background:
        linear-gradient(
            to right,
            transparent,
            #f5c400
        );
}

.about-title{
    margin-bottom:28px;

    color:#ffffff;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(4rem,7vw,7rem);
    font-weight:700;
    line-height:.92;
    letter-spacing:-.05em;
}

.about-title span{
    display:block;

    margin-top:12px;

    color:#f5c400;
}

.about-description{
    max-width:650px;

    color:rgba(255,255,255,.78);

    font-size:19px;
    line-height:1.9;
}

/* =========================================================
   MEDIA SHOWCASE SECTION
========================================================= */

.media-showcase-section{
    position:relative;

    padding:130px 0;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #fcfbf8 100%
        );

    overflow:hidden;
}

.media-showcase-section::before{
    content:"";

    position:absolute;
    top:-120px;
    right:-120px;

    width:340px;
    height:340px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(245,196,0,.10),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading{
    margin-bottom:70px;
}

.heading-content{
    max-width:860px;
    margin:0 auto;
}

.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-bottom:24px;

    color:#b88917;

    font-size:12px;
    font-weight:700;

    letter-spacing:.20em;
    text-transform:uppercase;
}

.section-kicker::before{
    content:"";

    width:40px;
    height:1px;

    background:#d4af37;
}

.section-title{
    margin-bottom:26px;

    color:#111111;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3rem,5vw,5rem);
    font-weight:700;
    line-height:.96;
    letter-spacing:-.04em;
}

.section-title span{
    display:block;

    margin-top:10px;

    color:#d4a017;
}

.section-subtitle{
    max-width:760px;

    margin:0 auto;

    color:#66707b;

    font-size:18px;
    line-height:1.9;
}

/* =========================================================
   TABS
========================================================= */

.media-tabs-wrapper{
    display:flex;
    justify-content:center;

    margin-bottom:70px;
}

.media-tabs{
    display:inline-flex;
    align-items:center;
    gap:14px;

    padding:10px;

    border-radius:999px;

    background:#ffffff;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:
        0 18px 42px rgba(0,0,0,.06);
}

.media-tabs .nav-link{
    border:none;

    min-height:58px;
    padding:0 34px;

    border-radius:999px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:transparent;

    color:#5f6975;

    font-size:14px;
    font-weight:700;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.media-tabs .nav-link i{
    font-size:15px;
}

.media-tabs .nav-link.active{
    background:
        linear-gradient(
            135deg,
            #f5c400,
            #d4af37
        );

    color:#111111;

    box-shadow:
        0 12px 28px rgba(245,196,0,.25);
}

.media-tabs .nav-link:hover{
    transform:translateY(-2px);
}

/* =========================================================
   VIDEO GRID
========================================================= */

.media-video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
}

/* =========================================================
   VIDEO CARD
========================================================= */

.media-video-card{
    position:relative;

    overflow:hidden;

    border-radius:34px;

    background:#ffffff;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 24px 60px rgba(0,0,0,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.media-video-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 36px 70px rgba(0,0,0,.12);
}

/* =========================================================
   VIDEO THUMB
========================================================= */

.media-video-thumb{
    position:relative;

    height:340px;

    overflow:hidden;
}

.media-video-thumb img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform 1s ease;
}

.media-video-card:hover img{
    transform:scale(1.08);
}

.media-video-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            rgba(0,0,0,.08),
            transparent
        );
}

/* =========================================================
   PLAY BUTTON
========================================================= */

.media-play-btn{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:84px;
    height:84px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.95);

    color:#111111;

    font-size:22px;

    text-decoration:none;

    backdrop-filter:blur(10px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.24);

    transition:
        transform .35s ease,
        background .35s ease;
}

.media-play-btn:hover{
    background:#f5c400;

    color:#111111;

    transform:
        translate(-50%,-50%)
        scale(1.08);
}

/* =========================================================
   VIDEO CONTENT
========================================================= */

.media-video-content{
    padding:34px;
}

.media-category{
    display:inline-block;

    margin-bottom:14px;

    color:#b88917;

    font-size:12px;
    font-weight:700;

    letter-spacing:.16em;
    text-transform:uppercase;
}

.media-video-content h3{
    margin-bottom:16px;

    color:#111111;

    font-family:'Cormorant Garamond',serif;

    font-size:38px;
    font-weight:700;
    line-height:1.05;
}

.media-video-content p{
    margin:0;

    color:#66707b;

    font-size:16px;
    line-height:1.9;
}

/* =========================================================
   GALLERY GRID
========================================================= */

.media-gallery-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

    grid-auto-flow:dense;
    grid-auto-rows:260px;
}

/* =========================================================
   GALLERY ITEM
========================================================= */

.media-gallery-item{
    position:relative;

    overflow:hidden;

    border-radius:30px;

    display:block;

    background:#f3f3f3;

    box-shadow:
        0 18px 50px rgba(0,0,0,.08);

    isolation:isolate;

    will-change:transform;

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.media-gallery-item:hover{
    transform:translateY(-6px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.12);
}

.media-gallery-item img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;

    transition:
        transform 1s ease;
}

.media-gallery-item:hover img{
    transform:scale(1.08);
}

/* =========================================================
   DYNAMIC LAYOUT
========================================================= */

.media-gallery-item.tall{
    grid-row:span 2;
}

.media-gallery-item.wide{
    grid-column:span 2;
}

/* =========================================================
   GALLERY OVERLAY
========================================================= */

.gallery-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    padding:28px;

    opacity:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.78),
            rgba(0,0,0,.12),
            transparent
        );

    transition:
        opacity .4s ease;
}

.media-gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay-content{
    max-width:80%;
}

.gallery-location{
    display:inline-block;

    margin-bottom:10px;

    color:#f5c400;

    font-size:11px;
    font-weight:700;

    letter-spacing:.18em;
    text-transform:uppercase;
}

.gallery-overlay h4{
    margin:0;

    color:#ffffff;

    font-size:22px;
    font-weight:700;
    line-height:1.3;
}

.gallery-zoom-btn{
    width:54px;
    height:54px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.16);

    backdrop-filter:blur(10px);

    color:#ffffff;

    font-size:16px;
}

/* =========================================================
   GLIGHTBOX
========================================================= */

.glightbox-clean .gslide-description{
    background:#111111;
}

.glightbox-clean .gdesc-inner{
    padding:18px 20px;
}

.glightbox-clean .gslide-title{
    color:#ffffff;

    font-size:20px;
    font-weight:700;
}

.glightbox-clean .gslide-desc{
    color:rgba(255,255,255,.74);

    font-size:14px;
    line-height:1.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1199px){

    .media-gallery-grid{
        grid-template-columns:
            repeat(2,1fr);
    }
}

@media (max-width:991px){

    .media-page-hero{
        min-height:78vh;
    }

    .media-showcase-section{
        padding:100px 0;
    }

    .media-video-grid{
        grid-template-columns:1fr;
    }

    .media-gallery-grid{
        grid-template-columns:
            repeat(2,1fr);

        grid-auto-rows:240px;
    }

    .media-video-thumb{
        height:300px;
    }

    .section-heading{
        margin-bottom:55px;
    }

    .media-video-content h3{
        font-size:32px;
    }
}

@media (max-width:767px){

    .media-gallery-item.wide{
        grid-column:auto;
    }
}

@media (max-width:575px){

    .media-page-hero{
        min-height:72vh;
    }

    .media-hero-content{
        padding-top:70px;
    }

    .about-title{
        font-size:3rem;
        line-height:1;
    }

    .about-description{
        font-size:15px;
        line-height:1.8;
    }

    .media-showcase-section{
        padding:80px 0;
    }

    .media-tabs{
        width:100%;
        justify-content:center;
    }

    .media-tabs .nav-link{
        flex:1;

        min-height:52px;

        padding:0 18px;

        font-size:13px;
    }

    .media-video-thumb{
        height:240px;
    }

    .media-video-content{
        padding:26px;
    }

    .media-video-content h3{
        font-size:28px;
    }

    .media-video-content p{
        font-size:15px;
        line-height:1.8;
    }

    .media-gallery-grid{
        grid-template-columns:1fr;

        grid-auto-rows:240px;
    }

    .media-gallery-item.wide,
    .media-gallery-item.tall{
        grid-column:auto;
        grid-row:auto;
    }

    .media-play-btn{
        width:68px;
        height:68px;

        font-size:18px;
    }

    .section-title{
        font-size:2.6rem;
    }

    .section-subtitle{
        font-size:15px;
        line-height:1.8;
    }

    .gallery-overlay{
        opacity:1;
        padding:22px;
    }

    .gallery-overlay h4{
        font-size:18px;
    }

    .gallery-zoom-btn{
        width:46px;
        height:46px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    .media-gallery-item,
    .media-video-card,
    .media-play-btn,
    .media-gallery-item img,
    .media-video-thumb img{
        transition:none !important;
    }

    .media-gallery-item:hover,
    .media-video-card:hover{
        transform:none !important;
    }
}

/* ==========================================================================
   BAUNDULE UPCOMING TOURS — PREMIUM CINEMATIC EDITION
========================================================================== */

/* =========================================================
   PAGE WRAPPER
========================================================= */

.tour-page-wrapper{
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #fcfbf8 100%
        );
}

/* =========================================================
   HERO SECTION
========================================================= */

.upcoming-tour-hero-section{
    position:relative;

    min-height:92vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.upcoming-tour-hero-section::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.60) 45%,
            rgba(0,0,0,.76) 100%
        );

    z-index:1;
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.upcoming-tour-hero-overlay{
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(245,196,0,.16),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,.04),
            transparent 28%
        );

    z-index:2;
}

.upcoming-tour-hero-section .container{
    position:relative;
    z-index:5;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.upcoming-tour-hero-content{
    width:100%;
    max-width:920px;

    margin:0 auto;

    padding-top:90px;
}

/* =========================================================
   HERO KICKER
========================================================= */

.tour-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    margin-bottom:22px;

    color:var(--color-primary);

    font-size:12px;
    font-weight:700;

    letter-spacing:.24em;
    text-transform:uppercase;
}

.tour-kicker::before,
.tour-kicker::after{
    content:"";

    width:48px;
    height:1px;

    background:
        linear-gradient(
            to right,
            transparent,
            var(--color-primary)
        );
}

/* =========================================================
   HERO TITLE
========================================================= */

.tour-hero-title{
    margin:0 0 22px;

    color:#ffffff;

    font-family:var(--font-display);

    font-size:clamp(4rem,7vw,7rem);
    font-weight:700;

    line-height:.92;
    letter-spacing:-.05em;
}

.tour-hero-title span{
    display:block;

    margin-top:12px;

    color:var(--color-primary);
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.tour-hero-description{
    max-width:720px;

    margin:0 auto 34px;

    color:rgba(255,255,255,.84);

    font-size:18px;
    line-height:1.9;
}

/* =========================================================
   HERO META
========================================================= */

.tour-hero-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;

    gap:16px;
}

.tour-meta-item{
    min-height:58px;
    padding:0 26px;

    border-radius:999px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    color:#ffffff;

    font-size:14px;
    font-weight:600;

    box-shadow:
        0 10px 24px rgba(0,0,0,.16);
}

.tour-meta-item i{
    color:var(--color-primary);

    font-size:14px;
}

.tour-meta-item.price{
    background:var(--color-brand-gradient);

    border:none;

    color:#111111;

    font-weight:700;

    box-shadow:
        0 14px 30px rgba(245,196,0,.24);
}

.tour-meta-item.price i{
    color:#111111;
}

/* =========================================================
   TOUR LISTING SECTION
========================================================= */

.tour-listing-section{
    position:relative;

    padding:120px 0;

    overflow:hidden;
}

.tour-listing-section::before{
    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:340px;
    height:340px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(245,196,0,.10),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading{
    margin-bottom:65px;
}

.heading-content{
    max-width:860px;

    margin:0 auto;

    text-align:center;
}

.section-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-bottom:18px;

    color:#b88917;

    font-size:12px;
    font-weight:700;

    letter-spacing:.20em;
    text-transform:uppercase;
}

.section-kicker::before,
.section-kicker::after{
    content:"";

    width:40px;
    height:1px;

    background:#d4af37;
}

.section-title{
    margin-bottom:20px;

    color:#111111;

    font-family:var(--font-display);

    font-size:clamp(3rem,5vw,5rem);
    font-weight:700;

    line-height:.96;
    letter-spacing:-.04em;
}

.section-title span{
    display:block;

    margin-top:8px;

    color:var(--bs-primary);
}

.section-subtitle{
    max-width:740px;

    margin:0 auto;

    color:#66707b;

    font-size:17px;
    line-height:1.9;
}

/* =========================================================
   TOUR ROW SPACING FIX
========================================================= */

.tour-listing-section .row{
    --bs-gutter-x:32px;
    --bs-gutter-y:42px;
}

/* =========================================================
   COLUMN FIX
========================================================= */

.tour-listing-section .col-12,
.tour-listing-section .col-md-6,
.tour-listing-section .col-xl-4{
    display:flex;
}

/* =========================================================
   TOUR CARD
========================================================= */

.upcoming-tour-card{
    position:relative;

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    border-radius:30px;

    background:#ffffff;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    will-change:transform;
}

.upcoming-tour-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 34px 70px rgba(0,0,0,.12);

    z-index:10;
}

/* =========================================================
   CARD IMAGE
========================================================= */

.tour-card-image{
    position:relative;

    height:280px;

    display:block;

    overflow:hidden;
}

.tour-card-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform 1s ease;
}

.upcoming-tour-card:hover .tour-card-image img{
    transform:scale(1.08);
}

.tour-image-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.58),
            rgba(0,0,0,.10),
            transparent
        );
}

/* =========================================================
   BADGES
========================================================= */

.tour-badge,
.tour-type{
    position:absolute;

    top:18px;

    min-height:34px;
    padding:0 15px;

    border-radius:999px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    font-size:10px;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

    z-index:5;
}

.tour-badge{
    left:18px;

    background:var(--bs-primary);

    color:#111111;
}

.tour-type{
    right:18px;

    background:rgba(17,17,17,.82);

    backdrop-filter:blur(10px);

    color:#ffffff;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.tour-card-content{
    padding:26px;

    display:flex;
    flex-direction:column;

    flex:1;
}

.tour-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;

    margin-bottom:16px;
}

.tour-location{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#66707b;

    font-size:12px;
    font-weight:600;
}

.tour-location i{
    color:#d4a017;
}

.tour-duration{
    min-height:30px;
    padding:0 12px;

    border-radius:999px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#f8f6ef;

    color:#111111;

    font-size:11px;
    font-weight:700;
}

/* =========================================================
   CARD TITLE
========================================================= */

.tour-card-title{
    margin-bottom:14px;

    font-family:var(--font-display);

    font-size:30px;
    font-weight:700;

    line-height:1.08;
}

.tour-card-title a{
    color:#111111;

    text-decoration:none;

    transition:color .3s ease;
}

.tour-card-title a:hover{
    color:#b88917;
}

/* =========================================================
   DATE
========================================================= */

.tour-date{
    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:20px;

    color:#66707b;

    font-size:13px;
    font-weight:500;
}

.tour-date i{
    color:#d4a017;
}

/* =========================================================
   PRICE ROW
========================================================= */

.tour-price-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:18px;

    margin-bottom:22px;
}

.tour-price-label{
    display:block;

    margin-bottom:5px;

    color:#8a9199;

    font-size:11px;
    font-weight:600;

    letter-spacing:.06em;
    text-transform:uppercase;
}

.tour-price{
    color:#111111;

    font-size:30px;
    font-weight:800;

    line-height:1;
}

.tour-seats{
    text-align:right;

    color:#111111;

    font-size:22px;
    font-weight:800;

    line-height:1;
}

.tour-seats small{
    display:block;

    margin-top:5px;

    color:#8a9199;

    font-size:10px;
    font-weight:600;

    letter-spacing:.08em;
    text-transform:uppercase;
}

/* =========================================================
   PROGRESS
========================================================= */

.tour-progress-wrap{
    margin-bottom:22px;
}

.tour-progress{
    width:100%;
    height:7px;

    overflow:hidden;

    border-radius:999px;

    background:#ece8df;
}

.tour-progress-bar{
    height:100%;

    border-radius:999px;

    background:var(--color-brand-gradient);
}

.tour-urgency{
    display:inline-block;

    margin-top:10px;

    color:#c84522;

    font-size:12px;
    font-weight:700;
}

/* =========================================================
   ACTIONS
========================================================= */

.tour-card-actions{
    display:flex;
    align-items:center;

    gap:12px;

    margin-top:auto;
}

.btn-tour-primary{
    flex:1;

    min-height:54px;
    padding:0 24px;

    border:none;

    border-radius:16px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:var(--bs-primary);

    color:#111111;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.btn-tour-primary:hover{
    transform:translateY(-2px);

    color:#111111;

    box-shadow:
        0 18px 38px rgba(212,175,55,.28);
}

.btn-tour-secondary{
    width:54px;
    height:54px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#111111;

    color:#ffffff;

    font-size:16px;

    text-decoration:none;

    transition:
        transform .35s ease,
        background .35s ease;
}

.btn-tour-secondary:hover{
    transform:translateY(-2px);

    background:#25d366;

    color:#ffffff;
}

/* =========================================================
   SOLD OUT
========================================================= */

.btn-tour-primary.sold-out{
    opacity:.6;

    cursor:not-allowed;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.empty-tour-state{
    padding:90px 30px;

    border-radius:34px;

    text-align:center;

    background:#ffffff;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 20px 50px rgba(0,0,0,.06);
}

.empty-tour-state i{
    margin-bottom:24px;

    color:#d4a017;

    font-size:56px;
}

.empty-tour-state h3{
    margin-bottom:12px;

    color:#111111;

    font-family:var(--font-display);

    font-size:40px;
    font-weight:700;
}

.empty-tour-state p{
    margin:0;

    color:#66707b;

    font-size:16px;
    line-height:1.8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .upcoming-tour-hero-section{
        min-height:78vh;
    }

    .upcoming-tour-hero-content{
        padding-top:60px;
    }

    .tour-hero-description{
        font-size:16px;
    }

    .tour-listing-section{
        padding:100px 0;
    }

    .tour-card-image{
        height:240px;
    }

    .tour-card-title{
        font-size:28px;
    }
}

@media (max-width:575px){

    .upcoming-tour-hero-section{
        min-height:72vh;
    }

    .upcoming-tour-hero-content{
        padding-top:40px;
    }

    .tour-kicker{
        margin-bottom:18px;

        font-size:11px;

        letter-spacing:.18em;
    }

    .tour-kicker::before,
    .tour-kicker::after{
        width:28px;
    }

    .tour-hero-title{
        font-size:3.2rem;

        line-height:1;
    }

    .tour-hero-description{
        font-size:15px;
        line-height:1.8;

        margin-bottom:28px;
    }

    .tour-hero-meta{
        gap:12px;
    }

    .tour-meta-item{
        width:100%;

        min-height:54px;

        justify-content:center;

        padding:0 20px;

        font-size:13px;
    }

    .tour-listing-section{
        padding:80px 0;
    }

    .section-title{
        font-size:2.6rem;
    }

    .section-subtitle{
        font-size:15px;
        line-height:1.8;
    }

    .tour-card-content{
        padding:22px;
    }

    .tour-card-title{
        font-size:26px;
    }

    .tour-price-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .tour-seats{
        text-align:left;
    }

    .tour-card-actions{
        flex-direction:column;
    }

    .btn-tour-primary,
    .btn-tour-secondary{
        width:100%;
    }

    .btn-tour-secondary{
        height:52px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    .upcoming-tour-card,
    .tour-card-image img,
    .btn-tour-primary,
    .btn-tour-secondary{
        transition:none !important;
    }

    .upcoming-tour-card:hover,
    .btn-tour-primary:hover,
    .btn-tour-secondary:hover{
        transform:none !important;
    }
}