@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
    --black: #03060D;
    --navy: #070E1C;
    --navy-mid: #0A1628;
    --navy-light: #0F1F3D;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #9A7A2E;
    --cream: #EDE8DF;
    --cream-dim: #B8B0A0;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Raleway', sans-serif;
    --transition: 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--cream);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

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

/* ── CANVAS STARFIELD ── */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition), padding var(--transition);
}

nav.scrolled {
    background: rgba(3, 6, 13, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.1;
}

.nav-logo-icon {
    height: 50px;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(68%) sepia(47%) saturate(450%) hue-rotate(1deg) brightness(95%) contrast(90%);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo .logo-main {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.08em;
}

.nav-logo .logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.68rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black) !important;
    background: var(--gold);
    padding: 0.65rem 1.6rem;
    border: 1px solid var(--gold);
    transition: background var(--transition), color var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10,22,40,0.4) 0%, rgba(3,6,13,0.75) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream-dim);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--black);
    background: var(--gold);
    transition: all var(--transition);
    cursor: pointer;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-inline {
    opacity: 1;
    animation: none;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
}

.hero-scroll span {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── SECTIONS ── */
section {
    position: relative;
    z-index: 1;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

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

.gold-rule {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.section-lead {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream-dim);
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.section-body {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--cream-dim);
    max-width: 680px;
}

/* ── INTRO SECTION ── */
.intro {
    background: var(--navy);
}

.intro .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.85);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(201,168,76,0.25);
    z-index: -1;
}

/* ── EXPERIENCES GRID ── */
.experiences-grid {
    background: var(--black);
}

.experiences-grid .section-inner {
    padding-bottom: 7rem;
}

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

.grid-header .gold-rule {
    margin: 0 auto 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: rgba(201,168,76,0.1);
}

.card {
    background: var(--navy);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--gold);
    transition: height 0.5s ease;
}

.card:hover {
    background: var(--navy-light);
}

.card:hover::before {
    height: 100%;
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--cream-dim);
}

/* ── PILLARS ── */
.pillars {
    background: var(--navy-mid);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(201,168,76,0.2);
    transition: border-color var(--transition);
}

.pillar:hover {
    border-color: var(--gold);
}

.pillar-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.pillar h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 0.88rem;
    color: var(--cream-dim);
    line-height: 1.8;
}

/* ── QUOTE BAND ── */
.quote-band {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.quote-band .section-inner {
    text-align: center;
    padding: 5rem 4rem;
}

.quote-band blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.quote-band cite {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--navy);
}

.cta-band .section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 5rem 4rem;
}

.cta-band h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--cream);
    max-width: 500px;
}

.cta-band h2 em {
    font-style: italic;
    color: var(--gold-light);
}

/* ── ABOUT PAGE ── */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.about-bio {
    background: var(--navy);
}

.about-bio .section-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}

.bio-image {
    position: relative;
}

.bio-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.85) sepia(0.1);
}

.bio-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    left: 15px;
    top: 15px;
    border: 1px solid rgba(201,168,76,0.2);
    z-index: -1;
}

.bio-credentials {
    margin-top: 3rem;
}

.bio-credentials h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.bio-credentials ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bio-credentials li {
    font-size: 0.85rem;
    color: var(--cream-dim);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.6;
}

.bio-credentials li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
}

/* ── EXPERIENCES PAGE ── */
.exp-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.experience-block {
    padding: 0;
}

.experience-block:nth-child(even) {
    background: var(--navy);
}

.experience-block:nth-child(odd) {
    background: var(--black);
}

.experience-block .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.experience-block:nth-child(even) .section-inner {
    direction: rtl;
}

.experience-block:nth-child(even) .section-inner > * {
    direction: ltr;
}

.exp-image {
    position: relative;
}

.exp-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    filter: brightness(0.8);
}

.exp-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(3,6,13,0.8);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.4rem 1rem;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.exp-text ul {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.exp-text li {
    font-size: 0.88rem;
    color: var(--cream-dim);
    padding-left: 1.5rem;
    position: relative;
}

.exp-text li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-size: 0.5rem;
    top: 0.35rem;
}

/* ── CONTACT PAGE ── */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

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

.contact-section .section-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p,
.contact-info a {
    font-size: 0.88rem;
    color: var(--cream-dim);
    line-height: 1.8;
}

.contact-info a {
    color: var(--cream-dim);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: color var(--transition), border-color var(--transition);
}

.contact-info a:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    padding: 0.85rem 1.1rem;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    cursor: pointer;
    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='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--navy-mid);
    color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(184,176,160,0.35);
}

.form-note {
    font-size: 0.75rem;
    color: var(--cream-dim);
    opacity: 0.6;
    line-height: 1.6;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(201,168,76,0.3);
}

.form-success p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--cream);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.12);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 4rem 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo-main {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.2rem;
}

.footer-brand .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--cream-dim);
    line-height: 1.8;
    opacity: 0.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col li a {
    font-size: 0.82rem;
    color: var(--cream-dim);
    opacity: 0.7;
    transition: opacity var(--transition), color var(--transition);
}

.footer-col li a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer-col address {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--cream-dim);
    opacity: 0.7;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--cream-dim);
    opacity: 0.4;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.68rem;
    color: var(--cream-dim);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.footer-legal a:hover {
    opacity: 0.8;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .section-inner { padding: 5rem 2.5rem; }
    nav { padding: 1.5rem 2.5rem; }
    nav.scrolled { padding: 1rem 2.5rem; }
    .intro .section-inner,
    .about-bio .section-inner,
    .contact-section .section-inner { grid-template-columns: 1fr; gap: 3rem; }
    .intro-image img,
    .bio-image img { height: 380px; }
    .cards { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .cta-band .section-inner { flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(3,6,13,0.98); justify-content: center; align-items: center; z-index: 99; }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { font-size: 0.85rem; padding: 1.2rem; display: block; }
    .nav-links a::after { display: none; }
    .nav-cta { padding: 1rem 2rem !important; }
    .hamburger { display: flex; position: relative; z-index: 101; }
    .section-inner { padding: 4rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .experience-block .section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .experience-block:nth-child(even) .section-inner { direction: ltr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 0.9rem 1.5rem; }
    .quote-band .section-inner { padding: 4rem 1.5rem; }
}
