/* -------------------------
   Base
------------------------- */

:root {
    --ivory: #FCFBF8;
    --ink: #1B1B1A;
    --stone: #C9C2B8;
    --white: #FCFBF8;
    --red: #C52432;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}


/* -------------------------
   Header
------------------------- */

.site-header {
    width: 100%;
    min-height: 90px;
    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.site-name {
    color: var(--ink);
    text-decoration: none;

    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 2.2rem;
}

.main-nav a {
    color: var(--ink);
    text-decoration: none;

    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--red);
}

.mobile-menu-button {
    display: none;
}


/* -------------------------
   Hero
------------------------- */

.hero {
    min-height: 100vh;
    padding: 140px 5vw 7vh;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 7vw;

    position: relative;
    overflow: hidden;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8.2vw, 8.5rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
}

.hero-role {
    margin: 2.8rem 0 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-style: italic;
}

.hero-fields {
    max-width: 520px;
    margin: 5rem 0 0;

    font-size: 0.76rem;
    line-height: 1.8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-fields span {
    color: var(--red);
    padding: 0 0.35rem;
}


/* -------------------------
   Temporary image placeholder
------------------------- */

.hero-image {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 5;

    justify-self: end;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -------------------------
   Intro section
------------------------- */

.intro {
    position: relative;
    padding: 6vw 8vw;

    background: var(--ivory);
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8vw;
    width: 87vw;
    height: 3px;

    background: var(--red);
}

.intro p {
    margin: 0;
    max-width: 540px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    line-height: 1.6;
    color: var(--ink);
}


/* -------------------------
   Mobile
------------------------- */

@media (max-width: 800px) {

    .site-header {
        min-height: 72px;
        padding: 0 6vw;
    }

    .mobile-menu-button {
        display: block;
        padding: 0;

        border: 0;
        background: transparent;
        color: var(--ink);

        font: inherit;
        font-size: 0.78rem;
        letter-spacing: 0.04em;
        cursor: pointer;
    }

    .mobile-menu-button:focus-visible {
        outline: 2px solid var(--red);
        outline-offset: 4px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1.25rem 6vw 1.5rem;

        flex-direction: column;
        gap: 1rem;

        background: var(--ivory);
    }

    .site-header.menu-open .main-nav {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 6vw 60px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3rem;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 16vw, 6rem);
        line-height: 0.86;
    }

    .hero-role {
        margin-top: 2rem;
    }

    .hero-fields {
        margin-top: 3rem;
        max-width: 330px;
    }

    .hero-image {
        width: 78%;
        max-width: 400px;
        align-self: flex-end;
    }

    .intro {
        padding: 6vw 6vw;
    }

    .intro::before {
        left: 6vw;
        width: 60vw;
    }

    .intro p {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}
.about-page {
  padding: 160px 5vw 100px;
}

.about-page h1 {
    margin: 0 0 36px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.about-intro {
  display: grid;

  grid-template-columns:
        minmax(0, 1.15fr)
        minmax(280px, 0.85fr);

    gap: 7vw;

  align-items: center;
}

.about-image {
        width: 100%;
        max-width: 520px;
        justify-self: end;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro-text {
  max-width: 600px;
}

@media (min-width: 801px) {
    .about-intro {
        align-items: start;
    }

    .about-image {
        position: relative;
        top: -8vw;
    }

    .about-intro-text {
        order: -1;
    }

    .about-biography {
        margin-top: 2rem;
    }
}

.about-intro-text > p {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1.7rem, 2.5vw, 2.8rem);

  line-height: 1.35;
}

.about-divider {
    width: 200px;
    height: 3px;
    margin: 2.25rem 0 1.25rem;

    background: #C52432;
}

.about-biography {
    max-width: 680px;
    margin-top: 5rem;
}

.about-biography p {
    margin: 0 0 2rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-biography p:last-child {
    margin-bottom: 0;
}

.projects-page {
    padding: 160px 5vw 100px;
}

.projects-page h1 {
    margin: 0 0 36px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.projects-page h1 span {
    display: block;
}

.projects-divider {
    width: 200px;
    height: 3px;
    margin: 0 0 6rem;

    background: #C52432;
}

.projects-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 7vw;
    align-items: center;
    padding: 110px 0;
}

.projects-section--reverse .projects-image-placeholder {
    order: -1;
}

.projects-section-text {
    max-width: 600px;
}

.projects-section h2 {
    margin: 0 0 1.5rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
}

.projects-section p {
    margin: 0;
    max-width: 420px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.7;
}

.projects-image-placeholder {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    justify-self: end;
}

.agenda-page {
    padding: 160px 5vw 100px;
}

.agenda-page h1 {
    margin: 0 0 36px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.agenda-divider {
    width: 200px;
    height: 3px;
    margin-bottom: 4rem;

    background: #C52432;
}

.agenda-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.8fr) minmax(150px, 1.1fr) minmax(180px, 1.5fr) minmax(160px, 1.1fr);
    gap: 3vw;
    padding: 2.5rem 0;
}

.agenda-row + .agenda-row {
    margin-top: 1rem;
}

.agenda-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.agenda-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.agenda-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.4;
}

.media-page {
    padding: 160px 5vw 100px;
}

.media-page h1 {
    margin: 0 0 36px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.media-divider {
    width: 200px;
    height: 3px;
    margin-bottom: 4rem;

    background: #C52432;
}

.media-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 7vw;
    align-items: center;
    padding: 70px 0;
}

.media-section--reverse .media-placeholder {
    order: -1;
}

.media-section-text {
    max-width: 600px;
}

.media-section h2 {
    margin: 0 0 1.5rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
}

.media-section p {
    margin: 0;
    max-width: 420px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.7;
}

.media-placeholder {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    justify-self: end;
}

.contact-page {
    padding: 160px 5vw 100px;
}

.contact-page h1 {
    margin: 0 0 36px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.contact-divider {
    width: 200px;
    height: 3px;
    margin-bottom: 5rem;

    background: #C52432;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 7vw;
    align-items: start;
}

.contact-intro {
    max-width: 540px;
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.5vw, 2.8rem);
    line-height: 1.35;
}

.contact-details {
    display: grid;
    gap: 2.5rem;
}

.contact-detail {
    display: grid;
    gap: 0.6rem;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.5;
}

@media (max-width: 800px) {

  .about-page {
    padding: 120px 6vw 70px;
  }

  .about-page h1 {
        margin-bottom: 30px;
  }

  .about-intro {
    grid-template-columns: 1fr;
        gap: 3rem;
  }

  .about-image {
        width: 78%;
        max-width: 400px;
        align-self: flex-end;
  }

    .about-divider {
        width: min(200px, 100%);
        margin-top: 1.75rem;
    }

    .about-biography {
        margin-top: 3.5rem;
    }

    .about-biography p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .projects-page {
        padding: 120px 6vw 70px;
    }

    .projects-page h1 {
        margin-bottom: 30px;
    }

    .projects-divider {
        margin-bottom: 4rem;
    }

    .projects-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 70px 0;
    }

    .projects-section--reverse .projects-image-placeholder {
        order: initial;
    }

    .projects-section h2 {
        margin-bottom: 1.25rem;
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

    .projects-section p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .projects-image-placeholder {
        width: 78%;
        max-width: 400px;
        justify-self: end;
    }

    .agenda-page {
        padding: 120px 6vw 70px;
    }

    .agenda-page h1 {
        margin-bottom: 30px;
    }

    .agenda-divider {
        margin-bottom: 2rem;
    }

    .agenda-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 2rem 0;
    }

    .agenda-row + .agenda-row {
        margin-top: 0.5rem;
    }

    .media-page {
        padding: 120px 6vw 70px;
    }

    .media-page h1 {
        margin-bottom: 30px;
    }

    .media-divider {
        margin-bottom: 2rem;
    }

    .media-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 55px 0;
    }

    .media-section--reverse .media-placeholder {
        order: initial;
    }

    .media-section h2 {
        margin-bottom: 1.25rem;
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

    .media-section p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .media-placeholder {
        width: 78%;
        max-width: 400px;
        justify-self: end;
    }

    .contact-page {
        padding: 120px 6vw 70px;
    }

    .contact-page h1 {
        margin-bottom: 30px;
    }

    .contact-divider {
        margin-bottom: 3rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-intro {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .contact-details {
        gap: 2rem;
    }

}