@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --af-ink: #27231f;
    --af-muted: #6e665c;
    --af-muted-strong: #625a51;
    --af-white: #fbfaf7;
    --af-ivory: #f4f1eb;
    --af-beige: #eee8df;
    --af-theory: #ded5ca;
    --af-rule: #bdb4a8;
    --af-footer: #40382f;
    --af-light: #fffdf8;
    --af-serif: "Cormorant Garamond", Georgia, serif;
    --af-sans: "Inter", Arial, sans-serif;
    --af-shell: 1296px;
    --af-gutter: 72px;
    --af-header-height: 82px;
}

html {
    scroll-behavior: smooth;
}

body.af-home-page {
    overflow-x: clip;
    margin: 0;
    color: var(--af-ink);
    background: var(--af-white);
    font-family: var(--af-sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.af-home-page *,
.af-home-page *::before,
.af-home-page *::after {
    box-sizing: border-box;
}

/* Kadence wraps Group block contents; flatten the neutral wrapper so the
   purpose-built grid and flex layouts continue to address their real items. */
.af-home-page .wp-block-group__inner-container {
    display: contents;
}

.af-home-page h1,
.af-home-page h2,
.af-home-page h3,
.af-home-page h4,
.af-home-page p,
.af-home-page figure {
    margin-top: 0;
    margin-bottom: 0;
}

.af-home-page h1,
.af-home-page h2,
.af-home-page h3,
.af-home-page h4 {
    color: inherit;
    font-family: var(--af-serif);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.af-home-page a {
    color: inherit;
    text-decoration: none;
}

.af-home-page .wp-block-group,
.af-home-page .wp-block-atelier-flowerseat-responsive-media {
    max-width: none;
    margin-block: 0;
}

.af-site-main {
    width: 100%;
}

.af-shell {
    width: min(100%, calc(var(--af-shell) + (2 * var(--af-gutter))));
    margin-inline: auto !important;
    padding-inline: var(--af-gutter);
}

.af-section {
    position: relative;
    width: 100%;
    scroll-margin-top: 72px;
}

.af-section-label {
    color: var(--af-muted);
    font-family: var(--af-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.31em;
    line-height: 1.2;
    text-transform: uppercase;
}

.af-section-title {
    font-size: clamp(53px, 4.25vw, 61px);
    line-height: 1.05;
}

.af-mobile-only {
    display: none;
}

.af-text-link {
    min-height: 44px;
    font-family: var(--af-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.af-text-link a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 14px;
}

.af-text-link a::after {
    width: 38px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 400ms ease;
}

.af-text-link a:hover::after,
.af-text-link a:focus-visible::after {
    transform: translateX(6px);
}

.af-home-page a:focus-visible,
.af-home-page button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

.af-skip-link {
    position: fixed;
    z-index: 10000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: var(--af-ink);
    background: var(--af-light);
    transform: translateY(-160%);
}

.af-skip-link:focus {
    transform: translateY(0);
}

.af-site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--af-header-height);
    color: var(--af-light);
    background: transparent;
    transition: height 250ms ease, color 250ms ease, background-color 250ms ease, box-shadow 250ms ease;
}

.admin-bar .af-site-header {
    top: 32px;
}

.af-site-header.is-scrolled,
.af-site-header.is-menu-open {
    height: 72px;
    color: var(--af-ink);
    background: rgba(251, 250, 247, 0.94);
    box-shadow: 0 1px 0 rgba(39, 35, 31, 0.12);
    backdrop-filter: blur(12px);
}

.af-header-inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--af-gutter);
}

.af-brand {
    font-family: var(--af-serif);
    font-size: 30px;
    line-height: 1;
    white-space: nowrap;
}

.af-primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3vw, 48px);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.af-primary-navigation a {
    position: relative;
    padding-block: 14px;
}

.af-primary-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms ease;
}

.af-primary-navigation a:hover::after,
.af-primary-navigation a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.af-menu-toggle {
    display: none;
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 12px 7px;
    border: 0;
    color: inherit;
    background: transparent;
}

.af-brand {
    position: relative;
    z-index: 2;
}

.af-home-page .screen-reader-text {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    white-space: nowrap;
}

.af-menu-toggle__line {
    display: block;
    width: 27px;
    height: 1px;
    margin-block: 6px;
    background: currentColor;
    transition: transform 250ms ease;
}

.af-site-header.is-menu-open .af-menu-toggle__line:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.af-site-header.is-menu-open .af-menu-toggle__line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

.af-hero {
    display: flex;
    min-height: 900px;
    align-items: center;
    color: var(--af-light);
    background: #5a5148;
}

.af-hero__media,
.af-hero::after {
    position: absolute !important;
    inset: 0;
}

.af-hero::after {
    z-index: 1;
    background: linear-gradient(90deg, rgba(25, 21, 18, 0.44) 0%, rgba(25, 21, 18, 0.13) 49%, rgba(25, 21, 18, 0.04) 100%);
    content: "";
    pointer-events: none;
}

.af-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 76px;
}

.af-hero__title {
    max-width: 650px;
    font-size: clamp(72px, 6.35vw, 91px);
    line-height: 0.92;
}

.af-hero__title::after,
.af-theory__title::after,
.af-learn__title::after,
.af-about__subtitle::after {
    display: block;
    width: 52px;
    height: 1px;
    margin-block: 32px 20px;
    background: currentColor;
    content: "";
    opacity: 0.75;
}

.af-hero__tagline {
    font-family: var(--af-serif);
    font-size: 32px;
    line-height: 1.2;
}

.af-hero__scroll {
    position: absolute;
    right: var(--af-gutter);
    bottom: -300px;
    left: var(--af-gutter);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: center;
}

.af-hero__scroll::after {
    display: block;
    width: 1px;
    height: 38px;
    margin: 12px auto 0;
    background: currentColor;
    content: "";
}

.af-manifesto {
    background: var(--af-white);
}

.af-manifesto__intro {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.af-manifesto__intro .af-section-label {
    margin-bottom: 18px;
}

.af-manifesto__headline {
    font-size: 48px;
    line-height: 1.08;
}

.af-manifesto__panel {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    color: var(--af-light);
    background: #665d54;
}

.af-manifesto__panel::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 25, 21, 0.52), rgba(30, 25, 21, 0.03) 70%);
    content: "";
}

.af-manifesto__media {
    position: absolute !important;
    inset: 0;
}

.af-manifesto__overlay {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: center;
}

.af-manifesto__image-title {
    max-width: 650px;
    font-size: 44px;
    line-height: 1.08;
}

.af-manifesto__body {
    margin-top: 38px !important;
    font-size: 16px;
}

.af-manifesto__overlay .af-text-link {
    margin-top: 24px !important;
}

.af-manifesto__outro {
    display: flex;
    min-height: 94px;
    align-items: center;
    justify-content: center;
    font-family: var(--af-serif);
    font-size: 26px;
    text-align: center;
}

.af-works {
    min-height: 750px;
    padding-block: 92px 76px;
    background: var(--af-ivory);
}

.af-works .af-shell {
    position: relative;
}

.af-works .af-section-label {
    margin-bottom: 10px;
}

.af-works__top-link {
    position: absolute;
    top: 20px;
    right: var(--af-gutter);
}

.af-works__grid {
    display: grid;
    margin-top: 36px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.af-work-card__media {
    aspect-ratio: 1.12 / 1;
    margin-bottom: 22px !important;
}

.af-work-card__media img {
    transition: transform 400ms ease;
}

.af-work-card:hover .af-work-card__media img {
    transform: scale(1.02);
}

.af-work-card__number {
    color: var(--af-muted);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.af-work-card__title {
    margin-top: 6px !important;
    font-size: 31px;
    line-height: 1.1;
}

.af-work-card__description {
    margin-top: 7px !important;
    color: var(--af-muted);
    font-size: 14px;
    line-height: 1.5;
}

.af-works__mobile-link {
    display: none;
}

.af-works__closing {
    margin-top: 52px !important;
    font-size: 34px;
    line-height: 1.15;
    text-align: center;
}

.af-theory {
    background: var(--af-white);
}

.af-theory__intro {
    display: grid;
    min-height: 520px;
    grid-template-columns: 1fr 1fr;
    background: var(--af-theory);
}

.af-theory__media {
    height: 100%;
}

.af-theory__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px clamp(56px, 6vw, 92px);
}

.af-theory__copy .af-section-label {
    color: var(--af-muted-strong);
    margin-bottom: 22px;
}

.af-theory__title {
    font-size: clamp(48px, 4.1vw, 59px);
    line-height: 1.08;
}

.af-theory__title::after {
    margin-block: 28px 20px;
    color: var(--af-rule);
}

.af-theory__body {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.8;
}

.af-theory__copy .af-text-link {
    margin-top: 24px !important;
}

.af-principles {
    padding-block: 84px 76px;
    text-align: center;
}

.af-principles__title {
    font-size: 53px;
    line-height: 1.08;
}

.af-principles__intro {
    margin-top: 18px !important;
    color: var(--af-muted);
    font-size: 16px;
}

.af-principles__grid {
    display: grid;
    margin-top: 64px !important;
    border-top: 1px solid var(--af-rule);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: left;
}

.af-principle {
    min-height: 214px;
    padding: 34px 30px;
    border-right: 1px solid var(--af-rule);
}

.af-principle:first-child {
    padding-left: 0;
}

.af-principle:last-child {
    padding-right: 0;
    border-right: 0;
}

.af-principle__number {
    color: var(--af-muted);
    font-size: 12px;
}

.af-principle__title {
    margin-top: 18px !important;
    font-size: 31px;
    line-height: 1.15;
}

.af-principle__body {
    margin-top: 24px !important;
    color: var(--af-muted);
    font-size: 14px;
    line-height: 1.5;
}

.af-principles__closing {
    margin-top: 52px !important;
    font-size: 31px;
    line-height: 1.2;
}

.af-learn {
    min-height: 750px;
    background: var(--af-beige);
}

.af-learn__grid {
    display: grid;
    min-height: 750px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
}

.af-learn__heading,
.af-learn__body {
    padding-inline: var(--af-gutter) 56px;
}

.af-learn__heading {
    padding-top: 92px;
}

.af-learn__heading .af-section-label {
    margin-bottom: 24px;
}

.af-learn__title {
    font-size: 58px;
    line-height: 1.05;
}

.af-learn__title::after {
    margin-block: 30px 0;
    color: var(--af-rule);
}

.af-learn__media {
    height: 100%;
    min-height: 750px;
    grid-column: 2;
    grid-row: 1 / 3;
}

.af-learn__body {
    padding-top: 24px;
    padding-bottom: 86px;
}

.af-learn__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.af-learn-card {
    min-height: 220px;
    padding-right: 36px;
}

.af-learn-card + .af-learn-card {
    padding-right: 0;
    padding-left: 36px;
    border-left: 1px solid var(--af-rule);
}

.af-learn-card__title {
    font-size: 30px;
    line-height: 1.15;
}

.af-learn-card__body {
    margin-top: 13px !important;
    font-size: 15px;
    line-height: 1.75;
}

.af-learn-card .af-text-link {
    margin-top: 25px !important;
}

.af-journal {
    min-height: 850px;
    padding-block: 88px 82px;
    background: var(--af-white);
}

.af-journal .af-section-label {
    margin-bottom: 10px;
}

.af-journal__title {
    font-size: 61px;
    line-height: 1.05;
}

.af-journal__grid {
    display: grid;
    margin-top: 34px !important;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 64px;
}

.af-journal__media {
    height: 520px;
}

.af-journal__topics {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.af-journal-topic {
    padding-block: 28px;
    border-bottom: 1px solid var(--af-rule);
}

.af-journal-topic:first-child {
    padding-top: 0;
}

.af-journal-topic__label {
    color: var(--af-muted);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.af-journal-topic__title {
    margin-top: 10px !important;
    font-size: 34px;
    line-height: 1.15;
}

.af-journal-topic__body {
    margin-top: 8px !important;
    color: var(--af-muted);
    font-size: 15px;
    line-height: 1.6;
}

.af-journal__link {
    margin-top: 28px !important;
}

.af-about {
    min-height: 820px;
    background: var(--af-beige);
}

.af-about__grid {
    display: grid;
    min-height: 820px;
    grid-template-columns: 48% 52%;
    grid-template-rows: auto 1fr;
}

.af-about__heading,
.af-about__body {
    padding-inline: var(--af-gutter) 64px;
}

.af-about__heading {
    padding-top: 80px;
}

.af-about__heading .af-section-label {
    margin-bottom: 24px;
}

.af-about__title {
    font-size: 59px;
    line-height: 1;
}

.af-about__subtitle {
    margin-top: 14px !important;
    font-size: 42px;
    line-height: 1.1;
}

.af-about__subtitle::after {
    color: var(--af-rule);
}

.af-about__media {
    height: 100%;
    min-height: 820px;
    grid-column: 2;
    grid-row: 1 / 3;
}

.af-about__body {
    padding-top: 14px;
    padding-bottom: 72px;
}

.af-about__paragraph {
    margin-bottom: 24px !important;
    font-size: 15px;
    line-height: 1.8;
}

.af-about__body .af-text-link {
    margin-top: 18px !important;
}

.af-about__body .af-text-link a {
    color: var(--af-ink);
    background: var(--af-beige);
}

.af-instagram {
    display: flex;
    min-height: 580px;
    align-items: center;
    overflow: hidden;
    color: var(--af-light);
    background: #4e443b;
}

.af-instagram::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 20, 17, 0.62), rgba(25, 20, 17, 0.06) 76%);
    content: "";
}

.af-instagram__media {
    position: absolute !important;
    inset: 0;
}

.af-instagram__content {
    position: relative;
    z-index: 2;
}

.af-instagram__content .af-section-label {
    margin-bottom: 24px;
    color: currentColor;
}

.af-instagram__title {
    font-size: 61px;
    line-height: 1.04;
}

.af-instagram__body {
    margin-top: 34px !important;
    font-size: 16px;
}

.af-instagram__content .af-text-link {
    margin-top: 20px !important;
}

.af-site-footer {
    min-height: 360px;
    padding: 64px var(--af-gutter) 24px;
    color: rgba(255, 253, 248, 0.78);
    background: var(--af-footer);
}

.af-footer-grid {
    display: grid;
    max-width: var(--af-shell);
    margin-inline: auto;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
}

.af-footer-grid a {
    display: block;
    width: fit-content;
    min-height: 34px;
    line-height: 34px;
}

.af-footer-brand__name {
    color: var(--af-light);
    font-family: var(--af-serif);
    font-size: 39px;
    line-height: 1;
}

.af-footer-brand > p:last-child {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.7;
}

.af-footer-label {
    margin-bottom: 18px !important;
    color: var(--af-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.af-footer-bottom {
    max-width: var(--af-shell);
    margin: 56px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 253, 248, 0.26);
    font-size: 13px;
}

@media (max-width: 1023px) {
    :root {
        --af-gutter: 48px;
        --af-header-height: 72px;
    }

    .af-menu-toggle {
        display: block;
    }

    .af-primary-navigation {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        min-height: 100dvh;
        padding: 130px var(--af-gutter) 64px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        color: var(--af-ink);
        background: var(--af-white);
        font-family: var(--af-serif);
        font-size: 42px;
        font-weight: 400;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .af-site-header.is-menu-open .af-primary-navigation {
        z-index: 1;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .af-primary-navigation a {
        width: 100%;
        padding-block: 10px;
    }

    .af-works__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 52px;
    }

    .af-theory__intro,
    .af-learn__grid,
    .af-about__grid {
        grid-template-columns: 1fr;
    }

    .af-theory__media {
        height: 520px;
    }

    .af-learn__heading,
    .af-learn__body,
    .af-about__heading,
    .af-about__body {
        padding-inline: var(--af-gutter);
    }

    .af-learn__media,
    .af-about__media {
        min-height: 560px;
        grid-column: 1;
        grid-row: auto;
    }

    .af-learn__heading,
    .af-about__heading {
        order: 1;
    }

    .af-learn__media,
    .af-about__media {
        order: 2;
    }

    .af-learn__body,
    .af-about__body {
        order: 3;
    }

    .af-journal__grid {
        grid-template-columns: 1fr;
    }

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

    .af-footer-legal {
        grid-column: 2;
    }
}

@media (max-width: 767px) {
    :root {
        --af-gutter: 24px;
        --af-header-height: 68px;
    }

    body.af-home-page {
        font-size: 16px;
        line-height: 1.65;
    }

    .admin-bar .af-site-header {
        top: 46px;
    }

    .af-site-header,
    .af-site-header.is-scrolled,
    .af-site-header.is-menu-open {
        height: 68px;
    }

    .af-header-inner {
        padding-inline: var(--af-gutter);
    }

    .af-brand {
        font-size: 25px;
    }

    .af-primary-navigation {
        padding: 110px var(--af-gutter) 48px;
        font-size: 38px;
    }

    .af-section {
        scroll-margin-top: 68px;
    }

    .af-mobile-only {
        display: initial;
    }

    .af-section-label {
        font-size: 11px;
        letter-spacing: 0.32em;
    }

    .af-text-link {
        font-size: 12px;
    }

    .af-hero {
        min-height: 844px;
        align-items: flex-end;
    }

    .af-hero::after {
        background: linear-gradient(0deg, rgba(24, 20, 17, 0.52), rgba(24, 20, 17, 0.02) 68%);
    }

    .af-hero__content {
        padding-top: 0;
        padding-bottom: 76px;
    }

    .af-hero__title {
        font-size: 56px;
        line-height: 0.95;
    }

    .af-hero__title::after {
        width: 46px;
        margin-block: 27px 20px;
    }

    .af-hero__tagline {
        font-size: 27px;
        line-height: 1.22;
    }

    .af-hero__scroll {
        right: 0;
        bottom: 14px;
        left: auto;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .af-hero__scroll::after {
        width: 38px;
        height: 1px;
        margin: 0;
    }

    .af-manifesto__intro {
        min-height: 0;
        padding-block: 92px 84px;
    }

    .af-manifesto__intro .af-section-label {
        margin-bottom: 25px;
    }

    .af-manifesto__headline {
        font-size: 41px;
        line-height: 1.16;
    }

    .af-manifesto__panel,
    .af-manifesto__overlay {
        min-height: 620px;
    }

    .af-manifesto__panel::after {
        background: linear-gradient(0deg, rgba(26, 21, 18, 0.72), rgba(26, 21, 18, 0.03) 80%);
    }

    .af-manifesto__overlay {
        justify-content: flex-end;
        padding-bottom: 56px;
    }

    .af-manifesto__image-title {
        font-size: 34px;
        line-height: 1.22;
    }

    .af-manifesto__body {
        margin-top: 28px !important;
        font-size: 15px;
    }

    .af-manifesto__overlay .af-text-link {
        margin-top: 12px !important;
    }

    .af-manifesto__outro {
        min-height: 0;
        padding-block: 40px 44px;
        font-size: 20px;
        line-height: 1.5;
    }

    .af-works {
        min-height: 0;
        padding-block: 92px 88px;
    }

    .af-works .af-section-label {
        margin-bottom: 13px;
    }

    .af-works .af-section-title {
        font-size: 48px;
        line-height: 1.06;
    }

    .af-works__top-link {
        display: none;
    }

    .af-works__grid {
        margin-top: 48px !important;
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .af-work-card__media {
        height: 232px;
        aspect-ratio: auto;
        margin-bottom: 10px !important;
    }

    .af-work-card__number {
        font-size: 13px;
    }

    .af-work-card__title {
        margin-top: 5px !important;
        font-size: 31px;
    }

    .af-work-card__description {
        margin-top: 7px !important;
        font-size: 14px;
    }

    .af-works__mobile-link {
        display: block;
        margin-top: 60px !important;
    }

    .af-works__closing {
        margin-top: 44px !important;
        padding-inline: 22px;
        font-size: 32px;
        line-height: 1.2;
    }

    .af-theory__media {
        height: 455px;
    }

    .af-theory__copy {
        padding: 74px var(--af-gutter) 76px;
    }

    .af-theory__copy .af-section-label {
        margin-bottom: 28px;
    }

    .af-theory__title {
        font-size: 42px;
        line-height: 1.15;
    }

    .af-theory__title::after {
        width: 46px;
        margin-block: 24px 24px;
    }

    .af-theory__body {
        font-size: 14px;
        line-height: 1.8;
    }

    .af-theory__copy .af-text-link {
        margin-top: 18px !important;
    }

    .af-principles {
        padding-block: 82px 88px;
    }

    .af-principles__title {
        font-size: 38px;
        line-height: 1.2;
    }

    .af-principles__intro {
        margin-top: 18px !important;
        font-size: 14px;
        line-height: 1.7;
    }

    .af-principles__grid {
        margin-top: 56px !important;
        grid-template-columns: 1fr;
    }

    .af-principle,
    .af-principle:first-child,
    .af-principle:last-child {
        display: grid;
        min-height: 0;
        padding: 26px 0;
        border-right: 0;
        border-bottom: 1px solid var(--af-rule);
        grid-template-columns: 38px 1fr;
        column-gap: 12px;
        text-align: left;
    }

    .af-principle:last-child {
        border-bottom: 0;
    }

    .af-principle__number {
        grid-column: 1;
        grid-row: 1 / 3;
        padding-top: 7px;
    }

    .af-principle__title {
        margin-top: 0 !important;
        width: 100%;
        max-width: none !important;
        margin-inline: 0 !important;
        font-size: 28px;
        line-height: 1.2;
        grid-column: 2;
        justify-self: stretch;
    }

    .af-principle__body {
        margin-top: 8px !important;
        width: 100%;
        max-width: none !important;
        margin-inline: 0 !important;
        font-size: 13px;
        grid-column: 2;
        justify-self: stretch;
    }

    .af-principles__closing {
        margin-top: 54px !important;
        font-size: 27px;
        line-height: 1.35;
    }

    .af-learn,
    .af-learn__grid {
        min-height: 0;
    }

    .af-learn__heading {
        padding-top: 80px;
        padding-bottom: 62px;
    }

    .af-learn__heading .af-section-label {
        margin-bottom: 24px;
    }

    .af-learn__title {
        font-size: 44px;
        line-height: 1.12;
    }

    .af-learn__title::after {
        display: none;
    }

    .af-learn__media {
        height: 460px;
        min-height: 0;
    }

    .af-learn__body {
        padding-top: 54px;
        padding-bottom: 72px;
    }

    .af-learn__cards {
        grid-template-columns: 1fr;
    }

    .af-learn-card,
    .af-learn-card + .af-learn-card {
        min-height: 0;
        padding: 0 0 42px;
        border-left: 0;
    }

    .af-learn-card + .af-learn-card {
        padding-top: 36px;
        padding-bottom: 0;
        border-top: 1px solid var(--af-rule);
    }

    .af-learn-card__title {
        font-size: 28px;
        line-height: 1.25;
    }

    .af-learn-card__body {
        font-size: 15px;
    }

    .af-journal {
        min-height: 0;
        padding-block: 88px 82px;
    }

    .af-journal__title {
        font-size: 41px;
        line-height: 1.17;
    }

    .af-journal__grid {
        margin-top: 44px !important;
        gap: 28px;
    }

    .af-journal__media {
        height: 350px;
    }

    .af-journal-topic {
        padding-block: 30px;
    }

    .af-journal-topic__title {
        font-size: 28px;
    }

    .af-journal-topic__body {
        font-size: 14px;
    }

    .af-journal__link {
        margin-top: 24px !important;
    }

    .af-about,
    .af-about__grid {
        min-height: 0;
    }

    .af-about__heading {
        padding-top: 82px;
        padding-bottom: 50px;
    }

    .af-about__heading .af-section-label {
        margin-bottom: 24px;
    }

    .af-about__title {
        font-size: 47px;
        line-height: 1.1;
    }

    .af-about__subtitle {
        font-size: 31px;
    }

    .af-about__subtitle::after {
        display: none;
    }

    .af-about__media {
        height: 500px;
        min-height: 0;
    }

    .af-about__body {
        padding-top: 54px;
        padding-bottom: 74px;
    }

    .af-about__paragraph {
        margin-bottom: 24px !important;
        font-size: 15px;
        line-height: 1.8;
    }

    .af-instagram {
        min-height: 680px;
        align-items: flex-end;
    }

    .af-instagram::after {
        background: linear-gradient(0deg, rgba(25, 20, 17, 0.72), rgba(25, 20, 17, 0.04) 74%);
    }

    .af-instagram__content {
        padding-bottom: 76px;
    }

    .af-instagram__content .af-section-label {
        margin-bottom: 24px;
    }

    .af-instagram__title {
        font-size: 44px;
        line-height: 1.15;
    }

    .af-instagram__body {
        margin-top: 30px !important;
        font-size: 15px;
    }

    .af-site-footer {
        min-height: 0;
        padding: 68px var(--af-gutter) 34px;
    }

    .af-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 30px;
    }

    .af-footer-brand {
        grid-column: 1 / -1;
    }

    .af-footer-brand__name {
        font-size: 29px;
    }

    .af-footer-brand > p:last-child {
        margin-top: 18px;
        font-size: 13px;
    }

    .af-footer-grid a {
        min-height: 38px;
        line-height: 38px;
    }

    .af-footer-legal {
        grid-column: 1 / -1;
    }

    .af-footer-bottom {
        margin-top: 38px;
        padding-top: 20px;
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .af-principle {
        padding-inline: 14px;
    }

    .af-principle__title {
        font-size: 24px;
    }
}

@media (max-width: 374px) {
    :root {
        --af-gutter: 20px;
    }
}

@media (min-width: 431px) and (max-width: 767px) {
    :root {
        --af-gutter: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .af-home-page *,
    .af-home-page *::before,
    .af-home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .af-work-card:hover .af-work-card__media img,
    .af-text-link a:hover::after,
    .af-text-link a:focus-visible::after {
        transform: none;
    }
}
