/* ============================================
   SEHEIAH — STYLES.CSS
   Premium, responsive, mobile-first Markdown
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

/* ==================== COLOR TOKENS ==================== */

:root {
    /* ============================================
       BASE / NEUTRAL
       ============================================ */
    --color-bg: #F9F7F5;              /* Off-white base (blanc cassé) */
    --color-bg-alt: #F2EEEA;          /* Slightly deeper off-white */
    --color-surface: #FFFFFF;         /* Pure white */

    /* ============================================
       BRAND ACCENTS
       ============================================ */
    --color-magenta: #AF088F;         /* Magenta (primary accent) */
    --color-magenta-deep: #890670;    /* Deepened magenta */
    --color-magenta-tint: #F0DAE9;    /* ~12% magenta tint */

    --color-sage: #9FB3A8;            /* Sage green */
    --color-sage-deep: #7C9488;       /* Deepened sage */
    --color-sage-tint: #E7EEEA;       /* ~15% sage tint */

    /* ============================================
       COOL TONE — BLUE-GREY
       ============================================ */
    --color-blue-grey: #A0B4C4;       /* Blue-grey (fills/accents only) */
    --color-blue-grey-deep: #63707A;  /* Darkened blue-grey */
    --color-blue-grey-tint: #E9EBEC;  /* ~18% blue-grey tint */

    /* ============================================
       TEXT
       ============================================ */
    --color-text-primary: #2E2A28;    /* Charcoal */
    --color-text-secondary: #63707A;  /* Blue-grey-deep */
    --color-text-muted: #8C8580;      /* Warm grey */
    --color-text-on-dark: #F9F7F5;    /* Off-white on dark */
    --color-text-on-magenta: #FFFFFF; /* White on magenta buttons */

    /* ============================================
       BORDERS & DIVIDERS
       ============================================ */
    --color-border: #E5DFDA;          /* Hairline border */
    --color-border-strong: #D8CFC8;   /* Emphasis border */
    --color-divider-accent: var(--color-magenta); /* Magenta dividers */

    /* ============================================
       TYPE SCALE
       ============================================ */
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --text-xs:   0.75rem;   /* 12px */
    --text-sm:   0.875rem;  /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-md:   1.125rem;  /* 18px */
    --text-lg:   1.375rem;  /* 22px */
    --text-xl:   1.75rem;   /* 28px */
    --text-2xl:  2.25rem;   /* 36px */
    --text-3xl:  2.75rem;   /* 44px */
    --text-4xl:  3.5rem;    /* 56px */
    --text-5xl:  4.5rem;    /* 72px */

    --weight-light:   300;
    --weight-regular: 400;
    --weight-medium:  500;
    --weight-semibold: 600;

    --leading-tight:  1.1;
    --leading-snug:   1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    --tracking-tight:  -0.02em;
    --tracking-normal: 0;
    --tracking-wide:   0.04em;
    --tracking-wider:  0.08em;

    /* ============================================
       SPACING
       ============================================ */
    --space-1:  0.25rem;  /* 4px */
    --space-2:  0.5rem;   /* 8px */
    --space-3:  0.75rem;  /* 12px */
    --space-4:  1rem;     /* 16px */
    --space-5:  1.5rem;   /* 24px */
    --space-6:  2rem;     /* 32px */
    --space-8:  3rem;     /* 48px */
    --space-10: 4rem;     /* 64px */
    --space-12: 5rem;     /* 80px */
    --space-16: 6rem;     /* 96px */
    --space-20: 8rem;     /* 128px */
    --space-24: 10rem;    /* 160px */

    /* ============================================
       LAYOUT
       ============================================ */
    --content-max-width: 1200px;
    --content-max-width-narrow: 760px;
    --content-padding-desktop: 5rem;   /* 80px */
    --content-padding-tablet: 2.5rem;  /* 40px */
    --content-padding-mobile: 1.25rem; /* 20px */

    /* ============================================
       RESPONSIVE BREAKPOINTS
       ============================================ */
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1280px;

    /* ============================================
       SECTION RHYTHM
       ============================================ */
    --section-padding-y-desktop: var(--space-24); /* 160px */
    --section-padding-y-mobile:  var(--space-12); /* 80px */
    --section-padding-y-hero-desktop: var(--space-20); /* 128px */

    /* ============================================
       BORDERS & SHADOWS
       ============================================ */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --shadow-sm:  0 2px 8px rgba(46, 42, 40, 0.06);
    --shadow-md:  0 8px 24px rgba(46, 42, 40, 0.08);
    --shadow-lg:  0 16px 48px rgba(46, 42, 40, 0.10);

    /* ============================================
       TRANSITIONS
       ============================================ */
    --transition-fast:   150ms ease;
    --transition-base:   250ms ease;
    --transition-slow:   400ms ease;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== BODY & GLOBAL ==================== */

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: var(--leading-tight);
}

/* ==================== TYPOGRAPHY ==================== */

.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-magenta-deep);
    margin-bottom: var(--space-4);
}

.h1 {
    font-size: var(--text-5xl);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-tight);
}

.h2 {
    font-size: var(--text-4xl);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-tight);
}

.h3 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-medium);
    letter-spacing: -0.01em;
}

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

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

.body {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

.body-lead {
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.accent-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-xl);
    font-weight: var(--weight-light);
    line-height: var(--leading-snug);
    color: var(--color-text-primary);
    text-align: center;
    margin: var(--space-8) 0;
}

/* ==================== BUTTONS ==================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base) var(--transition-easing);
    outline: none;
    -webkit-font-smoothing: antialiased;
}

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

/* Primary button */
.btn--primary {
    background-color: var(--color-magenta);
    color: var(--color-text-on-magenta);
    border: none;
    padding: var(--space-4) var(--space-6);
}

.btn--primary:hover:not(:disabled) {
    background-color: var(--color-magenta-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--primary:active:not(:disabled) {
    background-color: var(--color-magenta-deep);
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn--primary:disabled {
    background-color: var(--color-blue-grey-tint);
    color: var(--color-text-muted);
    cursor: not-allowed;
}

/* Primary button sizes */
.btn--lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
}

.btn--md {
    padding: 0.75rem 2rem;
    font-size: var(--text-base);
}

.btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: var(--text-sm);
}

/* Nav CTA button */
.btn--nav-cta {
    padding: 0.625rem 1.5rem;
    font-size: var(--text-sm);
}

@media (max-width: 767px) {
    .btn {
        font-size: var(--text-sm);
    }

    .btn--lg {
        width: 100%;
    }
}

/* Secondary button */
.btn--secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1.5px solid var(--color-text-primary);
    padding: var(--space-3) var(--space-5);
}

.btn--secondary:hover {
    background-color: var(--color-text-primary);
    color: var(--color-bg);
}

/* Tertiary / Ghost links */
.link-tertiary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-magenta-deep);
    text-decoration: none;
    font-weight: var(--weight-medium);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.link-tertiary:hover {
    border-bottom-color: var(--color-magenta-deep);
}

.link-tertiary:focus-visible {
    outline: 2px solid var(--color-magenta);
    outline-offset: 2px;
}

/* ==================== NAVIGATION ==================== */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    transition: background var(--transition-base), height var(--transition-base), border-color var(--transition-base);
}

.nav--scrolled {
    background: rgba(249, 247, 245, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.nav--scrolled .nav__logo img {
    height: 28px;
}

.nav__container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding-desktop);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
    transition: height var(--transition-base);
}

.nav--scrolled .nav__container {
    height: 72px;
}

.nav__logo {
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    transition: height var(--transition-base);
    -webkit-font-smoothing: antialiased;
}

.nav__menu {
    display: flex;
    gap: var(--space-6);
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
}

.nav__link {
    font-size: 15px;
    font-weight: var(--weight-medium);
    color: var(--color-text-primary);
    text-decoration: none;
    letter-spacing: var(--tracking-normal);
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 6px;
}

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

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2px;
    background-color: var(--color-magenta);
    border-radius: var(--radius-full);
    opacity: 1;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

/* Mobile menu */
@media (max-width: 767px) {
    .nav__container {
        padding: 0 var(--content-padding-mobile);
        height: 64px;
    }

    .nav--scrolled .nav__container {
        height: 64px;
    }

    .logo-img {
        height: 24px;
    }

    .nav__menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        gap: var(--space-8);
        background-color: var(--color-bg);
        padding: var(--space-8);
        justify-content: flex-start;
        z-index: 200;
    }

    .nav__menu.open {
        display: flex;
    }

    .nav__link {
        font-size: var(--text-xl);
        font-family: var(--font-display);
    }

    .nav__hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav__hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav__hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav__hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .btn--nav-cta {
        display: none;
    }
}

/* ==================== HERO ==================== */

.hero {
    min-height: 90vh;
    background-color: var(--color-bg);
    padding: var(--section-padding-y-hero-desktop) var(--content-padding-desktop) 0;
    display: flex;
    flex-direction: column;
}

.hero__container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    flex: 1;
}

.hero__text {
    max-width: 600px;
}

.hero__h1 {
    font-size: var(--text-5xl);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-6);
    max-width: 14ch;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

.hero__ctas .link-tertiary {
    margin-top: var(--space-2);
}

.hero__image {
    position: relative;
    aspect-ratio: 1 / 1.25;
}

.hero__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero__image-placeholder svg {
    width: 100%;
    height: 100%;
}

.hero__accent-dot {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background-color: var(--color-sage);
    border-radius: 50%;
}

.hero__divider-accent {
    width: 80px;
    height: 2px;
    margin: var(--space-12) auto 0;
}

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

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

    .hero__image {
        aspect-ratio: 1 / 1.25;
        max-height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: var(--section-padding-y-mobile) var(--content-padding-mobile) 0;
    }

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

    .hero__text {
        order: 2;
    }

    .hero__image {
        order: 1;
        margin-bottom: var(--space-6);
        aspect-ratio: 1 / 1.25;
        max-height: 320px;
    }

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

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }
}

/* ==================== SECTIONS ==================== */

.section {
    padding: var(--section-padding-y-desktop) var(--content-padding-desktop);
    background-color: var(--color-bg);
}

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

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

.section--blue-grey-tint {
    background-color: var(--color-blue-grey-tint);
}

.section--magenta-tint {
    background-color: var(--color-magenta-tint);
}

.section__container {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.section__container--narrow {
    max-width: var(--content-max-width-narrow);
}

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

.section__container--reversed {
    grid-template-columns: 1fr 1fr;
}

.section__container--reversed > :first-child {
    order: 2;
}

.section__container--reversed > :last-child {
    order: 1;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section__h2 {
    font-size: var(--text-4xl);
    font-weight: var(--weight-medium);
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
}

.section__header-divider {
    width: 80px;
    height: 2px;
    background-color: var(--color-magenta);
    margin: 0 auto var(--space-8);
    border-radius: var(--radius-full);
}

.section__divider-magenta {
    width: 80px;
    height: 1px;
    background-color: var(--color-magenta);
    margin: var(--space-8) auto;
    border-radius: var(--radius-full);
}

@media (max-width: 1023px) {
    .section {
        padding: var(--section-padding-y-mobile) var(--content-padding-tablet);
    }

    .section__container--two-col {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .section__container--reversed {
        grid-template-columns: 1fr;
    }

    .section__container--reversed > :first-child {
        order: unset;
    }

    .section__container--reversed > :last-child {
        order: unset;
    }
}

@media (max-width: 767px) {
    .section {
        padding: var(--section-padding-y-mobile) var(--content-padding-mobile);
    }

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

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

/* ==================== MEANING OF SEHEIAH ==================== */

.section__content {
    max-width: 760px;
}

.section__content p {
    margin-bottom: var(--space-6);
}

.section__content .accent-italic {
    margin: var(--space-8) 0;
}

/* ==================== MEET DEBORAH ==================== */

.deborah__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.deborah__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.deborah__image-placeholder svg {
    width: 100%;
    height: 100%;
}

.deborah__credentials {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

.credential-item {
    display: flex;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-3);
}

.credential-bullet {
    color: var(--color-sage);
    font-weight: var(--weight-semibold);
}

/* ==================== THE APPROACH ==================== */

.approach__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.approach__card {
    text-align: center;
}

.approach__icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    box-shadow: var(--shadow-sm);
}

.approach__icon svg {
    width: 40px;
    height: 40px;
}

.approach__h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.approach__card .body {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

@media (max-width: 1023px) {
    .approach__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 767px) {
    .approach__grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ==================== SERVICES ==================== */

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.service-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-magenta-tint);
}

.service-card__eyebrow {
    display: inline-block;
    border-radius: var(--radius-full);
    padding: 4px 12px;
    margin-bottom: var(--space-4);
}

.service-card__eyebrow-text {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.service-card__h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.service-card .body {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-4);
}

.service-card__divider {
    border-top: 1px solid var(--color-border);
    margin: var(--space-5) 0;
}

.service-card .link-tertiary {
    font-size: var(--text-sm);
}

@media (max-width: 1023px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

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

    .service-card {
        padding: var(--space-5);
    }
}

/* ==================== WHY SEHEIAH ==================== */

.why__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.why__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.why__image-placeholder svg {
    width: 100%;
    height: 100%;
}

.why__differentiators {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

.diff-item {
    display: flex;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.diff-bullet {
    color: var(--color-blue-grey-deep);
    flex-shrink: 0;
    margin-top: 4px;
}

/* ==================== TESTIMONIALS ==================== */

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.testimonial-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card__quote-mark {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 0.5;
    color: var(--color-magenta-tint);
    margin-bottom: var(--space-4);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-lg);
    font-weight: var(--weight-light);
    line-height: var(--leading-relaxed);
    color: var(--color-text-primary);
    margin-bottom: var(--space-5);
}

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

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-sage-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-sage-deep);
    flex-shrink: 0;
}

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

.testimonial-card__name {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
}

.testimonial-card__descriptor {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

@media (max-width: 1023px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

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

    .testimonial-card {
        padding: var(--space-5);
    }
}

/* ==================== CONTACT ==================== */

.contact__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.contact__divider-accent {
    display: block; /* an inline <svg> ignores margin:auto */
    width: 80px;
    height: 2px;
    margin: var(--space-6) auto;
}

.contact__fallback {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-6);
}

.contact__email {
    font-weight: var(--weight-semibold);
    color: var(--color-magenta-deep);
}

@media (max-width: 767px) {
    .contact__header {
        margin-bottom: var(--space-6);
    }
}

/* ==================== FOOTER ==================== */

.footer {
    background-color: var(--color-text-primary);
    color: var(--color-text-on-dark);
    padding: var(--space-16) var(--content-padding-desktop);
}

.footer__container {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer__logo {
    display: inline-block;
    text-decoration: none;
}

.footer__logo-img {
    height: 96px;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity var(--transition-base);
}

.footer__logo:hover .footer__logo-img {
    opacity: 1;
}

.footer__section--nav,
.footer__section--social {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    opacity: 0.7;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-3);
}

.footer__links a {
    color: var(--color-text-on-dark);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: opacity var(--transition-base);
}

.footer__links a:hover {
    opacity: 0.7;
}

.footer__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: var(--space-12) 0;
}

.footer__legal {
    text-align: center;
}

.footer__disclaimer {
    font-size: var(--text-xs);
    line-height: var(--leading-normal);
    opacity: 0.7;
    margin-bottom: var(--space-4);
}

.footer__copyright {
    font-size: var(--text-xs);
    opacity: 0.5;
}

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

@media (max-width: 767px) {
    .footer {
        padding: var(--space-12) var(--content-padding-mobile);
    }

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

/* ==================== MODAL (REMOVED 2026-08-02) ====================
   The placeholder booking modal was replaced by the waitlist form in
   #contact. Its styles are gone with it; see the WAITLIST FORM block
   at the end of this file.
   ==================================================================== */

/* ==================== ACCESSIBILITY ==================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visible styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-magenta);
    outline-offset: 2px;
}

/* ============================================================
   COPY + SEO REWORK ADDITIONS — 2026-08-02
   New elements introduced by the reworked copy. Tokens only.
   ============================================================ */

/* Hero trust microline, sits under the CTA group */
.hero__trust {
    margin-top: 1.5rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 34rem;
}

/* Lead paragraph inside a centered section header */
.section__intro {
    margin-top: 1rem;
    max-width: 46rem;
}
.section__header .section__intro {
    margin-left: auto;
    margin-right: auto;
}

/* Soft CTA link under the Meet Deborah credentials */
.deborah__cta {
    margin-top: 2rem;
}

/* CTA button under the Why Seheiah differentiators */
.why__cta {
    margin-top: 2.5rem;
}

/* Footer brand signature line under the logo */
.footer__signature {
    margin-top: 1rem;
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(249, 247, 245, 0.7);
    max-width: 20rem;
}

/* Footer local-SEO line above the disclaimer */
.footer__local {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgba(249, 247, 245, 0.6);
    max-width: 42.5rem;
    margin: 0 auto 1rem;
}

/* Contact email is now a real mailto link */
.contact__fallback a.contact__email {
    color: var(--color-magenta-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--color-magenta-tint);
    transition: border-color 150ms ease;
}
.contact__fallback a.contact__email:hover {
    border-bottom-color: var(--color-magenta-deep);
}

/* Footer contact column link styling matches nav links */
.footer__section--contact .footer__links a {
    word-break: break-word;
}

@media (max-width: 767px) {
    .hero__trust { max-width: 100%; }
    .footer__signature { max-width: 100%; }
}

/* ============================================================
   REAL IMAGERY — 2026-08-02
   Placeholders replaced with <picture>. Containers already carry
   aspect-ratio, radius, shadow and overflow.
   ============================================================ */

.hero__image-placeholder picture,
.deborah__image-placeholder picture,
.why__image-placeholder picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__image-placeholder img,
.deborah__image-placeholder img,
.why__image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Deborah's portrait is a dark-background studio shot; a hairline keeps it
   from floating against the cream section background. */
.deborah__image-placeholder {
    overflow: hidden;
    border: 1px solid var(--color-border);
}

/* ============================================================
   WAITLIST FORM — 2026-08-02
   Replaces the placeholder booking modal. Tokens only, so it
   reads as native to the rest of the page.
   ============================================================ */

.waitlist {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.waitlist__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

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

.field__label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-secondary);
    letter-spacing: var(--tracking-normal);
}

.field__input {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
}

.field__input::placeholder {
    color: var(--color-text-muted);
}

.field__input:hover {
    border-color: var(--color-text-muted);
}

.field__input:focus {
    outline: none;
    border-color: var(--color-magenta);
    box-shadow: 0 0 0 3px rgba(175, 8, 143, 0.12);
}

.field__input--error,
.field__input--error:focus {
    border-color: var(--color-magenta-deep);
}

/* Honeypot: off-screen rather than display:none, which more bots skip. */
.waitlist__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.consent__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    accent-color: var(--color-magenta);
    cursor: pointer;
}

.consent__box:focus-visible {
    outline: 2px solid var(--color-magenta);
    outline-offset: 2px;
}

.consent__label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--color-text-secondary);
    cursor: pointer;
}

.consent__label a {
    color: var(--color-magenta-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.waitlist__error {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--color-magenta-deep);
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-4);
}

.waitlist__error[hidden] {
    display: none;
}

.waitlist__submit {
    display: block;
    margin: 0 auto;
    min-width: 260px;
}

.waitlist__submit:disabled {
    cursor: wait;
}

/* Success state, swapped in for the form after a successful submit. */
.waitlist__success {
    max-width: 560px;
    margin: 0 auto;
    padding: var(--space-8);
    background-color: var(--color-sage-tint);
    border-radius: var(--radius-lg);
    text-align: center;
}

.waitlist__success[hidden] {
    display: none;
}

.waitlist__success-h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-medium);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.waitlist__success-body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.waitlist__success-note {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--color-text-secondary);
}

.waitlist__success-note a {
    color: var(--color-magenta-deep);
}

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

    .waitlist__submit {
        width: 100%;
        min-width: 0;
    }

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

/* ============================================================
   LEGAL PAGES (privacy.html) — 2026-08-02
   ============================================================ */

.legal {
    padding: var(--space-12) var(--content-padding-desktop) var(--space-16);
    background-color: var(--color-bg);
}

.legal__container {
    max-width: var(--content-max-width-narrow);
    margin: 0 auto;
}

.legal__meta {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.legal h2 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
    color: var(--color-text-primary);
    margin: var(--space-10) 0 var(--space-4);
}

.legal h3 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
    margin: var(--space-6) 0 var(--space-3);
}

.legal p,
.legal li {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--color-text-primary);
}

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

.legal ul {
    margin: 0 0 var(--space-4) var(--space-5);
    padding: 0;
}

.legal li {
    margin-bottom: var(--space-2);
}

.legal a {
    color: var(--color-magenta-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.legal__table th,
.legal__table td {
    text-align: left;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
    line-height: var(--leading-normal);
    color: var(--color-text-primary);
}

.legal__table th {
    font-weight: var(--weight-semibold);
    color: var(--color-text-secondary);
    background-color: var(--color-bg-alt);
}

.legal__back {
    display: inline-block;
    margin-top: var(--space-10);
}

@media (max-width: 767px) {
    .legal {
        padding: var(--space-8) var(--content-padding-mobile) var(--space-12);
    }

    .legal__table {
        display: block;
        overflow-x: auto;
    }
}


/* Footer carries the FULL lockup (cream, with petals); it needs more height
   than the compact nav mark. Below 768px the footer stacks, so ease it down. */
@media (max-width: 767px) {
    .footer__logo-img { height: 76px; }
}
