:root {
    --color-sage: #5b7b6a;
    --color-sage-light: #7a9a88;
    --color-sage-dark: #3d5649;
    --color-cream: #f7f4ef;
    --color-cream-dark: #ebe6dc;
    --color-terracotta: #c4785a;
    --color-terracotta-light: #d9957a;
    --color-forest: #2d3b35;
    --color-forest-soft: #4a5c54;
    --color-gold: #d4a853;
    --color-white: #ffffff;
    --color-text: #2a332f;
    --color-text-muted: #5f6b65;
    --color-border: rgba(45, 59, 53, 0.12);
    --color-glass: rgba(255, 255, 255, 0.72);
    --color-glass-border: rgba(255, 255, 255, 0.4);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --shadow-soft: 0 4px 24px rgba(45, 59, 53, 0.08);
    --shadow-medium: 0 8px 32px rgba(45, 59, 53, 0.12);
    --shadow-glow: 0 0 40px rgba(91, 123, 106, 0.15);
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 4.5rem;
    --container-max: 75rem;
    --container-narrow: 48rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-sage-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus-visible {
    color: var(--color-terracotta);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-forest);
}

h1 {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.625rem, 1.25rem + 1.75vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
}

p {
    margin-bottom: var(--space-sm);
}

p:last-child {
    margin-bottom: 0;
}

.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;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--color-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-glass-border);
    transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.92);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-md);
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.15rem);
    font-weight: 600;
    color: var(--color-forest);
    letter-spacing: -0.02em;
    transition: color var(--transition-fast);
}

.site-header__brand:hover {
    color: var(--color-sage);
}

.site-header__brand-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.75rem);
}

.site-nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-forest-soft);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: width var(--transition-base);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--color-forest);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    width: 100%;
}

.site-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    color: var(--color-forest);
    font-size: 1.5rem;
}

.site-main {
    padding-top: var(--header-height);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--color-white);
}

.btn--secondary {
    background: transparent;
    color: var(--color-forest);
    border-color: var(--color-sage);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background: var(--color-sage);
    color: var(--color-white);
}

.btn--ghost {
    background: var(--color-glass);
    color: var(--color-forest);
    backdrop-filter: blur(8px);
    border-color: var(--color-glass-border);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: var(--color-white);
    color: var(--color-sage-dark);
}

.btn--small {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

.section {
    padding-block: clamp(3rem, 6vw, var(--space-2xl));
    position: relative;
}

.section--cream {
    background: var(--color-cream);
}

.section--white {
    background: var(--color-white);
}

.section--sage {
    background: linear-gradient(160deg, var(--color-sage-dark) 0%, var(--color-sage) 50%, var(--color-sage-light) 100%);
    color: var(--color-white);
}

.section--sage h2,
.section--sage h3 {
    color: var(--color-white);
}

.section--sage p {
    color: rgba(255, 255, 255, 0.88);
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.section--sage .section__eyebrow {
    color: var(--color-gold);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__lead {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
    color: var(--color-text-muted);
    max-width: 38rem;
}

.section--sage .section__lead {
    color: rgba(255, 255, 255, 0.85);
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-xl);
    padding-block: var(--space-xl);
}

.hero--compact {
    min-height: auto;
    padding-block: clamp(3rem, 8vw, 5rem);
}

.hero--policy {
    min-height: auto;
    padding-block: clamp(2.5rem, 6vw, 4rem);
    grid-template-columns: 1.2fr 0.8fr;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--color-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-sage-dark);
    width: fit-content;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.hero__visual {
    position: relative;
}

.hero__image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero__image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 59, 53, 0.3));
    z-index: 1;
    pointer-events: none;
}

.hero__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.hero__float-card {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--color-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-medium);
    max-width: 16rem;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero__float-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-sage-dark);
}

.hero__float-card span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: var(--space-lg) var(--space-md);
    background: var(--color-forest);
    color: var(--color-white);
    flex-wrap: wrap;
}

.strip__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.strip__item i {
    font-size: 1.25rem;
    color: var(--color-gold);
}

.card-grid {
    display: grid;
    gap: var(--space-md);
}

.card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid--asymmetric {
    grid-template-columns: 1.4fr 1fr 1fr;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.card--glass {
    background: var(--color-glass);
    backdrop-filter: blur(12px);
    border-color: var(--color-glass-border);
}

.card--accent {
    background: linear-gradient(145deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    color: var(--color-white);
    border: none;
}

.card--accent h3 {
    color: var(--color-white);
}

.card--accent p {
    color: rgba(255, 255, 255, 0.88);
}

.card__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cream), var(--color-cream-dark));
    border-radius: var(--radius-md);
    font-size: 1.375rem;
    color: var(--color-sage);
    margin-bottom: var(--space-md);
}

.card--accent .card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.card__title {
    margin-bottom: var(--space-xs);
}

.card__text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split--reverse .split__visual {
    order: -1;
}

.split__visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    aspect-ratio: 5 / 4;
    object-fit: cover;
    width: 100%;
}

.split__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.4375rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--color-sage), var(--color-terracotta));
}

.timeline__item {
    position: relative;
    padding-bottom: var(--space-lg);
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__marker {
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background: var(--color-white);
    border: 3px solid var(--color-sage);
    border-radius: 50%;
    z-index: 1;
}

.timeline__step {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 0.25rem;
}

.timeline__title {
    margin-bottom: var(--space-xs);
}

.timeline__text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.bento {
    display: grid;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.bento__cell {
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base);
}

.bento__cell:hover {
    transform: scale(1.02);
}

.bento__cell--wide {
    grid-column: span 2;
}

.bento__cell--tall {
    grid-row: span 2;
    background: linear-gradient(160deg, var(--color-terracotta), var(--color-terracotta-light));
    color: var(--color-white);
}

.bento__cell--tall h3 {
    color: var(--color-white);
}

.bento__cell--tall p {
    color: rgba(255, 255, 255, 0.9);
}

.bento__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-sage);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.insight-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.insight-panel__item {
    padding: var(--space-lg);
    border-left: 3px solid var(--color-sage);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.insight-panel__quote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.insight-panel__source {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 48rem;
    margin-inline: auto;
}

.faq__item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq__item.is-open {
    box-shadow: var(--shadow-soft);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-forest);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--color-sage);
}

.faq__question i {
    font-size: 1.25rem;
    color: var(--color-sage);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq__item.is-open .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq__item.is-open .faq__answer {
    max-height: 20rem;
}

.faq__answer-inner {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.cta-band {
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-sage-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 32rem;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
}

.cta-band .btn--primary {
    background: var(--color-white);
    color: var(--color-forest);
}

.cta-band .btn--primary:hover {
    background: var(--color-gold);
    color: var(--color-forest);
}

.stat-row {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat-row__item {
    flex: 1;
    min-width: 8rem;
}

.stat-row__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 600;
    color: var(--color-sage);
    line-height: 1;
}

.stat-row__label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.zigzag {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.zigzag__row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-lg);
    align-items: center;
}

.zigzag__row:nth-child(even) {
    grid-template-columns: 1.2fr 0.8fr;
}

.zigzag__row:nth-child(even) .zigzag__marker {
    order: 2;
}

.zigzag__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-cream-dark), var(--color-white));
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-sage);
    box-shadow: var(--shadow-soft);
}

.zigzag__body h3 {
    margin-bottom: var(--space-xs);
}

.zigzag__body p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.pillar-grid__item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition-base);
}

.pillar-grid__item:hover {
    border-color: var(--color-sage-light);
}

.pillar-grid__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    color: var(--color-terracotta);
    font-size: 1.25rem;
}

.pillar-grid__content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.pillar-grid__content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-sm);
}

.mosaic__tile {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.mosaic__tile--hero {
    grid-row: span 2;
    background: linear-gradient(160deg, var(--color-sage-dark), var(--color-sage));
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mosaic__tile--hero h3 {
    color: var(--color-white);
}

.mosaic__tile--hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.mosaic__tile h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.mosaic__tile p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.flow-diagram {
    display: flex;
    align-items: stretch;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
}

.flow-diagram__step {
    flex: 1;
    min-width: 10rem;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    text-align: center;
    position: relative;
}

.flow-diagram__step:not(:last-child)::after {
    content: "\ea6c";
    font-family: "Phosphor";
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-sage-light);
    font-size: 1rem;
    z-index: 1;
}

.flow-diagram__icon {
    font-size: 1.5rem;
    color: var(--color-sage);
    margin-bottom: var(--space-xs);
}

.flow-diagram__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-forest);
}

.form-section {
    max-width: 36rem;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: var(--space-xs);
}

.form-group__input,
.form-group__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group__input:focus,
.form-group__textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(91, 123, 106, 0.15);
}

.form-group__input.is-invalid,
.form-group__textarea.is-invalid {
    border-color: #c45c5c;
}

.form-group__textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-group__error {
    display: none;
    font-size: 0.8125rem;
    color: #c45c5c;
    margin-top: 0.25rem;
}

.form-group__error.is-visible {
    display: block;
}

.form-group__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-group__checkbox input {
    margin-top: 0.25rem;
    accent-color: var(--color-sage);
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.form-group__checkbox label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.form-group__checkbox label a {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition-base);
}

.contact-info__item:hover {
    border-color: var(--color-sage-light);
}

.contact-info__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    color: var(--color-sage);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-info__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.125rem;
}

.contact-info__value {
    font-size: 0.9375rem;
    color: var(--color-forest);
    font-weight: 500;
}

.policy-content {
    max-width: 48rem;
    margin-inline: auto;
}

.policy-content h2 {
    font-size: 1.375rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.policy-content h3 {
    font-size: 1.125rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.policy-content p,
.policy-content li {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.policy-content ul,
.policy-content ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.policy-content ul {
    list-style: disc;
}

.policy-content ol {
    list-style: decimal;
}

.policy-content li {
    margin-bottom: var(--space-xs);
}

.policy-hero__date {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-sage-dark);
}

.thank-you {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.thank-you__icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-light));
    border-radius: 50%;
    color: var(--color-white);
    font-size: 2.5rem;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
}

.thank-you h1 {
    margin-bottom: var(--space-sm);
}

.thank-you p {
    color: var(--color-text-muted);
    max-width: 28rem;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
}

.site-footer {
    background: var(--color-forest);
    color: rgba(255, 255, 255, 0.8);
    padding-block: var(--space-xl);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.site-footer__brand {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.site-footer__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.site-footer__heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.site-footer__link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-fast);
}

.site-footer__link:hover {
    color: var(--color-white);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8125rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-glass-border);
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -8px 32px rgba(45, 59, 53, 0.1);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--container-max);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 16rem;
    font-size: 0.875rem;
    color: var(--color-text);
}

.cookie-banner__text a {
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.cookie-settings {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(45, 59, 53, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cookie-settings.is-visible {
    opacity: 1;
    visibility: visible;
}

.cookie-settings__panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 28rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-medium);
}

.cookie-settings__title {
    margin-bottom: var(--space-sm);
}

.cookie-settings__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.cookie-settings__category {
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.cookie-settings__category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.cookie-settings__category-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-forest);
}

.cookie-settings__category-desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.toggle {
    position: relative;
    width: 2.75rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--color-cream-dark);
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.toggle__slider::before {
    content: "";
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    left: 0.1875rem;
    bottom: 0.1875rem;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.toggle input:checked+.toggle__slider {
    background: var(--color-sage);
}

.toggle input:checked+.toggle__slider::before {
    transform: translateX(1.25rem);
}

.toggle input:disabled+.toggle__slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings__footer {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.fade-in {
    transform: translateY(1.5rem);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.disclaimer-bar {
    background: var(--color-cream-dark);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    line-height: 1.5;
}

.compliance-notice {
    max-width: 48rem;
    margin-inline: auto;
    padding: var(--space-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-sage);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.compliance-notice h2 {
    font-size: 1.375rem;
    margin-bottom: var(--space-md);
}

.compliance-notice ul {
    list-style: disc;
    padding-left: var(--space-lg);
}

.compliance-notice li {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.trust-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.trust-signals__item {
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-md);
    text-align: center;
}

.trust-signals__icon {
    font-size: 1.5rem;
    color: var(--color-sage);
    margin-bottom: var(--space-xs);
}

.trust-signals__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
}

.trust-signals__desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.site-footer__legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-top: var(--space-sm);
    max-width: 28rem;
}

@media (max-width: 768px) {
    .trust-signals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {

    .hero,
    .hero--policy,
    .split {
        grid-template-columns: 1fr;
    }

    .hero__float-card {
        left: auto;
        right: 1rem;
        bottom: 1rem;
    }

    .card-grid--3,
    .card-grid--asymmetric {
        grid-template-columns: 1fr 1fr;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento__cell--wide {
        grid-column: span 2;
    }

    .bento__cell--tall {
        grid-row: span 1;
    }

    .insight-panel {
        grid-template-columns: 1fr;
    }

    .mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .mosaic__tile--hero {
        grid-column: span 2;
        grid-row: span 1;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .zigzag__row,
    .zigzag__row:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .zigzag__row:nth-child(even) .zigzag__marker {
        order: 0;
    }
}

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--space-md);
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav__link {
        width: 100%;
        padding: var(--space-sm);
        border-bottom: 1px solid var(--color-border);
    }

    .site-nav__toggle {
        display: block;
    }

    .card-grid--3,
    .card-grid--2,
    .card-grid--asymmetric {
        grid-template-columns: 1fr;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .bento__cell--wide {
        grid-column: span 1;
    }

    .mosaic {
        grid-template-columns: 1fr;
    }

    .mosaic__tile--hero {
        grid-column: span 1;
    }

    .flow-diagram {
        flex-direction: column;
    }

    .flow-diagram__step:not(:last-child)::after {
        content: "\ea3a";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -0.75rem;
        transform: translateX(-50%);
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .stat-row {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 320px) {
    :root {
        --header-height: 3.75rem;
    }

    html {
        font-size: 93.75%;
    }

    .container {
        padding-inline: 0.75rem;
    }

    .site-header__brand {
        font-size: 0.8rem;
        gap: 0.25rem;
    }

    .site-header__brand-icon {
        width: 1.625rem;
        height: 1.625rem;
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
        width: 100%;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__float-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: var(--space-sm);
        max-width: 100%;
    }

    .strip {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .card {
        padding: var(--space-md);
    }

    .cta-band {
        padding: var(--space-lg) var(--space-sm);
        border-radius: var(--radius-md);
    }

    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner__actions .btn {
        width: 100%;
    }

    .cookie-settings__footer {
        flex-direction: column;
    }

    .cookie-settings__footer .btn {
        width: 100%;
    }

    .form-group__checkbox {
        gap: var(--space-xs);
    }

    .contact-info__item {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .flow-diagram__step {
        min-width: 100%;
    }
}