:root {
    --bg: #0B0D10;
    --surface: #12151A;
    --line: rgba(237, 238, 240, 0.08);
    --line-strong: rgba(237, 238, 240, 0.16);
    --text: #EDEEF0;
    --text-dim: #9AA0A6;
    --gold: #C9A667;
    --gold-dim: #8A7550;
    --teal: #2C4A4E;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navigation and Hero section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px 48px;
}

.depth-field {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
}

.depth-field svg {
    width: 100%;
    height: 100%;
    display: block;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(11, 13, 16, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-ring {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-ring span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--gold);
}

.logo-mark .logo-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--text-dim);
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
    border-color: var(--gold);
    background: rgba(201, 166, 103, 0.08);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width:820px) {
    nav {
        padding: 16px 24px;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(11, 13, 16, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.is-open {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 16px 24px;
        border-bottom: 1px solid var(--line);
        width: 100%;
    }

    .nav-cta-mobile {
        display: block;
    }
}

.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-dim);
}

h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    line-height: 1.05;
    font-size: clamp(48px, 8vw, 92px);
}

h1 .line2 {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.tagline {
    margin-top: 28px;
    max-width: 520px;
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
}

.tagline strong {
    color: var(--text);
    font-weight: 500;
}

.cta-row {
    margin-top: 44px;
    display: flex;
    gap: 16px;
}

.btn {
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-filled {
    background: var(--text);
    color: var(--bg);
    border: 1px solid var(--text);
    transition: opacity 0.2s ease;
}

.btn-filled:hover {
    opacity: 0.85;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
    transition: border 0.2s ease, background 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 166, 103, 0.08);
}

.scroll-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 0 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(var(--gold), transparent);
}

/* About section */
.about {
    position: relative;
    padding: 140px 48px 160px;
    max-width: 1080px;
    margin: 0 auto;
}

.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.25;
    max-width: 820px;
    margin-bottom: 56px;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
}

.portrait-card {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    overflow: hidden;
}

.portrait-frame {
    aspect-ratio: 4/5;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}

.portrait-frame img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

.portrait-caption {
    padding: 16px 18px;
}

.portrait-caption .name {
    font-family: 'Fraunces', serif;
    font-size: 16px;
}

.portrait-caption .role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-top: 4px;
    text-transform: uppercase;
}

.about-copy p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-copy strong {
    color: var(--text);
    font-weight: 500;
}

.about-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.cat-card {
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 22px 24px;
}

.cat-card svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    margin-bottom: 14px;
}

.cat-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.cat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dim);
}

@media (max-width:760px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-categories {
        grid-template-columns: 1fr;
    }

    .portrait-card {
        max-width: 300px;
    }
}

.spotlight {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(201, 166, 103, 0.10), transparent 40%);
    transition: background 0.1s ease-out;
}

@media (hover: none) and (pointer: coarse) {
    .spotlight {
        display: none;
    }
}

/* Work section */
.work {
    position: relative;
    padding: 60px 48px 160px;
    max-width: 1080px;
    margin: 0 auto;
}

.work h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.25;
    max-width: 820px;
    margin-bottom: 56px;
}

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

.work-index {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold-dim);
    margin-bottom: 18px;
}

.work-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
}

.work-role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.work-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 20px;
    flex: 1;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.work-tags span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.03em;
    color: var(--text-dim);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 5px 12px;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-decoration: none;
    margin-top: 18px;
}

.work-link svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
}

.work-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    margin-top: 18px;
}

.work-featured {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.work-featured:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: rgba(201, 166, 103, 0.08);
}

.work-featured h3 {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.work-featured .work-role {
    margin-bottom: 20px;
}

.work-featured p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 24px;
}

.work-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.work-card {
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.work-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: rgba(201, 166, 103, 0.08);
}

@media (max-width:760px) {
    .work-secondary {
        grid-template-columns: 1fr;
    }
}

/* Journey section */
.journey {
    position: relative;
    padding: 60px 48px 160px;
    max-width: 920px;
    margin: 0 auto;
}

.journey h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.25;
    max-width: 820px;
    margin-bottom: 64px;
}

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

.timeline {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 28px;
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: relative;
    text-align: right;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -15px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--line-strong);
    transition: border-color 0.3s ease;
}

.timeline-item:not(:last-child) .timeline-marker::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -11px;
    width: 1px;
    bottom: -48px;
    background: var(--line-strong);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.5s ease, background 0.3s ease;
}

.timeline-item.is-drawn:not(:last-child) .timeline-marker::before {
    transform: scaleY(1);
    background: var(--gold-dim);
}

.timeline-year {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--text-dim);
}

.timeline-card {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 24px 26px;
}

.timeline-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 4px;
}

.timeline-company {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-dim);
}

.timeline-item.is-active .timeline-marker::after {
    border-color: var(--gold);
}

.timeline-item.is-origin .timeline-marker::after {
    border-color: var(--gold-dim);
}

.timeline-item.is-origin .timeline-card {
    border-style: dashed;
}

@media (max-width:600px) {
    .timeline-item {
        grid-template-columns: 108px 1fr;
        gap: 22px;
    }
}

/* Expertise section */
.expertise {
    position: relative;
    padding: 60px 48px 160px;
    max-width: 1080px;
    margin: 0 auto;
}

.expertise h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.25;
    max-width: 820px;
    margin-bottom: 56px;
}

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

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.expertise-group {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 24px 26px;
}

.expertise-group h3 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tags span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 6px 12px;
}

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

/* Contact section */
.contact {
    position: relative;
    padding: 100px 48px 80px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.contact p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 28px;
}

.contact-audience {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.contact-audience span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--gold);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 6px 14px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA0A6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 166, 103, 0.12);
}

.form-field.has-error input,
.form-field.has-error textarea {
    border-color: #E24B4A;
    animation: shake 0.4s ease;
}

.form-field.has-error .field-error {
    display: block;
}

.field-error {
    display: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #E24B4A;
    margin-top: 6px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.form-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bg);
    background: var(--text);
    border: 1px solid var(--text);
    border-radius: 999px;
    padding: 12px 28px;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-bottom: 8px;
}

.form-submit:hover {
    opacity: 0.85;
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-label {
    transition: opacity 0.15s ease;
}

.form-submit.is-loading .btn-label,
.form-submit.is-success .btn-label {
    opacity: 0;
}

.btn-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
}

.form-submit.is-loading .btn-loading {
    opacity: 1;
}

.btn-loading .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bg);
    opacity: 0.2;
}

.form-submit.is-loading .btn-loading .dot {
    animation: dotPulse 1.2s ease infinite;
}

.form-submit.is-loading .btn-loading .dot:nth-child(2) {
    animation-delay: 0.15s;
}

.form-submit.is-loading .btn-loading .dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.checkmark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-submit.is-success .checkmark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.form-submit.is-success {
    background: var(--gold);
    border-color: var(--gold);
    color: #1C1D1F;
}

.form-status {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-status.is-success {
    color: var(--gold);
}

.form-status.is-error {
    color: #c97a67;
}

.contact-integration-note {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 8px;
    margin-bottom: 32px;
}

.crm-highlight {
    color: var(--gold);
    font-weight: 500;
}

.contact-alt {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.contact-alt a {
    color: var(--gold);
    text-decoration: none;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 8px;
}

.contact-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

/* Footer section */
footer {
    border-top: 1px solid var(--line);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

footer .logo-mark {
    opacity: 0.8;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--text-dim);
}

.footer-meta .footer-stack {
    opacity: 0.7;
}

@media (max-width:600px) {
    .footer-meta {
        align-items: flex-start;
    }
}

/* Scroll-reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.2s ease, background 0.2s ease;
}

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

/* Hero stagger-in animation */
.hero .eyebrow,
.hero h1,
.hero .tagline {
    opacity: 0;
    transform: translateY(16px);
    animation: staggerIn 0.7s ease forwards;
}

.hero .eyebrow {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.35s;
}

.hero .tagline {
    animation-delay: 0.6s;
}

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}