/* =========================================================================
   base setup & variables
   ========================================================================= */
:root {
    /* Colors - High Visibility & Polishing Upgrade */
    --clr-accent: #FF5C1B;   /* Vibrant Terracotta */
    --clr-accent-hover: #E64A0E; 
    --clr-primary: #4A7C59;  /* Clear Sage Green */
    --clr-primary-light: #6A9C79;
    --clr-dark: #1F2E23;     /* Deep Forest Charcoal */
    --clr-darker: #151F18; 
    --clr-bg-cream: #FCF9F3; /* Polished Cream */
    --clr-bg-sage: #F0F4F1;  /* Brighter Soft Sage */
    --clr-white: #FFFFFF;
    --clr-text: #1F2E23;     /* High Contrast Text */
    --clr-text-light: #4A5D50;
    --clr-border: rgba(0, 0, 0, 0.12);
    /* Special Colors */
    --clr-terracotta-bright: #FF5C1B;

    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing & Sizes (Premium - 50% increase) */
    --border-radius: 24px;
    --border-radius-lg: 36px;
    --container-width: 1300px;
    --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--clr-text);
    background-color: var(--clr-white); /* Changed to pure white as base for the orchestrator */
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =========================================================================
   Premium Background System
   ========================================================================= */
.bg-orchestrator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.mesh-gradient {
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(circle at 10% 20%, var(--clr-dark) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, var(--clr-darker) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, var(--clr-indigo) 0%, transparent 80%),
        radial-gradient(circle at 100% 100%, #031F2A 0%, transparent 60%);
    filter: blur(150vw);
    opacity: 0.9;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03; /* 3% opacity for premium softness */
    mix-blend-mode: overlay;
    z-index: 10;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.blob-bg-wrapper {
    position: absolute;
    inset: -100px;
    z-index: -1;
}

/* =========================================================================
   Global Fluid Blobs (Safe Space Concept 1)
   ========================================================================= */
#fluid-bg-layer {
    will-change: transform;
}

.fluid-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    will-change: transform, opacity;
    animation: fluid-blob-drift 40s infinite alternate ease-in-out;
}

.blob-sage-top {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background-color: var(--clr-primary, #52795E);
    animation-delay: 0s;
}

.blob-orange-mid {
    top: 40%;
    right: -20%;
    width: 70vw;
    height: 70vw;
    background-color: var(--clr-accent, #FF5C1B);
    animation-delay: -10s;
}

.blob-sage-bottom {
    bottom: -10%;
    left: 10%;
    width: 80vw;
    height: 80vw;
    background-color: var(--clr-primary, #52795E);
    animation-delay: -20s;
}

@keyframes fluid-blob-drift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 5%) scale(1.05); }
    66% { transform: translate(-3%, 3%) scale(0.95); }
    100% { transform: translate(2%, -5%) scale(1.02); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--clr-dark);
    line-height: 1.25; /* 15% boost from standard 1.1 */
    margin-bottom: 24px;
    letter-spacing: -0.01em; /* Composed tightly */
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8; /* Airy and luxurious flow */
    color: var(--clr-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 150px 0; /* Increased negative space (50% increase) */
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-2 { margin-top: 1rem; }
.text-muted { color: var(--clr-text-light); }
.text-sm { font-size: 0.875rem; }

/* =========================================================================
   Typography & Utils
   ========================================================================= */
.highlight {
    color: var(--clr-accent);
    font-style: italic;
    background: linear-gradient(120deg, var(--clr-accent), #FF8C42);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-right: 5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.bg-light { background-color: var(--clr-white); }
.bg-dark { background-color: var(--clr-dark); color: var(--clr-white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--clr-white); }
.bg-dark .text-muted { color: rgba(255,255,255,0.6); }

/* Glassmorphism Refined */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%) contrast(110%);
    -webkit-backdrop-filter: blur(20px) saturate(180%) contrast(110%);
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent) 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 10px 80px rgba(0, 0, 0, 0.3), inset 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.glass:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 20px 100px rgba(0, 0, 0, 0.4), inset 0 0 1px rgba(255, 255, 255, 0.2);
    border-image: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent) 1;
}

/* Base Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* Increased letter-spacing */
    margin-bottom: 1.5rem;
    background-color: rgba(89, 116, 101, 0.1);
    color: var(--clr-primary);
}
.badge-light {
    background-color: rgba(255,255,255,0.1);
    color: var(--clr-white);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px; /* Increased padding */
    border-radius: 40px; /* More rounded */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-premium);
    font-family: var(--font-sans);
    text-transform: uppercase; /* Premium CTA requirement */
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(254, 89, 21, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    color: var(--clr-white);
}

.btn-secondary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-secondary:hover {
    background-color: var(--clr-primary-light);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-block {
    width: 100%;
}

/* Background gradient blobs */
.bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: floatComplex 18s infinite alternate ease-in-out;
}
.blob-1 {
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: var(--clr-primary);
    opacity: 0.35;
}
.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--clr-accent);
    opacity: 0.25;
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}
.blob-3 {
    top: 30%;
    left: 40%;
    width: 500px;
    height: 500px;
    background: #FFD166; /* vibrant yellow/orange */
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes floatComplex {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(150px, -80px) scale(1.2) rotate(45deg); }
    66% { transform: translate(-100px, 120px) scale(0.9) rotate(90deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* =========================================================================
   Navigation
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    padding: 8px 0; /* Radically reduced for compactness */
    background-color: transparent; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

        .brushed-underline {
            position: relative;
            display: inline-block;
            z-index: 1;
        }
        .brushed-underline::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: -5%;
            width: 110%;
            height: 12px;
            background-color: var(--clr-primary);
            opacity: 0.2;
            z-index: -1;
            border-radius: 10px;
            transform: skewX(-15deg);
        }

        .hero-tag {
            background-color: #FFFFFF;
            border: 1px solid rgba(82, 121, 111, 0.3);
            border-radius: 99px;
            padding: 4px 12px; /* Even more compact */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }
        .hero-tag span {
            color: #4A7C59;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        .hero-tag:hover {
            border-color: #4A7C59;
            transform: translateY(-2px);
        }

        .glass-overlay-text {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            padding: 8px 14px; /* Scaled down ~20% */
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            max-width: 170px; /* Reduced width */
        }
        .glass-overlay-text p:first-of-type {
            font-size: 0.9rem; /* Smaller headline */
        }
        .glass-overlay-text p:last-of-type {
            font-size: 0.65rem; /* Smaller body */
            font-size: 0.52rem; /* Scaled down 20% */
        }

        #hero-premium {
            font-family: 'Inter', sans-serif;
            color: var(--clr-dark);
            padding: 80px 0 0 0; /* Top padding to clear fixed header */
            min-height: 100vh; /* Viewport-Lock */
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--clr-bg-cream) 0%, var(--clr-bg-sage) 100%);
            position: relative;
        }
        @media (max-width: 1024px) {
            #hero-premium {
                padding-top: 70px;
                padding-bottom: 20px;
            }
        }

        /* Ensure content is centered and visible */
        #hero-premium .container { z-index: 20; position: relative; }
        #hero-premium .depth-stack { z-index: 20; position: relative; }
        #hero-premium h1, #hero-premium p, #hero-premium .hero-tag, #hero-premium a { position: relative; z-index: 21; }

.navbar.scrolled {
    background-color: var(--clr-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--clr-accent);
    padding: 15px 0;
}

/* =========================================================================
   Running Line (Ticker)
   ========================================================================= */
.ticker-section {
    background-color: var(--clr-white);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 50;
    /* Subtle separation from Hero and About */
    border-top: 1px solid rgba(160, 82, 45, 0.05);
}

.ticker-container {
    width: 100%;
    display: flex;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    animation: ticker-loop 80s linear infinite; /* Slower for more premium feel */
    will-change: transform;
}

.ticker-item-group {
    display: flex;
    align-items: center;
    gap: 60px; /* Spacing between pairs */
    padding-right: 60px;
}

.ticker-item-group span {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--clr-dark);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-dot {
    color: #FF5C1B; /* Brand terracotta for the point */
    font-size: 1.2rem;
    line-height: 0;
    margin-top: -2px;
}

@keyframes ticker-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================================================
   Reveal & Entrance Animations Utilities (Restored)
   ========================================================================= */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.reveal-group .reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-group .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    transform: translateY(40px);
}

.brush-reveal {
    position: relative;
    display: inline-block;
}

.brush-reveal::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 12px;
    background-color: var(--clr-primary);
    opacity: 0.15;
    z-index: -1;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.brush-reveal.active::after {
    width: 100%;
}

/* Storyline Synchronized Triggers */
.specialty-item {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.specialty-item.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.emotional-highlight {
    color: var(--clr-accent);
    font-weight: 600;
}

.section-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-dark); /* Changed from clr-white */
    display: block !important;
}

.header-logo {
    height: 35px; /* Perfect size for pairing with text */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 1.05rem; /* Increased size */
    font-weight: 700;   /* Significantly increased weight */
    color: var(--clr-dark);
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.1em; /* Structured contrast */
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 0;
    pointer-events: none;
}

.mobile-nav.open {
    right: 0;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--clr-primary);
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.close-menu-btn {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-white);
    margin-bottom: 40px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-links a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--clr-white);
}

@media (max-width: 900px) {
    .nav-links, .navbar .btn-outline {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 120px;
    position: relative;
    background: linear-gradient(135deg, rgba(89, 116, 101, 0.1) 0%, rgba(248, 249, 247, 1) 100%);
    overflow: hidden;
}

/* WOW Animated Web Divider */
.wow-transition {
    position: absolute;
    bottom: -1px; /* seamless connection */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.editorial-waves {
    display: block;
    width: 100%;
    height: 12vh;
    max-height: 120px;
    margin: 0;
    z-index: 5;
    position: relative;
}

/* Animation Keys for parallax waves */
.parallax-waves > use {
    animation: moveForever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax-waves > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 12s;
}
.parallax-waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 16s;
}
.parallax-waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 20s;
}
.parallax-waves > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 28s;
}

@keyframes moveForever {
    0% { transform: translate3d(-50px,0,0); }
    100% { transform: translate3d(50px,0,0); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2; /* Important so blobs stay behind */
}

.scroll-indicator {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--clr-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    opacity: 0.6;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--clr-primary);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--clr-accent);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@media (max-width: 992px) {
    .scroll-indicator {
        display: none; /* Hide on mobile to save space */
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: fadeInUpSlight 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-focuses {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--clr-primary);
}

.focus-item {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.focus-item:nth-child(1) { animation-delay: 0.4s; }
.focus-item:nth-child(3) { animation-delay: 0.6s; }
.focus-item:nth-child(5) { animation-delay: 0.8s; }
.focus-item:nth-child(7) { animation-delay: 1.0s; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.focus-dot {
    color: var(--clr-accent);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

/* Social icons in Hero */
.hero-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

        .swiper-slide.group-mobile {
            background-color: #FFFFFF;
            border: 1px solid rgba(82, 121, 111, 0.1);
            border-radius: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        .swiper-slide-active.group-mobile {
            border-color: rgba(82, 121, 111, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--clr-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(254, 89, 21, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Floating animation for Hero Images */
.float-anim {
    animation: smoothFloat 6s ease-in-out infinite;
}

@keyframes smoothFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.pulse-btn {
    animation: pulseGlow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(254, 89, 21, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(254, 89, 21, 0);
    }
}

.hero-images {
    position: relative;
    height: 600px;
}

.image-wrapper {
    position: absolute;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.2);
    pointer-events: none;
}

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

.image-wrapper:hover img {
    transform: scale(1.05);
}

.main-photo {
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    z-index: 1;
    border: 8px solid var(--clr-white);
    box-shadow: 0 30px 60px rgba(89, 116, 101, 0.2);
}

.main-photo:hover {
    box-shadow: 0 40px 80px rgba(89, 116, 101, 0.3);
}

.psy-photo {
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    z-index: 2;
    border: 8px solid var(--clr-light);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--clr-white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.exp-number {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2rem;
    color: var(--clr-accent);
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-text-light);
}

@media (max-width: 992px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    .hero-focuses {
        justify-content: center;
    }
    .hero-socials {
        justify-content: center;
        margin-top: 20px;
    }
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-images {
        height: 350px;
        margin-top: 30px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .experience-badge {
        right: 0px;
        bottom: -15px;
        padding: 12px 16px;
    }
    .exp-number { font-size: 1.5rem; }
    .editorial-waves {
        height: 60px;
        min-height: 60px;
    }
}

/* =========================================================================
   About Section — Premium Staggered Reveal & Parallax System
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

/* Refined top label — orange only for label */
.about-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em; /* Increased letter-spacing */
    text-transform: uppercase;
    color: #FF5C1B;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 92, 27, 0.3);
    padding-bottom: 4px;
}

.about-main-title {
    line-height: 1.2;
    margin-bottom: 1.35rem;
}

/* Italic accent words in headline */
.about-main-title em {
    font-style: italic;
    font-weight: inherit;
    color: var(--clr-primary); /* Sage green for inner heading italic */
}

.about-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--clr-text-light);
}

/* Orange accent on counter only */
.about-counter {
    color: #FF5C1B;
    font-weight: 700;
}

/* Counter wrapper */
.about-counter-wrap {
    font-style: normal;
}

/* =============================
   Brushed Underline System
   Animated ink-line beneath key words
   ============================= */
.ab-underline {
    position: relative;
    display: inline;
    white-space: nowrap;
}
/* The hand-drawn underline using ::after */
.ab-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;                        /* starts fully hidden */
    height: 3px;                     /* slightly thicker for brush effect */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* organic shape */
    transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transform: rotate(-0.5deg) translateZ(0); /* slightly crooked */
}
/* Orange variant */
.ab-underline--orange::after {
    background: rgba(255, 92, 27, 0.38);
}
/* Sage variant */
.ab-underline--sage::after {
    background: rgba(82, 121, 94, 0.3);
}
/* Trigger: draws when ancestor gains .ab-revealed */
.ab-revealed .ab-underline::after,
.ab-arc-active .ab-underline::after {
    width: 100%;
}
/* Sequential stagger delays across different elements */
.about-headline-group.ab-revealed .ab-underline--orange::after  { transition-delay: 0.5s; }   /* шлях */
.about-headline-group.ab-revealed .ab-underline--sage::after    { transition-delay: 0.75s; }  /* безпечний простір */
.exp-item[data-item="1"].ab-revealed .ab-underline--orange::after { transition-delay: 0.4s; } /* трансформації */
.exp-item[data-item="2"].ab-revealed .ab-underline--sage::after   { transition-delay: 0.45s; } /* Стійкість */
.exp-item[data-item="3"].ab-revealed .ab-underline--orange::after { transition-delay: 0.45s; } /* Гармонія */
#about-course-block.ab-revealed .ab-underline--sage::after      { transition-delay: 0.5s; }   /* мову власного тіла */

/* Preserve italic style inside underlined em tags */
.ab-underline em,
em.ab-underline {
    font-style: italic;
}

/* —— Stage 1: Headline group – slide-up-fade —— */
.about-headline-group {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    margin-bottom: 2rem;
}
.about-headline-group.ab-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* —— Stage 2: Experience list items – staggered reveal —— */
.experience-list {
    list-style: none;
    margin-bottom: 2rem;
}

.exp-item {
    display: flex;
    margin-bottom: 2.25rem;  /* Premium air between items */
    gap: 16px;
    opacity: 0;
    transform: translateY(22px) translateZ(0);
    transition:
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.exp-item.ab-revealed {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* Icon wrapper */
.exp-icon-wrap {
    color: var(--clr-primary);
    width: 28px;
    min-width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 3px;
    will-change: transform;
    transform: translateZ(0);
}
.exp-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* —— Icon 1: Checkmark — SVG path drawing (stroke-dashoffset trick) —— */
.svg-draw-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}
.exp-item[data-item="1"].ab-revealed .svg-draw-path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.75s cubic-bezier(0.65, 0, 0.35, 1);
}
/* Check tick reveals after circle is mostly drawn */
.exp-item[data-item="1"].ab-revealed .svg-draw-check {
    transition-delay: 0.35s;
}

/* —— Icon 2: Briefcase — subtle float + pulse on reveal —— */
.briefcase-handle {
    transform: translateY(0);
    transform-origin: center top;
    will-change: transform;
}
.exp-item[data-item="2"].ab-revealed .briefcase-handle {
    animation: ab-handleFloat 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes ab-handleFloat {
    0%   { transform: translateY(0px); }
    30%  { transform: translateY(-3px); }
    60%  { transform: translateY(-1.5px); }
    80%  { transform: translateY(-2.5px); }
    100% { transform: translateY(-2px); }
}

/* —— Icon 3: Heart — 1.2s pulse/float once visible —— */
.heart-path {
    transform-origin: center;
    transform-box: fill-box;
    will-change: transform;
}
.exp-item[data-item="3"].ab-revealed .heart-path {
    animation: ab-heartFloat 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.4s both;
}
@keyframes ab-heartFloat {
    0%   { transform: scale(1); }
    20%  { transform: scale(1.18); }
    45%  { transform: scale(0.95); }
    65%  { transform: scale(1.08); }
    80%  { transform: scale(0.99); }
    100% { transform: scale(1); }
}

.experience-list strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--clr-dark);
    margin-bottom: 4px;
    font-weight: 600;
}
.experience-list .exp-desc {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    display: block;
}

/* —— Stage 3: Course block — scale-in with accent orange glow —— */
.author-course {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(254, 89, 21, 0.05) 0%, rgba(254, 89, 21, 0.15) 100%);
    border: 1px solid rgba(254, 89, 21, 0.2);
}

#about-course-block {
    opacity: 0;
    transform: scale(0.95) translateY(10px) translateZ(0);
    transition:
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.9s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}
#about-course-block.ab-revealed {
    opacity: 1;
    transform: scale(1) translateY(0) translateZ(0);
    box-shadow:
        0 8px 32px rgba(254, 89, 21, 0.2),
        0 0 0 1px rgba(254, 89, 21, 0.1),
        0 24px 60px rgba(254, 89, 21, 0.09);
}

.course-icon {
    background-color: var(--clr-white);
    color: var(--clr-accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(254, 89, 21, 0.2);
}
.course-info h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 6px;
    color: var(--clr-dark);
}
.course-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--clr-text-light);
}

/* —— Right side: Layered Parallax Scene —— */
.about-visual {
    position: relative;
}
.about-parallax-scene {
    position: relative;
}

/* Shape layer – slower parallax (JS sets translateY via inline style) */
.about-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    will-change: transform;
    pointer-events: none;
}
.circle-decoration {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-color: rgba(89, 116, 101, 0.1);
    top: 0px;
    right: 0px;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

/* Orange arc SVG – absolutely positioned behind portrait */
.about-arc-svg {
    position: absolute;
    top: -5%;
    right: -8%;
    width: 60%;
    height: auto;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}
.about-arc-draw {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.6s;
    will-change: stroke-dashoffset;
}
.ab-arc-active .about-arc-draw {
    stroke-dashoffset: 0;
}

/* Photo layer – faster parallax */
.about-photo-layer {
    position: relative;
    z-index: 10; /* Bring above global storyline (z-index 5) */
    will-change: transform;
    transform: translateZ(0);
    max-width: 440px;
    margin: 0 auto;
}

/* Photo container – mask-unfold entrance via clip-path */
.about-photo-container {
    clip-path: inset(0 0 100% 0 round 24px);
    transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, 
                border-color 0.8s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: clip-path, border-color, box-shadow;
    border: 2px solid transparent;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 4px; /* prevents border from cutting into image */
}
.about-photo-container.ab-revealed {
    clip-path: inset(0 0 0% 0 round 24px);
}
.about-photo-container.story-active {
    border-color: rgba(255, 92, 27, 0.5);
    box-shadow: 0 0 20px rgba(255, 92, 27, 0.2), 0 0 40px rgba(255, 92, 27, 0.08);
}

/* Photo image – magnetic tilt (JS writes rotateX/rotateY) */
.about-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition:
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.about-img:not([style]) {
    /* Hover only when not under magnetic control */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        order: -1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-parallax-scene {
        width: 100%;
        max-width: 440px;
        position: relative;
        margin: 0 auto;
    }
    .about-photo-layer {
        width: 100%;
        margin: 0 auto;
        transform: none !important;
    }
    /* Disable parallax on mobile */
    .about-bg-layer {
        transform: none !important;
    }
    .about-bg-layer .circle-decoration {
        width: 100%;
        height: 100%;
        right: auto;
        left: 0;
        top: 0;
    }
    .about-arc-svg {
        display: none; /* Clean mobile layout - arc is decorative desktop only */
    }
}





/* =========================================================================
   Depth Switcher Pricing
   ========================================================================= */
.depth-switcher-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 2.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    /* needed so children can drive width */
    align-items: stretch;
}

.depth-zone {
    /* Width animated purely via JS requestAnimationFrame */
    width: 33.333%;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 60px 45px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border-right: 1px solid rgba(0,0,0,0.05);
    /* Only bg + color use CSS transition, width is driven by JS */
    transition: background-color 1.8s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
                color 1.4s ease;
    will-change: width, background-color, opacity;
    display: flex;
    flex-direction: column;
    color: #1F2E23;
    min-width: 0;
    overflow: hidden;
}

.depth-zone:last-child {
    border-right: none;
}

.dz-header {
    margin-bottom: 2rem;
}

.dz-icon {
    color: #557760;
    margin-bottom: 20px;
    transition: color 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.dz-label {
    font-size: 1.6rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.dz-duration {
    font-size: 0.95rem;
    font-weight: 500;
    color: #557760;
    transition: color 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.dz-price {
    font-size: 4.5rem;
    line-height: 1;
    margin-top: 1.5rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    transition: color 1.2s cubic-bezier(0.2, 1, 0.2, 1);
    color: #1F2E23;
}

.dz-currency {
    font-size: 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-top: 0.5rem;
    margin-right: 4px;
}

.dz-body {
    flex-grow: 1;
}

.dz-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}

.dz-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.4;
    opacity: 0.85;
}

.transformation-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF5C1B;
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(255,92,27,0.5);
}

.dz-highlight {
    font-weight: 700;
    color: #FF5C1B;
    opacity: 1 !important;
}

.dz-pop-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,92,27,0.1);
    color: #FF5C1B;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,92,27,0.2);
}

.dz-footer {
    margin-top: auto;
}

.dz-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    color: inherit;
    text-decoration: none;
}

.dz-btn-glow {
    background: #FF5C1B !important;
    border-color: #FF5C1B !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255,92,27,0.3);
}

.dz-btn:hover {
    background: #1F2E23;
    color: #fff;
    border-color: #1F2E23;
}
.dz-btn-glow:hover {
    box-shadow: 0 0 30px rgba(255,92,27,0.5);
}

/* ── List item stagger keyframe ── */
@keyframes dz-li-reveal {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 0.85; transform: translateY(0); }
}
@keyframes dz-li-reveal-dark {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes dz-btn-reveal {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes dz-icon-pop {
    0%   { transform: scale(1) rotate(0deg); }
    40%  { transform: scale(1.18) rotate(-4deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Default state: list items & button hidden before hover */
.depth-switcher-wrap .dz-list li,
.depth-switcher-wrap .dz-footer .dz-btn {
    opacity: 0;
    transform: translateY(10px);
}

/* ── JS-class: Dimmed (sibling zones when another is hovered) ── */
.depth-zone.dz-is-dimmed {
    width: 22%;
    opacity: 0.55;
    background-color: transparent;
}

/* ── JS-class: Active (hovered zone) ── */
.depth-zone.dz-is-active {
    width: 56%;  /* 100% - 22% - 22% */
    opacity: 1;
    background-color: #26302B;
    color: #fff;
}

.depth-zone.dz-is-active .dz-label,
.depth-zone.dz-is-active .dz-duration,
.depth-zone.dz-is-active .dz-price {
    color: #fff;
}

.depth-zone.dz-is-active .dz-icon {
    color: #FF5C1B;
    animation: dz-icon-pop 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Staggered list items revealed by JS adding --dz-li-delay */
.depth-zone.dz-is-active .dz-list li {
    animation: dz-li-reveal-dark 0.55s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-delay: var(--dz-li-delay, 0s);
}

.depth-zone.dz-is-active .dz-footer .dz-btn {
    animation: dz-btn-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-delay: var(--dz-btn-delay, 0.4s);
}

.depth-zone.dz-is-active .dz-btn:not(.dz-btn-glow) {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: #fff;
}

/* ── Default resting state: list visible, no animation classes ── */
.depth-switcher-wrap:not(.dz-engaged) .dz-list li,
.depth-switcher-wrap:not(.dz-engaged) .dz-footer .dz-btn {
    opacity: 0.85;
    transform: translateY(0);
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.depth-switcher-wrap:not(.dz-engaged) .dz-footer .dz-btn {
    opacity: 1;
}

@media (max-width: 992px) {
    /* On mobile, always show list items */
    .depth-switcher-wrap .dz-list li,
    .depth-switcher-wrap .dz-footer .dz-btn {
        opacity: 0.85 !important;
        transform: none !important;
        animation: none !important;
    }
    .depth-switcher-wrap .dz-footer .dz-btn {
        opacity: 1 !important;
    }
}

/* ── Mobile Stacking Logic ── */
@media (max-width: 992px) {
    .depth-switcher-wrap {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        border: none;
        padding: 0 16px;
        gap: 0;
        border-radius: 0;
    }
    
    .depth-zone {
        width: 100% !important;   /* override desktop width animation */
        border-radius: 2rem;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
        opacity: 1 !important;
        padding: 40px 30px;
        position: relative;
        z-index: 1;
    }

    .depth-zone:not(:first-child) {
        margin-top: -30px;
    }
    
    /* Pre-activate popular tier on mobile */
    .depth-zone.active-zone {
        background-color: #26302B;
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 -15px 50px rgba(38,48,43,0.3);
        z-index: 2;
    }
    
    .depth-zone.active-zone .dz-label, 
    .depth-zone.active-zone .dz-duration, 
    .depth-zone.active-zone .dz-price {
        color: #fff;
    }
    
    .depth-zone.active-zone .dz-icon {
        color: #FF5C1B;
    }
    
    .depth-zone.active-zone .dz-btn:not(.dz-btn-glow) {
        border-color: rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.05);
        color: #fff;
    }
}

/* =========================================================================
   Block 4: Benefits — Sticky Scroll Card Stack
   ========================================================================= */

/* ── Section Shell ── */
.benefits-stack-section {
    position: relative;
    background: #FCF9F3; /* Cream base that cards inherit from */
}

/* ── Section Header ── */
.benefits-stack-header {
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 10;
}
.benefits-stack-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    color: #1F2E23;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.benefits-stack-title em {
    font-style: italic;
    color: #4A7C59;
}
.benefits-stack-subtitle {
    font-family: var(--font-sans);
    color: #4A5D50;
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 2.5rem;
}
.benefits-scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4A7C59;
    opacity: 0.5;
}
.scroll-hint-arrow {
    animation: bsc-bounce 1.8s ease-in-out infinite;
}
@keyframes bsc-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ── Sticky Wrapper ── */
.benefits-sticky-wrapper {
    position: relative;
}

/* ── Card Base ── */
.benefit-stack-card {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-origin: center top;
    transition: transform 0.1s linear, filter 0.1s linear;
    will-change: transform, filter;
}

/* Card backgrounds */
.benefit-stack-card--1 { background: #FCF9F3; z-index: 1; }
.benefit-stack-card--2 { background: #F0F4F1; z-index: 2; }
.benefit-stack-card--3 { background: #1F2E23; z-index: 3; }

/* ── Card Inner Layout ── */
.bsc-inner {
    width: 100%;
    max-width: 1300px;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Content Side ── */
.bsc-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bsc-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(82, 121, 111, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A7C59;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, background-color 0.5s;
    transform: translateZ(0);
}
.bsc-icon-wrap--dark {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.bsc-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #4A7C59;
}
.bsc-tag--dark { color: rgba(255,255,255,0.45); }

.bsc-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    color: #1F2E23;
    line-height: 1.05;
}
.bsc-title--dark { color: #FFFFFF; }

.bsc-desc {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4A5D50;
    max-width: 480px;
}
.bsc-desc--dark { color: rgba(255,255,255,0.65); }

.bsc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(82, 121, 111, 0.1);
    border: 1px solid rgba(82, 121, 111, 0.2);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: #4A7C59;
    width: fit-content;
}
.bsc-pill--dark {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

/* ── Visual Side ── */
.bsc-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

/* Glowing Orb */
.bsc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: bsc-orb-pulse 5s ease-in-out infinite alternate;
}
.bsc-orb--1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(160, 82, 45, 0.15) 0%, rgba(82, 121, 111, 0.08) 70%, transparent 100%);
}
.bsc-orb--2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(82, 121, 111, 0.2) 0%, transparent 70%);
}
.bsc-orb--3 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(255, 92, 27, 0.12) 0%, transparent 70%);
}
@keyframes bsc-orb-pulse {
    from { transform: scale(1) rotate(0deg); opacity: 0.6; }
    to   { transform: scale(1.15) rotate(10deg); opacity: 1; }
}

/* Stat Block (Card 1) */
.bsc-stat-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
}
.bsc-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
    border-left: 2px solid rgba(160, 82, 45, 0.25);
}
.bsc-stat-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    color: #1F2E23;
    line-height: 1;
}
.bsc-stat-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4A7C59;
    opacity: 0.7;
}

/* Method Tags (Card 2) */
.bsc-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 2;
}
.bsc-method-tag {
    padding: 12px 24px;
    border-radius: 100px;
    border: 1.5px solid rgba(82, 121, 111, 0.3);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1F2E23;
    transition: all 0.3s ease;
}
.bsc-method-tag:hover {
    background: #4A7C59;
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Quote (Card 3) */
.bsc-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    text-align: center;
}
.bsc-quote::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: rgba(255, 92, 27, 0.6);
    margin: 0 auto 24px;
}

/* ── Icon Micro-Animations ── */
#benefit-icon-award i {
    animation: award-shimmer 3s ease-in-out infinite;
}
@keyframes award-shimmer {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
    50% { filter: brightness(1.2) drop-shadow(0 2px 8px rgba(82, 121, 94, 0.5)); }
}
.shield-glint {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translateX(-150%);
    animation: shield-sweep-anim 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: overlay;
}
@keyframes shield-sweep-anim {
    0%, 70% { transform: rotate(30deg) translateX(-150%); }
    100% { transform: rotate(30deg) translateX(150%); }
}
.heart-pulse-svg {
    animation: heart-soft-pulse 2.5s ease-in-out infinite;
    transform-origin: center;
}
@keyframes heart-soft-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ── Storyline Active State (preserved) ── */
.benefit-node-icon {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, background-color 0.5s;
    transform: translateZ(0);
}
.story-active.benefit-node-icon {
    transform: scale(1.15) translateZ(0);
    box-shadow: 0 0 25px rgba(255, 92, 27, 0.4);
    background-color: rgba(255, 92, 27, 0.1) !important;
    color: #FF5C1B !important;
}

/* ── Mobile: Vertical Stack (no sticky) ── */
@media (max-width: 900px) {

    /* Flush into the section above naturally */
    .benefits-stack-section {
        margin-top: 0;
    }

    /* Header becomes compact */
    .benefits-stack-header {
        padding: 24px 24px 32px;
    }
    .benefits-stack-title {
        font-size: 2rem;
    }
    .benefits-stack-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .benefits-scroll-hint {
        display: none; /* On mobile no need for scroll hint */
    }

    /* Cards: will remain sticky as inherited from desktop */

    /* Inner: single column, tighter gap */
    .bsc-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    /* Hide the visual (orb / stats / methods) on mobile — content is enough */
    .bsc-visual {
        display: none;
    }

    /* Typography cleanup */
    .bsc-title { font-size: 2.2rem; line-height: 1.1; }
    .bsc-desc  { font-size: 1rem; }
    .bsc-tag   { font-size: 0.65rem; }

    /* Method tags on card 2: move inside content col on mobile */
    .benefit-stack-card--2 .bsc-visual {
        display: block;
        min-height: 0;
    }
    .benefit-stack-card--2 .bsc-orb--2 {
        display: none; /* hide orb but show tags */
    }
    .bsc-methods {
        gap: 8px;
    }
    .bsc-method-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Icon compact */
    .bsc-icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
}



/* =========================================================================
   MAK Cards Section
   ========================================================================= */
.offset-shape-top {
    position: relative;
}
/* Removed the big skew before element as it might cover content on some screens causing the green blank space */

.mak-cards {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.mak-cards .section-title {
    color: var(--clr-white);
}

.mak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mak-quote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--clr-white);
    margin-bottom: 2rem;
    font-style: italic;
}

.mak-description {
    color: rgba(255,255,255,0.8);
}

.mak-description p {
    margin-bottom: 1rem;
}

.mak-features {
    margin-top: 2rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mak-features h4 {
    margin-bottom: 1rem;
}

.mak-features ul {
    list-style: none;
}

.mak-features li {
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.mak-target {
    margin-top: 2rem;
}

.mak-target h4 {
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(254, 89, 21, 0.15);
    color: var(--clr-accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(254, 89, 21, 0.3);
}

.flex-center-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-val {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--clr-white);
    line-height: 1;
}

.price-cur {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
}

/* Fallback Swiper constraints in case CDN doesn't load */
.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.mak-swiper {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 600px;
    position: relative;
    display: flex;
}

.mak-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: var(--clr-white) !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--clr-accent) !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--clr-white) !important;
}

.mak-video {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--clr-white);
    pointer-events: none;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    justify-content: center;
    transition: var(--transition);
}

.play-overlay svg {
    width: 60px;
    height: 60px;
}

.mak-video:hover .play-overlay {
    background: rgba(0,0,0,0.2);
}

.mak-video.playing .play-overlay {
    opacity: 0;
}

@media (max-width: 900px) {
    .mak-grid {
        grid-template-columns: 1fr;
    }
    .mak-swiper {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    background-color: var(--clr-darker);
    color: var(--clr-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    color: var(--clr-white);
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--clr-accent);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
    }
}

/* =========================================================================
   Animations & Reveals
   ========================================================================= */
/* =========================================================================
   Animations & Reveals (Premium Upgrade)
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.1s cubic-bezier(0.23, 1, 0.32, 1), 
                transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.fade-left { transform: translateX(30px); }
.reveal.fade-right { transform: translateX(-30px); }

/* Auto-staggering via CSS variables (applied by JS) */
.reveal-group .reveal {
    transition-delay: var(--delay, 0s);
}

/* Fallback delays if JS fails */
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.author-course {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.author-course:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(254, 89, 21, 0.15);
    border-color: rgba(254, 89, 21, 0.4);
}

.course-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.author-course:hover .course-icon {
    transform: rotate(12deg) scale(1.1);
}

/* Benefits Section Styles */
.benefit-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(255, 92, 27, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card i {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover i {
    transform: scale(1.2) rotate(8deg);
}

.benefit-card h3 {
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: var(--clr-accent);
}

.benefit-card:hover {
    border-color: rgba(82, 121, 94, 0.2);
}

/* =========================================================================
   Large-Scale Scroll-Animated Tulip Background Feature
   ========================================================================= */
.tulip-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
    display: flex;
    align-items: flex-end; /* Anchor to bottom */
    justify-content: center;
    overflow: hidden;
}

.tulip-svg {
    width: 90vw; /* HUGE scale */
    height: 90vh;
    opacity: 0.12;
    color: #52795E;
    overflow: visible;
    transition: opacity 0.5s ease;
}

/* Initial "Bud" State: Closed & Small */
#petal-center, 
#petal-inner-left, #petal-inner-right, 
#petal-outer-left, #petal-outer-right {
    transform-origin: 50px 60px; /* Base of the bloom */
    transform: scale(0);
    transition: transform 0.1s linear;
}

#leaf-left, #leaf-right {
    transform-origin: 50px 95px; /* Base of the stem */
    transform: scale(0);
    transition: transform 0.1s linear;
}

/* Breathing Animation for 100% Bloom */
@keyframes tulipBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.tulip-breathing #petals {
    animation: tulipBreath 5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .tulip-svg {
        width: 150vw; /* Even larger on mobile to show detail */
        height: 80vh;
    }
}

/* =========================================================================
   Fluid Typographic Overhaul: Specialties Section
   ========================================================================= */
#specialties {
    background-color: #FFFFFF !important;
}

.specialties-fluid-grid {
    display: grid;
    align-items: center;
}

.specialty-item {
    position: relative;
    padding: 30px 0;
    
    /* Pre-layout: Make sure the element is ready for the transition */
    backface-visibility: hidden;
    perspective: 1000px;
    
    /* Removed opacity: 0 and transform !important to ensure items are always visible
       and don't override the parallax scrolling transform */
}

/* is-visible is no longer needed for opacity/transform, but kept for legacy JS scripts */


/* Force Vertical Stack on Mobile for the Connector Line */
@media (max-width: 1023px) {
    .specialties-fluid-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 80px !important;
        padding-top: 40px;
    }
    .specialty-item {
        width: 100% !important;
        padding: 40px 20px !important;
        text-align: center;
    }
    .specialty-item[data-number]::before {
        font-size: 8rem !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
    }
    .lg\:hidden.mt-16.pb-20 {
        display: none !important; /* Hide swiper to use vertical stack instead */
    }
}

/* Background Numbers (Layered Depth) */
.specialty-item[data-number]::before {
    content: attr(data-number);
    position: absolute;
    top: -20%;
    left: -10%;
    font-size: 15rem;
    font-weight: 900;
    font-family: var(--font-serif);
    color: #52795E;
    opacity: 0.1;
    z-index: -1;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 1s ease;
}

.specialty-item:hover[data-number]::before {
    opacity: 0.15;
    transform: scale(1.05) translate(10px, -10px);
}

/* Brushed Underline (Hand-drawn Effect) */
.brush-reveal {
    position: relative;
    display: inline-block;
}

.brush-reveal::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='200' height='20' viewBox='0 0 200 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 13.5C25 8.5 70 2 100 2.5C130 3 175 9 198 17.5' stroke='%23FF5C1B' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
    opacity: 0.8;
}

.brush-reveal.active::after,
.specialty-item:hover .brush-reveal::after {
    width: 100%;
}

/* Airy Icon Styles */
.specialty-icon-airy {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Keyframes */
@keyframes windDrift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}
@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes compassRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.specialty-item:hover [data-feather="wind"] { animation: windDrift 3s ease-in-out infinite; }
.specialty-item:hover [data-feather="heart"] { animation: heartPulse 2s ease-in-out infinite; }
.specialty-item:hover [data-feather="compass"] { animation: compassRotate 4s ease-in-out infinite; }

/* Mobile Swiper Styling Enhancements */
.specialties-scrollbar {
    background: rgba(82, 121, 94, 0.1) !important;
    border-radius: 10px;
}
.specialties-scrollbar .swiper-scrollbar-drag {
    background: #FF5C1B !important;
}

.group-mobile[data-number]::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-serif);
    color: #52795E;
    opacity: 0.08;
    z-index: -1;
    line-height: 1;
}

/* .group-mobile — Removed opacity/entrance transform to fix mobile lag.
   Swiper slides are now fully visible immediately without fade-in. */

/* Offset Logic for Fluid Parallax */
@media (min-width: 1024px) {
    .specialty-item {
        transform: translateY(var(--parallax-offset, 0px));
        transition: transform 0.15s linear;
    }
}

/* =========================================================================
   Global Storyline Connector
   ========================================================================= */
#global-storyline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Height synced via JS to footer bottom — not scrollHeight */
    height: 0;
    pointer-events: none;
    z-index: 5; /* Keep it above backgrounds but below content */
    overflow: hidden;
    
    /* Technical Fix: Transitions & Masking */
    transition: opacity 0.8s ease-out, filter 0.8s ease-out;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    will-change: stroke-dashoffset, opacity, filter;
}

#global-storyline.is-dissolved {
    opacity: 0;
    filter: blur(4px);
}

@media (max-width: 768px) {
    #global-storyline {
        opacity: 0; /* Hidden by default on mobile */
        transition: opacity 0.5s ease-out;
        will-change: opacity, transform;
    }
    
    /* Class toggled by JS when entering Section 3 */
    #global-storyline.section-3-active {
        opacity: 0.5; /* Keeping it subtle on mobile */
    }
}

#global-storypath,
#global-storypath-left,
#global-storypath-right {
    stroke: #FF5C1B;
    stroke-width: 2px;
    opacity: 0.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 3px rgba(255, 92, 27, 0.4));
    transition: none !important; /* Zero-lag Sync */
}

/* =========================================================================
   Artistic Quote Separator
   ========================================================================= */
.quote-separator-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 4; /* Below global storyline (z-index 5) */
}

.premium-quote {
    position: relative;
    display: inline-block;
    padding: 0 40px;
    z-index: 10; /* Above storyline (z-index 5) */
}

/* The CSS Brush Stroke */
.premium-quote::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(0);
    width: 110%;
    height: 120%;
    background: linear-gradient(90deg, 
        rgba(82, 121, 111, 0) 0%, 
        rgba(82, 121, 111, 0.15) 20%, 
        rgba(82, 121, 111, 0.15) 80%, 
        rgba(82, 121, 111, 0) 100%);
    z-index: -1;
    pointer-events: none;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* Using a Data-URI mask for the brush-like shape to keep it in CSS */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M10,50 Q250,10 500,50 T990,50 L990,60 Q750,100 500,60 T10,60 Z' fill='black'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M10,50 Q250,10 500,50 T990,50 L990,60 Q750,100 500,60 T10,60 Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.quote-separator-section.is-visible .premium-quote::before {
    transform: translate(-50%, -50%) scaleX(1);
}

@media (max-width: 768px) {
    .quote-separator-section {
        min-height: 25vh;
        padding: 40px 10px;
    }
    
    .premium-quote {
        font-size: 1.75rem !important;
        padding: 0 20px;
    }
    
    .premium-quote::before {
        height: 140%;
    }
}

/* Dynamic Word Highlights */
#quote-word-highlight-1.word-active,
#quote-word-highlight-2.word-active,
.spec-word-highlight.word-active {
    color: #FF5C1B !important;
    text-shadow: 0 0 15px rgba(255, 92, 27, 0.4);
    transform: translateY(-4px) scale(1.05);
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Specialties Heading — "Найчастіші" line-touch highlight */
#specialties-word-highlight {
    display: inline;
    transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#specialties-word-highlight.word-active {
    color: #FF5C1B !important;
    text-shadow: 0 0 30px rgba(255, 92, 27, 0.35), 0 0 60px rgba(255, 92, 27, 0.15);
    display: inline-block;
    transform: translateY(-3px);
}

/* =========================================================================
   MAK SECTION — Premium Redesign
   ========================================================================= */

/* ── Base Layout ── */
.mak-section {
    position: relative;
    background: #0F1C14;
    overflow: hidden;
    padding: 0 0 90px;
    isolation: isolate;
}

.mak-section, .mak-section * {
    box-sizing: border-box;
    max-width: 100%;
}

.mak-ambient-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.mak-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0;
    animation: makOrbFloat 20s ease-in-out infinite alternate;
}

.mak-orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(160, 82, 45, 0.55) 0%, transparent 70%);
    top: -200px; right: -150px;
    animation-delay: 0s;
    opacity: 0.25;
}

.mak-orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(82, 121, 94, 0.55) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    animation-delay: -7s;
    opacity: 0.20;
}

.mak-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(192, 93, 61, 0.35) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.15;
}

@keyframes makOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -60px) scale(1.15); }
    100% { transform: translate(-30px, 30px) scale(0.9); }
}

.mak-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.035;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Beautiful curving SVG line */
.mak-bg-line {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
    z-index: 1;
    transform-origin: center;
    animation: makLineFloat 15s ease-in-out infinite alternate;
}

@keyframes makLineFloat {
    0%   { transform: translateY(-10px) rotate(-1deg); opacity: 0.7; }
    50%  { transform: translateY(10px) rotate(1deg); opacity: 1; }
    100% { transform: translateY(-10px) rotate(-1deg); opacity: 0.7; }
}

/* ── Section Header ── */
.mak-header-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 860px;
    margin: 0 auto;
}

.mak-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.mak-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF5C1B;
    box-shadow: 0 0 12px 3px rgba(192, 93, 61, 0.6);
    animation: makDotPulse 2s ease-in-out infinite;
}

@keyframes makDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.3); opacity: 0.7; }
}

.mak-eyebrow-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

.mak-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mak-title-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: #FF5C1B;
    font-size: 0.85em;
    position: relative;
}

.mak-title-accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF5C1B, transparent);
    border-radius: 2px;
    animation: makUnderline 1.2s 0.5s cubic-bezier(0.65,0,0.35,1) forwards;
}

@keyframes makUnderline {
    to { transform: translateX(-50%) scaleX(1); }
}

.mak-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Main Grid ── */
.mak-grid-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

/* ── Left: Media Column ── */
.mak-media-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
    min-width: 0;
}

/* Media Tabs */
.mak-media-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.mak-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: transparent;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mak-tab svg {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mak-tab:hover {
    color: rgba(255,255,255,0.9);
}

.mak-tab.active {
    background: rgba(192, 93, 61, 0.9);
    color: #fff;
    box-shadow: 0 4px 14px rgba(192, 93, 61, 0.4);
}

.mak-tab.active svg {
    opacity: 1;
}

/* Tab Content */
.mak-tab-content {
    display: none;
    animation: makTabFadeIn 0.5s ease forwards;
}

.mak-tab-content.active {
    display: block;
}

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

/* Video Hero */
.mak-video-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    /* Remove strict aspect-ratio so video defines its own height, but add max-height for large screens */
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    cursor: pointer;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.07),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.mak-video-hero:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 52px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

.mak-video-el {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Overlay */
.mak-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

/* Play Ring */
.mak-video-play-ring {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.mak-play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.mak-play-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    animation: makRingPulse 2.5s ease-in-out infinite;
}

.mak-play-icon::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    animation: makRingPulse 2.5s ease-in-out 0.6s infinite;
}

@keyframes makRingPulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.mak-video-hero:hover .mak-play-icon {
    background: #FF5C1B;
    border-color: #FF5C1B;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(192, 93, 61, 0.5);
}

.mak-play-icon svg {
    width: 26px;
    height: 26px;
    margin-left: 4px;
}

.mak-play-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.mak-video-label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Pause Button */
.mak-pause-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(8px);
}

.mak-pause-btn.visible {
    opacity: 1;
    transform: scale(1);
}

.mak-pause-btn:hover {
    background: rgba(192, 93, 61, 0.8);
    border-color: #FF5C1B;
}

.mak-pause-btn svg {
    width: 16px;
    height: 16px;
}

/* Gallery Block */
.mak-gallery-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    padding: 16px;
}

.mak-gallery-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    padding: 0 4px;
}

.mak-gallery-swiper {
    border-radius: 16px;
    overflow: hidden;
}

.mak-gallery-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.mak-gallery-swiper .swiper-slide:hover .mak-gallery-img {
    transform: scale(1.03);
}

/* Gallery Nav */
.mak-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 0 0;
}

.mak-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.mak-nav-btn:hover {
    background: #FF5C1B;
    border-color: #FF5C1B;
    color: #fff;
    transform: scale(1.1);
}

.mak-nav-btn svg {
    width: 16px;
    height: 16px;
}

.mak-swiper-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

/* ── Right: Info Column ── */
.mak-info-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 24px;
    min-width: 0;
}

/* Pull Quote */
.mak-pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    border-left: 3px solid #FF5C1B;
    padding-left: 20px;
    margin: 0;
    position: relative;
}

.mak-pull-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(192, 93, 61, 0.2);
    position: absolute;
    top: -20px;
    left: -8px;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

/* Body Text */
.mak-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0;
}

/* Features */
.mak-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.mak-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}

.mak-feature-item:last-child {
    border-bottom: none;
}

.mak-feature-item:hover {
    background: rgba(255,255,255,0.04);
}

.mak-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(192, 93, 61, 0.12);
    border: 1px solid rgba(192, 93, 61, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5C1B;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mak-feature-item:hover .mak-feature-icon {
    background: rgba(192, 93, 61, 0.22);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(192, 93, 61, 0.3);
}

.mak-feature-icon svg {
    width: 16px;
    height: 16px;
}

.mak-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mak-feature-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.01em;
}

.mak-feature-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* Audience */
.mak-audience {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mak-audience-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(82, 121, 94, 0.9);
}

.mak-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mak-tag {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    cursor: default;
    transition: all 0.25s ease;
}

.mak-tag:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA Card */
.mak-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.mak-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192, 93, 61, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.mak-cta-card:hover {
    border-color: rgba(192, 93, 61, 0.4);
    box-shadow: 0 0 40px rgba(192, 93, 61, 0.12);
}

.mak-cta-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mak-cta-price-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.mak-cta-price-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.mak-cta-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.mak-cta-currency {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF5C1B;
}

/* CTA Button */
.mak-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    background: #FF5C1B;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow:
        0 12px 32px rgba(192, 93, 61, 0.4),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.mak-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mak-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 20px 45px rgba(192, 93, 61, 0.55),
        0 0 0 1px rgba(255,255,255,0.15) inset;
    background: #d4683e;
}

.mak-cta-btn:hover::before {
    opacity: 1;
}

.mak-cta-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mak-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Custom Swiper Pagination Bullet for Gallery */
.mak-gallery-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3) !important;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mak-gallery-swiper .swiper-pagination-bullet-active {
    background: #FF5C1B !important;
    width: 20px;
    border-radius: 3px;
}

/* Section entrance animation */
@keyframes makFadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mak-header-wrap,
.mak-media-col,
.mak-info-col {
    animation: makFadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mak-media-col  { animation-delay: 0.1s; }
.mak-info-col   { animation-delay: 0.2s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .mak-grid-container {
        /* minmax(0, 1fr) is critical here to prevent CSS grid content from blowing out the container width */
        grid-template-columns: minmax(0, 1fr) !important;
        max-width: 700px;
        gap: 36px;
    }

    .mak-media-col {
        position: static;
        order: 1;
    }

    .mak-info-col {
        order: 2;
    }
}

@media (max-width: 768px) {
    .mak-section {
        padding-bottom: 70px;
        width: 100%; /* Prevent overflow */
        box-sizing: border-box;
    }

    .mak-header-wrap {
        padding: 56px 16px 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .mak-main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        padding: 0 10px;
    }

    .mak-subtitle {
        padding: 0 16px;
    }

    .mak-grid-container {
        padding: 0 16px;
        gap: 24px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .mak-video-hero {
        width: 100%;
        /* Force a tall portrait aspect ratio for mobile so it never collapses */
        aspect-ratio: 4 / 5;
        height: auto;
        max-height: none;
        border-radius: 20px;
    }

    .mak-video-el {
        width: 100%;
        height: 100%;
    }

    .mak-gallery-wrap {
        padding: 12px;
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .mak-gallery-swiper {
        width: 100%;
    }

    .mak-gallery-img {
        width: 100%;
        height: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

    .mak-info-col {
        padding-top: 0;
        gap: 20px;
    }

    .mak-pull-quote {
        font-size: 1.15rem;
        padding-left: 16px;
        margin: 0;
        word-wrap: break-word;
    }

    .mak-body-text {
        font-size: 0.95rem;
    }

    .mak-features {
        border-radius: 16px;
    }
    
    .mak-feature-item {
        padding: 16px;
        gap: 12px;
    }

    .mak-cta-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 16px;
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .mak-cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 16px 0;
    }

    .mak-cta-amount {
        font-size: 2.5rem;
    }

    .mak-play-icon {
        width: 50px;
        height: 50px;
    }
    
    .mak-play-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .mak-section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .mak-main-title {
        font-size: 1.8rem;
    }

    .mak-pull-quote {
        font-size: 1.05rem;
    }
    
    .mak-grid-container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .mak-video-hero, .mak-gallery-wrap, .mak-cta-card, .mak-features {
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .mak-info-col {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .mak-audience {
        width: 100%;
        min-width: 0;
    }

    /* Force tags into a 2-column grid so they mathematically cannot blow out the width */
    .mak-tags {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .mak-feature-item {
        padding: 12px;
    }

    .mak-tag {
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center;
        padding: 8px 4px !important;
        font-size: 10px;
    }

    .mak-cta-card {
        padding: 16px 12px;
    }

    .mak-cta-btn {
        padding: 12px 10px;
        font-size: 12px;
    }

    p, span, h2, h3, h4, blockquote, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* =========================================================================
   PREMIUM BOOKING MODAL
   ========================================================================= */

/* Overlay */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Backdrop */
.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 35, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

/* Panel */
.booking-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(145deg, #FFFFFF 0%, #F9F6F1 100%);
    border-radius: 32px;
    padding: 44px 48px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.8),
        0 40px 80px rgba(30, 40, 35, 0.25),
        0 10px 30px rgba(30, 40, 35, 0.1);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(160,82,45,0.3) transparent;
}

.booking-modal-overlay.is-open .booking-modal-panel {
    transform: scale(1) translateY(0);
}

/* Decorative Orbs */
.bm-orbs-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}
.bm-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.bm-orb-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(192,93,61,0.12) 0%, transparent 70%);
    animation: bm-orb-float 8s ease-in-out infinite alternate;
}
.bm-orb-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(82,121,94,0.1) 0%, transparent 70%);
    animation: bm-orb-float 10s ease-in-out infinite alternate-reverse;
}

@keyframes bm-orb-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15px, -15px) scale(1.05); }
}

/* Close Button */
.bm-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 51, 49, 0.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F2E23;
    transition: all 0.25s ease;
}
.bm-close-btn:hover {
    background: rgba(192, 93, 61, 0.12);
    color: #FF5C1B;
    transform: rotate(90deg);
}
.bm-close-btn svg {
    width: 18px;
    height: 18px;
}

/* Header */
.bm-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.bm-logo-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF5C1B 0%, #FF5C1B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(160, 82, 45, 0.35);
}
.bm-logo-icon svg {
    width: 26px;
    height: 26px;
}

.bm-header-text {
    flex: 1;
}

.bm-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FF5C1B;
    margin-bottom: 4px;
    line-height: 1;
}

.bm-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2E23;
    margin-bottom: 6px;
    line-height: 1.1;
}

.bm-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #4A7C59;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Form */
.bm-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Field Row (side by side on desktop) */
.bm-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 520px) {
    .bm-field-row {
        grid-template-columns: 1fr;
    }
}

/* Field */
.bm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Label */
.bm-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1F2E23;
}
.bm-label svg {
    opacity: 0.5;
    flex-shrink: 0;
}

/* Input Wrapper */
.bm-input-wrap {
    position: relative;
}

/* Input / Textarea */
.bm-input {
    width: 100%;
    background: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(45, 51, 49, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1F2E23;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    -webkit-appearance: none;
    appearance: none;
    resize: none;
    display: block;
}

.bm-input::placeholder {
    color: rgba(45, 51, 49, 0.35);
    font-size: 0.875rem;
}

.bm-input:focus {
    border-color: #FF5C1B;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.1), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.bm-input.bm-textarea {
    min-height: 90px;
    line-height: 1.6;
}

/* Focus Bar (animated underline effect) */
.bm-input-focus-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF5C1B, #FF5C1B);
    border-radius: 1px;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.bm-input:focus ~ .bm-input-focus-bar {
    width: calc(100% - 28px);
}

/* Error Messages */
.bm-error {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #FF5C1B;
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.bm-field.has-error .bm-error {
    display: flex;
}
.bm-field.has-error .bm-input {
    border-color: #FF5C1B;
    background: rgba(192, 93, 61, 0.03);
    animation: bm-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes bm-shake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(3px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}

/* Optional label */
.bm-optional {
    font-weight: 400;
    opacity: 0.5;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
}

/* Submit Button */
.bm-submit-btn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 28px;
    margin-top: 8px;
    border-radius: 99px;
    background: linear-gradient(135deg, #FF5C1B 0%, #FF5C1B 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(160, 82, 45, 0.4), 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bm-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E64A0E 0%, #FF5C1B 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bm-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(160, 82, 45, 0.5), 0 4px 12px rgba(0,0,0,0.12);
}
.bm-submit-btn:hover::before { opacity: 1; }

.bm-submit-btn:active {
    transform: translateY(0);
}

.bm-btn-text, .bm-btn-icon {
    position: relative;
    z-index: 1;
}
.bm-btn-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.bm-submit-btn:hover .bm-btn-icon svg {
    transform: translateX(3px);
}

/* Loading state */
.bm-btn-loader {
    display: none;
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    animation: bm-spin 0.7s linear infinite;
}
.bm-submit-btn.is-loading .bm-btn-text,
.bm-submit-btn.is-loading .bm-btn-icon { display: none; }
.bm-submit-btn.is-loading .bm-btn-loader { display: block; }

@keyframes bm-spin {
    to { transform: rotate(360deg); }
}

/* Privacy Note */
.bm-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(45, 51, 49, 0.45);
    text-align: center;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 4px;
    line-height: 1.5;
}
.bm-privacy svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* Success State */
.bm-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 10px;
    position: relative;
    z-index: 1;
}
.bm-success.is-visible {
    display: flex;
}

.bm-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(82,121,94,0.15) 0%, rgba(82,121,94,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #4A7C59;
    border: 2px solid rgba(82, 121, 94, 0.2);
    animation: bm-success-bounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bm-success-icon svg {
    width: 36px;
    height: 36px;
    stroke: #4A7C59;
}

@keyframes bm-success-bounce {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.bm-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2E23;
    margin-bottom: 12px;
}

.bm-success-msg {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #4A7C59;
    margin-bottom: 28px;
    max-width: 300px;
}

.bm-success-close {
    padding: 12px 32px;
    border-radius: 99px;
    background: #1F2E23;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.bm-success-close:hover {
    background: #FF5C1B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160,82,45,0.35);
}
.bm-pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 99px;
    background: #1b1f23;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.bm-pay-btn:hover {
    background: #fff;
    color: #1b1f23;
    border-color: #1b1f23;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* No scroll when modal open */
body.modal-open {
    overflow: hidden;
}

/* Modal responsive */
@media (max-width: 600px) {
    .booking-modal-panel {
        padding: 28px 24px;
        border-radius: 24px;
    }
    .bm-title {
        font-size: 1.6rem;
    }
    .bm-header {
        gap: 14px;
        margin-bottom: 24px;
    }
    .bm-logo-icon {
        width: 44px;
        height: 44px;
    }
}

/* =========================================================================
   HERO MOBILE FIXES
   ========================================================================= */

/* Compact therapy badge pill (mobile only) */
.hero-therapy-pill {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(82, 121, 94, 0.25);
    border-radius: 99px;
    padding: 5px 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    animation: float 5s ease-in-out infinite alternate;
    white-space: nowrap;
}

/* Hero section — mobile top spacing so content clears header */
@media (max-width: 1023px) {
    #hero-premium {
        padding-top: 40px !important;

        min-height: 100svh; /* Use small viewport height on mobile to avoid iOS address bar */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Make h1 a touch smaller so it fits without overflow */
    #hero-premium h1 {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    /* Compress paragraph on mobile */
    #hero-premium p.font-sans-inter {
        font-size: 0.875rem !important;
        margin-bottom: 16px !important;
    }

    /* Social icons row — smaller gap */
    #hero-premium .flex.items-center.gap-4 {
        margin-top: 16px !important;
    }

    /* Tags row — smaller */
    .hero-tag span {
        font-size: 0.6rem !important;
        letter-spacing: 0.08em !important;
    }

    /* Photo wrapper — less top margin */
    #hero-premium .mt-4 {
        margin-top: 12px;
    }
}

/* Extra small phones */
@media (max-width: 390px) {
    #hero-premium h1 {
        font-size: 1.85rem !important;
    }

    #hero-premium .w-\[88\%\] {
        width: 92% !important;
    }
}

/* =========================================================================
   PRICING GRID — 4 Beautiful Cards
   ========================================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

/* ── Base Card ── */
.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 40px 36px 36px;
    border: 1px solid rgba(31, 46, 35, 0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(74,124,89,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(31,46,35,0.10);
}

/* ── Featured Card ── */
.pricing-card--featured {
    background: #1F2E23;
    border-color: #1F2E23;
    box-shadow: 0 20px 60px rgba(31,46,35,0.25);
}
.pricing-card--featured::before {
    background: linear-gradient(135deg, rgba(255,92,27,0.12) 0%, transparent 60%);
}
.pricing-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(31,46,35,0.35);
}
.pricing-card--featured .pc-icon {
    color: #FF5C1B;
    background: rgba(255,92,27,0.12);
}
.pricing-card--featured .pc-duration {
    color: rgba(255,255,255,0.5);
}
.pricing-card--featured .pc-title,
.pricing-card--featured .pc-price,
.pricing-card--featured .pc-currency {
    color: #fff;
}
.pricing-card--featured .pc-desc {
    color: rgba(255,255,255,0.7);
}

/* ── Popular Badge ── */
.pc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,92,27,0.15);
    color: #FF5C1B;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,92,27,0.25);
}

/* ── Top Row (icon + duration) ── */
.pc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.pc-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.pc-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(74,124,89,0.08);
    color: #4A7C59;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}
.pc-icon svg {
    width: 24px;
    height: 24px;
}
.pricing-card:not(.pricing-card--featured):hover .pc-icon {
    background: rgba(255,92,27,0.1);
    color: #FF5C1B;
}

.pc-duration {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: #4A7C59;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pc-saving {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: #FF5C1B;
    background: rgba(255,92,27,0.08);
    border: 1px solid rgba(255,92,27,0.2);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

/* ── Title ── */
.pc-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #1F2E23;
    margin: 0 0 14px 0;
    line-height: 1.2;
}

/* ── Price Block ── */
.pc-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}
.pc-price {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1F2E23;
    line-height: 1;
}
.pc-currency {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #4A7C59;
}
.pricing-card--featured .pc-currency {
    color: rgba(255,255,255,0.5);
}

/* ── Description ── */
.pc-desc {
    font-family: var(--font-sans);
    font-size: 0.925rem;
    line-height: 1.7;
    color: #4A5D50;
    margin: 0 0 auto 0;
    flex-grow: 1;
    padding-bottom: 24px;
}

/* ── Bullet List ── */
.pc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.55;
    color: #4A5D50;
}
.pc-list li span:last-child {
    flex: 1;
}
.pricing-card--featured .pc-list li {
    color: rgba(255,255,255,0.7);
}
.pc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF5C1B;
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(255,92,27,0.4);
}

/* ── Button ── */
.pc-footer {
    margin-top: 0;
    padding-top: 4px;
}
.pc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 24px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid rgba(31,46,35,0.15);
    background: transparent;
    color: #1F2E23;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.pc-btn:hover {
    background: #1F2E23;
    border-color: #1F2E23;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,46,35,0.2);
}
.pc-btn--accent {
    background: #FF5C1B;
    border-color: #FF5C1B;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,92,27,0.35);
}
.pc-btn--accent:hover {
    background: #E64A0E;
    border-color: #E64A0E;
    color: #fff;
    box-shadow: 0 12px 32px rgba(255,92,27,0.45);
}
.pricing-card--featured .pc-btn:not(.pc-btn--accent) {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.pricing-card--featured .pc-btn:not(.pc-btn--accent):hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Tablet (768px) ── */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .pricing-card {
        padding: 30px 24px 28px;
    }
    .pc-price {
        font-size: 2.6rem;
    }
    .pc-title {
        font-size: 1.3rem;
    }
}

/* ── Mobile (640px) ── */
@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pricing-card {
        padding: 28px 20px 24px;
    }
    .pc-price {
        font-size: 2.4rem;
    }
}


/* ════════════════════════════════════════════════════════════
   ARTICLES SECTION
════════════════════════════════════════════════════════════ */

.articles-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #FF5C1B;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255,92,27,0.08);
    border: 1px solid rgba(255,92,27,0.15);
}

/* ── Article Card ── */
.article-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
    cursor: pointer;
    word-wrap: break-word;
    word-break: break-word;
}
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.article-card-accent {
    height: 5px;
    background: linear-gradient(90deg, #4A7C59, #FF5C1B);
    flex-shrink: 0;
}
.article-card-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.article-card-date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #FF5C1B;
    margin-bottom: 12px;
}
.article-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #1F2E23;
    line-height: 1.3;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5D50;
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 24px;
}
.article-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4A7C59;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(74,124,89,0.25);
    background: transparent;
    cursor: pointer;
    transition: all .25s;
    align-self: flex-start;
}
.article-card-btn svg {
    transition: transform .25s;
}
.article-card:hover .article-card-btn {
    background: #4A7C59;
    border-color: #4A7C59;
    color: #fff;
}
.article-card:hover .article-card-btn svg {
    transform: translateX(4px);
}

/* ── Articles swiper nav ── */
.articles-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.articles-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(74,124,89,0.25);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4A7C59;
    transition: all .25s;
}
.articles-nav-btn:hover {
    background: #4A7C59;
    border-color: #4A7C59;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(74,124,89,0.3);
}
.articles-pagination {
    bottom: 0 !important;
}
.articles-pagination .swiper-pagination-bullet {
    background: #4A7C59;
    opacity: 0.3;
}
.articles-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

/* ── Empty state ── */
.articles-empty-state {
    text-align: center;
    padding: 64px 20px;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}
.articles-empty-state svg {
    margin: 0 auto 20px;
    display: block;
    opacity: .35;
    color: #4A7C59;
}

/* ── Loading skeletons ── */
.articles-loading-wrap {
    display: flex;
    gap: 24px;
    overflow: hidden;
}
.article-skeleton {
    flex: 1;
    min-width: 0;
    height: 340px;
    border-radius: 24px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Article Read Modal ── */
.article-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.article-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.article-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 0;
}
.article-modal-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 28px;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0,0,0,0.18);
    transform: translateY(30px);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    overflow: hidden;
}
.article-modal-overlay.open .article-modal-panel {
    transform: translateY(0);
}
/* Fixed header area */
.article-modal-header {
    position: relative;
    padding: 40px 48px 24px;
    flex-shrink: 0;
    border-bottom: 1px solid #f0f0f0;
}
.article-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4A5D50;
    transition: all .2s;
    flex-shrink: 0;
}
.article-modal-close:hover {
    background: #1F2E23;
    border-color: #1F2E23;
    color: #fff;
}
.article-modal-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.article-modal-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF5C1B;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255,92,27,0.08);
    border: 1px solid rgba(255,92,27,0.15);
}
.article-modal-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9ca3af;
}
.article-modal-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #1F2E23;
    line-height: 1.25;
    margin: 0;
    padding-right: 32px;
}
/* Scrollable body */
.article-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    word-break: break-word;
    overscroll-behavior: contain;
    padding: 28px 48px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: #374151;
}
.article-modal-body::-webkit-scrollbar {
    width: 5px;
}
.article-modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.article-modal-body::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}
.article-modal-body::-webkit-scrollbar-thumb:hover {
    background: #4A7C59;
}
.article-modal-body h1,
.article-modal-body h2,
.article-modal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #1F2E23;
    margin: 1.5em 0 .5em;
}
.article-modal-body h1 { font-size: 1.9rem; }
.article-modal-body h2 { font-size: 1.55rem; }
.article-modal-body h3 { font-size: 1.25rem; }
.article-modal-body p {
    margin-bottom: 1em;
    word-wrap: break-word;
    word-break: break-word;
}
.article-modal-body pre,
.article-modal-body code {
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    font-family: inherit !important;
}
.article-modal-body img,
.article-modal-body iframe,
.article-modal-body video {
    max-width: 100% !important;
    height: auto !important;
}
.article-modal-body img {
    border-radius: 10px;
    margin: 16px auto;
    display: block;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
/* Float images (Quill alignment) */
.article-modal-body img[style*="float: left"] {
    display: inline-block;
    margin: 4px 16px 12px 0;
}
.article-modal-body img[style*="float: right"] {
    display: inline-block;
    margin: 4px 0 12px 16px;
}
/* Clear floats after each paragraph block */
.article-modal-body p { margin-bottom: 0.9em; }
.article-modal-body::after { content: ''; display: table; clear: both; }
.article-modal-body ul,
.article-modal-body ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.article-modal-body li { margin-bottom: .4em; }
.article-modal-body strong { font-weight: 700; color: #1F2E23; }
.article-modal-body em { font-style: italic; color: #4A5D50; }
.article-modal-body blockquote {
    border-left: 3px solid #4A7C59;
    padding-left: 20px;
    margin: 1.5em 0;
    font-style: italic;
    color: #4A5D50;
}

@media (max-width: 640px) {
    .article-modal-panel {
        border-radius: 20px;
        max-height: calc(100vh - 40px);
    }
    .article-modal-header {
        padding: 28px 24px 20px;
    }
    .article-modal-body {
        padding: 20px 24px 32px;
    }
    .articles-loading-wrap {
        flex-direction: column;
    }
    .article-skeleton:nth-child(n+3) {
        display: none;
    }
}