:root {
    --bg: #ffffff;
    /* Slate-50 */
    --text: #020617;
    /* Slate-950 */
    --muted: #020617;
    /* Changed from gray to black */
    --border: #e2e8f0;
    /* Slate-200 */
    --card: #ffffff;
    --dark: #0f172a;
    /* Slate-900 */
    --accent: #059669;
    /* Emerald-600 */
    --soft-accent: #ecfdf5;
    /* Emerald-50 */
    --radius: 1rem;
    /* 16px — softer, more organic */
    --shadow: 0 4px 20px -4px rgba(30, 41, 59, 0.08),
        0 2px 6px -2px rgba(30, 41, 59, 0.04);
}

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

html,
body {
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: 18px;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    position: relative;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* --- Boutique Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 9999;
    transition: opacity 1.5s cubic-bezier(0.95, 0.05, 0.795, 0.035), visibility 1.5s;
    overflow: hidden;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}



html::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #ffffff;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

main,
header,
footer {
    position: relative;
    z-index: 1;
}


img {
    max-width: 100%;
    display: block;
}

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

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

.hero h1,
.features h2,
.customize h2,
.cta h2,
.audit-copy h2,
.card h3,
.audit-card-lite h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.container-wide {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
}



.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    min-height: 70px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
}

.logo span {
    display: inline-block;
    font-style: italic;
    line-height: 1;
    transition: all 0.4s ease;
}

.logo-w {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.site-header.visible .logo-w {
    color: var(--text) !important;
}

.site-header.visible .logo {
    display: none;
}

.header-taglines {
    display: none;
    gap: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-header.visible .header-taglines {
    color: var(--muted);
    font-size: 14px;
    display: none;
    /* Hide taglines in compact sticky mode */
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}


.nav-links {
    display: flex;
    gap: 32px;
    color: var(--muted);
    font-size: 14px;
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--text);
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #d8e1f0;
    background: #f2f5fb;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span[aria-hidden="true"] {
    display: block;
    width: 18px;
    height: 2px;
    background: #1a1f2b;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.is-open .nav-toggle span[aria-hidden="true"]:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
}

.nav.is-open .nav-toggle span[aria-hidden="true"]:nth-child(3) {
    opacity: 0;
}

.nav.is-open .nav-toggle span[aria-hidden="true"]:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-cta {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.01em;
    transition: opacity 0.3s ease, color 0.3s ease;
    padding-bottom: 2px;
}

.site-header.visible .nav-cta {
    color: var(--text) !important;
}



.site-header.on-photos .nav-cta,
.site-header.on-dark .nav-cta {
    color: #ffffff !important;
}

.nav-cta:hover {
    opacity: 0.8;
}

.link {
    color: var(--muted);
    font-size: 16px;
}

.hero p,
.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn-dark {
    background: var(--accent);
    color: white;
}

.btn-light {
    background: #f2f5fb;
    color: var(--text);
    border: 1px solid #d8e1f0;
}

.btn-dark.ghost {
    background: transparent;
    color: #fdf7f2;
    border: 1px solid rgba(253, 247, 242, 0.4);
}

.btn-green {
    background: #006216;
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
}

/* --- High-Fidelity Cinematic Hero --- */
.hero {
    height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
    color: #ffffff;

}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #020617;
    /* Deep fallback */
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.statement-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(3rem, 10vw, 8rem) !important;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 500 !important;
    font-style: italic !important;
    text-transform: uppercase;
    letter-spacing: -0.02em !important;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.statement-title .line-1 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.statement-title .line-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.2s;
}

.hero-content.is-visible .line-1,
.hero-content.is-visible .line-2 {
    opacity: 1;
    transform: translateY(0);
}



.hero p {
    font-size: 1.35rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: color 0.4s ease;
}

.site-header.visible {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    pointer-events: none;
    opacity: 1;
}

/* Ensure interactive elements are clickable */
.site-header.visible .nav {
    pointer-events: auto;
    width: fit-content;
    margin-right: 40px;
    margin-left: auto;
    margin-top: 0;
    padding: 20px 0;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-header.visible .nav-links a {
    color: #1a1a1a;
}

.link:hover::after {
    background: #ffffff;
}

/* CTA specific color management removed for transparency */

/* --- Asymmetrical Card Rhythm --- */
.feature-grid .card:nth-child(2) {
    transform: translateY(30px);
}

.feature-grid .card:nth-child(1),
.feature-grid .card:nth-child(3) {
    transform: translateY(-20px);
}


.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background: #2ac381;
    border-radius: 50%;
}



.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.workflow-card {
    margin: 50px auto 0;
    width: min(1000px, 92%);
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(30, 41, 59, 0.12);
    padding: 24px;
}

.workflow-header {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #8a97ab;
    margin-bottom: 18px;
}

.workflow-grid {
    display: grid;
    place-content: center;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: start;
}

.workflow-column {
    display: grid;
    gap: 16px;
}

.workflow-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text);
}

.badge {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #eef3fb;
}

.badge-green {
    background: #e6f2ea;
}

.guest-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f6f9ff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #e1ecf7;
}

.avatar {
    width: 38px;
    height: 38px;
    background: #e7ecf4;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.guest-name {
    font-weight: 600;
    font-size: 14px;
}

.guest-sub {
    font-size: 12px;
    color: var(--muted);
}

.tag {
    margin-left: auto;
    background: #e7f3ec;
    color: #1f6b3c;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
}

.ghost-card {
    height: 60px;
    border-radius: 12px;
    background: #f1f4fa;
    border: 1px dashed #d9e2f2;
}

.mini-card {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #ffffff;
    font-size: 13px;
    color: var(--text);
}

.mini-card.success {
    background: #eaf6f0;
    border-color: #cfe8dc;
}

.mini-card.muted {
    background: #f3f6fb;
    color: #5f6b7a;
}

.mini-card small {
    display: block;
    color: #7a8797;
    margin-top: 4px;
}

.trusted {
    padding: 70px 0 60px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #8a97ab;
    text-align: center;
    margin-bottom: 18px;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    color: #64748b;
    font-weight: 600;
}

/* Standardized spacing handles .features */



.audit-finds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    margin-top: 48px;
}

.audit-finds-left {
    display: grid;
    gap: 40px;
}

.audit-stat {
    padding: 30px 0;
    text-align: left;
}

.audit-stat:hover {
    transform: translateY(-2px);
}

.stat-value {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.stat-highlight {
    color: var(--text);
    font-weight: 700;
}

.audit-stat h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.stat-note {
    font-size: 13px;
    color: var(--muted);
}

.audit-finds-right {
    display: grid;
    gap: 40px;
}

.audit-card-lite {
    padding: 30px 0;
    text-align: left;
}

.audit-card-lite:hover {
    transform: translateY(-2px);
}

.audit-card-lite h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 24px;
    color: var(--text);
}

.audit-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: grid;
    gap: 24px;
    color: var(--text);
    opacity: 1;
}

.audit-bullets li {
    font-size: 19px;
    line-height: 1.5;
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.audit-bullets li:hover {
    border-left-color: var(--text);
}

.audit-caption {
    font-size: 15px;
    color: var(--muted);
}

.features h2,
.customize h2,
.benefits h2,
.cta h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 64px;
    font-size: 22px;
    line-height: 1.6;
}

.lead-para {
    font-style: normal;
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.4;
    max-width: 800px;
}

.who-list {
    max-width: 620px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    color: var(--muted);
    display: grid;
    gap: 24px;
    text-align: center;
}

.fancy-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    opacity: 1 !important;
    margin-top: 14px;
}

.feature-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 28px;
}


.card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card-visual img {
    transform: scale(1.08);
}

.card-content {
    padding: 32px;
}

.card:hover {
    transform: translateY(-4px);
}

.card h3 {
    margin: 14px 0 10px;
    font-size: 18px;
}

.card p {
    color: var(--muted);
    font-size: 14px;
}

/* --- Boutique Gallery Grid --- */
.benefits {
    padding: 0 !important;
}

.benefits .container-wide {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Move the header outside the full-width flow if needed, or style it specifically */
.gallery-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0;
}

.boutique-grid {
    display: block;
    /* Stack vertically */
    width: 100%;
}

.boutique-card {
    position: relative;
    height: 100vh;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.boutique-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.boutique-overlay {
    position: relative;
    /* Change to relative to stack on flex-end, or keep absolute with z-index */
    z-index: 2;
    width: 100%;
    padding: 80px 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}



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

.boutique-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.boutique-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    line-height: 1.5;
}

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

    .boutique-card {
        height: 100vh;
        height: 100svh;
    }

    .boutique-overlay {
        padding: 40px 24px;
        background: linear-gradient(to bottom, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.2) 40%, rgba(2, 6, 23, 0.9) 100%);
    }
}

.graphic {
    position: relative;
    overflow: hidden;
}

.graphic::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 8px;
    background: rgba(15, 28, 46, 0.12);
}

.graphic::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #7fb7a8;
    right: 8px;
    bottom: 8px;
}

.graphic-2::after {
    width: 18px;
    height: 6px;
    border-radius: 999px;
    left: 8px;
    right: auto;
    bottom: 10px;
}

.graphic-3::after {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    right: 10px;
    bottom: 10px;
}

.graphic-4::after {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    right: 10px;
    bottom: 8px;
    box-sizing: border-box;
}

.graphic-5::after {
    background: #7fb7a8;
}

.graphic-6::after {
    background: #2b1f1b;
}

.graphic-7::after {
    background: #8a97ab;
}

.feature-split {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card.wide {
    min-height: 200px;
}

.pill-group {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pill-group span {
    font-size: 12px;
    padding: 4px 0;
    margin-right: 12px;
    color: #5f6b7a;
    border: none;
    background: transparent;
}

.card.dark {
    background: transparent;
    color: var(--text);
    border: none;
    position: relative;
}

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

.dark-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.card.dark .graphic::before {
    background: rgba(255, 255, 255, 0.2);
}

.chat {
    margin-top: 18px;
    background: transparent;
    padding: 16px 0;
    display: grid;
    gap: 12px;
}

/* Normalized spacing handles .customize and .audit */

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

.audit-copy {
    text-align: left;
}

.audit-copy h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.audit-copy p {
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 24px;
}

.audit-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.audit-card {
    padding: 0;
}

.audit-label {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #8a97ab;
    margin-bottom: 18px;
}

.audit-item {
    padding: 30px 0;
    margin-bottom: 0;
}

.audit-stat {
    margin-bottom: 32px;
}

.audit-stat h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 300;
}

.stat-highlight {
    font-size: 2em;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-note {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.5;
}


.audit-item:last-child {
    margin-bottom: 0;
}

.audit-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.audit-item p {
    color: var(--muted);
    font-size: 19px;
}

.toggle-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.toggle-info {
    display: flex;
    gap: 14px;
    align-items: center;
}

.toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #eef3fb;
    display: grid;
    place-items: center;
    font-size: 15px;
}

.toggle-icon.graphic::before {
    inset: 7px;
    border-radius: 6px;
}

.toggle-icon.graphic::after {
    width: 9px;
    height: 9px;
    right: 7px;
    bottom: 7px;
}

.toggle-row h4 {
    font-size: 17px;
    margin-bottom: 2px;
}

.toggle-row p {
    font-size: 14px;
    color: var(--muted);
}

.toggle {
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #d7dfea;
    position: relative;
}

.toggle::after {
    content: '';
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(30, 41, 59, 0.2);
}

.toggle.active {
    background: var(--accent);
    /* Emerald-600 */
}

.toggle.active::after {
    transform: translateX(16px);
}

/* Standardized spacing handles .stats */

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

.stats-grid h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.stats-grid p {
    color: var(--muted);
    font-size: 13px;
}

/* Standardized spacing handles .testimonial */

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-heading h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 1.05;
    color: var(--text);
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 7.5rem);
    line-height: 1.05;
    color: var(--text);
    font-weight: 500;
}

.testimonial-heading h2 strong {
    font-weight: 700;
    display: block;
    margin-top: -5px;
}

.testimonial-subtitle {
    margin-top: 24px;
    font-size: 15px;
    color: var(--muted);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 280px;
}

.testimonial-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    display: block;
    margin-bottom: -15px;
    /* Dramatic reduction/negative to account for character air */
    font-weight: 700;
}

.quote-mark-close {
    align-self: flex-end;
    margin-top: 15px;
    margin-bottom: 0;
}

.testimonial-quote blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-quote blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.4;
    color: var(--text);
    font-weight: 500;
    font-style: italic;
    text-align: left;
}

.testimonial-source {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    color: var(--text);
    letter-spacing: 0.05em;
}

.author-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--muted);
    margin-top: 1px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.cta {
    background: #064e3b;
    /* Deep Emerald Solid */
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.cta p {
    max-width: 640px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.7);
}

.scarcity-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.form-page {
    padding: 80px 0 90px;
}

.form-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.form-card {
    max-width: 640px;
    padding: 27px 0;
    color: var(--text);
    margin: 0 auto;
}

.form-grid {
    display: grid;
    gap: 24px;
}

.form-intro {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 4px;
}

.form-field {
    display: grid;
    gap: 8px;
}

fieldset.form-field {
    border: 0;
    padding: 0;
    margin: 0;
}

.form-field label,
.form-field legend {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: var(--text);
    opacity: 1;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--text);
    transition: border-color 0.4s ease, transform 0.2s ease;
    border-radius: 0;
}

.form-field textarea {
    resize: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: transparent;
}

.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    height: 41px;
    align-items: center;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.form-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.cta .form-card {
    margin-top: 48px;
    text-align: left;
}

.cta .form-field input,
.cta .form-field textarea {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta .radio-group {
    background: transparent;
    border: none;
    color: white;
}

.cta .form-field select {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 12px;
}

.cta .form-field select option {
    background: #064e3b;
    color: white;
}

.cta .form-field label,
.cta .form-field legend {
    color: white;
    opacity: 0.8;
}

.cta .form-field input:focus,
.cta .form-field select:focus,
.cta .form-field textarea:focus {
    border-color: white;
    box-shadow: none;
}

.cta-list {
    padding: 0;
    margin: 18px auto 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.75);
    display: grid;
    gap: 6px;
    font-size: 16px;
}


.cta small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.footer {
    background: white;
    padding: 80px 0 40px;
    color: var(--text);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.footer .logo {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    color: var(--text);
}

.footer-grid h4 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.footer-grid a {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-grid p {
    color: var(--muted);
    font-size: 16px;
    margin-top: 8px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px 0 80px;
    box-sizing: border-box;
}

section>.container {
    width: min(1120px, 90%);
    margin: 0;
    /* Align start within the flex container, padding-top handles the gap */
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered child reveals */
.reveal .card,
.reveal .audit-stat,
.reveal .audit-card-lite,
.reveal .who-list li {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible .card,
.reveal.is-visible .audit-stat,
.reveal.is-visible .audit-card-lite,
.reveal.is-visible .who-list li {
    opacity: 1;
    transform: translateY(0);
}

.reveal.is-visible .card:nth-child(1),
.reveal.is-visible .audit-stat:nth-child(1),
.reveal.is-visible .audit-card-lite:nth-child(1),
.reveal.is-visible .who-list li:nth-child(1) {
    transition-delay: 0s;
}

.reveal.is-visible .card:nth-child(2),
.reveal.is-visible .audit-stat:nth-child(2),
.reveal.is-visible .audit-card-lite:nth-child(2),
.reveal.is-visible .who-list li:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal.is-visible .card:nth-child(3),
.reveal.is-visible .audit-card-lite:nth-child(3),
.reveal.is-visible .who-list li:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal.is-visible .card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Testimonial slide-in from left */
.testimonial.reveal {
    opacity: 0;
    transform: translateX(-30px);
}

.testimonial.reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes awakening {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.94);
        filter: blur(25px) brightness(0.5);
    }

    65% {
        opacity: 0.2;
        transform: translateY(10px) scale(0.97);
        filter: blur(10px) brightness(0.8);
    }

    85% {
        /* The Dramatic Burst */
        opacity: 1;
        transform: translateY(-8px) scale(1.04);
        filter: blur(0) brightness(1.3);
    }

    100% {
        /* Settling into focus */
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) brightness(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-content {
        animation: none;
    }

    .reveal,
    .reveal .card,
    .reveal .audit-stat,
    .reveal .audit-card-lite,
    .reveal .who-list li,
    .testimonial.reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scene .lake::after {
        animation: none;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0.8;
}

.socials {
    display: flex;
    gap: 12px;
    font-size: 16px;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #f1f5fb;
    border: 1px solid var(--border);
    color: var(--text);
}

.social-link:hover {
    background: var(--soft-accent);
}

.social-icon {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

@media (max-width: 768px) {

    /* Refined Mobile Centering */
    section {
        padding: 80px 0 !important;
    }

    .container {
        text-align: center !important;
    }

    h2,
    .section-sub,
    .audit-stat p,
    .audit-card-lite h3,
    .audit-bullets li,
    .testimonial-quote blockquote p {
        text-align: center !important;
    }

    /* Boutique Gallery: Forced Full-Screen & Centering */
    section.benefits {
        padding: 0 !important;
    }

    .boutique-grid {
        width: 100% !important;
    }

    .boutique-card {
        height: 100dvh !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }

    .boutique-overlay {
        text-align: left !important;
        padding: 40px 24px 15px 14px !important;
        background: transparent !important;
        align-items: flex-start !important;
    }

    .boutique-overlay h3 {
        font-size: 32px !important;
        margin-bottom: 8px;
    }

    /* Grids & Layouts */
    .audit-finds-grid,
    .testimonial-layout,
    .footer-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 60px;
    }

    /* Audit Section: Two full-screen pages on mobile */
    .audit-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .audit.reveal {
        padding: 0 !important;
    }

    .audit-copy,
    .audit-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 0;
    }

    .audit-copy {
        text-align: center !important;
    }

    .audit-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .audit-actions {
        justify-content: center !important;
    }

    .audit-bullets {
        justify-items: center !important;
    }

    .quote-mark,
    .quote-mark-close {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .quote-mark-close {
        align-self: center !important;
    }

    .testimonial-source {
        justify-content: center !important;
    }

    .nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer .logo {
        justify-content: center;
    }
}