/* ═══════════════════════════════════════════
   GRACE FOUNDATION — CSS
   Palette: sage green, dusty rose, warm cream, terracotta, deep forest
═══════════════════════════════════════════ */

:root {
    --cream: #F7F3EE;
    --cream-deep: #EDE6DB;
    --sage: #7A9E87;
    --sage-light: #A8C5B0;
    --sage-dark: #4E7A5C;
    --dusty-rose: #C48B84;
    --rose-light: #E8C4BF;
    --terracotta: #B5714A;
    --forest: #2C4A38;
    --forest-mid: #3D5C48;
    --warm-white: #FDFAF6;
    --text-dark: #1E2D24;
    --text-mid: #4A5E50;
    --text-light: #7A8F80;
    --border: rgba(122, 158, 135, 0.2);

    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Jost', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-xl: 56px;

    --shadow-soft: 0 4px 32px rgba(44, 74, 56, 0.08);
    --shadow-md: 0 8px 48px rgba(44, 74, 56, 0.14);

    --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

/* lenis handles this */
body {
    font-family: var(--ff-body);
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}

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

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

ul {
    list-style: none;
}

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

/* ─── CUSTOM CURSOR ─── */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--sage-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.3s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--sage);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.3s, border-color 0.3s;
    opacity: 0.6;
}

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--forest);
}

.section-title em {
    font-style: italic;
    color: var(--dusty-rose);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    transition: var(--transition);
    cursor: none;
}

.btn--primary {
    background: var(--forest);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(44, 74, 56, 0.25);
}

.btn--ghost {
    border: 1.5px solid var(--forest);
    color: var(--forest);
}

.btn--ghost:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn--nav {
    background: var(--dusty-rose);
    color: white;
    font-size: 0.8rem;
    padding: 0.65rem 1.5rem;
}

.btn--nav:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
}

.btn--sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.78rem;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

[data-delay="100"] {
    transition-delay: 0.1s;
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="300"] {
    transition-delay: 0.3s;
}

[data-delay="400"] {
    transition-delay: 0.4s;
}

[data-delay="500"] {
    transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 4rem;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
    background: rgba(253, 250, 246, 0.92);
    backdrop-filter: blur(16px);
    padding: 1rem 4rem;
    box-shadow: 0 2px 24px rgba(44, 74, 56, 0.07);
}

.nav__logo {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.nav__logo-icon {
    color: var(--dusty-rose);
    font-size: 1rem;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    position: relative;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage-dark);
    transition: width var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--forest);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--forest);
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    height: 100vh;
    background: var(--forest);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu a {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--cream);
    font-weight: 300;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--warm-white);
}

/* Ambient blobs */
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.hero__blob--1 {
    width: 600px;
    height: 600px;
    background: var(--rose-light);
    top: -100px;
    right: -100px;
    animation: blobFloat 10s ease-in-out infinite alternate;
}

.hero__blob--2 {
    width: 400px;
    height: 400px;
    background: var(--sage-light);
    bottom: 0;
    left: -80px;
    animation: blobFloat 14s ease-in-out infinite alternate-reverse;
}

.hero__blob--3 {
    width: 300px;
    height: 300px;
    background: var(--cream-deep);
    top: 40%;
    left: 40%;
    animation: blobFloat 18s ease-in-out infinite alternate;
}

@keyframes blobFloat {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.08) translate(30px, 20px);
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.hero__eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1.2rem;
    transition-delay: 0.1s;
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--forest);
    margin-bottom: 1.5rem;
    transition-delay: 0.2s;
}

.hero__title em {
    font-style: italic;
    color: var(--dusty-rose);
}

.hero__sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 440px;
    margin-bottom: 2.5rem;
    transition-delay: 0.35s;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    transition-delay: 0.45s;
}

.hero__image-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    transition-delay: 0.3s;
}

.hero__image-frame {
    position: relative;
    width: 420px;
    height: 560px;
}

.hero__image-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
    overflow: hidden;
    background: var(--cream-deep);
    box-shadow: var(--shadow-md);
}

.hero__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--sage-light) 0%, var(--cream-deep) 50%, var(--rose-light) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero__figure {
    width: 260px;
    height: 440px;
    background: linear-gradient(180deg, var(--terracotta) 0%, var(--dusty-rose) 60%, var(--rose-light) 100%);
    border-radius: 130px 130px 0 0;
    opacity: 0.7;
    position: relative;
}

.hero__figure::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--cream-deep);
    border-radius: 50%;
    opacity: 0.8;
}

.hero__badge {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: var(--forest);
    color: var(--cream);
    padding: 1.2rem 1.6rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 150px;
}

.hero__badge-num {
    display: block;
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    color: var(--rose-light);
}

.hero__badge-txt {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.3rem;
    display: block;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    z-index: 2;
}

.hero__scroll-line {
    width: 60px;
    height: 1px;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sage-dark);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee {
    background: var(--forest);
    color: var(--sage-light);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
    padding: 8rem 4rem;
    background: var(--cream);
}

.about__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about__visual {
    position: relative;
    height: 540px;
}

.about__img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.about__img {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about__img--back {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
}

.about__img--front {
    width: 65%;
    height: 75%;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--dusty-rose), var(--rose-light));
    box-shadow: var(--shadow-md);
}

.about__img-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about__stat-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--warm-white);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.8rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 180px;
    z-index: 10;
    transition-delay: 0.5s;
}

.about__stat-num {
    display: block;
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--forest);
    line-height: 1;
}

.about__stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-mid);
    margin-top: 0.4rem;
    line-height: 1.4;
}

.about__text {}

.about__body {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
}

.about__body:last-of-type {
    margin-bottom: 2rem;
}

.about__pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about__pillar {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about__pillar-icon {
    font-size: 1.2rem;
    color: var(--sage-dark);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.about__pillar strong {
    display: block;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.15rem;
}

.about__pillar p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PROGRAMS
═══════════════════════════════════════════ */
.programs {
    padding: 8rem 4rem;
    background: var(--warm-white);
}

.programs__header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4rem;
}

.programs__sub {
    margin-top: 1rem;
    color: var(--text-mid);
    font-size: 0.95rem;
}

.programs__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.program-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--dusty-rose));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

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

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card__icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.program-card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.8rem;
}

.program-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

.program-card__link {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--sage-dark);
    letter-spacing: 0.04em;
    transition: color var(--transition-fast), gap var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.program-card__link:hover {
    color: var(--forest);
}

/* ═══════════════════════════════════════════
   PHILOSOPHY
═══════════════════════════════════════════ */
.philosophy {
    background: var(--forest);
    color: var(--cream);
    padding: 8rem 4rem;
}

.philosophy__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy .section-eyebrow {
    color: var(--sage-light);
}

.philosophy .section-title {
    color: var(--cream);
}

.philosophy .section-title em {
    color: var(--rose-light);
}

.philosophy p {
    color: rgba(247, 243, 238, 0.7);
    line-height: 1.85;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.philosophy__numbers {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy__num {}

.big-num {
    display: block;
    font-family: var(--ff-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--rose-light);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.big-num sup {
    font-size: 1.5rem;
}

.philosophy__num p {
    font-size: 0.82rem;
    color: rgba(247, 243, 238, 0.6);
    line-height: 1.5;
    max-width: 160px;
    margin: 0;
}

.philosophy__quote blockquote {
    font-family: var(--ff-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--cream);
    border-left: 2px solid var(--dusty-rose);
    padding-left: 2rem;
}

.philosophy__quote cite {
    display: block;
    font-family: var(--ff-body);
    font-style: normal;
    font-size: 0.83rem;
    color: var(--sage-light);
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   STORIES / TESTIMONIALS
═══════════════════════════════════════════ */
.stories {
    padding: 8rem 4rem;
    background: var(--cream);
}

.stories__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.stories__slider {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    min-height: 260px;
}

.story-card {
    display: none;
    padding: 3rem;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    animation: fadeSlide 0.6s ease;
}

.story-card.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.story-card__quote {
    font-family: var(--ff-display);
    font-size: 4rem;
    color: var(--rose-light);
    line-height: 0.5;
    margin-bottom: 1rem;
}

.story-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-mid);
    font-style: italic;
    font-family: var(--ff-display);
    margin-bottom: 2rem;
}

.story-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.7;
}

.story-card__author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest);
}

.story-card__author span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.stories__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage-light);
    transition: var(--transition-fast);
    cursor: none;
}

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

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
    padding: 8rem 4rem;
    background: var(--warm-white);
}

.process__header {
    text-align: center;
    margin-bottom: 4rem;
}

.process__steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.process__step {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
}

.process__step-num {
    font-family: var(--ff-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--rose-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.process__step h3 {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.8rem;
}

.process__step p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-mid);
}

.process__connector {
    flex-shrink: 0;
    width: 80px;
    height: 1px;
    background: var(--border);
    margin-top: 3.5rem;
    position: relative;
}

.process__connector::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--sage);
    font-size: 0.7rem;
    background: var(--warm-white);
    padding: 0 4px;
}

.process__cta {
    text-align: center;
    margin-top: 4rem;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: var(--forest);
    color: var(--cream);
    padding: 6rem 4rem 2rem;
}

.footer__top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(247, 243, 238, 0.1);
}

.footer__logo {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(247, 243, 238, 0.6);
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.8rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(247, 243, 238, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(247, 243, 238, 0.6);
    transition: var(--transition-fast);
}

.footer__social a:hover {
    border-color: var(--sage-light);
    color: var(--sage-light);
    transform: translateY(-3px);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__col h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 1.2rem;
}

.footer__col a,
.footer__col p {
    display: block;
    font-size: 0.88rem;
    color: rgba(247, 243, 238, 0.6);
    margin-bottom: 0.6rem;
    transition: color var(--transition-fast);
    line-height: 1.6;
}

.footer__col a:hover {
    color: var(--cream);
}

.footer__helpline {
    color: rgba(247, 243, 238, 0.4) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__phone {
    font-family: var(--ff-display) !important;
    font-size: 1.5rem !important;
    color: var(--rose-light) !important;
    font-weight: 400;
}

.footer__hours {
    font-size: 0.78rem !important;
    color: rgba(247, 243, 238, 0.4) !important;
}

.footer__bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    font-size: 0.8rem;
    color: rgba(247, 243, 238, 0.35);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.footer__bottom a {
    color: rgba(247, 243, 238, 0.5);
    transition: color var(--transition-fast);
}

.footer__bottom a:hover {
    color: var(--cream);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav {
        padding: 1.2rem 2rem;
    }

    .nav.scrolled {
        padding: 0.9rem 2rem;
    }

    .nav__links {
        gap: 1.5rem;
    }

    .hero {
        padding: 7rem 2rem 4rem;
        grid-template-columns: 1fr;
    }

    .hero__image-wrap {
        display: none;
    }

    .hero__content {
        max-width: 100%;
    }

    .about {
        padding: 6rem 2rem;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about__visual {
        height: 360px;
    }

    .programs {
        padding: 6rem 2rem;
    }

    .programs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy {
        padding: 6rem 2rem;
    }

    .philosophy__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stories {
        padding: 6rem 2rem;
    }

    .process {
        padding: 6rem 2rem;
    }

    .process__steps {
        flex-direction: column;
        align-items: center;
    }

    .process__connector {
        width: 1px;
        height: 40px;
        margin: 0;
    }

    .process__connector::after {
        top: 50%;
        left: 50%;
    }

    .footer {
        padding: 5rem 2rem 2rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .nav__links,
    .btn--nav {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

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

    .philosophy__numbers {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .story-card {
        padding: 2rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════
   GRACE FOUNDATION — contact.css
═══════════════════════════════════════════ */

/* ─── CONTACT HERO ─── */
.contact-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 4rem 5rem;
    position: relative;
    overflow: hidden;
    background: var(--warm-white);
}

.contact-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    pointer-events: none;
}

.contact-hero__blob--1 {
    width: 500px;
    height: 500px;
    background: var(--rose-light);
    top: -100px;
    right: -80px;
    animation: blobFloat 12s ease-in-out infinite alternate;
}

.contact-hero__blob--2 {
    width: 400px;
    height: 400px;
    background: var(--sage-light);
    bottom: -80px;
    left: -60px;
    animation: blobFloat 16s ease-in-out infinite alternate-reverse;
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.contact-hero__sub {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 520px;
    margin-inline: auto;
}

/* ─── CRISIS BANNER ─── */
.crisis-banner {
    background: var(--forest);
    padding: 1.4rem 4rem;
}

.crisis-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.crisis-banner__icon {
    font-size: 1.3rem;
}

.crisis-banner__inner p {
    color: rgba(247, 243, 238, 0.85);
    font-size: 0.9rem;
    flex: 1;
}

.crisis-banner__inner strong {
    color: var(--cream);
}

/* ─── CONTACT MAIN ─── */
.contact-main {
    padding: 7rem 4rem;
    background: var(--cream);
}

.contact-main__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: flex-start;
}

/* ─── CONTACT INFO ─── */
.contact-info__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 1rem;
}

.contact-info__title em {
    font-style: italic;
    color: var(--dusty-rose);
}

.contact-info__body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-of-type {
    border-bottom: none;
}

.contact-detail__icon {
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 0.25rem;
}

.contact-detail__value {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.2rem;
    transition: color var(--transition-fast);
}

a.contact-detail__value:hover {
    color: var(--dusty-rose);
}

.contact-detail__note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-reassurance {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reassurance-item span {
    font-size: 1.1rem;
}

.reassurance-item p {
    font-size: 0.87rem;
    color: var(--text-mid);
}

/* ─── CONTACT FORM CARD ─── */
.contact-form-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.8rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-card__title {
    font-family: var(--ff-display);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.4rem;
}

.contact-form-card__sub {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ─── FORM ELEMENTS ─── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--dusty-rose);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--text-dark);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122, 158, 135, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

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

.select-wrap {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.75rem;
    pointer-events: none;
}

/* Checkbox */
.form-group--check {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: none;
    font-size: 0.82rem !important;
    color: var(--text-mid) !important;
    line-height: 1.55;
    letter-spacing: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--sage-dark);
    cursor: none;
}

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

.form-privacy {
    text-align: center;
    font-size: 0.77rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-privacy a {
    color: var(--sage-dark);
    text-decoration: underline;
}

/* ─── FORM SUCCESS ─── */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeSlide 0.6s ease;
}

.form-success span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.form-success h4 {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.8rem;
}

.form-success p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 360px;
    margin: 0 auto;
}

/* ─── FIND US / MAP ─── */
.find-us {
    padding: 7rem 4rem;
    background: var(--warm-white);
}

.find-us__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: center;
}

.find-us__text p {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.find-us__address {
    margin-top: 2rem;
    padding: 1.4rem 1.6rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--sage);
}

.find-us__address p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.map-placeholder__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

.map-placeholder__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-placeholder__dot {
    width: 20px;
    height: 20px;
    background: var(--forest);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    position: relative;
    z-index: 2;
}

.map-placeholder__ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--sage);
    animation: ripple 2s ease-out infinite;
}

.map-placeholder__pin span {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--forest);
    white-space: nowrap;
    background: var(--warm-white);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    box-shadow: var(--shadow-soft);
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 8rem 2rem 4rem;
    }

    .crisis-banner {
        padding: 1.2rem 2rem;
    }

    .contact-main {
        padding: 5rem 2rem;
    }

    .contact-main__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .find-us {
        padding: 5rem 2rem;
    }

    .find-us__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .crisis-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}