/* ================================
   CUSTOM FONTS
   ================================ */
/* Add custom font files here when available:
   Place font files in /assets/fonts/ folder and uncomment below */

/*
@font-face {
    font-family: 'Elms Sans';
    src: url('assets/fonts/ElmsSans-Regular.woff2') format('woff2'),
         url('assets/fonts/ElmsSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'classy-marisa';
    src: url('assets/fonts/ClassyMarisa-Regular.woff2') format('woff2'),
         url('assets/fonts/ClassyMarisa-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Le French';
    src: url('assets/fonts/LeFrench-Regular.woff2') format('woff2'),
         url('assets/fonts/LeFrench-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
*/

/* ================================
   CSS VARIABLES & DESIGN TOKENS
   ================================ */
:root {
    /* Colors - Warm & Natural Palette */
    --color-primary: #FB8500;
    --color-primary-light: #FF9E2B;
    --color-primary-dark: #C46A00;
    --color-secondary: #6FCF97;
    --color-secondary-light: #8EE4AF;
    --color-secondary-dark: #27AE60;

    --color-accent-pink: #F9CDD3;
    --color-accent-purple: #C4A5D8;
    --color-accent-yellow: #FEE5C1;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-cream: #FFF9F4;
    --color-beige: #F5F0EA;
    --color-sand: #EDE7E0;
    --color-gray-50: #FBFBFB;
    --color-gray-100: #F7F7F7;
    --color-gray-150: #EFEFEF;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #D1D1D1;
    --color-gray-400: #A8A8A8;
    --color-gray-500: #6B6B6B;
    --color-gray-600: #4A4A4A;
    --color-gray-700: #2D2D2D;
    --color-gray-800: #1F1F1F;
    --color-gray-900: #141414;
    --color-black: #1A1A1A;

    /* Typography */
    --font-heading: 'classy-marisa', 'Le French', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Elms Sans', 'Raleway', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --peachi: 'classy-marisa', 'Le French', 'Cormorant Garamond', Georgia, serif;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.625rem);
    --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
    --text-3xl: clamp(2rem, 1.75rem + 1.25vw, 2.875rem);
    --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);

    /* Font Weights */
    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Container */
    --container-max: 1280px;
    --container-padding: clamp(1.5rem, 5vw, 3rem);
    --header-height: 72px;
}

/* Desktop alignment to match Consult section center line */
@media (min-width: 969px) {
    .about-grid {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .about-section .about-text {
        padding: clamp(1.25rem, 3vw, 2.5rem);
    }

    .about-section .about-image {
        justify-self: center;
    }
}

/* Using Google Fonts: Fraunces for display text with full character support */

/* Desktop to Tablet transition (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-title {
        font-size: clamp(2.75rem, 4vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 1.1vw, 1.1rem);
    }

    .hero-cta {
        gap: var(--space-3);
    }

    .hero-img {
        max-width: clamp(400px, 38vw, 480px);
        height: clamp(520px, 62vh, 680px);
    }
}

/* Tablet refinement (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.25rem, 3.6vw, 3.75rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    }

    .hero-cta {
        gap: var(--space-3);
    }
}

/* Mobile to tablet transition (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
    .mobile-hero-media {
        height: clamp(500px, 64vh, 600px);
    }

    .mobile-hero-heading {
        font-size: clamp(1.75rem, 5vw, 2.1rem);
    }

    .mobile-hero-sub {
        font-size: clamp(0.95rem, 2.3vw, 1.05rem);
    }
}

/* Small to medium mobile (420px - 600px) */
@media (min-width: 420px) and (max-width: 600px) {
    .mobile-hero-media {
        height: clamp(460px, 60vh, 540px);
    }

    .mobile-hero-copy {
        padding: 1.65rem 1.15rem 1.4rem 1.15rem;
    }
}

/* ================================
   RESET & BASE STYLES
   ================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-gray-700);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--peachi);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-gray-700);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-4);
}

.highlight {
    color: var(--color-primary);
    position: relative;
}

/* ================================
   LAYOUT UTILITIES
   ================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 1441px) {
    .container {
        max-width: 1360px;
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

section {
    padding: var(--space-20) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--space-10) 0;
    }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.625rem, 1.5vh, 0.75rem) clamp(1.25rem, 3vw, 1.75rem);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    font-weight: var(--weight-medium);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: -0.01em;
    position: relative;
    line-height: 1;
    min-height: clamp(42px, 5.2vh, 48px);
}

.btn:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(242, 153, 74, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(242, 153, 74, 0.35);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-700);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-gray-700);
    border: 1.5px solid var(--color-gray-700);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
}

.btn-outline:hover {
    background: var(--color-gray-700);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    color: var(--color-gray-600);
    position: relative;
}

.btn-icon:hover {
    background: var(--color-beige);
    color: var(--color-primary);
}

.btn-add-cart {
    padding: var(--space-2) var(--space-5);
    background: var(--color-gray-700);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    transition: all var(--transition-base);
}

.btn-add-cart:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 1000;
    padding: var(--space-5) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: var(--space-4) 0;
}

/* Cart icon styling */
.cart-icon {
    position: relative;
    display: none;
}

.cart-icon svg {
    transition: all var(--transition-base);
}

.cart-icon:hover svg {
    transform: scale(1.05);
}

/* Mobile header styling - Bose inspired */
@media (max-width: 1024px) {
    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.875rem 0;
    }

    .nav-wrapper {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 0;
    }

    /* Hamburger on left */
    .menu-toggle {
        justify-self: start;
        grid-column: 1;
    }

    /* Center logo */
    .logo {
        justify-self: center;
        grid-column: 2;
        margin: 0;
    }

    /* Cart icon on right */
    .nav-actions {
        justify-self: end;
        grid-column: 3;
        margin: 0;
        display: flex;
        gap: var(--space-2);
        align-items: center;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .cart-icon {
        display: inline-flex;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-text {
    font-family: 'Raleway', system-ui, -apple-system, sans-serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gray-700);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.825rem);
    font-weight: var(--weight-medium);
    color: var(--color-gray-700);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pricing-dropdown svg {
    margin-top: 1px;
    transition: transform var(--transition-base);
}

.pricing-dropdown:hover svg {
    transform: translateY(2px);
}

.nav-menu a:hover {
    color: var(--color-gray-600);
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 3px;
    border-radius: 6px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-gray-700);
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.menu-toggle:active {
    background: rgba(0, 0, 0, 0.08);
}

.menu-toggle.active svg path {
    stroke: var(--color-primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(80%, 340px);
    height: 100vh;
    background: var(--color-white);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
    padding: var(--space-6) var(--space-5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-gray-150);
}

.mobile-menu-header .logo-text {
    font-size: 16px;
    font-weight: var(--weight-semibold);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    cursor: pointer;
    color: var(--color-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.mobile-menu-close:hover {
    background: var(--color-gray-200);
    transform: scale(0.95);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-nav a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--weight-regular);
    color: var(--color-gray-700);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.mobile-menu-nav a:hover {
    color: var(--color-primary);
    padding-left: var(--space-2);
    background: var(--color-gray-50);
    padding-right: var(--space-2);
    border-radius: var(--radius-md);
    border-bottom-color: transparent;
}

.mobile-menu-actions {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-gray-150);
}

.mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--space-3);
    font-size: 14px;
    padding: var(--space-3) var(--space-4);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-primary);
    color: var(--color-white);
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: var(--weight-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        margin-right: auto;
    }

    .nav-actions .btn.btn-outline {
        padding: var(--space-2) var(--space-4);
        font-size: 0.85rem;
    }
}

/* Nav stays consistent across all breakpoints */

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2rem;
}

@media (min-width: 1441px) {
    .hero {
        padding-top: calc(var(--space-20) + 72px);
        padding-bottom: var(--space-24);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image";
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    width: 100%;
}

.hero-image {
    position: relative;
    animation: fadeIn 1s ease-out;
    grid-area: image;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-2xl);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: radial-gradient(60% 60% at 50% 45%, rgba(242, 153, 74, 0.35) 0%, rgba(242, 153, 74, 0.15) 35%, rgba(242, 153, 74, 0.08) 55%, rgba(242, 153, 74, 0) 70%);
    filter: blur(22px);
    z-index: 0;
    transform: translateZ(0);
}

.hero-badges {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    --ampX: 80px;
    --ampY: 60px;
}

.hero-badges .hero-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    color: var(--color-gray-700);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    transform: translateZ(0);
    will-change: transform;
}

.hero-badges .hero-badge:nth-child(1) {
    top: 8%;
    left: 6%;
    animation: roam1 22s ease-in-out infinite;
}

.hero-badges .hero-badge:nth-child(2) {
    bottom: 10%;
    left: 8%;
    animation: roam2 24s ease-in-out infinite;
}

.hero-badges .hero-badge:nth-child(3) {
    top: 12%;
    right: 6%;
    animation: roam3 26s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Roaming paths (relative to initial absolute position) */
@keyframes roam1 {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(calc(var(--ampX) * 0.6), calc(var(--ampY) * -0.4));
    }

    40% {
        transform: translate(calc(var(--ampX) * -0.3), calc(var(--ampY) * 0.5));
    }

    60% {
        transform: translate(calc(var(--ampX) * 0.2), calc(var(--ampY) * 0.2));
    }

    80% {
        transform: translate(calc(var(--ampX) * -0.5), calc(var(--ampY) * -0.3));
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes roam2 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(calc(var(--ampX) * 0.4), calc(var(--ampY) * 0.5));
    }

    50% {
        transform: translate(calc(var(--ampX) * -0.5), calc(var(--ampY) * 0.2));
    }

    75% {
        transform: translate(calc(var(--ampX) * 0.3), calc(var(--ampY) * -0.5));
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes roam3 {
    0% {
        transform: translate(0, 0);
    }

    15% {
        transform: translate(calc(var(--ampX) * -0.45), calc(var(--ampY) * 0.25));
    }

    45% {
        transform: translate(calc(var(--ampX) * 0.5), calc(var(--ampY) * 0.35));
    }

    70% {
        transform: translate(calc(var(--ampX) * -0.25), calc(var(--ampY) * -0.45));
    }

    100% {
        transform: translate(0, 0);
    }
}

@media (max-width: 768px) {
    .hero-badges {
        --ampX: 40px;
        --ampY: 30px;
    }

    .hero-badges .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }

    .hero-badges .hero-badge:nth-child(1) {
        top: 6%;
        left: 6%;
    }

    .hero-badges .hero-badge:nth-child(2) {
        bottom: 8%;
        left: 6%;
    }

    .hero-badges .hero-badge:nth-child(3) {
        top: auto;
        bottom: 18%;
        right: 8%;
    }
}

@media (max-width: 480px) {
    .hero-badges .hero-badge:nth-child(3) {
        display: none;
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
    text-align: left;
    grid-area: text;
    padding-right: clamp(1rem, 3vw, 2rem);
}

.hero-title {
    max-width: 100%;
}

.hero-subtitle {
    max-width: 100%;
}

.hero-title {
    font-family: var(--peachi);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: var(--space-5);
    color: var(--color-gray-700);
    font-weight: var(--weight-normal);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin: 0 auto var(--space-6) auto;
    line-height: 1.65;
    font-weight: var(--weight-normal);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-3);
    margin-top: 0;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 160px;
    padding: clamp(0.875rem, 1.8vh, 1rem) clamp(1.5rem, 3vw, 2rem);
    white-space: nowrap;
}

@media (min-width: 1025px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin: 0;
        margin-top: var(--space-3);
    }

    .hero .container {
        width: 100%;
        display: block;
        padding: 0;
        margin: 0;
    }

    .hero-content {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
        margin-top: 90px;
    }
}

/* ================================
   MOBILE HERO CARD (Bose-Inspired)
   ================================ */
.mobile-hero-card {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-hero-card {
        display: flex;
        flex-direction: column;
        background: var(--color-white);
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        max-width: 100%;
        margin: 0;
        position: relative;
    }

    .hero .hero-content {
        display: none;
    }

    /* Full-bleed hero image with text overlay */
    .mobile-hero-media {
        position: relative;
        width: 100%;
        height: clamp(580px, 72vh, 760px);
        overflow: hidden;
        background: var(--color-white);
    }

    .mobile-hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        display: block;
    }

    /* Dual gradient: dark for text + white blend at bottom */
    .mobile-hero-media::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.02) 25%,
                rgba(0, 0, 0, 0.25) 60%,
                rgba(0, 0, 0, 0.5) 85%,
                rgba(0, 0, 0, 0.65) 100%);
        z-index: 1;
        pointer-events: none;
    }

    /* Gentle white gradient at bottom for professional blend */
    .mobile-hero-media::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 35%;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.15) 40%,
                rgba(255, 255, 255, 0.5) 70%,
                rgba(255, 255, 255, 0.85) 90%,
                rgba(255, 255, 255, 0.98) 100%);
        z-index: 1;
        pointer-events: none;
    }

    /* Text overlay on image */
    .mobile-hero-copy {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2.5rem 1.75rem 2rem 1.75rem;
        z-index: 2;
        color: var(--color-white);
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
        max-width: 100%;
    }

    .mobile-hero-heading {
        font-family: var(--peachi);
        font-size: clamp(1.85rem, 5.8vw, 2.5rem);
        line-height: 1.12;
        color: var(--color-white);
        font-weight: 600;
        letter-spacing: -0.025em;
        margin: 0;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }

    .mobile-hero-sub {
        font-size: clamp(1rem, 2.6vw, 1.1rem);
        color: rgba(255, 255, 255, 0.96);
        line-height: 1.48;
        margin: 0;
        font-weight: 400;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
        max-width: 100%;
    }

    .mobile-hero-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--color-white);
        color: var(--color-gray-700);
        border-radius: 6px;
        padding: 0.95rem 2rem;
        margin-top: 0.65rem;
        width: fit-content;
        font-size: 0.875rem;
        font-weight: var(--weight-bold);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
        transition: all var(--transition-base);
        text-transform: uppercase;
        letter-spacing: 1.2px;
        font-family: var(--font-body);
    }

    .mobile-hero-cta:hover {
        background: var(--color-primary);
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(242, 153, 74, 0.4);
    }

    /* Bottom segmented navigation */
    .mobile-segmented {
        display: flex;
        justify-content: center;
        gap: var(--space-3);
        background: var(--color-white);
        padding: 0.5rem 1rem;
        border-top: 1px solid var(--color-gray-200);
    }

    .seg-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
        font-weight: var(--weight-medium);
        color: var(--color-gray-700);
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius-full);
        background: var(--color-gray-100);
        transition: all var(--transition-base);
        position: relative;
    }

    .seg-item:last-child {
        border-right: 0;
    }

    .seg-item:hover {
        background: var(--color-beige);
        color: var(--color-gray-700);
    }

    .seg-item.active {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-white);
        font-weight: var(--weight-semibold);
    }

    .seg-item.active::after {
        display: none;
    }
}

/* Tablet adjustments (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-hero-card {
        max-width: 100%;
        margin: 0;
    }

    .mobile-hero-media {
        height: clamp(600px, 70vh, 760px);
    }

    .mobile-hero-copy {
        padding: 2.5rem 2rem 2rem 2rem;
    }

    .mobile-hero-heading {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
    }
}

/* Mobile refinements (≤768px) */
@media (max-width: 768px) {
    .mobile-hero-card {
        border-radius: 0;
    }

    .mobile-hero-media {
        height: clamp(560px, 68vh, 700px);
    }

    .mobile-hero-copy {
        padding: 2rem 1.5rem 1.75rem 1.5rem;
    }

    .mobile-hero-heading {
        font-size: clamp(1.75rem, 6.2vw, 2.15rem);
    }

    .mobile-hero-sub {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    }

    .seg-item {
        padding: 0.45rem 0.8rem;
        font-size: 0.8rem;
        border-radius: var(--radius-full);
    }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .mobile-hero-media {
        height: clamp(500px, 66vh, 680px);
    }

    .mobile-hero-copy {
        padding: 1.75rem 1.25rem 1.5rem 1.25rem;
    }

    .mobile-hero-heading {
        font-size: clamp(1.6rem, 6.5vw, 1.95rem);
    }

    .mobile-hero-sub {
        font-size: 0.9rem;
    }

    .mobile-hero-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .seg-item {
        padding: 0.4rem 0.75rem;
        font-size: 0.78rem;
        border-radius: var(--radius-full);
    }
}


/* ================================
   THERAPY INTRO SECTION
   ================================ */
.therapy-intro-section {
    background: linear-gradient(180deg, #FFFCFA 0%, var(--color-white) 100%);
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1441px) {
    .therapy-intro-section {
        padding: var(--space-32) 0 var(--space-18) 0;
    }
}

.therapy-intro-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.875rem, 1.5vw, 1.25rem);
    padding-top: 180px;
}

.gradient-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 25%, var(--color-primary-light) 55%, #FFF3C4 85%, #FFFEF7 100%);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 20px 60px rgba(242, 153, 74, 0.2);
    z-index: 0;
}

.therapy-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    color: var(--color-gray-600);
    font-weight: var(--weight-medium);
    position: relative;
    z-index: 1;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
}

.label-text {
    letter-spacing: 0.02em;
}

.therapy-headline {
    font-family: var(--peachi);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.4;
    color: var(--color-gray-700);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-700);
    padding: 0.875rem 2.5rem;
    font-size: 0.95rem;
    font-weight: var(--weight-medium);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.btn-outline-dark:hover {
    background: var(--color-gray-700);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

/* Responsive therapy section */
/* Tablet refinement */
@media (min-width: 769px) and (max-width: 1200px) {
    .gradient-circle {
        width: 280px;
        height: 280px;
        top: -50px;
    }

    .therapy-intro-content {
        padding-top: 150px;
        gap: clamp(0.75rem, 1.2vw, 1rem);
    }
}

@media (max-width: 768px) {
    .therapy-intro-section {
        padding: 1.5rem 0 1.75rem 0;
        margin-top: 0;
        overflow: visible;
    }

    .gradient-circle {
        width: 220px;
        height: 220px;
        top: -35px;
    }

    .therapy-intro-content {
        padding-top: 80px;
        gap: 0.75rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .therapy-headline {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem);
        line-height: 1.4;
        padding: 0;
        max-width: 90%;
        letter-spacing: 0;
    }

    .therapy-label {
        font-size: 0.75rem;
    }

    .btn-outline-dark {
        padding: 0.65rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .therapy-intro-section {
        padding: 1rem 0 1.25rem 0;
    }

    .gradient-circle {
        width: 160px;
        height: 160px;
        top: -20px;
    }

    .therapy-intro-content {
        padding-top: 60px;
        gap: 0.625rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .therapy-headline {
        font-size: clamp(1.125rem, 4.2vw, 1.375rem);
        line-height: 1.35;
        max-width: 95%;
        letter-spacing: 0;
    }

    .therapy-label {
        font-size: 0.7rem;
    }

    .btn-outline-dark {
        padding: 0.6rem 1.25rem;
        font-size: 0.775rem;
        width: 100%;
        max-width: 240px;
    }
}

@media (max-width: 375px) {
    .therapy-intro-section {
        padding: 0.875rem 0 1rem 0;
    }

    .gradient-circle {
        width: 140px;
        height: 140px;
        top: -18px;
    }

    .therapy-intro-content {
        padding-top: 50px;
        gap: 0.5rem;
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .therapy-headline {
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.35;
        letter-spacing: 0;
    }

    .therapy-label {
        font-size: 0.65rem;
    }

    .label-dot {
        width: 5px;
        height: 5px;
    }

    .btn-outline-dark {
        padding: 0.55rem 1.1rem;
        font-size: 0.725rem;
    }
}

/* ================================
   ASSESSMENT SECTION
   ================================ */
.assessment-section {
    background: var(--color-white);
}

.assessment-panel {
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.75rem, 3vw, 3rem);
}

.assessment-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: var(--space-10);
    align-items: center;
}

.assessment-copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.assessment-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 var(--space-2) 0;
}

.assessment-list {
    display: grid;
    gap: var(--space-4);
}

.assessment-item {
    display: block;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.assessment-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
}

.assessment-item-title {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: var(--weight-normal);
}

.assessment-item-sub {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.assessment-image {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(6px, 1.2vw, 12px);
}

.assessment-img {
    width: 92%;
    height: auto;
    border-radius: var(--radius-2xl);
    object-fit: contain;
    max-height: clamp(520px, 48vh, 520px);
    aspect-ratio: auto;
    display: block;
}

@media (max-width: 1024px) {
    .assessment-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .assessment-image {
        order: -1;
    }

    .assessment-panel {
        padding: clamp(1.25rem, 4vw, 2rem);
    }
}

@media (max-width: 768px) {
    .assessment-img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .assessment-item {
        padding: 0.875rem 1rem;
    }

    .assessment-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
}

@media (max-width: 480px) {
    .assessment-img {
        max-width: 100%;
    }
}

/* ================================
   CLIENT TESTIMONIAL FEATURE
   ================================ */
.client-testimonial-section {
    background: var(--color-white);
    padding: clamp(3rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3.5rem) 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.client-testimonial-section .container {
    max-width: var(--container-max);
}

.testimonial-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.testimonial-quote {
    font-family: var(--peachi);
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    line-height: 1.25;
    font-weight: 300;
    color: var(--color-gray-700);
    margin: 0 0 0.25rem 0;
}

.testimonial-story {
    color: var(--color-gray-600);
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    line-height: 1.6;
    max-width: 100%;
}

.testimonial-story p {
    margin: 0;
}

.testimonial-story strong {
    font-weight: var(--weight-semibold);
    color: var(--color-gray-700);
}

.testimonial-attribution {
    margin-top: clamp(0.75rem, 1.5vh, 1rem);
}

.testimonial-author-name {
    font-size: 0.95rem;
    font-weight: var(--weight-medium);
    color: var(--color-gray-700);
    margin: 0 0 0.15rem 0;
}

.testimonial-author-details {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin: 0;
}

.testimonial-feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-img {
    width: 100%;
    height: auto;
    max-height: 440px;
    border-radius: var(--radius-2xl);
    object-fit: cover;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-lg);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: clamp(1.5rem, 3vh, 2.5rem);
}

.testimonial-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-gray-700);
    background: var(--color-white);
    color: var(--color-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: var(--color-gray-700);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* Responsive testimonial feature */
@media (max-width: 1024px) {
    .testimonial-feature {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vh, 2rem);
        max-width: 100%;
    }

    .testimonial-feature-image {
        order: -1;
    }

    .testimonial-img {
        max-width: 100%;
        max-height: 100%;
    }

    .testimonial-quote {
        font-size: clamp(1.35rem, 4vw, 1.85rem);
    }
}

@media (max-width: 768px) {
    .client-testimonial-section {
        padding: clamp(2rem, 6vh, 3rem) 0 clamp(1.5rem, 4vh, 2.5rem) 0;
    }

    .testimonial-feature {
        gap: clamp(1rem, 2.5vh, 1.5rem);
        max-width: 100%;
    }

    .testimonial-feature-content {
        gap: clamp(0.65rem, 1.5vh, 1rem);
    }

    .testimonial-quote {
        font-size: clamp(1.25rem, 4.5vw, 1.65rem);
        line-height: 1.3;
    }

    .testimonial-story {
        font-size: clamp(0.825rem, 1.8vw, 0.9rem);
        line-height: 1.55;
    }

    .testimonial-img {
        max-width: 100%;
        max-height: 100%;
    }

    .testimonial-nav {
        margin-top: clamp(1rem, 2.5vh, 1.75rem);
    }

    .testimonial-author-name {
        font-size: 0.9rem;
    }

    .testimonial-author-details {
        font-size: 0.8rem;
    }

    .therapy-label {
        font-size: 0.8rem;
    }

    .label-dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .client-testimonial-section {
        padding: clamp(1.5rem, 5vh, 2.5rem) 0 clamp(1.25rem, 3vh, 2rem) 0;
    }

    .testimonial-feature {
        padding: 0 1rem;
    }

    .testimonial-quote {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
    }

    .testimonial-story {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .testimonial-img {
        max-width: 100%;
        max-height: 100%;
    }

    .testimonial-nav {
        margin-top: clamp(0.875rem, 2vh, 1.25rem);
    }

    .testimonial-nav-btn {
        width: 42px;
        height: 42px;
    }

    .testimonial-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Landscape mobile optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .client-testimonial-section {
        padding: 1.5rem 0 1rem 0;
    }

    .testimonial-feature {
        gap: 1.5rem;
    }

    .testimonial-feature-content {
        gap: 0.5rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .testimonial-story {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .testimonial-img {
        max-width: 100%;
        max-height: 100%;
    }

    .testimonial-nav {
        margin-top: 0.75rem;
    }

    .therapy-label {
        font-size: 0.75rem;
    }

    .label-dot {
        width: 6px;
        height: 6px;
    }
}

/* ================================
   VA BANNER SECTION
   ================================ */
.va-banner-section {
    background: var(--color-white);
    padding: clamp(2.5rem, 8vh, 4.5rem) 0;
}

@media (max-width: 768px) {
    .va-banner-section {
        padding: clamp(1.75rem, 5vh, 2.5rem) 0 clamp(1.25rem, 3vh, 2rem) 0;
    }
}

@media (max-width: 480px) {
    .va-banner-section {
        padding: clamp(1.5rem, 4vh, 2rem) 0 clamp(1rem, 2.5vh, 1.5rem) 0;
    }
}

.va-banner {
    background: var(--color-cream);
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.75rem, 4vh, 2.5rem);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: clamp(1.5rem, 3vh, 2rem);
    text-align: center;
}

@media (min-width: 900px) {
    .va-banner {
        grid-template-columns: 1.1fr 0.9fr;
        justify-items: start;
        text-align: left;
    }

    .va-banner-left {
        align-items: flex-start;
    }

    .va-banner-right {
        justify-content: flex-end;
    }
}

.va-banner-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.875rem, 2vh, 1.25rem);
}

.va-banner-title {
    font-family: var(--peachi);
    font-weight: 300;
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
    line-height: 1.25;
    color: var(--color-gray-700);
    margin: 0;
    text-align: center;
}

.va-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.hero-cta,
.va-banner-actions {
    row-gap: var(--space-2);
}

.va-banner-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.va-logos {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2.5vw, 1.5rem);
}

.va-wordmark {
    font-family: var(--peachi);
    font-weight: 600;
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    letter-spacing: -0.02em;
    color: var(--color-gray-700);
}

.va-divider {
    width: 1px;
    height: clamp(36px, 6vh, 56px);
    background: var(--color-gray-300);
}

.va-seal {
    width: clamp(36px, 6vw, 56px);
    height: clamp(36px, 6vw, 56px);
    border-radius: var(--radius-full);
    background: radial-gradient(closest-side, #C4A5D8 35%, #8E6FB6 36%, #644A8F 70%, #3F2D6B 100%);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.va-dept {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    color: var(--color-gray-700);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .va-banner {
        padding: clamp(1.5rem, 3vh, 2rem);
    }

    .va-banner-title {
        font-size: clamp(1.45rem, 5vw, 1.85rem);
    }
}

@media (max-width: 600px) {
    .va-banner-title {
        font-size: clamp(1.35rem, 6vw, 1.65rem);
    }

    .va-dept {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .va-logos {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        justify-content: center;
    }

    .va-dept {
        white-space: normal;
        text-align: center;
    }

    .va-divider {
        display: none;
    }
}

/* ================================
   KETAMINE HERO SECTION
   ================================ */
.hero-ketamine {
    background: var(--color-white);
    padding: calc(var(--header-height) + 2rem) 0 3rem;
    max-height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.hero-ketamine-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero-ketamine-title {
    font-family: var(--peachi);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-gray-900);
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.hero-ketamine-description {
    font-size: clamp(0.92rem, 1.2vw, 1.02rem);
    line-height: 1.65;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.hero-ketamine .therapy-label {
    justify-content: center;
    margin: 0 auto;
}

.hero-ketamine-image {
    position: relative;
    width: 100%;
}

.hero-ketamine-image img {
    width: 100%;
    height: clamp(260px, 50vh, 560px);
    object-fit: cover;
    border-radius: var(--radius-2xl);
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-ketamine {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }

    .hero-ketamine-content {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-ketamine {
        padding: calc(var(--header-height) + 1.5rem) 0 2.5rem;
    }

    .hero-ketamine-content {
        margin-bottom: 2rem;
    }

    .hero-ketamine-title {
        margin: 0.75rem 0 1.25rem;
    }

    .hero-ketamine-image img {
        border-radius: var(--radius-xl);
        height: clamp(240px, 54vh, 460px);
    }
}

@media (max-width: 480px) {
    .hero-ketamine {
        padding: calc(var(--header-height) + 1rem) 0 2rem;
    }

    .hero-ketamine-content {
        margin-bottom: 1.5rem;
    }

    .hero-ketamine-title {
        margin: 0.5rem 0 1rem;
    }

    .hero-ketamine-description {
        font-size: 0.95rem;
    }

    .hero-ketamine-image img {
        border-radius: var(--radius-lg);
        height: clamp(220px, 58vh, 400px);
    }
}

.timeline-section {
    background: var(--color-white);
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.timeline-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: clamp(1.25rem, 3.5vw, 2.5rem);
}

.timeline-header .therapy-label {
    justify-content: center;
}

.timeline-title {
    font-family: var(--peachi);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.25;
    color: var(--color-gray-800);
    margin: 0;
}

.timeline-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-sand);
    color: var(--color-gray-700);
    background: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--color-sand);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: var(--timeline-progress, 0px);
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 4vw, 2.5rem);
    align-items: center;
    padding: clamp(1rem, 3.5vw, 2.25rem) 0;
}

.timeline-media {
    grid-column: 1;
    justify-self: end;
    width: 100%;
    max-width: 420px;
}

.timeline-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

.timeline-content {
    grid-column: 2;
    max-width: 520px;
}

.step-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--color-gray-700);
    line-height: 1.3;
    margin: 0 0 0.35rem 0;
    letter-spacing: 0;
}

.step-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--color-gray-600);
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0;
    font-weight: 400;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-marker.reached {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 8px 18px rgba(242, 153, 74, 0.3);
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 40px;
    }

    .timeline::before,
    .timeline-progress {
        left: 40px;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .timeline-media {
        justify-self: start;
        max-width: 100%;
    }

    .timeline-content {
        max-width: 100%;
        padding-left: 10px;
    }

    .timeline-marker {
        left: 40px;
        transform: translate(-50%, -50%);
    }
}

/* ================================
   FORMS OF TREATMENT
   ================================ */
.treatment-forms-section {
    background: var(--color-white);
    padding: clamp(2.25rem, 6vw, 3.5rem) 0;
}

.tforms-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin-bottom: clamp(1.25rem, 3.5vw, 2rem);
}

.tforms-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: var(--color-gray-800);
    line-height: 1.25;
    margin: 0;
}

.tforms-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tforms-sub {
    margin: 0;
    color: var(--color-gray-600);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.tforms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.25rem);
}

.tforms-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tforms-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-gray-100);
}

.tforms-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.tforms-name {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-gray-700);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

@media (max-width: 1024px) {
    .tforms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tforms-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .tforms-header-right {
        justify-content: flex-start;
    }

    .tforms-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   THERAPY PAIRING
   ================================ */
.pairing-section {
    background: var(--color-white);
    padding: clamp(2.25rem, 6vw, 3.5rem) 0;
}

.pair-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: clamp(1.25rem, 4vw, 2.25rem);
}

.pair-header .therapy-label {
    justify-content: center;
}

.pair-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-gray-800);
    line-height: 1.25;
    margin: 0;
}

.pair-sub {
    margin: 0;
    color: var(--color-gray-600);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.pair-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.25rem);
    align-items: center;
    margin: clamp(1rem, 3vw, 1.5rem) 0;
}

.pair-logo {
    background: var(--color-white);
    border: 1px solid var(--color-sand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1.25rem);
    box-shadow: var(--shadow-sm);
}

.pair-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.partner-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-gray-700);
    text-align: center;
}

.pair-cta {
    display: flex;
    justify-content: center;
    gap: clamp(0.6rem, 1.6vw, 1rem);
    margin-top: clamp(0.5rem, 2vw, 1rem);
}

@media (max-width: 768px) {
    .pair-logos {
        grid-template-columns: 1fr;
    }
}

/* ================================
   TRUST / WHY CHOOSE US
   ================================ */
.trust-section {
    background: var(--color-white);
}

.trust-panel {
    background: var(--color-cream);
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.75rem, 4vh, 2.5rem);
    text-align: center;
}

.trust-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: clamp(1.25rem, 3vh, 1.75rem);
}

.trust-title {
    font-family: var(--peachi);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.25;
    margin: 0;
    color: var(--color-gray-700);
}

.trust-subtitle {
    color: var(--color-gray-600);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    max-width: 100%;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
    justify-items: center;
    margin-top: clamp(1rem, 2.5vh, 1.5rem);
}

.trust-item {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: clamp(0.875rem, 2vh, 1rem);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: var(--space-3);
    place-items: center;
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    min-height: 110px;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
}

.trust-icon {
    color: var(--color-gray-700);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    background: var(--color-beige);
}

.trust-item-text {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--color-gray-600);
    line-height: 1.5;
    max-width: 100%;
}

.trust-actions {
    margin-top: clamp(1.25rem, 3vh, 1.75rem);
    display: flex;
    justify-content: center;
}

@media (max-width: 968px) {
    .trust-grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .trust-item-text {
        max-width: 100%;
    }

    .trust-icon {
        width: 42px;
        height: 42px;
    }
}

/* ================================
   NEUROPLASTICITY GRADIENT MEDIA SECTION
   ================================ */
.neuro-section {
    padding: clamp(2rem, 7vh, 5rem) 0 clamp(0.75rem, 4vh, 2rem) 0;
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 28%, var(--color-primary-light) 60%, #FFF3C4 75%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.neuro-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8%;
    transform: translateX(-50%);
    width: min(1100px, 95vw);
    height: clamp(220px, 40vw, 520px);
    background: radial-gradient(60% 60% at 50% 50%, rgba(242, 153, 74, 0.35) 0%, rgba(255, 243, 196, 0.2) 55%, rgba(255, 254, 247, 0) 100%);
    filter: blur(10px);
    z-index: 0;
    transform: translateY(var(--approach-parallax, 0px));
    will-change: transform;
}

.neuro-section .container {
    display: grid;
    place-items: center;
    min-height: clamp(420px, 62vh, 680px);
    position: relative;
    z-index: 1;
}

.neuro-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.neuro-title {
    font-family: var(--peachi);
    font-size: clamp(1.85rem, 4.2vw, 2.5rem);
    line-height: 1.25;
    color: var(--color-gray-700);
    margin: 0;
}

.neuro-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--color-gray-700);
    opacity: 0.9;
    max-width: 100%;
    margin: 0 auto;
}

.neuro-image {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.neuro-image img {
    width: min(100%, 900px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.18));
    max-height: clamp(300px, 50vh, 720px);
    border-radius: var(--radius-2xl);
}

@media (max-width: 1024px) {
    .neuro-image img {
        max-width: min(92vw, 780px);
    }
}

@media (max-width: 768px) {
    .neuro-section {
        padding: clamp(1rem, 5vh, 1.5rem) 0 clamp(0.25rem, 2vh, 0.75rem) 0;
    }

    .neuro-section .container {
        gap: 0.5rem;
        height: auto;
        min-height: clamp(420px, 60vh, 650px);
    }

    .neuro-content {
        gap: var(--space-2);
    }

    .neuro-image {
        margin-top: -0.25rem;
    }

    .neuro-image img {
        max-width: 92vw;
        max-height: clamp(260px, 42vh, 480px);
    }
}

@media (max-width: 480px) {
    .neuro-section {
        padding: clamp(0.875rem, 4vh, 1.25rem) 0 clamp(0.25rem, 1.5vh, 0.5rem) 0;
    }

    .neuro-section .container {
        min-height: clamp(380px, 58vh, 580px);
    }

    .neuro-title {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
    }

    .neuro-image img {
        max-height: clamp(240px, 40vh, 420px);
    }
}

/* ================================
   TREATMENTS SECTION
   ================================ */
.treatments-section {
    background: var(--color-white);
}

.treatments-section .container {
    max-width: var(--container-max);
}

.treatments-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.treatments-title {
    font-family: var(--peachi);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.25;
    margin: 0;
    color: var(--color-gray-700);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: var(--space-8);
    max-width: 920px;
    margin: 0 auto;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.treatment-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-bottom: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
}

.treatment-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.treatment-card:hover .treatment-media img {
    transform: scale(1.05);
}

.treatment-content {
    text-align: center;
    max-width: 100%;
}

.treatment-name {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: var(--weight-normal);
    color: var(--color-gray-700);
    margin-bottom: var(--space-2);
    letter-spacing: 0;
}

.treatment-desc {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* image-only hover scale */

@media (max-width: 968px) {
    .treatments-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
    }
}

@media (max-width: 768px) {
    .treatments-header {
        margin-bottom: var(--space-6);
        gap: var(--space-2);
    }

    .treatment-card {
        gap: var(--space-2);
    }
}

.approach-section {
    background-color: var(--color-beige);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("flora2.jpg");
    background-size: cover;
    background-position: 50% 45%;
    transform: translateY(var(--approach-parallax, 0px));
    will-change: transform;
    z-index: 0;
}

.approach-section .container {
    display: grid;
    place-items: center;
    min-height: clamp(420px, 62vh, 680px);
    position: relative;
    z-index: 1;
}

.approach-card {
    background: var(--color-cream);
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.25rem, 3.5vh, 2rem);
    text-align: center;
    max-width: 100%;
}

.approach-title {
    font-family: var(--peachi);
    font-size: clamp(1.35rem, 3.2vw, 1.8rem);
    line-height: 1.25;
    color: var(--color-gray-700);
    margin: 0 0 var(--space-2) 0;
}

.approach-subtitle {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0 0 var(--space-4) 0;
}

@media (max-width: 768px) {
    .approach-section::before {
        background-position: 50% 40%;
    }

    .approach-section .container {
        min-height: clamp(340px, 52vh, 560px);
    }

    .approach-card {
        padding: clamp(0.875rem, 2.6vh, 1.25rem);
        max-width: min(92vw, 520px);
    }
}

@media (max-width: 480px) {
    .approach-section::before {
        background-position: 50% 38%;
    }

    .approach-section .container {
        min-height: clamp(300px, 48vh, 520px);
    }

    .approach-card {
        padding: clamp(0.75rem, 2.25vh, 1rem);
    }

    .approach-title {
        font-size: clamp(1.15rem, 5.2vw, 1.4rem);
    }

    .approach-subtitle {
        font-size: clamp(0.8rem, 3.5vw, 0.9rem);
        margin: 0 0 var(--space-3) 0;
    }
}

/* ================================
   COMMUNITY TRUST ROTATING ORBIT
   ================================ */
.community-section {
    background: var(--color-white);
    --orbit-size-global: clamp(260px, 55vw, 520px);
    position: relative;
    z-index: 1;
}

.community-panel {
    background: var(--color-cream);
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.25rem, 3.5vh, 2rem);
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-bottom: clamp(0.75rem, 2vh, 1.25rem);
    overflow: hidden;
}

.community-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: clamp(1rem, 2.5vh, 1.5rem);
    position: relative;
    z-index: 3;
}

.community-title {
    font-family: var(--peachi);
    font-size: clamp(1.5rem, 3.2vw, 2.25rem);
    line-height: 1.3;
    color: var(--color-gray-700);
    margin: 0;
    max-width: 100%;
    letter-spacing: -0.01em;
}

.community-orbit {
    width: var(--orbit-size-global);
    height: var(--orbit-size-global);
    position: absolute;
    top: 50%;
    right: calc(var(--orbit-size-global) * -0.5);
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: auto;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.community-orbit::before,
.community-orbit::after {
    content: none;
}

/* Large screens: left-aligned text, reserve space for half circle on right */
@media (min-width: 900px) {
    .community-panel {
        text-align: left;
        padding-right: calc(var(--orbit-size-global) / 2 + clamp(16px, 5vw, 56px));
    }

    .community-header {
        align-items: flex-start;
    }

    .community-orbit {
        top: 60%;
        right: calc(var(--orbit-size-global) * -0.37);
        z-index: 0;
    }
}

/* Single PNG figure anchored to the right inside the circle */
.community-figure {
    position: absolute;
    top: 50%;
    left: 48%;
    right: auto;
    transform: translate(-50%, -50%);
    height: 130%;
    width: auto;
    object-fit: contain;
    display: block;
    border: none;
    filter: none;
    pointer-events: auto;
    transition: opacity 220ms ease, transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
    animation: figureDrift 18s ease-in-out infinite alternate;
    will-change: opacity, transform;
}

.community-figure.is-hover {
    opacity: 0;
    z-index: 3;
    transition: opacity 180ms ease-in-out;
}

.community-figure.is-cycle {
    opacity: 0;
    z-index: 2;
    transition: opacity 180ms ease-in-out;
}

.community-figure.is-cycle.show {
    opacity: 1;
}

.community-panel:hover .community-figure.is-hover,
.community-panel.hovering .community-figure.is-hover {
    opacity: 1;
}

.community-panel:hover .community-figure:not(.is-hover),
.community-panel.hovering .community-figure:not(.is-hover) {
    opacity: 0;
}

@keyframes figureDrift {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(calc(-50% - var(--drift-offset, 2%)), -50%) scale(1.02);
    }
}

.orbit-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--item-size);
    height: var(--item-size);
    object-fit: cover;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
    transform: rotate(calc(var(--angle) + var(--orbit-rot) + var(--self-rot, 0deg))) translateX(var(--radius)) rotate(calc(-1 * (var(--angle) + var(--orbit-rot) + var(--self-rot, 0deg))));
    will-change: transform;
    transition: box-shadow 280ms ease;
}

.orbit-img:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 3px 6px rgba(0, 0, 0, 0.12);
}

.orbit-img.inner {
    width: calc(var(--item-size) * 0.8);
    height: calc(var(--item-size) * 0.8);
    opacity: 0.95;
}

/* New arc-based avatar layout (no transform overlap) */
.arc-img {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--item-size);
    height: var(--item-size);
    transform: translate(-50%, -50%);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-white);
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    will-change: transform;
    animation: floatY 6s ease-in-out infinite;
}

.arc-img.small {
    width: calc(var(--item-size) * 0.82);
    height: calc(var(--item-size) * 0.82);
    opacity: 0.95;
    animation-duration: 5s;
}

.arc-img:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 3px 6px rgba(0, 0, 0, 0.12);
}

@keyframes floatY {
    from {
        transform: translate(-50%, -50%) translateY(-3px);
    }

    to {
        transform: translate(-50%, -50%) translateY(3px);
    }
}

/* Mosaic grid faces */
.grid-face {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
    filter: saturate(1.05) contrast(1.02);
    will-change: transform;
    position: relative;
    z-index: 1;
    animation: faceFloat 6s ease-in-out infinite alternate;
}

@keyframes faceFloat {
    from {
        transform: translateY(-2px);
    }

    to {
        transform: translateY(2px);
    }
}

@media (max-width: 768px) {
    .community-panel {
        padding: clamp(1.25rem, 3.5vh, 1.75rem);
        padding-bottom: clamp(1.25rem, 3vh, 2rem);
        text-align: left;
    }

    .community-section {
        --orbit-size-global: clamp(240px, 68vw, 400px);
    }

    .community-orbit {
        opacity: 0.8;
        z-index: 0;
        right: calc(var(--orbit-size-global) * -0.5);
        top: 50%;
        left: auto;
        bottom: auto;
        transform: translateY(-50%);
    }

    .community-figure {
        height: 135%;
        left: 50%;
    }

    .community-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }
}

@media (max-width: 480px) {
    .community-title {
        font-size: clamp(1.25rem, 6vw, 1.55rem);
        line-height: 1.35;
    }

    .community-section {
        --orbit-size-global: clamp(200px, 75vw, 340px);
    }

    .community-orbit {
        opacity: 0.9;
    }

    .community-figure {
        height: 140%;
        left: 50%;
    }
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.faq-section .container {
    max-width: var(--container-max);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: start;
}

.faq-left {
    display: grid;
    gap: var(--space-5);
    align-content: start;
}

.faq-title {
    font-family: var(--peachi);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.2;
    margin: 0;
}

.faq-actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.faq-accordion {
    border-top: 1px solid var(--color-sand);
    border-radius: var(--radius-lg);
    background: var(--color-cream);
    padding: clamp(0.25rem, 0.8vh, 0.5rem) clamp(0.5rem, 1.5vw, 1rem);
}

.faq-item {
    border-bottom: 1px solid var(--color-sand);
}

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: clamp(1rem, 2.4vh, 1.3rem) 2.5rem clamp(1rem, 2.4vh, 1.3rem) 0;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 600;
    color: var(--color-gray-800);
    background: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
    transition: color 200ms ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question::after {
    content: "";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 2.5px solid var(--color-gray-500);
    border-bottom: 2.5px solid var(--color-gray-500);
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 240ms ease, border-color 200ms ease;
}

.faq-question:hover::after {
    border-color: var(--color-primary);
}

.faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
    border-color: var(--color-primary);
}

.faq-answer {
    color: var(--color-gray-600);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.1vw, 0.975rem);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height 280ms ease, opacity 240ms ease, padding 240ms ease;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    opacity: 1;
    padding: 0 0 clamp(0.875rem, 2vh, 1.25rem) 0;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-actions {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    }

    .faq-accordion {
        padding: clamp(0.25rem, 0.6vh, 0.4rem) clamp(0.4rem, 1.2vw, 0.75rem);
    }

    .faq-question {
        padding: clamp(0.875rem, 2.1vh, 1.1rem) 2.25rem clamp(0.875rem, 2.1vh, 1.1rem) 0;
        font-size: clamp(0.9rem, 1.2vw, 1rem);
    }
}

@media (max-width: 480px) {
    .faq-actions {
        flex-direction: column;
        width: 100%;
    }

    .faq-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: clamp(0.8rem, 1.9vh, 1rem) 2rem clamp(0.8rem, 1.9vh, 1rem) 0;
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.875rem;
    }
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    background: var(--color-beige);
    padding: clamp(1.25rem, 5vw, 2rem) 0;
}

.about-section .container {
    max-width: var(--container-max);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

/* Compact sizing specifically for the About (Our Philosophy) section */
.about-section .section-title {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    margin-bottom: var(--space-4);
}

.about-section .section-label {
    margin-bottom: var(--space-3);
}

.about-section .section-description {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-gray-500);
    max-width: 100%;
    margin: 0 auto var(--space-12);
}

.section-description {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    max-width: 100%;
}

.about-image {
    position: relative;
}

.section-img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 520px;
}

/* Reduce image visual weight only for About section */
.about-section .about-image {
    max-width: 100%;
}

.about-section .section-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-accent-purple));
    border-radius: var(--radius-full);
    opacity: 0.3;
    z-index: -1;
    filter: blur(40px);
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        justify-items: center;
    }

    .about-section .about-image {
        justify-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .section-img {
        object-position: center;
    }

    .about-section .image-accent {
        display: none;
    }
}

.consult-section {
    background: var(--color-white);
}

.consult-section .container {
    max-width: var(--container-max);
}

.consult-card {
    width: 100%;
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    overflow: hidden;
    min-height: 460px;
}

.consult-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    padding: clamp(1.25rem, 3vw, 2.5rem);
    justify-content: center;
}

.consult-title {
    font-family: var(--peachi);
    font-size: clamp(1.75rem, 4.8vw, 3rem);
    line-height: 1.15;
    color: var(--color-gray-700);
    font-weight: var(--weight-normal);
    letter-spacing: -0.02em;
    margin: 0;
}

.consult-actions {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    flex-wrap: wrap;
}

.consult-actions .btn {
    font-weight: var(--weight-normal);
}

.consult-actions .btn-outline {
    border-color: var(--color-gray-400);
    color: var(--color-gray-700);
}

.consult-media {
    height: 100%;
    overflow: hidden;
    border-left: 1px solid var(--color-sand);
}

.consult-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .consult-card {
        grid-template-columns: 1fr;
        width: min(640px, 92vw);
        min-height: unset;
    }

    .consult-content {
        align-items: center;
        text-align: center;
        padding: clamp(1rem, 3vw, 1.75rem);
    }

    .consult-actions {
        justify-content: center;
    }

    .consult-media {
        order: 2;
        border-left: none;
        border-top: 1px solid var(--color-sand);
        height: clamp(220px, 38vh, 340px);
    }

    .consult-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .consult-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .consult-actions {
        gap: var(--space-2);
    }

    .consult-actions .btn {
        padding: 0.675rem 1.1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .consult-card {
        width: 94vw;
        border-radius: var(--radius-xl);
    }

    .consult-actions {
        gap: var(--space-2);
    }

    .consult-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
    }
}

/* ================================
   PRODUCTS SECTION
   ================================ */
.products-section {
    background: var(--color-white);
}

.products-section .container {
    max-width: var(--container-max);
}

.section-header {
    margin-bottom: var(--space-12);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    background: linear-gradient(135deg, rgba(242, 153, 74, 0.1), rgba(111, 207, 151, 0.1));
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-bottom: 1px solid var(--color-gray-200);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--color-white);
    color: var(--color-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.bestseller {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-info {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-normal);
    margin-bottom: var(--space-2);
    color: var(--color-gray-700);
}

.product-description {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--space-5);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-gray-700);
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-footer {
        flex-direction: column;
        gap: var(--space-3);
        justify-content: center;
    }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 6px 20px rgba(242, 153, 74, 0.3);
    }
}

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

/* ================================
   SMOOTH SCROLL BEHAVIOR
   ================================ */
html {
    scroll-behavior: smooth;
}

/* ================================
   RESPONSIVE IMAGE SIZING
   ================================ */
@media (max-width: 768px) {
    .consult-cta-media img,
    .gallery-item img,
    .feature-media img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

/* ================================
   FEATURE SECTION
   ================================ */
.feature-section {
    background: var(--color-cream);
}

.feature-section .container {
    max-width: var(--container-max);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.feature-text {
    order: 2;
}

.feature-list {
    margin: var(--space-6) 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-gray-600);
}

.list-icon {
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .feature-text {
        order: 1;
    }
}

/* ================================
   STATS SECTION
   ================================ */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-12);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.stat-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    background: var(--color-beige);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: var(--color-primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: var(--weight-semibold);
    color: var(--color-gray-700);
    margin-bottom: var(--space-1);
}

.author-role {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin: 0;
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery-section {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================================
   JOURNAL SECTION
   ================================ */
.journal-section {
    background: var(--color-cream);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-10);
}

.journal-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.journal-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.journal-content {
    padding: var(--space-8);
}

.journal-category {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-3);
}

.journal-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
    color: var(--color-gray-700);
}

.journal-excerpt {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.journal-link {
    font-weight: var(--weight-medium);
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.journal-link:hover {
    color: var(--color-primary-dark);
}

/* ================================
   NEWSLETTER SECTION
   ================================ */
.newsletter-section {
    background: linear-gradient(135deg, rgba(242, 153, 74, 0.1), rgba(111, 207, 151, 0.1));
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.newsletter-description {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: var(--space-4);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: var(--space-4) var(--space-6);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    background: var(--color-white);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(242, 153, 74, 0.1);
}

.newsletter-circle-accent {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-accent-yellow));
    border-radius: var(--radius-full);
    opacity: 0.3;
    filter: blur(60px);
    z-index: 0;
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--color-gray-700);
    color: var(--color-gray-300);
    padding: var(--space-16) 0 var(--space-6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer-logo .logo-text {
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
}

.footer-description {
    color: var(--color-gray-400);
    margin-bottom: var(--space-5);
    max-width: 280px;
    line-height: 1.6;
    font-size: var(--text-sm);
    font-weight: var(--weight-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-contact p {
    color: var(--color-gray-400);
    font-size: 13px;
    font-weight: var(--weight-light);
    margin: 0;
}

.footer-contact strong {
    color: var(--color-gray-300);
    font-weight: var(--weight-medium);
    margin-right: var(--space-2);
}

.footer-heading {
    font-size: 15px;
    font-weight: var(--weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 14px;
    font-weight: var(--weight-light);
    transition: color var(--transition-base);
    line-height: 1.7;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 13px;
    font-weight: var(--weight-light);
    margin: 0;
}

@media (max-width: 968px) {
    .footer {
        padding: var(--space-12) 0 var(--space-5);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8) var(--space-6);
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: var(--space-10) 0 var(--space-5);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .footer-column:first-child {
        grid-column: 1;
    }
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ================================
   RESPONSIVE UTILITIES
   ================================ */
@media (max-width: 1024px) {
    :root {
        --container-padding: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
}

/* Compact text spacing on small screens for a contained look */
@media (max-width: 768px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: var(--space-3);
    }

    p {
        margin-bottom: var(--space-3);
    }

    .section-header {
        margin-bottom: var(--space-8);
    }

    .section-title {
        margin-bottom: var(--space-4);
    }

    .section-subtitle {
        margin: 0 auto var(--space-8);
    }

    .section-description {
        margin-bottom: var(--space-4);
    }

    .hero-subtitle {
        margin-bottom: var(--space-4);
    }

    .assessment-copy {
        gap: var(--space-4);
    }

    .testimonial-text {
        margin-bottom: var(--space-4);
    }

    .newsletter-description {
        margin-bottom: var(--space-6);
    }

    .trust-header {
        margin-bottom: 1rem;
    }
}

/* ================================
   AI CHATBOT PANEL & BUTTON
   ================================ */

/* Chat Panel */
.chatbot-panel {
    position: fixed;
    bottom: 94px;
    right: 24px;
    width: 360px;
    max-height: 580px;
    background: #FAFAFA;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    overflow: hidden;
}

.chatbot-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chatbot-header {
    background: var(--color-white);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E8E8E8;
}

.chatbot-back-btn,
.chatbot-menu-btn,
.chatbot-panel-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.chatbot-back-btn:hover,
.chatbot-menu-btn:hover,
.chatbot-panel-close:hover {
    background: #F5F5F5;
    color: #333;
}

/* Profile Card */
.chatbot-profile-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
}

.profile-avatar {
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 14px;
    font-weight: var(--weight-semibold);
    color: #333;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.profile-role {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.profile-actions {
    display: flex;
    gap: 8px;
}

.profile-action-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.profile-action-btn:hover {
    background: #F5F5F5;
    color: #333;
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    background: #FAFAFA;
}

.chatbot-message {
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message.bot {
    align-self: flex-start;
    max-width: 85%;
}

.chatbot-message.bot p {
    background: var(--color-white);
    padding: 10px 14px;
    border-radius: 12px;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chatbot-message.user {
    align-self: flex-end;
    max-width: 85%;
}

.chatbot-message.user p {
    background: var(--color-primary);
    padding: 10px 14px;
    border-radius: 12px;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: white;
    box-shadow: 0 1px 3px rgba(251, 133, 0, 0.3);
}

/* Quick Replies */
.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.quick-reply-btn {
    padding: 8px 14px;
    background: transparent;
    border: 1.5px solid #FB8500;
    border-radius: 20px;
    font-size: 13px;
    font-weight: var(--weight-medium);
    color: #FB8500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.quick-reply-btn:hover {
    background: #FB8500;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(251, 133, 0, 0.25);
}

/* Input Area */
.chatbot-input-wrapper {
    padding: 12px 16px;
    background: var(--color-white);
    border-top: 1px solid #E8E8E8;
}

.chatbot-input-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F5F5F5;
    border-radius: 24px;
    padding: 4px 8px;
    margin-bottom: 8px;
}

.chatbot-attach-btn,
.chatbot-emoji-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.chatbot-attach-btn:hover,
.chatbot-emoji-btn:hover {
    background: #E8E8E8;
    color: #333;
}

.chatbot-input {
    flex: 1;
    padding: 8px 4px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-family: var(--font-body);
    color: #333;
}

.chatbot-input:focus {
    outline: none;
}

.chatbot-input::placeholder {
    color: #999;
}

.chatbot-send-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.chatbot-send-btn:hover {
    background: #E8E8E8;
    color: #333;
}

.chatbot-branding {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.chatbot-branding strong {
    color: #666;
    font-weight: var(--weight-semibold);
}

/* Floating Button */
.chatbot-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF9500 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(251, 133, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.chatbot-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(251, 133, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chatbot-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.chatbot-icon {
    display: block;
    animation: sparkle 3s ease-in-out infinite;
}

.chatbot-close {
    display: none;
}

.chatbot-btn.active .chatbot-icon {
    display: none;
}

.chatbot-btn.active .chatbot-close {
    display: block;
}

/* Pulsing ring effect */
.chatbot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    opacity: 0;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-5deg) scale(1.05);
    }

    50% {
        transform: rotate(5deg) scale(1);
    }

    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chatbot-panel {
        width: calc(100vw - 32px);
        max-width: 360px;
        max-height: 540px;
        bottom: 84px;
        right: 16px;
    }

    .chatbot-messages {
        padding: 14px;
        max-height: 360px;
    }

    .chatbot-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .chatbot-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .chatbot-panel {
        width: calc(100vw - 24px);
        max-height: 500px;
        bottom: 76px;
        right: 12px;
    }

    .chatbot-header {
        padding: 10px 12px;
    }

    .chatbot-profile-card {
        padding: 12px;
    }

    .profile-name {
        font-size: 13px;
    }

    .profile-role {
        font-size: 11px;
    }

    .chatbot-messages {
        padding: 12px;
        gap: 8px;
        max-height: 320px;
    }

    .chatbot-message.bot p,
    .chatbot-message.user p {
        padding: 9px 12px;
        font-size: 12px;
    }

    .quick-reply-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .chatbot-input-wrapper {
        padding: 10px 12px;
    }

    .chatbot-branding {
        font-size: 10px;
    }

    .chatbot-btn {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 380px) {
    .chatbot-panel {
        width: calc(100vw - 20px);
        max-height: 470px;
        bottom: 74px;
        right: 10px;
    }

    .chatbot-messages {
        max-height: 300px;
    }
}

/* Consult CTA */
.consult-cta {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: var(--space-6);
    border-radius: 20px;
    overflow: hidden;
    padding: clamp(20px, 2.8vw, 32px) clamp(20px, 3.2vw, 36px);
    min-height: 260px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5EB 25%, #FFE8D1 50%, var(--color-primary-light) 85%, var(--color-primary) 100%);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.consult-cta-body {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: #FFFFFF;
}

.consult-cta-kicker {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.consult-cta-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    line-height: 1.25;
    margin: 0 0 8px 0;
    color: var(--color-black);
}

.consult-cta-sub {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    line-height: 1.5;
    color: var(--color-gray-600);
    margin: 0;
}

.consult-cta-media {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(45%, 400px);
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.consult-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.02) contrast(1.01);
    -webkit-mask-image: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 75%);
    mask-image: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 75%);
}

.consult-cta-badge {
    position: absolute;
    right: clamp(12px, 2vw, 18px);
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 13px;
    background: var(--color-white);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-base);
    z-index: 2;
}

.consult-cta-badge .badge-title {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.consult-cta-badge .badge-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

.consult-cta-badge:hover {
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
    .consult-cta {
        grid-template-columns: 1fr;
        min-height: 240px;
        padding: 22px 24px;
    }

    .consult-cta-media {
        width: 50%;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
    }

    .consult-cta-badge {
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .consult-cta {
        min-height: 220px;
        padding: 20px 18px;
        gap: 12px;
        border-radius: 16px;
    }

    .consult-cta-body {
        max-width: 54%;
        padding-right: 8px;
    }

    .consult-cta-title {
        font-size: clamp(1.1rem, 4.8vw, 1.3rem);
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .consult-cta-sub {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .consult-cta-kicker {
        font-size: 11px;
    }

    .consult-cta-media {
        width: 46%;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
    }

    .consult-cta-badge {
        padding: 8px 11px;
        border-radius: 11px;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    .consult-cta-badge .badge-title {
        font-size: 0.88rem;
    }

    .consult-cta-badge .badge-sub {
        font-size: 0.72rem;
        gap: 6px;
    }

    .consult-cta-badge .badge-sub svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .consult-cta {
        min-height: 200px;
        padding: 18px 16px;
        border-radius: 14px;
    }

    .consult-cta-body {
        max-width: 52%;
        padding-right: 6px;
    }

    .consult-cta-title {
        font-size: clamp(1rem, 5.2vw, 1.2rem);
        margin-bottom: 5px;
    }

    .consult-cta-sub {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .consult-cta-kicker {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .consult-cta-media {
        width: 48%;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .consult-cta-badge {
        padding: 7px 10px;
        border-radius: 10px;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .consult-cta-badge .badge-title {
        font-size: 0.84rem;
    }

    .consult-cta-badge .badge-sub {
        font-size: 0.68rem;
        gap: 5px;
    }

    .consult-cta-badge .badge-sub svg {
        width: 11px;
        height: 11px;
    }
}

.iv-section {
    background: var(--color-white);
}

.iv-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.iv-header h2 {
    margin: var(--space-3) 0 0 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.iv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
}

.iv-card {
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.iv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.iv-card-media {
    position: relative;
    padding: var(--space-12) var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.iv-card-media img {
    width: auto;
    height: auto;
    max-width: 68%;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

.iv-card-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(242, 153, 74, 0.35);
}

.iv-card-badge svg path {
    stroke: currentColor;
}

.iv-card-body {
    padding: var(--space-6) var(--space-6) var(--space-8) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.iv-card-title {
    font-size: clamp(1.1rem, 1.2vw, 1.35rem);
    color: var(--color-gray-700);
    font-weight: 600;
    margin: 0;
}

.iv-card-sub {
    font-size: 0.98rem;
    color: var(--color-gray-500);
    margin: 0 0 var(--space-2) 0;
}

.iv-card-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-4);
}

.iv-price-amount {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 600;
    color: var(--color-gray-700);
}

.iv-price-note {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    margin-left: 6px;
}

.iv-time {
    font-size: 0.95rem;
    color: var(--color-gray-500);
}

@media (max-width: 1024px) {
    .iv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-5);
    }

    .iv-card-media {
        min-height: 280px;
        padding: var(--space-10) var(--space-6);
    }
}

@media (max-width: 640px) {
    .iv-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .iv-card-media {
        min-height: 240px;
        padding: var(--space-8) var(--space-5);
    }

    .iv-card-body {
        padding: var(--space-5) var(--space-5) var(--space-6);
    }
}

.grid_3_col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
    grid-auto-rows: minmax(80vh, auto);
}

.w-dyn-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.w-dyn-item {
    list-style: none;
}

@media (max-width: 1024px) {
    .grid_3_col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-4);
        grid-auto-rows: minmax(68vh, auto);
    }
}

@media (max-width: 640px) {
    .grid_3_col {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        grid-auto-rows: auto;
    }
}

.iv_drip_card_wrap {
    height: 100%;
}

.iv_drip_card {
    position: relative;
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    perspective: 1200px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

.iv_drip_card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.iv_drip_card_front,
.iv_drip_card_overlay {
    position: absolute;
    inset: 0;
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: inherit;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.iv_drip_card_front {
    transform: rotateY(0deg);
    z-index: 1;
}

.iv_drip_card_overlay {
    background: var(--color-white);
    transform: rotateY(180deg);
    z-index: 2;
    overflow: hidden;
}

/* Relaxed padding and grid to pin the CTA at bottom of overlay */
.iv_drip_card_overlay {
    padding: var(--space-5);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    text-align: left;
}

.iv_drip_card_overlay>div {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    overflow: auto;
    min-height: 0;
}

.iv_drip_card:hover .iv_drip_card_front {
    transform: rotateY(-180deg);
}

.iv_drip_card:hover .iv_drip_card_overlay {
    transform: rotateY(0deg);
}

.iv_drip_card_media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.iv_drip_card_media img {
    width: auto;
    max-width: 85%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

/* Scale front media to feel relaxed on tall tiles */
.iv_drip_card_front .iv_drip_card_media {
    min-height: 22vh;
    max-height: 30vh;
}

@media (max-width: 1024px) {
    .iv_drip_card_front .iv_drip_card_media {
        min-height: 20vh;
        max-height: 28vh;
    }
}

/* On touch/small screens: compact front-only tiles, no flip */
@media (hover: none),
(pointer: coarse),
(max-width: 640px) {
    .iv_drip_card {
        height: auto;
        min-height: 180px;
    }

    .iv_drip_card_front,
    .iv_drip_card_overlay {
        position: static;
        inset: auto;
        padding: var(--space-4);
    }

    .iv_drip_card_front {
        transform: none !important;
    }

    /* Show overlay only as a CTA bar; hide text content */
    .iv_drip_card_overlay {
        display: flex !important;
        padding: var(--space-3) var(--space-4) !important;
    }

    .iv_drip_card_overlay>div {
        display: none !important;
    }

    .iv_drip_card_overlay .button_primary_wrapper {
        display: block !important;
        width: 100%;
        margin: 0;
    }

    .iv_drip_card_overlay .button_primary {
        height: 30px;
        line-height: 30px;
        font-size: 0.68rem;
    }

    /* Disable full-card link to keep CTA tappable */
    .iv_drip_card_link.w-inline-block {
        display: none !important;
    }

    .iv_drip_card_media {
        min-height: 120px;
    }

    .iv_drip_card_media img {
        max-height: 120px;
    }

    .iv_drip_card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .iv_drip_card:hover .iv_drip_card_front {
        transform: none;
    }

    .iv_drip_card:hover .iv_drip_card_overlay {
        transform: rotateY(180deg);
    }
}

.iv_drip_card_info {
    position: absolute;
    right: var(--space-4);
    top: var(--space-4);
    z-index: 3;
}

.card_icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(242, 153, 74, 0.35);
}

.card_icon_image {
    width: 16px;
    height: 16px;
    display: block;
}

.title_3-2 {
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    color: var(--color-gray-700);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 var(--space-1) 0;
}

.description_2 {
    font-size: 0.98rem;
    color: var(--color-gray-500);
    margin: 0;
}

.description_1-6 {
    font-size: 1rem;
    color: var(--color-gray-700);
    margin: 0;
}

.has_weight-500 {
    font-weight: 500;
}

.has_weight-600 {
    font-weight: 600;
}

.has_opacity-60 {
    opacity: 0.6;
}

/* Overlay typography: relaxed, readable without internal scroll */
.iv_drip_card_overlay .title_3-2 {
    font-size: 0.88rem;
    line-height: 1.35;
}

.iv_drip_card_overlay .description_2 {
    font-size: 0.68rem;
    line-height: 1.5;
    color: rgba(15, 10, 10, 0.78);
}

.iv_drip_card_overlay .description_1-6 {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(15, 10, 10, 0.86);
}

.iv_drip_card_overlay .iv_drip_card_rtf p,
.iv_drip_card_overlay .iv_drip_card_rtf li {
    font-size: 0.68rem;
    line-height: 1.55;
    color: rgba(15, 10, 10, 0.78);
}

.iv_drip_card_overlay .iv_drip_card_rtf ul {
    padding-left: 1.2rem;
}

.iv_drip_card_overlay .modality_card_divider {
    margin: var(--space-4) 0;
}

.pricing_card_info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-3);
}

.pricing_card_price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.iv_drip_card_inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.iv_drip_card_overlay .iv_drip_card_inner {
    gap: var(--space-3);
}

.iv_drip_card_rtf ul {
    margin: 0;
    padding-left: 1.1rem;
}

/* Desktop: 2-column lists to reduce overlay height */
.iv_drip_card_overlay .iv_drip_card_rtf ul {
    columns: 1;
    column-gap: 0;
    list-style: none;
    padding-left: 0;
    list-style-position: outside;
}

@media (max-width: 1024px) {
    .iv_drip_card_overlay .iv_drip_card_rtf ul {
        columns: 1;
    }
}

.iv_drip_card_rtf li {
    margin: 4px 0;
}

.iv_drip_card_overlay .iv_drip_card_rtf li {
    margin: 6px 0;
}

.iv_drip_card_overlay .iv_drip_card_rtf li strong {
    font-weight: 700;
    color: rgba(15, 10, 10, 0.9);
}

.iv_drip_card_rtf p {
    margin: 0 0 0.5rem 0;
}

.modality_card_divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: var(--space-5) 0;
}

.iv_drip_card_link.w-inline-block {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.w-inline-block {
    display: inline-block;
}

.button_primary_wrapper {
    margin-top: var(--space-5);
    position: relative;
    z-index: 3;
    text-decoration: none;
}

.button_primary_wrapper.is_full_width {
    display: block;
    width: 100%;
}

.button_primary {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 0.85rem 1rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(242, 153, 74, 0.25);
    transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.button_primary:hover {
    background: var(--color-primary-dark, #E07A39);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(242, 153, 74, 0.28);
}

/* Smaller CTA button inside overlay */
.iv_drip_card_overlay .button_primary {
    height: 32px;
    line-height: 32px;
    padding: 0 14px;
    border-radius: 9999px;
    font-size: 0.7rem;
    box-shadow: 0 8px 18px rgba(242, 153, 74, 0.25);
}

.iv_drip_card_overlay .button_primary_wrapper {
    margin-top: var(--space-4);
}

/* Price row: larger amount, compact meta */
.iv_drip_card_overlay .pricing_card_info {
    margin-top: var(--space-4);
}

.iv_drip_card_overlay .pricing_card_price .title_3-2 {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    color: rgba(15, 10, 10, 0.95);
}

.iv_drip_card_overlay .pricing_card_info .description_2 {
    color: rgba(15, 10, 10, 0.6);
}

.iv_drip_card_overlay .description_1-6 {
    margin-top: var(--space-4);
}

.iv_drip_card_overlay .modality_card_divider {
    background: rgba(0, 0, 0, 0.08);
}

.iv_drip_card_overlay .pricing_card_info .description_2.has_opacity-60 {
    font-size: 0.68rem;
}

.hero-wellness .hero-ketamine-image img {
    object-position: center 30%;
}

/* Vitamin IV Therapy Benefits Section */
.vitamin-therapy-section {
    background: var(--color-cream);
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative;
}

.vitamin-therapy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.vitamin-therapy-content {
    max-width: 480px;
}

.vitamin-therapy-content .therapy-label {
    margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

.vitamin-therapy-title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    color: var(--color-gray-800);
    line-height: 1.35;
    margin: 0 0 clamp(1.2rem, 2vw, 1.8rem) 0;
}

.vitamin-therapy-description {
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
    max-width: 42ch;
}

.btn-learn-more {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--color-gray-800);
    border: 1.5px solid var(--color-gray-800);
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-learn-more:hover {
    background: var(--color-gray-800);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vitamin-therapy-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vitamin-therapy-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .vitamin-therapy-section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .vitamin-therapy-grid {
        gap: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 768px) {
    .vitamin-therapy-section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .vitamin-therapy-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
    }

    .vitamin-therapy-content {
        max-width: 100%;
    }

    .vitamin-therapy-image {
        order: -1;
    }

    .vitamin-therapy-image img {
        max-width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 480px) {
    .vitamin-therapy-section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }

    .vitamin-therapy-content .therapy-label {
        margin-bottom: 0.8rem;
    }

    .vitamin-therapy-description {
        max-width: 100%;
    }
}

/* At Home IV Therapy Section */
.home-iv-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
}

.home-iv-card {
    position: relative;
    background: linear-gradient(135deg,
            var(--color-cream) 0%,
            rgba(251, 133, 0, 0.15) 50%,
            rgba(255, 255, 255, 0.8) 100%);

    border-radius: var(--radius-2xl);
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3rem) clamp(2rem, 6vw, 3rem);
    /* reserve space on the right for the image to blend into the card edge */
    padding-right: clamp(10rem, 22vw, 18rem);
}

.home-iv-grid {
    display: grid;
    align-items: center;
}

.home-iv-content {
    max-width: 560px;
}

.home-iv-content .therapy-label {
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
}

.home-iv-title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    color: var(--color-gray-800);
    line-height: 1.35;
    margin: 0 0 clamp(1rem, 2vw, 1.6rem) 0;
}

.home-iv-description {
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    line-height: 1.8;
    color: var(--color-gray-600);
    margin: 0;
}

.home-iv-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: clamp(180px, 24vw, 300px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.home-iv-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 0;
    /* card rounds the edges */
}

@media (max-width: 1024px) {
    .home-iv-card {
        padding-right: clamp(8rem, 20vw, 14rem);
    }
}

@media (max-width: 768px) {
    .home-iv-card {
        padding-right: clamp(2rem, 6vw, 3rem);
    }

    .home-iv-image {
        position: static;
        width: 100%;
        height: 180px;
        margin-top: var(--space-4);
    }

    .home-iv-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }
}

@media (max-width: 480px) {
    .home-iv-image {
        height: 150px;
    }
}

/* Pricing Featured Section */
.pricing-featured-section {
    background: var(--color-white);
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.pricing-featured-header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.pricing-featured-header h2 {
    margin: var(--space-3) 0 0 0;
    letter-spacing: -0.01em;
    font-weight: 400;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-family: var(--font-heading);
}

.pricing-featured-header .therapy-label {
    justify-content: center;
}

.pricing-featured-header .label-text {
    font-size: 0.9rem;
}

.pricing-featured-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
    grid-template-areas: "list image";
}

.pricing-featured-list {
    background: transparent;
    grid-area: list;
}

.pricing-featured-title {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 var(--space-4) 0;
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

.pricing-featured-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-6);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--color-gray-150);
}

.pricing-featured-item:first-of-type {
    border-top: 1px solid var(--color-gray-150);
}

.pricing-featured-item-header {
    flex: 1 1 auto;
}

.pricing-featured-item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    color: var(--color-gray-700);
    line-height: 1.3;
    margin-bottom: 2px;
}

.pricing-featured-item-sub {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.pricing-featured-price {
    flex: 0 0 auto;
    font-weight: 600;
    color: var(--color-gray-700);
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
}

.pricing-featured-cta {
    margin-top: var(--space-6);
}

.pricing-featured-image {
    position: relative;
    grid-area: image;
}

.pricing-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
    .pricing-featured-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        grid-template-areas: "image" "list";
    }
}

@media (max-width: 768px) {
    .pricing-featured-section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .pricing-featured-item {
        gap: var(--space-4);
        padding: var(--space-4) 0;
    }

    .pricing-featured-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pricing-featured-image img {
        border-radius: var(--radius-xl);
    }
}