:root {
    --cream: #f1eee6;
    --cream-dark: #e8e2d7;
    --wine: #5a2027;
    --wine-dark: #351318;
    --black: #171514;
    --grey: #77716a;
    --white: #faf9f6;
    --line: rgba(23, 21, 20, .18);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --pad: clamp(22px, 4vw, 72px);
}

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

html {
    scroll-behavior: smooth;
}

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

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

button {
    font-family: inherit;
}


/* LOADER */

.loader {
    position: fixed;
    inset: 0;
    background: var(--wine-dark);
    color: white;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: loaderOut 1s 1.1s forwards;
}

.loader-logo {
    font-size: clamp(30px, 5vw, 70px);
    letter-spacing: .16em;
    animation: loaderLogo 1s forwards;
}

@keyframes loaderLogo {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

@keyframes loaderOut {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}


/* HEADER */

.header {
    height: 90px;
    padding: 0 var(--pad);

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    color: white;
}

.header-dark {
    color: var(--black);
    position: relative;
}

.logo {
    font-size: 19px;
    letter-spacing: .17em;
    font-weight: 600;
}

.logo span {
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 34px;
}

.nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .7;
    transition: .3s;
}

.nav a:hover,
.nav a.active {
    opacity: 1;
}

.header-contact {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.header-contact span {
    margin-left: 8px;
}

.menu-button {
    display: none;
    background: none;
    border: 0;
}


/* HERO */

.hero {
    min-height: 100vh;
    position: relative;

    color: white;

    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1473973266408-ed4e27abdd47?auto=format&fit=crop&w=2400&q=85")
        center / cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20,10,8,.75),
            rgba(20,10,8,.22)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: var(--pad);
    padding-top: 100px;
}

.eyebrow,
.section-number {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey);
}

.eyebrow {
    color: rgba(255,255,255,.7);
    margin-bottom: 30px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(70px, 10vw, 155px);
    font-weight: 400;
    line-height: .85;
    letter-spacing: -.055em;
}

em {
    font-family: var(--serif);
    font-weight: 400;
}

.hero-description {
    max-width: 360px;
    margin-top: 45px;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,.8);
}

.hero-bottom {
    position: absolute;
    z-index: 3;

    left: var(--pad);
    right: var(--pad);
    bottom: 35px;

    display: flex;
    justify-content: space-between;

    font-size: 10px;
    letter-spacing: .15em;
}

.scroll-arrow {
    font-size: 20px;
}


/* GENERAL */

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

.intro {
    background: var(--cream);
}

.intro-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10vw;
}

.display-text {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 90px);
    line-height: .98;
    letter-spacing: -.04em;
}

.intro-copy {
    max-width: 450px;
}

.intro-copy p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 30px;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .09em;

    border-bottom: 1px solid currentColor;
    padding-bottom: 8px;
}

.text-link span {
    font-size: 18px;
}


/* MANIFESTO */

.manifesto {
    min-height: 90vh;
    position: relative;
    color: white;

    display: flex;
    align-items: center;
}

.manifesto-image {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=2400&q=85")
        center / cover;
}

.manifesto-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35,12,12,.55);
}

.manifesto-content {
    position: relative;
    padding: var(--pad);
}

.light {
    color: rgba(255,255,255,.55);
}

.manifesto h2 {
    margin-top: 50px;

    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 125px);
    line-height: .88;
    letter-spacing: -.05em;
}

.manifesto p {
    max-width: 400px;
    margin-top: 50px;

    font-size: 16px;
    line-height: 1.6;
}


/* TEAM */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-heading h2,
.process-title h2,
.journal-preview h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(60px, 7vw, 105px);
    line-height: .9;
    letter-spacing: -.05em;

    margin-top: 40px;
}

.circle-link {
    width: 125px;
    height: 125px;
    border: 1px solid var(--line);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;

    transition: .4s;
}

.circle-link:hover {
    background: var(--wine);
    color: white;
    border-color: var(--wine);
    transform: rotate(-10deg);
}

.people-grid {
    margin-top: 100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.person-card {
    display: block;
}

.person-offset {
    margin-top: 100px;
}

.person-image {
    height: 550px;
    background-position: center;
    background-size: cover;

    filter: saturate(.75);

    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.person-card:hover .person-image {
    transform: scale(.97);
}

.person-1 {
    background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=1000&q=80");
}

.person-2 {
    background-image: url("https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=1000&q=80");
}

.person-3 {
    background-image: url("https://images.unsplash.com/photo-1566492031773-4f4e44671d66?auto=format&fit=crop&w=1000&q=80");
}

.person-meta {
    padding-top: 20px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.person-meta span {
    font-family: var(--serif);
    font-size: 25px;
}

.person-meta small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--grey);
}


/* PROCESS */

.process {
    background: var(--cream-dark);
}

.process-title {
    margin-top: 30px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.process-title p {
    width: 360px;
    line-height: 1.7;
    color: var(--grey);
}

.process-list {
    margin-top: 100px;
    border-top: 1px solid var(--line);
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;

    padding: 35px 0;
    border-bottom: 1px solid var(--line);

    align-items: center;
}

.process-item > span {
    font-size: 11px;
    color: var(--grey);
}

.process-item h3 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
}

.process-item p {
    max-width: 400px;
    color: var(--grey);
    line-height: 1.6;
}


/* QUOTE */

.quote-section {
    padding: 180px var(--pad);
    text-align: center;
    background: var(--wine);
    color: white;
}

.quote-section.dark {
    background: var(--wine-dark);
}

.quote-mark {
    font-family: var(--serif);
    font-size: 100px;
    line-height: .5;
    opacity: .5;
}

.quote-section blockquote {
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 90px);
    line-height: .98;
    letter-spacing: -.04em;
}

.quote-section > span {
    display: block;
    margin-top: 50px;

    font-size: 10px;
    letter-spacing: .15em;
}


/* ARTICLES */

.articles {
    margin-top: 100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.article-image {
    height: 350px;
    background-size: cover;
    background-position: center;

    margin-bottom: 25px;
}

.article-1 {
    background-image: url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1200&q=80");
}

.article-2 {
    background-image: url("https://images.unsplash.com/photo-1474722883778-792e7990302f?auto=format&fit=crop&w=1200&q=80");
}

.article-3 {
    background-image: url("https://images.unsplash.com/photo-1535869462434-f92cc30bf40c?auto=format&fit=crop&w=1200&q=80");
}

.article-info small,
.journal-card small {
    color: var(--grey);
    font-size: 9px;
    letter-spacing: .13em;
}

.article-info h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    margin: 18px 0 10px;
}

.article-info p {
    color: var(--grey);
    line-height: 1.5;
}


/* FINAL CTA */

.final-cta {
    padding: 170px var(--pad);

    background: var(--wine-dark);
    color: white;
}

.final-number {
    font-size: 10px;
    opacity: .5;
}

.final-cta h2 {
    font-family: var(--serif);
    font-size: clamp(65px, 9vw, 130px);
    line-height: .88;
    letter-spacing: -.05em;
    margin-top: 40px;
}

.big-button {
    display: flex;
    width: fit-content;

    margin-top: 70px;
    padding: 22px 30px;

    border: 1px solid rgba(255,255,255,.4);

    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11px;

    gap: 50px;

    transition: .4s;
}

.big-button:hover {
    background: white;
    color: var(--wine-dark);
}

.big-button span {
    font-size: 20px;
}


/* FOOTER */

.footer {
    background: var(--black);
    color: white;
    padding: 80px var(--pad) 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
}

.footer-brand p {
    color: #888;
    margin-top: 20px;
    font-size: 13px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    font-size: 13px;
    color: #aaa;
}

.footer-contact span {
    color: #777;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer-contact a {
    font-family: var(--serif);
    font-size: 22px;
}

.footer-bottom {
    border-top: 1px solid #333;

    margin-top: 90px;
    padding-top: 20px;

    display: flex;
    justify-content: space-between;

    color: #666;
    font-size: 10px;
    text-transform: uppercase;
}


/* INNER HERO */

.page-hero {
    min-height: 650px;

    display: flex;
    align-items: flex-end;

    padding: 100px var(--pad);
    padding-bottom: 90px;

    background: var(--cream-dark);
}

.page-hero-inner {
    width: 100%;
}

.page-hero h1 {
    margin-top: 50px;

    font-family: var(--serif);
    font-size: clamp(65px, 9vw, 135px);
    font-weight: 400;

    line-height: .87;
    letter-spacing: -.055em;
}

.page-hero p {
    max-width: 430px;
    margin-top: 45px;

    color: var(--grey);
    line-height: 1.7;
}


/* FULL TEAM */

.team-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 90px;
}

.filter {
    border: 1px solid var(--line);
    background: transparent;

    padding: 12px 20px;

    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .08em;

    cursor: pointer;
}

.filter.active,
.filter:hover {
    background: var(--wine);
    color: white;
    border-color: var(--wine);
}

.team-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
    row-gap: 130px;
}

.team-card-down {
    margin-top: 180px;
}

.team-card-image {
    height: 650px;
    background-size: cover;
    background-position: center;
}

.team-photo-1 {
    background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=1400&q=85");
}

.team-photo-2 {
    background-image: url("https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=1400&q=85");
}

.team-photo-3 {
    background-image: url("https://images.unsplash.com/photo-1566492031773-4f4e44671d66?auto=format&fit=crop&w=1400&q=85");
}

.team-photo-4 {
    background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=85");
}

.team-card-text {
    padding-top: 25px;
}

.team-card-text small {
    color: var(--grey);
    font-size: 9px;
    letter-spacing: .13em;
}

.team-card-text h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 70px);
    line-height: .9;
    font-weight: 400;
    margin: 20px 0;
}

.team-card-text p {
    color: var(--grey);
    font-size: 13px;
}


/* TEAM MANIFESTO */

.team-manifesto {
    padding: 170px var(--pad);
    background: var(--wine);
    color: white;
}

.team-manifesto h2 {
    font-family: var(--serif);
    font-size: clamp(65px, 9vw, 130px);
    line-height: .85;
    margin-top: 60px;
}

.team-manifesto p {
    margin-top: 50px;
    max-width: 400px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
}


/* JOIN */

.join-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10vw;
    margin-top: 60px;
}

.join h2 {
    font-family: var(--serif);
    font-size: clamp(60px, 7vw, 110px);
    line-height: .9;
}

.join-grid p {
    max-width: 420px;
    line-height: 1.7;
}


/* TIMELINE */

.story-heading {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10vw;

    margin-top: 60px;
}

.story-heading h2,
.day h2 {
    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 120px);
    line-height: .88;
    letter-spacing: -.05em;
}

.story-heading p {
    max-width: 430px;
    line-height: 1.7;
    color: var(--grey);
}

.timeline {
    margin-top: 130px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr 45%;
    gap: 40px;

    padding: 80px 0;

    border-top: 1px solid var(--line);
}

.timeline-number {
    color: var(--grey);
    font-size: 12px;
}

.timeline-content small {
    color: var(--grey);
    font-size: 9px;
    letter-spacing: .13em;
}

.timeline-content h3 {
    font-family: var(--serif);
    font-size: 55px;
    font-weight: 400;
    margin: 25px 0;
}

.timeline-content p {
    max-width: 390px;
    line-height: 1.7;
    color: var(--grey);
}

.timeline-image {
    min-height: 400px;
    background-position: center;
    background-size: cover;
}

.timeline-1 {
    background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1200&q=80");
}

.timeline-2 {
    background-image: url("https://images.unsplash.com/photo-1516594915697-87eb3b1c14ea?auto=format&fit=crop&w=1200&q=80");
}

.timeline-3 {
    background-image: url("https://images.unsplash.com/photo-1572564283688-19b89c8c9e40?auto=format&fit=crop&w=1200&q=80");
}

.timeline-4 {
    background-image: url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1200&q=80");
}


/* NUMBERS */

.numbers {
    background: var(--wine-dark);
    color: white;
    padding: 100px var(--pad);
}

.numbers-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.numbers-inner div {
    border-left: 1px solid rgba(255,255,255,.2);
    padding-left: 25px;
}

.numbers strong {
    display: block;
    font-family: var(--serif);
    font-size: 70px;
    font-weight: 400;
}

.numbers span {
    color: #aaa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}


/* DAY */

.day h2 {
    margin-top: 50px;
}

.day-list {
    margin-top: 100px;
    border-top: 1px solid var(--line);
}

.day-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 35px 0;
    border-bottom: 1px solid var(--line);
}

.day-item time {
    color: var(--grey);
}

.day-item h3 {
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 400;
}

.day-item p {
    margin-top: 8px;
    color: var(--grey);
}


/* JOURNAL */

.journal-feature {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 650px;
}

.journal-feature-image {
    background:
        url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1800&q=85")
        center / cover;
}

.journal-feature-content {
    background: var(--wine);
    color: white;

    padding: 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journal-feature-content small {
    font-size: 9px;
    letter-spacing: .14em;
    opacity: .65;
}

.journal-feature-content h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 75px);
    line-height: .9;
    margin: 35px 0;
}

.journal-feature-content p {
    line-height: 1.7;
    max-width: 400px;
    opacity: .75;
}

.journal-feature-content .text-link {
    width: fit-content;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 100px 60px;

    margin-top: 120px;
}

.journal-card-image {
    height: 500px;
    background-size: cover;
    background-position: center;

    margin-bottom: 25px;
}

.journal-a {
    background-image: url("https://images.unsplash.com/photo-1473973266408-ed4e27abdd47?auto=format&fit=crop&w=1400&q=80");
}

.journal-b {
    background-image: url("https://images.unsplash.com/photo-1474722883778-792e7990302f?auto=format&fit=crop&w=1400&q=80");
}

.journal-c {
    background-image: url("https://images.unsplash.com/photo-1562601579-599dec564e06?auto=format&fit=crop&w=1400&q=80");
}

.journal-d {
    background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1400&q=80");
}

.journal-card h3 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    margin: 20px 0;
}

.journal-card p {
    color: var(--grey);
    max-width: 450px;
    line-height: 1.6;
}

.journal-card > a {
    display: inline-block;
    margin-top: 25px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}


/* EMPLOYEE */

.employee-hero {
    min-height: 800px;
    position: relative;
    color: white;

    display: flex;
    align-items: flex-end;
}

.employee-photo {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=2200&q=85")
        center / cover;
}

.employee-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20,10,8,.8), transparent 65%);
}

.employee-info {
    position: relative;
    z-index: 2;
    padding: var(--pad);
    padding-bottom: 100px;
}

.employee-info .section-number {
    color: rgba(255,255,255,.6);
}

.employee-info h1 {
    font-family: var(--serif);
    font-size: clamp(70px, 9vw, 135px);
    line-height: .85;
    margin: 50px 0 30px;
    letter-spacing: -.05em;
}

.employee-info p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.employee-story-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10vw;
    margin-top: 70px;
}

.employee-story h2 {
    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 90px);
    line-height: .9;
}

.employee-copy {
    max-width: 450px;
}

.employee-copy p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.employee-day {
    min-height: 800px;
    position: relative;
    color: white;

    display: flex;
    align-items: center;
}

.employee-day-image {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=2200&q=85")
        center / cover;
}

.employee-day-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20,10,8,.58);
}

.employee-day-content {
    position: relative;
    padding: var(--pad);
}

.employee-day-content h2 {
    font-family: var(--serif);
    font-size: clamp(65px, 8vw, 120px);
    line-height: .84;
    margin-top: 50px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.details-grid div {
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.details-grid small {
    display: block;
    color: var(--grey);
    font-size: 9px;
    letter-spacing: .1em;
    margin-bottom: 20px;
}

.details-grid strong {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
}

.employee-next {
    background: var(--cream-dark);
}

.employee-next h2 {
    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 120px);
    line-height: .88;
    margin-top: 50px;
}


/* CONTACTS */

.contacts {
    min-height: 90vh;
    background: var(--wine-dark);
    color: white;

    padding: 160px var(--pad) 120px;
}

.contacts h1 {
    font-family: var(--serif);
    font-size: clamp(75px, 10vw, 150px);
    line-height: .85;
    letter-spacing: -.05em;

    margin-top: 60px;
}

.contacts > .contacts-inner > p {
    max-width: 430px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-top: 50px;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;

    margin-top: 100px;
}

.contact-links div {
    border-top: 1px solid rgba(255,255,255,.25);
    padding-top: 20px;
}

.contact-links small {
    display: block;
    font-size: 9px;
    letter-spacing: .12em;
    opacity: .5;
    margin-bottom: 20px;
}

.contact-links a {
    font-family: var(--serif);
    font-size: 25px;
}

.address-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10vw;

    margin-top: 70px;
}

.address-grid h2 {
    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 120px);
    line-height: .85;
}

.address-grid p {
    line-height: 1.7;
    color: var(--grey);
    max-width: 400px;
    margin-bottom: 30px;
}


/* MOBILE */

@media (max-width: 800px) {

    .header {
        height: 75px;
    }

    .nav,
    .header-contact {
        display: none;
    }

    .menu-button {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-button span {
        width: 28px;
        height: 1px;
        background: currentColor;
    }

    .hero h1 {
        font-size: clamp(65px, 20vw, 110px);
    }

    .hero-description {
        max-width: 300px;
    }

    .section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .intro-grid,
    .story-heading,
    .employee-story-grid,
    .join-grid,
    .address-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .manifesto h2 {
        font-size: 17vw;
    }

    .section-heading {
        align-items: flex-start;
        gap: 40px;
        flex-direction: column;
    }

    .people-grid,
    .articles {
        grid-template-columns: 1fr;
    }

    .person-offset {
        margin-top: 0;
    }

    .person-image {
        height: 480px;
    }

    .process-title {
        display: block;
    }

    .process-title p {
        margin-top: 40px;
        width: auto;
    }

    .process-item {
        grid-template-columns: 45px 1fr;
        gap: 20px;
    }

    .process-item p {
        grid-column: 2;
    }

    .numbers-inner {
        grid-template-columns: 1fr 1fr;
    }

    .numbers strong {
        font-size: 50px;
    }

    .team-full-grid {
        grid-template-columns: 1fr;
    }

    .team-card-down {
        margin-top: 0;
    }

    .team-card-image {
        height: 500px;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 20px;
    }

    .timeline-image {
        grid-column: 2;
        min-height: 350px;
        margin-top: 20px;
    }

    .timeline-content h3 {
        font-size: 45px;
    }

    .day-item {
        grid-template-columns: 80px 1fr;
    }

    .journal-feature {
        grid-template-columns: 1fr;
    }

    .journal-feature-image {
        min-height: 400px;
    }

    .journal-feature-content {
        padding: 50px 30px;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .journal-card-image {
        height: 400px;
    }

    .employee-hero {
        min-height: 700px;
    }

    .employee-info h1 {
        font-size: 18vw;
    }

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

    .contact-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}
