/*
 * ═══════════════════════════════════════════════════════
 *  Nefes Çalışması — Main Stylesheet
 *  Organic, grounded design system
 * ═══════════════════════════════════════════════════════
 */

/* ─── Design Tokens ─────────────────────────────────── */
/* Logo Colors: Black #111111 · Sage #91a38d · Steel #a4bcce */
:root {
    /* Page & Card Backgrounds (Clean Crisp White & Muted Sage-Stone) */
    --bg-page:     #ffffff;
    --bg-alt:      #eef2ef;
    --bg-card:     #ffffff;
    --border-soft: #e2e8f0;
    --border-card: #e5e7eb;

    /* Sage Palette (from logo #91a38d) */
    --sage-50:  #f4f5f3;
    --sage-100: #e3e7e2;
    --sage-200: #c8d0c6;
    --sage-300: #adb9aa;
    --sage-400: #91a38d; /* ← Logo color */
    --sage-500: #7a8d76;
    --sage-600: #647360;
    --sage-700: #4e5a4b;
    --sage-800: #3a4338;
    --sage-900: #272d26;

    /* Steel Palette (from logo #a4bcce) */
    --steel-50:  #f4f7f9;
    --steel-100: #e5ecf1;
    --steel-200: #ccdae4;
    --steel-300: #a4bcce; /* ← Logo color */
    --steel-400: #8aa8bf;
    --steel-500: #6f93b0;
    --steel-600: #577d9a;
    --steel-700: #44657d;
    --steel-800: #344d60;
    --steel-900: #253745;

    /* Neutrals (from logo black) */
    --black:       #000000;
    --charcoal:    #111111;
    --slate-dark:  #1e293b;
    --warm-white:  #ffffff;
    --cream:       #f1f3f5;
    --muted:       #64748b;
    --text-body:   #334155;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Plus Jakarta Sans', 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent:  'Lora', 'Georgia', serif;

    /* Spacing Scale */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Border Radius */
    --radius-sm:   0.375rem;
    --radius-md:   0.75rem;
    --radius-lg:   1.25rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg:   0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 35px rgba(145, 163, 141, 0.2);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 0.2s;
    --duration-base: 0.4s;
    --duration-slow: 0.8s;
}


/* ─── CSS Reset & Base ──────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

/* Lenis smooth scroll overrides */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-page);
    overflow-x: hidden;
}


/* ─── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--muted);
}

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
}


/* ─── Section Layout ────────────────────────────────── */
.section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.section--cream {
    background-color: var(--bg-alt);
}

.section--sage {
    background-color: var(--sage-50);
}

.section--dark {
    background-color: var(--bg-alt);
    color: var(--text-body);
}

.section--dark h2,
.section--dark h3 {
    color: var(--charcoal);
}

.section--dark p {
    color: var(--muted);
}

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

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

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

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-600);
    margin-bottom: var(--space-xs);
    padding: 0.25rem 0.75rem;
    background: rgba(145, 163, 141, 0.12);
    border: 1px solid rgba(145, 163, 141, 0.25);
    border-radius: var(--radius-full);
}


/* ─── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out-expo);
}

.btn--primary {
    background-color: var(--sage-500);
    color: #ffffff;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn--primary:hover {
    background-color: var(--sage-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(145, 163, 141, 0.3);
}

.btn--outline {
    background: #ffffff;
    color: var(--charcoal);
    border: 1.5px solid var(--border-soft);
}

.btn--outline:hover {
    background-color: var(--sage-50);
    color: var(--sage-700);
    border-color: var(--sage-400);
    transform: translateY(-2px);
}

/* Breathing pulse on CTA */
.btn--breathing {
    animation: breathe-pulse 4s ease-in-out infinite;
}

@keyframes breathe-pulse {
    0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(145, 163, 141, 0.25); }
    50%      { box-shadow: var(--shadow-lg), 0 0 0 12px rgba(145, 163, 141, 0); }
}


/* ─── Cards ─────────────────────────────────────────── */
.card {
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--duration-base) var(--ease-out-expo);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-400);
}

.card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(145, 163, 141, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    color: var(--sage-600);
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card__text {
    font-size: 0.9375rem;
}


/* ─── Scroll Reveal Animations ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.reveal--left {
    opacity: 0;
    transform: translateX(-60px);
    will-change: transform, opacity;
}

.reveal--right {
    opacity: 0;
    transform: translateX(60px);
    will-change: transform, opacity;
}

.reveal--scale {
    opacity: 0;
    transform: scale(0.9);
    will-change: transform, opacity;
}

.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}


/* ─── Breathing Exercise Circle ─────────────────────── */
.breath-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sage-400) 0%, var(--sage-600) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 4s ease-in-out, box-shadow 4s ease-in-out;
    box-shadow: 0 0 0 0 rgba(145, 163, 141, 0.2);
}

.breath-circle.inhale {
    transform: scale(1.4);
    box-shadow: 0 0 60px 20px rgba(145, 163, 141, 0.25);
}

.breath-circle.hold {
    transform: scale(1.4);
    box-shadow: 0 0 40px 10px rgba(145, 163, 141, 0.2);
}

.breath-circle.exhale {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(145, 163, 141, 0.1);
}

.breath-circle__label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm-white);
    text-transform: capitalize;
    user-select: none;
}

.breath-timer {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 300;
    color: var(--sage-600);
    text-align: center;
    margin-top: var(--space-md);
    font-variant-numeric: tabular-nums;
}


/* ─── Testimonial ───────────────────────────────────── */
.testimonial-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--sage-200);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--sage-200);
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    line-height: 1;
}

.testimonial-card__text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    padding-top: var(--space-md);
}

.testimonial-card__author {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sage-600);
}

.testimonial-card__role {
    font-size: 0.8125rem;
    color: var(--muted);
}


/* ─── Form Styles ───────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--warm-white);
    border: 1.5px solid var(--sage-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--sage-400);
    box-shadow: 0 0 0 3px rgba(145, 163, 141, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}


/* ─── Navbar ────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.625rem 0;
    transition: all var(--duration-base) var(--ease-out-expo);
    background: rgba(248, 249, 250, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar.is-scrolled {
    background: rgba(248, 249, 250, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 25px -2px rgba(0, 0, 0, 0.06);
    padding: 0.35rem 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.navbar__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 1.25rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

.navbar__logo:hover {
    opacity: 0.92;
    transform: scale(1.04);
}

.navbar__logo-img {
    height: 86px;
    width: auto;
    object-fit: contain;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.is-scrolled .navbar__logo-img {
    height: 68px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    flex: 1;
}

.navbar__links--left {
    justify-content: flex-end;
    padding-right: 0.75rem;
}

.navbar__links--right {
    justify-content: flex-start;
    padding-left: 0.75rem;
}

.navbar__link {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    padding: 0.375rem 0;
    transition: color var(--duration-fast) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-400);
    border-radius: 1px;
    transition: width var(--duration-base) var(--ease-out-expo);
}

.navbar__link:hover {
    color: var(--sage-600);
}

.navbar__link:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 0.5rem 0;
    }
    .navbar__links {
        display: none !important;
    }
    .navbar__logo-wrap {
        padding: 0;
    }
    .navbar__logo-img {
        height: 56px;
    }
    .navbar.is-scrolled .navbar__logo-img {
        height: 46px;
    }
    .navbar__toggle {
        display: block !important;
    }
}

/* Mobile Menu Toggle */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--charcoal);
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--duration-base) var(--ease-out-expo);
}

.navbar__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Slide Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    padding: 5rem var(--space-lg) var(--space-lg);
    transition: right var(--duration-slow) var(--ease-out-expo);
    box-shadow: -4px 0 30px rgba(0,0,0,0.08);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

.mobile-menu__link:hover {
    color: var(--sage-600);
}

.mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) ease;
}

.mobile-menu__overlay.is-visible {
    opacity: 1;
    visibility: visible;
}


/* ─── Footer ────────────────────────────────────────── */
.footer {
    background-color: #ffffff;
    color: var(--muted);
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid var(--border-soft);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.footer__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--muted);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__link {
    font-size: 0.9375rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

.footer__link:hover {
    color: var(--sage-600);
}

.footer__socials {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    color: var(--charcoal);
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.footer__social-link:hover {
    background: var(--sage-500);
    border-color: var(--sage-500);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted);
}


/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .navbar__links {
        display: none;
    }

    .navbar__toggle {
        display: block;
    }

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

    .breath-circle {
        width: 180px;
        height: 180px;
    }
}

/* ─── Hero Section Styling ───────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 0 var(--space-2xl);
    background-color: var(--bg-page);
    overflow: hidden;
    z-index: 1;
}

/* Organic Soft Background Blobs */
.hero__bg-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
    animation: blobFloat 20s ease-in-out infinite alternate;
}

.hero__blob--1 {
    top: -10%;
    right: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(164, 188, 206, 0.4) 0%, rgba(164, 188, 206, 0.1) 70%, transparent 100%);
    animation-duration: 18s;
}

.hero__blob--2 {
    bottom: -15%;
    left: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(145, 163, 141, 0.3) 0%, rgba(145, 163, 141, 0.08) 70%, transparent 100%);
    animation-duration: 22s;
    animation-delay: -5s;
}

.hero__blob--3 {
    top: 40%;
    left: 35%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 208, 198, 0.35) 0%, rgba(240, 242, 244, 0.2) 70%, transparent 100%);
    animation-duration: 25s;
    animation-delay: -10s;
}

.hero__mesh-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(248, 249, 250, 0.8) 100%);
}

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -40px) scale(1.08); }
    100% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Background Transition Overlay */
.hero__bg-transition {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(248, 249, 250, 0.95) 80%, var(--bg-alt) 100%);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    will-change: opacity;
}

/* Hero Grid Layout */
.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    will-change: transform, opacity;
}

/* Badge */
.hero__badge-container {
    margin-bottom: var(--space-md);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage-700);
    background: rgba(145, 163, 141, 0.15);
    border: 1px solid rgba(145, 163, 141, 0.3);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

.hero__badge-icon {
    width: 14px;
    height: 14px;
    color: var(--sage-600);
}

/* Title */
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--sage-600);
    font-style: italic;
    background: linear-gradient(135deg, var(--sage-600) 0%, var(--steel-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 540px;
    margin-bottom: var(--space-lg);
}

/* Actions */
.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__btn {
    padding: 0.9375rem 2.25rem;
    font-size: 1rem;
}

/* Features list */
.hero__features {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-soft);
}

.hero__feature-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-body);
}

.hero__feature-icon {
    width: 16px;
    height: 16px;
    color: var(--sage-500);
}

/* Visual Column */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__orb-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    will-change: transform, opacity;
}

/* Interactive Ambient Breathing Orb */
.hero__orb-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.hero__orb-container:focus-visible {
    outline: 2px solid var(--sage-400);
    border-radius: 50%;
}

/* Ambient Aura Rings */
.hero__orb-aura {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 3.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 3.5s ease;
}

.hero__orb-aura--1 {
    inset: -25px;
    background: radial-gradient(circle, rgba(164, 188, 206, 0.25) 0%, transparent 70%);
    animation: auraPulse 6s ease-in-out infinite alternate;
}

.hero__orb-aura--2 {
    inset: -12px;
    background: radial-gradient(circle, rgba(145, 163, 141, 0.2) 0%, transparent 70%);
    animation: auraPulse 8s ease-in-out infinite alternate-reverse;
}

.hero__orb-aura--3 {
    inset: 0px;
    background: radial-gradient(circle, rgba(164, 188, 206, 0.2) 0%, transparent 70%);
}

@keyframes auraPulse {
    0%   { transform: scale(0.96); opacity: 0.6; }
    100% { transform: scale(1.04); opacity: 0.9; }
}

/* SVG Progress Ring */
.hero__orb-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
    z-index: 2;
}

.hero__orb-track {
    fill: none;
    stroke: rgba(164, 188, 206, 0.25);
    stroke-width: 4;
}

.hero__orb-progress {
    fill: none;
    stroke: url(#orbRingGrad);
    stroke-width: 5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s linear;
}

/* Core Sphere */
.hero__orb-core {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.18), 0 0 35px rgba(145, 163, 141, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 3.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 3.8s ease-in-out, border-color 1.5s ease;
    will-change: transform, box-shadow;
}

.hero__orb-waves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 163, 141, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__orb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #111111 !important;
    text-align: center;
    z-index: 4;
}

.hero__orb-phase-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 0.125rem;
    color: #0f172a !important;
    transition: color 0.5s ease;
}

.hero__orb-timer-digit {
    font-family: var(--font-body);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--sage-600) !important;
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
    transition: color 0.5s ease;
}

.hero__orb-rhythm {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #64748b !important;
}

/* Breathing Phase State Transformations for Orb */
[data-phase="inhale"] .hero__orb-core {
    transform: scale(1.16);
    box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.22), 0 0 45px rgba(145, 163, 141, 0.4) !important;
    border-color: var(--sage-400) !important;
}

[data-phase="inhale"] .hero__orb-timer-digit {
    color: var(--sage-600) !important;
}

[data-phase="inhale"] .hero__orb-aura--1 {
    transform: scale(1.15);
    opacity: 1;
}

[data-phase="hold"] .hero__orb-core {
    transform: scale(1.16);
    box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.22), 0 0 45px rgba(164, 188, 206, 0.5) !important;
    border-color: var(--steel-400) !important;
}

[data-phase="hold"] .hero__orb-timer-digit {
    color: var(--steel-600) !important;
}

[data-phase="hold"] .hero__orb-aura--1 {
    transform: scale(1.2);
    opacity: 0.9;
}

[data-phase="exhale"] .hero__orb-core {
    transform: scale(0.92);
    box-shadow: 0 15px 35px -8px rgba(15, 23, 42, 0.15), 0 0 25px rgba(51, 65, 85, 0.25) !important;
    border-color: #94a3b8 !important;
}

[data-phase="exhale"] .hero__orb-timer-digit {
    color: #334155 !important;
}

[data-phase="exhale"] .hero__orb-aura--1 {
    transform: scale(0.95);
    opacity: 0.5;
}

/* Paused State */
.hero__orb-container.is-paused .hero__orb-core {
    transform: scale(1.0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #cbd5e1 !important;
}

/* Orb Caption */
.hero__orb-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    box-shadow: var(--shadow-sm);
}

.hero__orb-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--sage-400);
    box-shadow: 0 0 8px var(--sage-400);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.8); }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    will-change: transform, opacity;
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--sage-600);
    transition: opacity var(--duration-fast) ease;
}

.hero__scroll-link:hover {
    opacity: 0.8;
}

.hero__scroll-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-chevron {
    width: 20px;
    height: 20px;
    animation: floatChevron 2s ease-in-out infinite;
}

@keyframes floatChevron {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ─── Floating Quick-Action CTA ─────────────────────── */
.floating-cta {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 990;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-cta__inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(145, 163, 141, 0.15);
}

.floating-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) ease;
}

.floating-cta__btn--primary {
    background-color: var(--sage-500);
    color: #ffffff;
    animation: breathe-pulse 4s ease-in-out infinite;
}

.floating-cta__btn--primary:hover {
    background-color: var(--sage-600);
    transform: translateY(-1px);
}

.floating-cta__btn--secondary {
    background: transparent;
    color: var(--charcoal);
}

.floating-cta__btn--secondary:hover {
    background: rgba(145, 163, 141, 0.1);
    color: var(--sage-700);
}

/* Responsive adjustments for Hero */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero__content {
        align-items: center;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__features {
        justify-content: center;
    }

    .hero__orb-container {
        width: 280px;
        height: 280px;
    }

    .hero__orb-core {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: var(--space-2xl) 0 var(--space-xl);
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__orb-container {
        width: 240px;
        height: 240px;
    }

    .hero__orb-core {
        width: 155px;
        height: 155px;
    }

    .hero__orb-phase-text {
        font-size: 1.25rem;
    }

    .hero__orb-timer-digit {
        font-size: 2.25rem;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-cta__btn span {
        font-size: 0.8125rem;
    }
}


/* ═══════════════════════════════════════════════════════
   BENEFITS SECTION — Minimalist Interactive Split Showcase
   ═══════════════════════════════════════════════════════ */

.bnf-hub-section {
    position: relative;
    background-color: var(--bg-alt);
}

.bnf-hub-nav-item {
    background-color: #ffffff;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.bnf-hub-nav-item:hover {
    border-color: var(--sage-300);
    background-color: var(--sage-50);
}

.bnf-hub-nav-item.is-active {
    background-color: #ffffff;
    border-color: var(--sage-400);
    box-shadow: 0 4px 16px rgba(145, 163, 141, 0.18);
}

.bnf-hub-nav-item.is-active .bnf-hub-nav-indicator {
    background-color: var(--sage-400);
    box-shadow: 0 0 10px rgba(145, 163, 141, 0.5);
    transform: scale(1.25);
}

.bnf-hub-nav-item.is-active h4 {
    color: var(--charcoal);
}


/* ═══════════════════════════════════════════════════════
   BREATHING SIMULATION SECTION — 4-7-8 Technique
   ═══════════════════════════════════════════════════════ */

.bsim-section {
    position: relative;
    background-color: var(--bg-alt);
}

.bsim-pill {
    transition: all var(--duration-normal) var(--ease-out-expo);
    user-select: none;
}

.bsim-pill.is-active {
    background-color: rgba(145, 163, 141, 0.12) !important;
    border-color: var(--sage-500) !important;
    color: var(--charcoal) !important;
    box-shadow: 0 4px 14px rgba(145, 163, 141, 0.2) !important;
    transform: translateY(-1px);
}

.bsim-pill--1.is-active {
    background-color: rgba(164, 188, 206, 0.15) !important;
    border-color: var(--steel-500) !important;
    box-shadow: 0 4px 14px rgba(164, 188, 206, 0.25) !important;
}

.bsim-pill--2.is-active {
    background-color: rgba(51, 65, 85, 0.1) !important;
    border-color: #334155 !important;
    box-shadow: 0 4px 14px rgba(51, 65, 85, 0.15) !important;
}

#breathCanvas {
    filter: drop-shadow(0 8px 24px rgba(145, 163, 141, 0.15));
    transition: filter 0.5s ease;
}

#breathCanvas:hover {
    filter: drop-shadow(0 12px 30px rgba(145, 163, 141, 0.25));
}


/* ═══════════════════════════════════════════════════════
   SERVICES SECTION — 3D Tilt Cards
   ═══════════════════════════════════════════════════════ */

.srv-section {
    position: relative;
    background: var(--bg-page);
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.srv-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.srv-bg__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
}

.srv-bg__blob--1 {
    top: -15%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164,188,206,0.3) 0%, transparent 70%);
    animation: blobFloat 22s ease-in-out infinite alternate;
}

.srv-bg__blob--2 {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(145,163,141,0.25) 0%, transparent 70%);
    animation: blobFloat 28s ease-in-out infinite alternate-reverse;
}

.srv-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.srv-header__title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.srv-header__accent {
    color: var(--sage-600);
    font-style: italic;
    background: linear-gradient(135deg, var(--sage-600) 0%, var(--steel-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.srv-header__sub {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* Grid */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-2xl);
}

/* Card */
.srv-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-400);
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS SECTION — Horizontal Carousel
   ═══════════════════════════════════════════════════════ */

.tst-section {
    position: relative;
    background: var(--bg-alt);
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + var(--space-lg));
    overflow: hidden;
}

.tst-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.tst-bg__arc {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(164,188,206,0.2) 0%, transparent 70%);
}

/* Header */
.tst-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.tst-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.tst-header__accent {
    color: var(--sage-600);
    font-style: italic;
    background: linear-gradient(135deg, var(--sage-600) 0%, var(--steel-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tst-header__sub {
    max-width: 520px;
    margin: 0 auto var(--space-md);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* Aggregate rating */
.tst-aggregate {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.tst-aggregate__stars {
    display: flex;
    gap: 2px;
}

.tst-star--filled {
    color: var(--sage-500);
    fill: var(--sage-500);
}

.tst-aggregate__score {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
}

.tst-aggregate__count {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* Carousel */
.tst-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 calc(-1 * var(--space-md));
    padding: var(--space-sm) 0 var(--space-lg);
}

.tst-track {
    display: flex;
    gap: var(--space-md);
    padding: 0 var(--space-md);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    cursor: grab;
}

.tst-track:active {
    cursor: grabbing;
}

/* Card */
.tst-card {
    flex: 0 0 380px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    outline: none;
    user-select: none;
}

.tst-card:hover,
.tst-card:focus-visible {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--sage-400);
}

/* Top row */
.tst-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.tst-card__stars {
    display: flex;
    gap: 2px;
}

.tst-card__tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sage-700);
    background: rgba(145,163,141,0.15);
    padding: 0.2rem 0.625rem;
    border-radius: var(--radius-full);
}

/* Quote */
.tst-card__quote {
    flex: 1;
    position: relative;
}

.tst-card__quote-icon {
    width: 28px;
    height: 28px;
    color: var(--sage-300);
    margin-bottom: 0.375rem;
}

.tst-card__quote p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal);
}

/* Author */
.tst-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-soft);
}

.tst-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-400) 0%, var(--steel-400) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tst-card__author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tst-card__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
}

.tst-card__role {
    font-size: 0.8125rem;
    color: var(--muted);
}

.tst-card__ago {
    font-size: 0.75rem;
    color: var(--muted);
    white-space: nowrap;
    margin-left: auto;
}

/* Controls */
.tst-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.tst-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border-soft);
    background: #ffffff;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    box-shadow: var(--shadow-sm);
}

.tst-arrow:hover {
    background: var(--sage-500);
    color: #ffffff;
    border-color: var(--sage-500);
    transform: scale(1.05);
}

.tst-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

/* Dots */
.tst-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.tst-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--steel-200);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.tst-dot.is-active {
    background: var(--sage-500);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .tst-card { flex: 0 0 300px; }
}

@media (max-width: 480px) {
    .tst-card { flex: 0 0 calc(100vw - 3rem); }
}


/* ═══════════════════════════════════════════════════════
   CONTACT SECTION — Booking Form + Canvas Particles
   ═══════════════════════════════════════════════════════ */

.ctf-section {
    position: relative;
    background: var(--bg-page);
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

/* Canvas particle layer */
.ctf-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.ctf-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(145, 163, 141, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Header */
.ctf-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.ctf-header__title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.ctf-header__accent {
    color: var(--sage-600);
    font-style: italic;
    background: linear-gradient(135deg, var(--sage-600) 0%, var(--steel-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ctf-header__sub {
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* Two-column grid */
.ctf-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Form wrapper */
.ctf-form-wrap {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: var(--space-xl);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.06);
}

/* Form row */
.ctf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

/* Form group */
.ctf-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ctf-group--full {
    grid-column: 1 / -1;
}

.ctf-group--error .ctf-input {
    border-color: rgba(239,68,68,0.6);
    background: rgba(239,68,68,0.02);
}

/* Label */
.ctf-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
}

.ctf-req {
    color: #ef4444;
}

/* Inputs */
.ctf-input {
    width: 100%;
    padding: 0.8125rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--bg-page);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.ctf-input::placeholder {
    color: #94a3b8;
}

.ctf-input:focus {
    border-color: var(--sage-400);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(145, 163, 141, 0.18);
}

/* Date input */
.ctf-input[type="date"] {
    color-scheme: light;
}

/* Select wrapper */
.ctf-select-wrap {
    position: relative;
}

.ctf-select {
    padding-right: 2.25rem;
    cursor: pointer;
}

.ctf-select option {
    background: #ffffff;
    color: var(--charcoal);
}

.ctf-select-arrow {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

/* Textarea */
.ctf-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Char counter */
.ctf-char-count {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: right;
    margin-top: 0.25rem;
}

/* Error message */
.ctf-error-msg {
    font-size: 0.8rem;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Submit button */
.ctf-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--sage-500);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    box-shadow: 0 4px 20px rgba(145, 163, 141, 0.35);
    margin-top: var(--space-sm);
    position: relative;
    overflow: hidden;
    animation: breathe-pulse 4s ease-in-out infinite;
}

.ctf-submit:hover {
    background: var(--sage-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(145, 163, 141, 0.45);
}

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

.ctf-submit__loading {
    display: none;
    align-items: center;
    gap: 0.625rem;
}

.ctf-submit.is-loading .ctf-submit__text  { display: none; }
.ctf-submit.is-loading .ctf-submit__loading { display: flex; }

.ctf-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

/* Privacy note */
.ctf-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: var(--space-sm);
    line-height: 1.6;
}

/* Success state */
.ctf-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-md);
    animation: fadeInUp 0.5s ease both;
}

.ctf-success__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(145, 163, 141, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctf-success__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--charcoal);
}

.ctf-success__text {
    color: var(--text-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    max-width: 400px;
}

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

/* ── SIDEBAR ── */
.ctf-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ctf-info-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.ctf-info-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.ctf-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ctf-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.ctf-info-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(145, 163, 141, 0.12);
    border: 1px solid rgba(145, 163, 141, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-600);
    flex-shrink: 0;
}

.ctf-info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.ctf-info-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

a.ctf-info-value:hover {
    color: var(--sage-600);
}

/* Hours */
.ctf-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ctf-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    color: var(--text-body);
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--border-soft);
}

.ctf-hours__row:last-child {
    border-bottom: none;
}

.ctf-hours__row dt { font-weight: 400; }
.ctf-hours__row dd { font-weight: 600; color: var(--charcoal); }

.ctf-hours__row--closed {
    color: var(--muted);
}

/* Quick facts */
.ctf-quickfacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.ctf-quickfact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
}

.ctf-quickfact__num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sage-600);
    line-height: 1;
}

.ctf-quickfact__label {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
}

.ctf-quickfact__sep {
    width: 1px;
    height: 36px;
    background: var(--border-soft);
}

/* Responsive */
@media (max-width: 1024px) {
    .ctf-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ctf-form-wrap { padding: var(--space-lg); }
    .ctf-row { grid-template-columns: 1fr; }
}

