/* ============================================================
   style.css — Dr. Ley Sylvester
   Design system: light theme, navy primary, gold accent
   ============================================================ */

/* ─── 1. Design Tokens ────────────────────────────────────────── */
:root {
    /* Colors */
    --color-white:       #FFFFFF;
    --color-off-white:   #F7F7F5;
    --color-navy:        #0D1B3E;
    --color-navy-mid:    #1A2F5E;
    --color-navy-light:  #E8EDF5;
    --color-gold:        #B8943A;
    --color-gold-hover:  #9E7D2F;
    --color-gold-light:  #F9F4EA;
    --color-body:        #2C2C2C;
    --color-muted:       #6B6B6B;
    --color-border:      #E4E4E0;
    --color-border-dark: #C8C8C3;

    /* Typography */
    --font-family:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-400:     400;
    --font-500:     500;
    --font-700:     700;

    /* Type scale */
    --text-xs:   0.8125rem;  /* 13px */
    --text-sm:   0.875rem;   /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg:   1.125rem;   /* 18px */
    --text-xl:   1.25rem;    /* 20px */
    --text-2xl:  1.5rem;     /* 24px */
    --text-3xl:  1.75rem;    /* 28px */
    --text-4xl:  2.25rem;    /* 36px */
    --text-5xl:  2.75rem;    /* 44px */
    --text-hero: 3.5rem;     /* 56px */

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  0.75rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 2.6rem;
    --space-4xl: 3rem;
    --space-5xl: 3.5rem;

    /* Layout */
    --container-max:   1100px;
    --container-pad:   1.5rem;
    --section-pad:     2.5rem;
    --section-pad-mob: 3rem;
    --radius-sm:       4px;
    --radius-md:       8px;
    --radius-lg:       12px;
    --radius-xl:       16px;

    /* Nav */
    --nav-height: 72px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(13, 27, 62, 0.06), 0 1px 2px rgba(13, 27, 62, 0.04);
    --shadow-md:  0 4px 12px rgba(13, 27, 62, 0.08), 0 2px 4px rgba(13, 27, 62, 0.06);
    --shadow-lg:  0 8px 24px rgba(13, 27, 62, 0.10), 0 4px 8px rgba(13, 27, 62, 0.06);

    /* Transitions */
    --transition-fast:   150ms ease;
    --transition-base:   250ms ease;
    --transition-slow:   400ms ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    font-weight: var(--font-400);
    line-height: 1.6;
    color: var(--color-body);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

/* ─── 3. Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-weight: var(--font-700);
    line-height: 1.2;
    color: var(--color-navy);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { line-height: 1.7; }

.lead {
    font-size: var(--text-xl);
    color: var(--color-muted);
    line-height: 1.6;
}

.eyebrow {
    font-size: var(--text-xs);
    font-weight: var(--font-700);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* ─── 4. Layout ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: var(--section-pad);
}

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

.section-navy {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
    color: var(--color-white);
}

.section-navy .lead,
.section-navy p {
    color: rgba(255, 255, 255, 0.75);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: var(--space-3xl);
}

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

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

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

/* ─── 5. Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-family);
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast),
                transform var(--transition-fast),
                box-shadow var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

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

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--text-base);
}

/* ─── 6. Navigation ───────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition-base);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo-name {
    font-size: var(--text-lg);
    font-weight: var(--font-700);
    color: var(--color-navy);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-inline: auto;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: var(--font-500);
    color: var(--color-muted);
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-navy);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    flex-shrink: 0;
    margin-left: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    margin-left: auto;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 62, 0.4);
    backdrop-filter: blur(2px);
}

.mobile-menu-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-white);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
}

.mobile-menu.open .mobile-menu-drawer {
    transform: translateX(0);
}

.mobile-menu-close {
    align-self: flex-end;
    font-size: 1.75rem;
    color: var(--color-navy);
    line-height: 1;
    padding: var(--space-xs);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--text-lg);
    font-weight: var(--font-500);
    color: var(--color-navy);
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition-fast);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--color-gold);
}

.mobile-cta {
    width: 100%;
    justify-content: center;
}

.mobile-social {
    display: flex;
    gap: var(--space-lg);
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
}

.mobile-social a:hover {
    color: var(--color-navy);
}

/* ─── 7. Hero Section ─────────────────────────────────────────── */
.hero {
    padding-block: var(--space-5xl) var(--space-4xl);
    background: linear-gradient(160deg, var(--color-white) 60%, var(--color-navy-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Oware-inspired dot grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--color-navy) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.04;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    margin-bottom: var(--space-lg);
}

.hero h1 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-hero));
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.hero h1 .accent {
    color: var(--color-gold);
}

.hero-lead {
    font-size: var(--text-xl);
    color: var(--color-muted);
    margin-bottom: var(--space-2xl);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-social {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-social-label {
    font-size: var(--text-xs);
    font-weight: var(--font-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
}

.hero-social a {
    color: var(--color-muted);
    transition: color var(--transition-fast);
}

.hero-social a:hover {
    color: var(--color-navy);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-photo-wrap {
    position: relative;
    width: 400px;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Placeholder when no photo */
.hero-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 5rem;
}

.hero-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-md);
}

.hero-card-label {
    font-size: var(--text-xs);
    color: var(--color-muted);
    margin-bottom: 2px;
}

.hero-card-value {
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    color: var(--color-navy);
}

/* ─── 8. Credential Bar ───────────────────────────────────────── */
.credential-bar {
    padding-block: var(--space-2xl);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-off-white);
}

.credential-bar-label {
    text-align: center;
    font-size: var(--text-xs);
    font-weight: var(--font-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: var(--space-lg);
}

.credential-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl) var(--space-3xl);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: var(--font-500);
    color: var(--color-navy);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.credential-item:hover {
    opacity: 1;
}

.credential-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ─── 9. Cards ────────────────────────────────────────────────── */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Project Cards */
.project-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.project-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 2.5rem;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-body {
    padding: var(--space-xl);
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: var(--text-xs);
    font-weight: var(--font-500);
    background: var(--color-navy-light);
    color: var(--color-navy);
    border-radius: var(--radius-sm);
}

.tag-gold {
    background: var(--color-gold-light);
    color: var(--color-gold-hover);
}

.project-card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-700);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.project-card-impact {
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.project-card-desc {
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.65;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    color: var(--color-navy);
    transition: color var(--transition-fast);
}

.project-card-link:hover {
    color: var(--color-gold);
}

.project-card-link svg {
    transition: transform var(--transition-fast);
}

.project-card-link:hover svg {
    transform: translateX(3px);
}

/* ─── 10. Services Section ────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: box-shadow var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gold-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
}

.service-title {
    font-size: var(--text-xl);
    font-weight: var(--font-700);
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-list li {
    font-size: var(--text-sm);
    color: var(--color-muted);
    padding-left: var(--space-md);
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

/* ─── 11. Why Work With Me ────────────────────────────────────── */
.differentiators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.differentiator {
    text-align: center;
    padding: var(--space-xl);
}

.differentiator-icon {
    width: 56px;
    height: 56px;
    background: var(--color-navy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--color-navy);
}

.differentiator h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.differentiator p {
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.65;
}

/* ─── 12. CTA Strip ───────────────────────────────────────────── */
.cta-strip {
    background: var(--color-navy);
    padding-block: var(--space-4xl);
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.cta-strip-text h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    font-size: var(--text-3xl);
}

.cta-strip-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-lg);
    max-width: 520px;
}

/* ─── 13. About Page ──────────────────────────────────────────── */

/* Intro: photo left, text right — collapses to stacked on mobile */
.about-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-photo-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Text beside the photo */
.about-intro-text h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.about-intro-text p {
    color: var(--color-muted);
    line-height: 1.8;
}

.about-intro-text p + p {
    margin-top: var(--space-md);
}

/* Oware project visual inside the story */
.about-project-visual {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    width: 60%;
    margin-inline: auto;
}

.about-project-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.about-project-visual figcaption {
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.6;
    border-top: 1px solid var(--color-border);
}

.about-project-visual figcaption a {
    color: var(--color-gold);
    font-weight: var(--font-700);
    margin-left: 4px;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.about-project-visual figcaption a:hover {
    color: var(--color-gold-hover);
}

/* Story section — full width below the intro */
.about-story {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.about-story h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.about-story p {
    color: var(--color-muted);
    line-height: 1.8;
}

.about-story p + p {
    margin-top: var(--space-md);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.credential-card {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
}

.credential-card-label {
    font-size: var(--text-xs);
    font-weight: var(--font-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.credential-card-value {
    font-size: var(--text-sm);
    font-weight: var(--font-500);
    color: var(--color-navy);
    line-height: 1.4;
}

/* ─── 14. Speaking Page ───────────────────────────────────────── */
.speaking-intro {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.topic-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-gold);
}

.topic-item-content h4 {
    font-size: var(--text-base);
    margin-bottom: 4px;
}

.topic-item-content p {
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.5;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.format-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.format-icon {
    width: 40px;
    height: 40px;
    background: var(--color-gold-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.format-card h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    margin-bottom: 2px;
}

.format-card p {
    font-size: var(--text-xs);
    color: var(--color-muted);
}

/* ─── 15. Contact Page ────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.contact-info h2 {
    font-size: var(--text-3xl);
    line-height: 1.2;
}

.contact-info p {
    color: var(--color-muted);
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-body);
}

.contact-detail a {
    color: var(--color-navy);
    font-weight: var(--font-500);
    transition: color var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--color-gold);
}

.contact-social {
    display: flex;
    gap: var(--space-md);
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    transition: color var(--transition-fast),
                border-color var(--transition-fast),
                background var(--transition-fast);
}

.contact-social a:hover {
    color: var(--color-navy);
    border-color: var(--color-navy);
    background: var(--color-navy-light);
}

/* ─── 16. Contact Form ────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.form-group:last-of-type {
    margin-bottom: var(--space-xl);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    color: var(--color-navy);
}

.form-label .required {
    color: var(--color-gold);
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-family);
    font-size: var(--text-base);
    color: var(--color-body);
    background: var(--color-white);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(13, 27, 62, 0.08);
}

.form-control.error {
    border-color: #C0392B;
}

.form-control::placeholder {
    color: var(--color-muted);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-error {
    font-size: var(--text-xs);
    color: #C0392B;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

/* ─── Contact Page ────────────────────────────────────────────── */
.contact-intro {
    padding-block: var(--space-4xl) var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.contact-headline {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-hero));
    font-weight: var(--font-700);
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.contact-sub {
    font-size: var(--text-lg);
    color: var(--color-gold);
    line-height: 1.6;
}

.contact-info p {
    font-size: var(--text-base);
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

/* Platform tiles */
.contact-platforms {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-platform {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    transition: border-color var(--transition-fast),
                box-shadow var(--transition-fast),
                transform var(--transition-fast);
    text-decoration: none;
}

.contact-platform:hover {
    border-color: var(--color-navy);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-platform-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    flex-shrink: 0;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.contact-platform:hover .contact-platform-icon {
    background: var(--color-navy);
    color: var(--color-white);
}

.contact-platform-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-platform-name {
    font-size: var(--text-base);
    font-weight: var(--font-700);
    color: var(--color-navy);
}

.contact-platform-handle {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

/* Form status messages */
.form-status {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: var(--font-500);
    margin-bottom: var(--space-lg);
}

.form-status.success {
    background: #EAF5EA;
    color: #2A7A2A;
    border: 1px solid #C3E6C3;
}

.form-status.error {
    background: #FDE8E8;
    color: #C0392B;
    border: 1px solid #F5C6C6;
}

/* ─── 17. Page Hero (inner pages) ────────────────────────────── */
.page-hero {
    background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
    padding-block: var(--space-4xl) var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
}

.page-hero .eyebrow {
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    display: block;
}

.page-hero h1 {
    color: var(--color-white);
    font-size: clamp(var(--text-4xl), 4vw, var(--text-5xl));
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-xl);
    max-width: 560px;
    line-height: 1.65;
}

/* ─── 18. Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding-top: var(--space-3xl);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: var(--text-xl);
    font-weight: var(--font-700);
    color: var(--color-white);
    display: block;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
}

.footer-social {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-sm);
}

.footer-social a {
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-block: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

/* ─── 19. Work Page ───────────────────────────────────────────── */

/* Page intro — clean typographic opening */
.work-intro {
    padding-block: var(--space-4xl) var(--space-3xl);
    border-bottom: 1px solid var(--color-border);
}

.work-intro .eyebrow {
    display: block;
    margin-bottom: var(--space-md);
}

.work-intro-headline {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-hero));
    font-weight: var(--font-700);
    color: var(--color-navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.work-intro-sub {
    font-size: var(--text-lg);
    color: var(--color-gold);
    max-width: 560px;
    line-height: 1.6;
}

/* Feature sections — alternating image/content */
.work-feature {
    padding-block: var(--space-4xl);
    border-bottom: 1px solid var(--color-border);
}

.work-feature-alt {
    background: var(--color-off-white);
}

.work-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.work-feature-reverse {
    direction: rtl;
}

.work-feature-reverse > * {
    direction: ltr;
}

/* Media block */
.work-feature-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-navy-light);
    aspect-ratio: 4/3;
}

.work-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.work-feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark media block for Oware */
.work-feature-media-dark {
    background: #1a0f00;
}

/* Content block */
.work-feature-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.work-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.work-feature-content h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-700);
    color: var(--color-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.work-feature-impact {
    font-size: var(--text-base);
    font-weight: var(--font-700);
    color: var(--color-gold);
    margin: 0;
}

.work-feature-content p {
    font-size: var(--text-base);
    color: var(--color-muted);
    line-height: 1.75;
    margin: 0;
}

.work-feature-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.work-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    border-radius: var(--radius-md);
    padding: 0.65rem 1.25rem;
    align-self: flex-start;
    transition: background var(--transition-fast),
                color var(--transition-fast);
}

.work-feature-link:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

/* ─── 20. Services Page ───────────────────────────────────────── */
.services-intro {
    padding-block: var(--space-4xl) var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.services-headline {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-hero));
    font-weight: var(--font-700);
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.services-sub {
    font-size: var(--text-lg);
    color: var(--color-gold);
    line-height: 1.6;
}

.services-list {
    padding-block: 0;
}

.services-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-4xl);
    align-items: start;
    padding-block: var(--space-3xl);
    border-bottom: 1px solid var(--color-border);
}

.services-item:last-child {
    border-bottom: none;
}

.services-item-label {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.services-item-number {
    font-size: var(--text-xs);
    font-weight: var(--font-700);
    color: var(--color-border-dark);
    letter-spacing: 0.12em;
}

.services-item-label h2 {
    font-size: var(--text-5xl);
    font-weight: var(--font-700);
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
}

.services-item-content {
    padding-top: var(--space-lg);
}

.services-item-content p {
    font-size: var(--text-lg);
    color: var(--color-muted);
    line-height: 1.8;
    max-width: 600px;
}

.services-item-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-700);
    color: var(--color-navy);
    transition: color var(--transition-fast);
}

.services-item-link:hover {
    color: var(--color-gold);
}

.services-item-link svg {
    transition: transform var(--transition-fast);
}

.services-item-link:hover svg {
    transform: translateX(3px);
}

.services-cta {
    padding-block: var(--space-4xl);
    text-align: center;
    background: var(--color-off-white);
}

.services-cta-text {
    font-size: var(--text-xl);
    color: var(--color-muted);
    margin-bottom: var(--space-xl);
}

/* ─── 21. Error Page ──────────────────────────────────────────── */
.error-page {
    min-height: calc(100vh - var(--nav-height) - 300px);
    display: flex;
    align-items: center;
    padding-block: var(--space-5xl);
}

.error-content {
    text-align: center;
}

.error-code {
    display: block;
    font-size: 6rem;
    font-weight: var(--font-700);
    color: var(--color-navy-light);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.error-content h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--color-muted);
    margin-bottom: var(--space-2xl);
}

.error-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}
/* ─── 25. Speaking Page ───────────────────────────────────────── */
.speaking-hero {
    padding-block: var(--space-4xl);
    border-bottom: 1px solid var(--color-border);
}

.speaking-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: center;
}



.speaking-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.speaking-hero-content .eyebrow {
    display: block;
}

.speaking-hero-content h1 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.speaking-hero-content p {
    font-size: var(--text-lg);
    color: var(--color-muted);
    line-height: 1.75;
    margin: 0;
}

.speaking-section-header {
    margin-bottom: var(--space-3xl);
}

.speaking-section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.speaking-section-header p {
    color: var(--color-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    line-height: 1.65;
}

.speaking-topics {
    display: flex;
    flex-direction: column;
}

.speaking-topic {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-xl);
    padding-block: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.speaking-topic:last-child {
    border-bottom: none;
}

.speaking-topic-number {
    font-size: var(--text-xs);
    font-weight: var(--font-700);
    color: var(--color-border-dark);
    letter-spacing: 0.12em;
    padding-top: 6px;
}

.speaking-topic-body h3 {
    font-size: var(--text-xl);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.speaking-topic-body p {
    font-size: var(--text-base);
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.speaking-topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.speaking-engagements {
    display: flex;
    flex-direction: column;
}

.speaking-engagement {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-xl);
    padding-block: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.speaking-engagement:last-child {
    border-bottom: none;
}

.speaking-engagement-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 260px;
}

.speaking-engagement-org {
    font-size: var(--text-base);
    font-weight: var(--font-700);
    color: var(--color-navy);
}

.speaking-engagement-date {
    font-size: var(--text-xs);
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

.speaking-engagement-title {
    font-size: var(--text-base);
    color: var(--color-muted);
    line-height: 1.5;
    flex: 1;
}

.speaking-cta {
    background: var(--color-navy);
    padding-block: var(--space-4xl);
}

.speaking-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.speaking-cta-inner h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.speaking-cta-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--text-lg);
    max-width: 500px;
    line-height: 1.65;
}

.speaking-approach {
    max-width: 680px;
}

.speaking-approach p {
    font-size: var(--text-xl);
    color: var(--color-muted);
    line-height: 1.8;
}
/* Speaking cards */
.speaking-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.speaking-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.speaking-card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
}

.speaking-card-org {
    font-size: var(--text-base);
    font-weight: var(--font-700);
    color: var(--color-navy);
}

.speaking-card-date {
    font-size: var(--text-xs);
    font-weight: var(--font-500);
    color: var(--color-gold);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.speaking-card-title {
    font-size: var(--text-lg);
    color: var(--color-body);
    line-height: 1.5;
    flex: 1;
}

.speaking-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

/* Speaking philosophy */
.speaking-philosophy {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.speaking-philosophy blockquote {
    font-size: var(--text-xl);
    color: var(--color-navy);
    line-height: 1.75;
    padding-left: var(--space-xl);
    border-left: 3px solid var(--color-gold);
    margin: 0;
}

/* Hero image — larger and more prominent */
.speaking-hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    max-width: 400px;
    margin-left: auto;
}

.speaking-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ─── 22. Utility Classes ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted   { color: var(--color-muted); }
.text-navy    { color: var(--color-navy); }
.text-gold    { color: var(--color-gold); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* ─── 23. Scroll Animations ───────────────────────────────────── */
.fade-in {
    opacity: 1;
    transform: none;
    transition: none;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.fade-in-children > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.fade-in-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 80ms; }
.fade-in-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
.fade-in-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
.fade-in-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 320ms; }
.fade-in-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 400ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in-children > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
}

/* ─── 24. Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner              { grid-template-columns: 1fr; }
    .hero-image              { display: none; }
    .about-intro             { grid-template-columns: 1fr; }
    .about-photo-frame       { max-width: 260px; aspect-ratio: 1/1; }
    .speaking-intro          { grid-template-columns: 1fr; }
    .differentiators         { grid-template-columns: repeat(2, 1fr); }
    .card-grid-3             { grid-template-columns: repeat(2, 1fr); }
    .work-feature-inner      { grid-template-columns: 1fr; }
    .work-feature-reverse    { direction: ltr; }
    .work-feature-media      { aspect-ratio: 16/9; max-height: 300px; }
    .services-item           { grid-template-columns: 1fr; gap: var(--space-md); }
    .services-item-label     { position: static; }
    .speaking-hero-inner  { grid-template-columns: 1fr; }
    .speaking-hero-image  { max-width: 400px; aspect-ratio: 3/4; }
    .speaking-cta-inner   { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    :root {
        --section-pad: var(--section-pad-mob);
    }

    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }

    .nav-links  { display: none; }
    .nav-cta    { display: none; }
    .nav-toggle { display: flex; }

    .services-grid        { grid-template-columns: 1fr; }
    .contact-layout       { grid-template-columns: 1fr; }
    .contact-info         { position: static; }
    .credentials-grid     { grid-template-columns: 1fr; }
    .formats-grid         { grid-template-columns: 1fr; }
    .card-grid-2          { grid-template-columns: 1fr; }
    .card-grid-3          { grid-template-columns: 1fr; }
    .differentiators      { grid-template-columns: 1fr; }
    .cta-strip-inner      { flex-direction: column; text-align: center; }
    .hero-actions         { flex-direction: column; align-items: flex-start; }
    .error-actions        { flex-direction: column; align-items: center; }
    .page-hero            { padding-block: var(--space-3xl) var(--space-2xl); }
    .speaking-topic         { grid-template-columns: 1fr; gap: var(--space-sm); }
    .speaking-topic-number  { display: none; }
    .speaking-engagement    { flex-direction: column; gap: var(--space-xs); }
    .speaking-engagement-meta { min-width: unset; }
    .speaking-cards { grid-template-columns: 1fr; }
    .speaking-hero-inner  { gap: var(--space-xl); }
    .contact-intro { padding-block: var(--space-3xl) var(--space-xl); }
}

@media (max-width: 480px) {
    :root { --container-pad: 1rem; }
    h1 { font-size: var(--text-3xl); }
    .hero { padding-block: var(--space-3xl) var(--space-2xl); }
}