/* ─── SATOSHI FONT ─── */
/* Loaded via <link> in HTML for better performance */

/* ─── VARIABLES ─── */
:root {
    --font: 'Satoshi', system-ui, -apple-system, sans-serif;

    /* a) Dark blue, ocean, light navy */
    --navy: #0B1120;
    --navy-mid: #1E293B;
    --navy-soft: #334155;
    --navy-muted: #475569;
    --navy-text: #64748B;
    --navy-light: #94A3B8;
    --navy-border: #CBD5E1;
    --navy-surface: #E2E8F0;
    --navy-bg: #F1F5F9;
    --navy-white: #F8FAFC;

    --ocean-dark: #0c4a6e;
    --ocean: #075985;
    --ocean-mid: #0369a1;
    --ocean-bright: #0284c7;
    --ocean-light: #0ea5e9;
    --ocean-pale: #38bdf8;
    --ocean-bg: #e0f2fe;
    --ocean-surface: #f0f9ff;

    /* b) Dark green, khaki */
    --green-dark: #14532d;
    --green: #166534;
    --green-mid: #15803d;
    --green-bright: #16a34a;
    --green-light: #22c55e;
    --green-pale: #4ade80;
    --green-bg: #f0fdf4;
    --green-surface: #dcfce7;

    --khaki-dark: #a89b7d;
    --khaki: #c3b091;
    --khaki-mid: #d4c5a3;
    --khaki-light: #e8dcc8;
    --khaki-pale: #f5f0e6;
    --khaki-bg: #faf8f3;

    /* c) Dark orange, orange, melon */
    --orange-deep: #7c2d12;
    --orange-dark: #9a3412;
    --orange-mid: #c2410c;
    --orange: #ea580c;
    --orange-bright: #f97316;
    --orange-light: #fb923c;
    --orange-pale: #fdba74;
    --melon: #fed7aa;
    --melon-light: #ffedd5;
    --melon-bg: #fef3c7;
    --melon-surface: #fff7ed;

    /* Backgrounds */
    --bg: #F8FAFC;
    --bg-warm: #fff7ed;
    --bg-green: #f0fdf4;
    --bg-navy: #f1f5f9;
    --bg-khaki: #faf8f3;
    --bg-melon: #fef3c7;
    --bg-ocean: #f0f9ff;
    --surface: #FFFFFF;

    /* Text */
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #F8FAFC;

    /* Borders */
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / 0.05);
    --shadow: 0 4px 6px -1px rgb(15 23 42 / 0.07), 0 2px 4px -2px rgb(15 23 42 / 0.07);
    --shadow-lg: 0 10px 15px -3px rgb(15 23 42 / 0.08), 0 4px 6px -4px rgb(15 23 42 / 0.08);
    --shadow-xl: 0 20px 25px -5px rgb(15 23 42 / 0.1), 0 8px 10px -6px rgb(15 23 42 / 0.1);
    --shadow-green: 0 10px 40px -10px rgba(22, 101, 52, 0.25);
    --shadow-orange: 0 10px 40px -10px rgba(234, 88, 12, 0.2);

    /* Radius */
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Max width */
    --max-width: 1200px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
:focus-visible { outline: 3px solid var(--green-mid); outline-offset: 2px; border-radius: 2px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 500;
    border-radius: 0 0 var(--radius) 0;
    transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.nav__links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius);
    position: relative;
    white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active {
    color: white;
    background: rgba(255,255,255,0.08);
}
.nav__links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--green-mid);
    border-radius: 1px;
}
.nav__cta {
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
    margin-left: 8px;
    white-space: nowrap;
}
.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 101, 52, 0.35);
}

@media (max-width: 640px) {
    .nav__inner { padding: 0 16px; }
    .nav__links { gap: 4px; }
    .nav__links a { padding: 6px 10px; font-size: 0.8rem; }
    .nav__cta { padding: 8px 14px; font-size: 0.8rem; margin-left: 4px; }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}
.hero--gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--ocean-dark) 70%, var(--green-dark) 100%);
    max-width: none;
    position: relative;
}
.hero--gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(22, 101, 52, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero--gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero--green {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--navy) 100%);
    max-width: none;
    position: relative;
}
.hero--green::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 176, 145, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero--orange {
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange-mid) 40%, var(--navy) 100%);
    max-width: none;
    position: relative;
}
.hero--orange::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 186, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero--navy {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-soft) 50%, var(--navy) 100%);
    max-width: none;
    position: relative;
}
.hero--navy::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero--warm {
    background: linear-gradient(135deg, var(--melon-bg) 0%, var(--melon) 50%, var(--melon-light) 100%);
    max-width: none;
    position: relative;
}
.hero--warm .hero__eyebrow { color: var(--orange-dark); }
.hero--warm .hero__title { color: var(--navy); }
.hero--warm .hero__subtitle { color: var(--navy-soft); }

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}
.hero__eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green-pale);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--green-mid);
}
.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: 24px;
}
.hero__subtitle {
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero__stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat {
    display: flex;
    flex-direction: column;
}
.hero__stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn--primary {
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
    color: white;
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.4);
}
.btn--secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.btn--secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.btn--dark {
    background: var(--navy);
    color: white;
}
.btn--dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
section {
    padding: 100px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
@media (max-width: 768px) { section { padding: 64px 20px; } }

.section__header {
    max-width: 720px;
    margin-bottom: 56px;
}
.section__header--center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-mid);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section__eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green-mid);
}
.section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section__desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── EXPERTISE ─── */
.expertise__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
.filter-btn {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}
.filter-btn:hover {
    border-color: var(--green-mid);
    color: var(--green-mid);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.25);
}
.expertise__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}
.competency {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.competency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-mid), var(--green-bright));
    opacity: 0;
    transition: opacity var(--transition);
}
.competency:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--green-mid);
}
.competency:hover::before { opacity: 1; }
.competency__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bg-green), var(--bg-ocean));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}
.competency__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.competency__summary {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.competency__toggle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-mid);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.competency__toggle:hover { gap: 10px; color: var(--green-dark); }
.competency__detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms ease, margin 400ms ease;
    opacity: 0;
}
.competency__detail.open {
    max-height: 900px;
    opacity: 1;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}
.competency__detail h4 {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-mid);
    margin: 18px 0 8px;
}
.competency__detail h4:first-child { margin-top: 0; }
.competency__detail p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}
.competency__detail p strong { color: var(--text); font-weight: 600; }

/* ─── CASE STUDIES ─── */
.case-study {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    transition: all var(--transition);
    display: grid;
    grid-template-columns: 280px 1fr;
}
.case-study:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--green-mid);
}
.case-study__visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
}
.case-study__visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(22, 101, 52, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.case-study__logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}
.case-study__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.case-study__client-name {
    font-size: 1.25rem;
    font-weight: 900;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.case-study__client-sector {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}
.case-study__results-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}
.case-study__result-item {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.1);
}
.case-study__result-item strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-pale);
    display: block;
}
.case-study__result-item span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
    display: block;
}
.case-study__content {
    padding: 40px;
}
.case-study__content h4 {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange-mid);
    margin-bottom: 12px;
}
.case-study__content p, .case-study__content ul {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.case-study__content ul {
    list-style: none;
    padding-left: 0;
}
.case-study__content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}
.case-study__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
    border-radius: 50%;
}
@media (max-width: 900px) {
    .case-study { grid-template-columns: 1fr; }
    .case-study__visual { padding: 32px; }
}

/* ─── CLIENTS ─── */
.clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.client-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
    opacity: 0;
    transition: opacity var(--transition);
}
.client-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--green-mid);
}
.client-card:hover::before { opacity: 1; }
.client-card__logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid var(--border);
}
.client-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.client-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.client-card__sector {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-mid);
    margin-bottom: 16px;
}
.client-card__services {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.client-card__services li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}
.client-card__services li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--text-light);
    border-radius: 50%;
}

/* ─── PROFILE ─── */
.profile__hero {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: start;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    overflow: hidden;
}
.profile__photo-wrap {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}
.profile__photo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 17, 32, 0.6) 100%);
    z-index: 1;
}
.profile__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.profile__photo-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: white;
}
.profile__photo-overlay h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.profile__photo-overlay p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.profile__content {
    padding: 48px 48px 48px 0;
}
.profile__content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}
.profile__content p strong { color: var(--text); font-weight: 600; }
.profile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.profile__tag {
    background: linear-gradient(135deg, var(--bg-green), var(--bg-ocean));
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-dark);
}

/* Timeline */
.timeline {
    margin-top: 48px;
}
.timeline__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}
.timeline__date {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--green-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.timeline__content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.timeline__content span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}
.timeline__content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .profile__hero { grid-template-columns: 1fr; }
    .profile__photo-wrap { min-height: 300px; }
    .profile__content { padding: 32px; }
    .timeline__item { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── CONTACT ─── */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact__info h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
}
.contact__info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1rem;
}
.contact__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact__link {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    transition: all var(--transition);
    padding: 12px;
    border-radius: var(--radius);
}
.contact__link:hover {
    color: var(--green-mid);
    background: var(--bg-green);
}
.contact__link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bg-green), var(--bg-ocean));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}
.contact__form {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-bright), var(--orange-mid), var(--orange));
}
.form__group {
    margin-bottom: 24px;
}
.form__group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.form__group input,
.form__group textarea,
.form__group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--bg);
    transition: all var(--transition);
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 4px rgba(22, 101, 52, 0.1);
    outline: none;
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__hint {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 6px;
}
.form__submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
    color: white;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.4);
}
@media (max-width: 768px) {
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__form { padding: 28px; }
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 48px 24px;
}
.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__text {
    font-size: 0.8125rem;
}
.footer__links {
    display: flex;
    gap: 24px;
}
.footer__links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--green-pale); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal--left {
    transform: translateX(-30px);
}
.reveal--left.active {
    transform: translateX(0);
}
.reveal--right {
    transform: translateX(30px);
}
.reveal--right.active {
    transform: translateX(0);
}
.reveal--scale {
    transform: scale(0.95);
}
.reveal--scale.active {
    transform: scale(1);
}
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ─── PRIVACY POLICY ─── */
.privacy__content {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}
.privacy__content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin: 32px 0 16px;
}
.privacy__content h2:first-child { margin-top: 0; }
.privacy__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin: 24px 0 12px;
}
.privacy__content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.privacy__content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.privacy__content ul li {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}
.privacy__content a {
    color: var(--green-mid);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.privacy__content a:hover { color: var(--green-dark); }
.privacy__date {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 32px;
    display: block;
}

/* ─── 404 PAGE ─── */
.error__container {
    text-align: center;
    padding: 120px 24px;
    max-width: 600px;
    margin: 0 auto;
}
.error__code {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright), var(--orange-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.error__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 24px 0 12px;
}
.error__desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}
.error__links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── UTILITY ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }
