/*
DLD Studio standalone website
    Version: 1.0.30
Designed for direct DreamHost upload with the built-in DLD visual editor.
*/

:root {
    --ink: #2c2c2c;
    --ink-soft: rgba(44, 44, 44, 0.68);
    --paper: #f9f7f4;
    --paper-deep: #f2ede7;
    --mist: #e9e4dd;
    --moss: #484d49;
    --moss-dark: #3f4541;
    --clay: #a08d7d;
    --stone: #d8d0c6;
    --line: rgba(44, 44, 44, 0.16);
    --shadow: 0 18px 50px rgba(44, 44, 44, 0.08);
    --font-display: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --max: 1500px;
    --side: clamp(22px, 5vw, 72px);
    --header-logo-scale: 1.32;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body,
button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6,
.lead,
.quote-band blockquote,
.footer-brand__title,
.primary-nav a,
.footer-links a {
    font-family: var(--font-display) !important;
}

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

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

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 500;
}

h1 {
    font-size: clamp(2.7rem, 5.6vw, 5.4rem);
}

h2 {
    font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

h3 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.4rem);
    font-weight: 500;
}

h4 {
    font-size: 1rem;
    text-transform: uppercase;
}

button,
input,
textarea,
select {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-150%);
    background: var(--moss);
    color: var(--paper);
    padding: 10px 14px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--moss);
    color: #ffffff;
}

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

.header-inner {
    width: min(var(--max), calc(100% - (var(--side) * 2)));
    min-height: 80px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 124px;
    height: 80px;
    overflow: visible;
}

.brand__mark {
    width: 34px;
    height: 38px;
    object-fit: contain;
}

.brand__mark--default {
    filter: brightness(0) invert(1);
}

.brand__mark--custom {
    width: auto;
    max-width: 132px;
    height: 62px;
    filter: none;
    transform: scale(var(--header-logo-scale));
    transform-origin: left center;
}

.brand__text {
    display: grid;
    gap: 1px;
    font-size: 0.86rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand__text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.brand__text span {
    color: rgba(255, 255, 255, 0.76);
}

.primary-nav {
    justify-self: center;
}

.primary-nav ul,
.footer-links ul {
    display: flex;
    gap: clamp(16px, 2.4vw, 38px);
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a,
.footer-links a {
    position: relative;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.primary-nav a::after,
.footer-links a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item {
    position: relative;
}

.nav-item--has-submenu {
    padding: 30px 0;
    margin: -30px 0;
}

.primary-nav .nav-submenu {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    z-index: 20;
    display: grid;
    min-width: 230px;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(63, 69, 65, 0.98);
    box-shadow: 0 20px 46px rgba(20, 22, 20, 0.22);
    list-style: none;
    margin: 0;
    opacity: 0;
    padding: 12px;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.primary-nav .nav-submenu a {
    display: block;
    padding: 11px 12px;
    white-space: nowrap;
}

.primary-nav .nav-submenu a::after {
    display: none;
}

.primary-nav .nav-submenu a:hover,
.primary-nav .nav-submenu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-self: end;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .nav-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
}

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

.menu-open .nav-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--ink);
    border-radius: 0;
    padding: 13px 30px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--dark {
    background: var(--moss);
    color: var(--paper);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--ink);
    border-color: var(--ink);
}

.button--light {
    background: #ffffff;
    color: var(--ink);
}

.button--ghost {
    border-color: var(--line);
    background: transparent;
}

.site-header .button {
    border-color: rgba(255, 255, 255, 0.58);
    color: #ffffff;
}

.site-header .button:hover,
.site-header .button:focus-visible {
    background: #ffffff;
    color: var(--moss);
}

.site-main {
    overflow: clip;
}

.section {
    padding: clamp(58px, 7vw, 96px) var(--side);
}

.section--tight {
    padding-top: clamp(42px, 5vw, 72px);
    padding-bottom: clamp(42px, 5vw, 72px);
}

.section__inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.lead {
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.15rem, 2.2vw, 1.8rem);
    line-height: 1.45;
}

.small-copy {
    color: var(--ink-soft);
    max-width: 620px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    isolation: isolate;
    display: grid;
    align-items: end;
    background: var(--moss);
    color: #ffffff;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(16, 18, 16, 0.44) 0%, rgba(16, 18, 16, 0.22) 42%, rgba(16, 18, 16, 0.06) 100%),
        linear-gradient(0deg, rgba(16, 18, 16, 0.32) 0%, rgba(16, 18, 16, 0.04) 56%);
    content: "";
    pointer-events: none;
}

.hero__slides,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slides {
    z-index: 0;
}

.hero__slide {
    margin: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.018);
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - (var(--side) * 2)));
    min-height: calc(100vh - 80px);
    margin: 0 auto;
    padding: clamp(36px, 5vw, 72px) 0;
    display: grid;
    align-content: end;
    gap: clamp(26px, 5vw, 58px);
}

.hero__copy {
    display: grid;
    max-width: 900px;
}

.hero__brand-logo {
    margin: clamp(18px, 3vw, 34px) 0 clamp(18px, 3vw, 30px);
}

.hero__brand-logo img {
    width: clamp(170px, 23vw, 340px);
    max-height: clamp(160px, 24vw, 360px);
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
}

.hero__copy h1 {
    margin: clamp(16px, 3vw, 34px) 0 clamp(18px, 3vw, 30px);
    color: #ffffff;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.92;
}

.hero__copy .lead {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.24);
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(24px, 4vw, 42px);
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(28px, 4vw, 52px);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-top: 20px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
}

.hero__meta span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero__gallery-ui {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(18px, 3vw, 34px);
    align-items: end;
}

.hero__caption {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    color: var(--paper);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.hero__caption span + span::before {
    margin-right: 16px;
    content: "/";
    opacity: 0.55;
}

.hero__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.hero__controls button {
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__controls > button {
    padding: 8px 12px;
}

.hero__dots {
    display: flex;
    gap: 6px;
}

.hero__dots button {
    width: 36px;
    padding: 0;
}

.hero__controls button:hover,
.hero__controls button:focus-visible,
.hero__dots button[aria-pressed="true"] {
    background: #ffffff;
    color: var(--ink);
}

.hero__image-editors {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero__image-editors button {
    min-height: 34px;
    border: 1px dashed rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__image-editors button:hover,
.hero__image-editors button:focus-visible {
    background: #ffffff;
    color: var(--ink);
}

.feature-band {
    background: var(--moss);
    color: var(--paper);
}

.feature-band .section__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.feature-band .eyebrow {
    color: var(--mist);
}

.feature-band .lead {
    color: var(--paper);
}

.feature-band__image {
    min-height: clamp(380px, 45vw, 600px);
    overflow: hidden;
}

.feature-band__image img {
    width: 100%;
    height: 100%;
    min-height: clamp(380px, 45vw, 600px);
    object-fit: cover;
}

.split-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.54fr);
    gap: clamp(28px, 7vw, 112px);
    align-items: start;
}

.split-copy h2 {
    max-width: 980px;
}

.split-copy__aside {
    display: grid;
    gap: 26px;
}

.service-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;
    grid-template-columns: 60px minmax(190px, 0.42fr) 1fr;
    gap: clamp(18px, 4vw, 60px);
    align-items: start;
    border-bottom: 1px solid var(--line);
    padding: clamp(22px, 3vw, 34px) 0;
}

.service-row span {
    color: var(--moss);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2.1rem;
    line-height: 1;
}

.service-row h3 {
    font-size: clamp(1.8rem, 3.3vw, 3.6rem);
}

.service-row p {
    max-width: 720px;
    color: var(--ink-soft);
}

.project-section {
    background: var(--paper-deep);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: clamp(26px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(36px, 5vw, 74px);
}

.section-heading h2 {
    max-width: 1040px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 clamp(30px, 5vw, 58px);
}

.filter-bar button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    padding: 8px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.filter-bar button[aria-pressed="true"] {
    background: var(--moss);
    color: var(--paper);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 1.7vw, 24px);
}

.project-card {
    min-width: 0;
}

.project-card[hidden] {
    display: none;
}

.project-card__image {
    display: block;
    height: clamp(360px, 38vw, 560px);
    overflow: hidden;
    background: var(--stone);
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.035);
}

.project-card__content {
    display: grid;
    gap: 8px;
    padding-top: 18px;
}

.project-card__content p,
.project-card__content span {
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.project-card__content h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.studio-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.studio-panel__image {
    min-height: clamp(420px, 48vw, 620px);
    overflow: hidden;
}

.studio-panel__image img {
    width: 100%;
    height: 100%;
    min-height: clamp(420px, 48vw, 620px);
    object-fit: cover;
}

.studio-panel__copy {
    display: grid;
    gap: 26px;
}

.quote-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quote-band blockquote {
    width: min(1040px, 100%);
    margin: 0 auto;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 4.2rem);
    line-height: 1.18;
    text-align: center;
}

.journal-grid {
    display: grid;
    grid-template-columns: 0.68fr 1fr;
    gap: clamp(26px, 6vw, 92px);
}

.journal-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.journal-item {
    display: grid;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}

.journal-item span {
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.journal-item h3 {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.journal-page-hero {
    min-height: clamp(440px, 58vh, 650px);
    display: grid;
    align-items: end;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(31, 33, 30, 0.72), rgba(31, 33, 30, 0.32)),
        url("../images/high-bright-living.webp") center / cover;
    color: #ffffff;
}

.journal-page-hero__inner {
    width: min(var(--max), calc(100% - (var(--side) * 2)));
    margin: 0 auto;
    padding: clamp(112px, 18vh, 190px) 0 clamp(58px, 8vw, 96px);
}

.journal-page-hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 9vw, 9.6rem);
    font-weight: 500;
    line-height: 0.95;
}

.journal-page-hero .lead {
    max-width: 760px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.84);
}

.journal-subnav {
    position: sticky;
    top: 80px;
    z-index: 22;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    background: rgba(249, 247, 244, 0.94);
    padding: 14px var(--side);
    backdrop-filter: blur(14px);
}

.admin-bar .journal-subnav {
    top: 112px;
}

.journal-subnav a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.journal-subnav a:hover,
.journal-subnav a:focus-visible {
    border-color: var(--moss);
    background: var(--moss);
    color: var(--paper);
}

.journal-articles {
    background: var(--paper);
}

.journal-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 42px);
}

.journal-card {
    display: grid;
    align-content: start;
    gap: 18px;
}

.journal-card--featured {
    grid-column: span 2;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.journal-card__image {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--stone);
}

.journal-card--featured .journal-card__image {
    aspect-ratio: 16 / 11;
}

.journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.journal-card__image:hover img,
.journal-card__image:focus-visible img {
    transform: scale(1.035);
}

.journal-card__copy {
    display: grid;
    gap: 12px;
}

.journal-card__copy span {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.journal-card__copy h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2vw, 2.6rem);
    font-weight: 500;
    line-height: 1.08;
}

.journal-card__copy p {
    margin: 0;
    color: var(--ink-soft);
}

.journal-card .text-link {
    width: fit-content;
    border-bottom: 1px solid currentColor;
    padding-bottom: 7px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.journal-article-hero {
    position: relative;
    min-height: clamp(520px, 72vh, 760px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--ink);
    color: #fff;
}

.journal-article-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(22, 24, 22, 0.78), rgba(22, 24, 22, 0.34) 55%, rgba(22, 24, 22, 0.18)),
        linear-gradient(0deg, rgba(22, 24, 22, 0.7), rgba(22, 24, 22, 0.08) 62%);
    content: "";
    pointer-events: none;
}

.journal-article-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.journal-article-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - (var(--side) * 2)));
    margin: 0 auto;
    padding: clamp(150px, 22vh, 230px) 0 clamp(58px, 9vw, 104px);
}

.journal-article-hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 7vw, 7rem);
    font-weight: 500;
    line-height: 0.98;
}

.journal-article-hero .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.journal-article-meta {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.journal-article-layout {
    width: min(1180px, calc(100% - (var(--side) * 2)));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(220px, 0.32fr);
    gap: clamp(38px, 6vw, 90px);
    align-items: start;
    padding: clamp(58px, 8vw, 112px) 0;
}

.journal-article-body {
    display: grid;
    gap: 24px;
    color: var(--ink);
}

.journal-article-body p,
.journal-article-body li {
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.25vw, 1.16rem);
    line-height: 1.78;
}

.journal-article-body p,
.journal-article-body ul,
.journal-article-body ol,
.journal-article-body h2 {
    margin: 0;
}

.journal-article-body h2 {
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 3rem);
    font-weight: 500;
    line-height: 1.08;
}

.journal-article-body ul,
.journal-article-body ol {
    display: grid;
    gap: 10px;
    padding-left: 22px;
}

.journal-pullquote {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 3.4rem);
    font-weight: 500;
    line-height: 1.12;
    margin: 18px 0;
    padding: clamp(24px, 4vw, 46px) 0;
}

.journal-notice {
    border-left: 3px solid var(--clay);
    background: var(--paper-deep);
    color: var(--ink);
    line-height: 1.68;
    padding: 22px 24px;
}

.journal-sidebar {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 10px;
    border-left: 1px solid var(--line);
    padding-left: 24px;
}

.journal-sidebar h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.journal-sidebar a {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.journal-sidebar a:hover,
.journal-sidebar a:focus-visible {
    color: var(--ink);
}

.cta {
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--line);
}

.cta .section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.cta p {
    color: var(--ink-soft);
    max-width: 780px;
    margin-top: 18px;
}

.page-hero {
    padding: clamp(58px, 7vw, 96px) var(--side) clamp(42px, 5vw, 72px);
}

.page-hero__inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
    display: grid;
    gap: clamp(24px, 4vw, 46px);
}

.page-hero h1 {
    max-width: 1260px;
    font-size: clamp(2.8rem, 5.8vw, 5.6rem);
}

.page-hero .lead {
    max-width: 960px;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
    gap: clamp(30px, 7vw, 112px);
}

.about-grid__image {
    min-height: 520px;
    overflow: hidden;
}

.about-grid__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.detail-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.detail-list div {
    display: grid;
    grid-template-columns: minmax(120px, 0.28fr) 1fr;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.detail-list dt {
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.detail-list dd {
    margin: 0;
}

.offer-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    isolation: isolate;
    display: grid;
    align-items: end;
    background: var(--moss);
    color: #ffffff;
}

.offer-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(90deg, rgba(15, 17, 16, 0.78) 0%, rgba(15, 17, 16, 0.52) 48%, rgba(15, 17, 16, 0.18) 100%),
        linear-gradient(0deg, rgba(15, 17, 16, 0.58) 0%, rgba(15, 17, 16, 0.12) 58%);
}

.offer-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}

.offer-hero__inner {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - (var(--side) * 2)));
    min-height: calc(100vh - 80px);
    margin: 0 auto;
    padding: 58px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 72px;
    align-items: end;
}

.offer-hero__copy {
    display: grid;
    gap: 24px;
    max-width: 970px;
}

.offer-hero__copy h1 {
    color: #ffffff;
    font-size: 5.8rem;
    line-height: 0.96;
}

.offer-hero__copy .lead {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
}

.offer-hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.offer-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.offer-hero__actions .button--ghost {
    border-color: rgba(255, 255, 255, 0.44);
    color: #ffffff;
}

.offer-summary {
    display: grid;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(30, 34, 31, 0.62);
    padding: 28px;
    backdrop-filter: blur(12px);
}

.offer-summary dl {
    display: grid;
    gap: 18px;
    margin: 0;
}

.offer-summary div {
    display: grid;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 16px;
}

.offer-summary dt,
.offer-payment-editor p > span:first-child {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.offer-summary dd {
    margin: 0;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.36;
}

.offer-payment-editor {
    display: grid;
    gap: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.24);
    padding-top: 16px;
}

.offer-payment-editor p {
    display: grid;
    gap: 6px;
}

.offer-payment-editor p > span:last-child {
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 9px 10px;
    color: #ffffff;
    overflow-wrap: anywhere;
}

.offer-intro__grid,
.offer-agenda__grid,
.offer-takeaway__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.54fr) minmax(0, 0.96fr);
    gap: 90px;
    align-items: start;
}

.offer-intro h2,
.offer-agenda h2,
.offer-takeaway h2 {
    font-size: 3.8rem;
}

.offer-intro__copy {
    display: grid;
    gap: 24px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.74;
}

.offer-intro__copy ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offer-intro__copy li {
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.offer-process {
    background: var(--paper-deep);
}

.offer-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.offer-step {
    display: grid;
    align-content: start;
    gap: 20px;
    min-height: 310px;
    background: var(--paper);
    padding: 28px;
}

.offer-step span {
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.offer-step h3 {
    font-family: var(--font-sans);
    font-size: 1.55rem;
    font-weight: 500;
}

.offer-step p,
.offer-agenda-item p,
.offer-takeaway__copy p,
.takeaway-sheet p {
    color: var(--ink-soft);
}

.offer-agenda {
    background: var(--paper);
}

.offer-agenda__grid > div:first-child {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 116px;
}

.offer-agenda__grid > div:first-child p:not(.eyebrow) {
    color: var(--ink-soft);
    max-width: 520px;
}

.offer-agenda__list {
    display: grid;
    border-top: 1px solid var(--line);
}

.offer-agenda-item {
    display: grid;
    grid-template-columns: minmax(86px, 0.2fr) minmax(180px, 0.34fr) 1fr;
    gap: 26px;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}

.offer-agenda-item > span {
    color: var(--clay);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-agenda-item h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
}

.offer-takeaway {
    background: var(--moss);
    color: #ffffff;
}

.offer-takeaway .eyebrow,
.offer-takeaway__copy p {
    color: rgba(255, 255, 255, 0.72);
}

.offer-takeaway h2 {
    color: #ffffff;
}

.offer-takeaway__copy {
    display: grid;
    gap: 22px;
    align-content: start;
}

.takeaway-sheet {
    display: grid;
    gap: 0;
    background: #f6f1eb;
    color: var(--ink);
    padding: 34px;
}

.takeaway-sheet__label {
    color: var(--clay);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.takeaway-sheet article {
    display: grid;
    grid-template-columns: 46px 0.34fr 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding: 22px 0;
}

.takeaway-sheet article:last-child {
    padding-bottom: 0;
}

.takeaway-sheet span {
    color: var(--clay);
    font-weight: 800;
}

.takeaway-sheet h3 {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 700;
}

.offer-final {
    background: var(--paper);
}

.checkout-hero {
    min-height: calc(100vh - 80px);
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(249, 247, 244, 0.96), rgba(249, 247, 244, 0.82)),
        url("../images/donovan-living-room-portrait-watch-8k.jpg") center / cover;
    padding: 70px var(--side);
}

.checkout-hero__inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 430px);
    gap: 80px;
    align-items: center;
}

.checkout-hero__copy {
    display: grid;
    gap: 22px;
    max-width: 760px;
}

.checkout-hero__copy h1 {
    font-size: 5rem;
    line-height: 0.98;
}

.checkout-hero__copy .lead {
    color: var(--ink-soft);
}

.checkout-card {
    display: grid;
    gap: 24px;
    border: 1px solid var(--line);
    background: rgba(249, 247, 244, 0.94);
    padding: 32px;
    box-shadow: var(--shadow);
}

.checkout-card h2 {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 500;
}

.checkout-card dl {
    display: grid;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}

.checkout-card dl div {
    display: grid;
    grid-template-columns: minmax(96px, 0.32fr) 1fr;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
}

.checkout-card dt {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-card dd {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.35;
}

.checkout-card__fine-print,
.checkout-card__notice {
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.55;
}

.checkout-card__notice {
    border-left: 3px solid var(--clay);
    background: rgba(160, 141, 125, 0.1);
    padding: 12px 14px;
}

.button.is-disabled {
    opacity: 0.62;
    pointer-events: none;
}

.checkout-next {
    background: var(--paper-deep);
}

.contact-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    isolation: isolate;
    display: grid;
    align-items: end;
    background: var(--moss);
    color: #ffffff;
}

.contact-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(16, 18, 16, 0.76) 0%, rgba(16, 18, 16, 0.46) 48%, rgba(16, 18, 16, 0.22) 100%),
        linear-gradient(0deg, rgba(16, 18, 16, 0.54) 0%, rgba(16, 18, 16, 0.1) 58%);
    content: "";
}

.contact-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero__inner {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - (var(--side) * 2)));
    min-height: calc(100vh - 80px);
    margin: 0 auto;
    padding: clamp(42px, 6vw, 82px) 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
    gap: clamp(28px, 6vw, 94px);
    align-items: end;
}

.contact-hero__copy {
    display: grid;
    gap: clamp(18px, 3vw, 30px);
    max-width: 980px;
}

.contact-hero__copy h1 {
    color: #ffffff;
    font-size: clamp(3.3rem, 7.8vw, 8.2rem);
    line-height: 0.95;
}

.contact-hero__copy .lead {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
}

.contact-hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.contact-hero__details {
    border-left: 1px solid rgba(255, 255, 255, 0.32);
    padding-left: clamp(20px, 3vw, 34px);
}

.contact-quick-list {
    display: grid;
    gap: 18px;
    margin: 22px 0 0;
}

.contact-quick-list div {
    display: grid;
    gap: 3px;
}

.contact-quick-list dt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-quick-list dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.contact-inquiry {
    background: var(--paper);
}

.contact-inquiry__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 112px);
    align-items: start;
}

.contact-inquiry__intro {
    display: grid;
    gap: 24px;
}

.contact-inquiry__intro h2 {
    font-size: clamp(2.1rem, 4vw, 4rem);
}

.contact-inquiry__intro > p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.contact-inquiry__image {
    height: clamp(360px, 44vw, 620px);
    overflow: hidden;
    background: var(--mist);
}

.contact-inquiry__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-panel {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(22px, 4vw, 42px) 0;
}

.contact-share-band {
    background: var(--moss);
    color: #ffffff;
}

.contact-share-band__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 92px);
    align-items: end;
}

.contact-share-band .eyebrow,
.contact-share-band .lead {
    color: rgba(255, 255, 255, 0.78);
}

.contact-share-band h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 4.2rem);
}

.about-hero {
    width: min(var(--max), calc(100% - (var(--side) * 2)));
    min-height: calc(100vh - 76px);
    margin: 0 auto;
    padding: clamp(42px, 6vw, 86px) 0 clamp(52px, 7vw, 96px);
    display: grid;
    grid-template-columns: minmax(280px, 0.54fr) minmax(0, 0.72fr);
    gap: clamp(30px, 6vw, 96px);
    align-items: center;
}

.about-hero__media {
    height: clamp(560px, 74vw, 920px);
    overflow: hidden;
    background: var(--ink);
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
}

.about-hero__content {
    display: grid;
    gap: clamp(18px, 3vw, 34px);
}

.about-hero__content h1 {
    font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.about-story__grid,
.founder-profile__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.52fr) minmax(0, 0.82fr);
    gap: clamp(30px, 7vw, 112px);
    align-items: start;
}

.about-story__copy {
    display: grid;
    gap: 20px;
    color: var(--ink-soft);
    font-size: clamp(1.04rem, 1.45vw, 1.28rem);
}

.founder-profile {
    background: var(--paper-deep);
}

.founder-profile__image {
    min-height: clamp(560px, 72vw, 900px);
    overflow: hidden;
    background: var(--ink);
}

.founder-profile__image img {
    width: 100%;
    height: 100%;
    min-height: clamp(560px, 72vw, 900px);
    object-fit: cover;
    object-position: 50% 24%;
}

.founder-profile__copy {
    display: grid;
    gap: 24px;
    align-self: center;
}

.founder-profile__title {
    color: var(--moss-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-philosophy p:not(.lead):not(.eyebrow) {
    max-width: 720px;
    margin-top: 24px;
    color: rgba(246, 244, 239, 0.76);
}

.discipline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.discipline-card {
    min-height: 360px;
    display: grid;
    align-content: start;
    gap: 20px;
    background: var(--paper);
    padding: clamp(24px, 3.4vw, 42px);
}

.discipline-card span {
    color: var(--moss-dark);
    font-weight: 700;
}

.discipline-card h3 {
    font-size: clamp(1.7rem, 2.5vw, 3rem);
}

.discipline-card p {
    color: var(--ink-soft);
}

.image-duo {
    background: var(--paper-deep);
}

.image-duo__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.56fr);
    gap: clamp(22px, 5vw, 74px);
    align-items: end;
}

.image-duo__image {
    min-height: clamp(430px, 54vw, 720px);
    overflow: hidden;
}

.image-duo__image img {
    width: 100%;
    height: 100%;
    min-height: clamp(430px, 54vw, 720px);
    object-fit: cover;
}

.image-duo__content {
    display: grid;
    gap: 24px;
    padding-bottom: clamp(10px, 3vw, 38px);
}

.image-duo__image--tall {
    grid-column: 2;
    min-height: clamp(520px, 62vw, 860px);
}

.image-duo__image--tall img {
    min-height: clamp(520px, 62vw, 860px);
}

.mcg-about-hero {
    width: min(1400px, calc(100% - (var(--side) * 2)));
    margin: 0 auto;
    padding: clamp(40px, 5vw, 72px) 0;
    display: grid;
    grid-template-columns: minmax(280px, 5fr) minmax(0, 6fr);
    gap: clamp(32px, 5vw, 76px);
    align-items: center;
}

.mcg-about-hero__image {
    min-height: clamp(440px, 56vw, 680px);
    overflow: hidden;
    background: var(--mist);
}

.mcg-about-hero__image img {
    width: 100%;
    height: 100%;
    min-height: clamp(440px, 56vw, 680px);
    object-fit: cover;
}

.mcg-about-hero__copy {
    display: grid;
    gap: 22px;
    max-width: 680px;
}

.mcg-about-hero__copy h1 {
    font-size: clamp(3rem, 5.6vw, 5.4rem);
    line-height: 1;
}

.mcg-about-hero__copy p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.mcg-about-hero__dek {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.35rem) !important;
    line-height: 1.22;
}

.mcg-story .section__inner {
    max-width: 1100px;
}

.mcg-section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 26px;
}

.mcg-section-heading h2 {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
}

.mcg-section-heading p {
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.25;
}

.mcg-story__copy {
    display: grid;
    gap: 18px;
    max-width: 860px;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.founder-feature {
    background: var(--paper);
    padding-top: 22px;
}

.founder-feature__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(42px, 6vw, 96px);
    align-items: center;
    max-width: 1240px;
}

.founder-feature__portrait {
    margin: 0;
    min-height: 680px;
    overflow: hidden;
    background: var(--mist);
}

.founder-feature__portrait img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    object-position: 50% 18%;
}

.founder-feature__copy {
    display: grid;
    gap: 18px;
    max-width: 690px;
}

.founder-feature__copy .eyebrow {
    color: var(--clay);
}

.founder-feature__copy h2 {
    font-family: var(--font-sans);
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 0.98;
}

.founder-feature__title {
    max-width: 560px;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}

.founder-feature__bio {
    display: grid;
    gap: 16px;
    max-width: 640px;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.74;
}

.founder-feature__note {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.founder-feature__note h3 {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 500;
}

.founder-feature__note p {
    max-width: 600px;
    color: var(--ink-soft);
}

.founder-video {
    background: var(--moss);
    color: #ffffff;
    padding-top: 86px;
    padding-bottom: 86px;
}

.founder-video__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.36fr) minmax(280px, 0.64fr);
    gap: clamp(34px, 5vw, 80px);
    align-items: center;
    max-width: 1320px;
}

.founder-video__media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.founder-video__media iframe,
.founder-video__media video,
.founder-video__placeholder,
.founder-video__placeholder img {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.founder-video__media iframe,
.founder-video__media video {
    display: block;
    border: 0;
}

.founder-video__placeholder {
    position: relative;
}

.founder-video__placeholder img {
    object-fit: cover;
    opacity: 0.82;
}

.founder-video__placeholder::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(28, 31, 29, 0.04), rgba(28, 31, 29, 0.44));
}

.founder-video__placeholder span {
    position: absolute;
    right: 30px;
    bottom: 28px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.62);
    padding: 11px 14px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.founder-video__copy {
    display: grid;
    gap: 18px;
    max-width: 440px;
}

.founder-video__copy .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.founder-video__copy h2 {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.04;
}

.founder-video__copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.founder-video__editor {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.founder-video__editor p {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.founder-video__editor p > span:last-child {
    min-height: 42px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
    word-break: break-word;
}

.founder-video__url-value:empty::before {
    content: attr(data-placeholder);
    color: rgba(255, 255, 255, 0.45);
}

.founder-video__editor img {
    width: 170px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.mcg-dark-intro,
.mcg-dark-images,
.mcg-dark-copy {
    background: var(--moss);
    color: #ffffff;
}

.mcg-dark-intro {
    padding: clamp(46px, 5vw, 64px) var(--side) 0;
}

.mcg-dark-intro .section__inner,
.mcg-dark-images .section__inner,
.mcg-dark-copy .section__inner {
    width: min(1400px, 100%);
}

.mcg-dark-intro h2,
.mcg-dark-intro h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.25;
}

.mcg-dark-intro h3 {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.mcg-dark-images {
    padding: clamp(28px, 3vw, 40px) var(--side) 0;
}

.mcg-dark-images__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mcg-dark-images__image {
    min-height: clamp(340px, 36vw, 500px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.mcg-dark-images__image img {
    width: 100%;
    height: 100%;
    min-height: clamp(340px, 36vw, 500px);
    object-fit: cover;
}

.mcg-dark-copy {
    padding: clamp(28px, 4vw, 54px) var(--side) clamp(46px, 5vw, 64px);
}

.mcg-dark-copy__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 72px);
}

.mcg-dark-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.mcg-disciplines {
    background: var(--paper-deep);
}

.mcg-partner-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 278px);
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
}

.mcg-partner-card {
    scroll-snap-align: start;
}

.mcg-partner-card__image {
    aspect-ratio: 182 / 228;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--paper);
}

.mcg-partner-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.mcg-partner-card:hover .mcg-partner-card__image img {
    transform: scale(1.04);
}

.mcg-partner-card h3 {
    font-family: var(--font-sans);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.4;
}

.mcg-partner-card p {
    margin-top: 3px;
    color: rgba(44, 44, 44, 0.5);
    font-size: 0.84rem;
    line-height: 1.4;
}

.mcg-about-cta {
    background: var(--paper);
}

.mcg-about-cta__grid {
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 32px;
    align-items: center;
}

.mcg-about-cta h2 {
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    line-height: 1.1;
}

.mcg-about-cta p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.single-project-hero {
    padding: clamp(64px, 9vw, 132px) var(--side) 0;
}

.single-project-hero__inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
}

.single-project-hero h1 {
    margin-top: 18px;
    font-size: clamp(2.8rem, 5.8vw, 5.6rem);
}

.single-project-hero__meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: clamp(32px, 5vw, 64px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.single-project-hero__meta span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.single-project-hero__image {
    height: clamp(520px, 70vw, 920px);
    overflow: hidden;
}

.single-project-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-story {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: clamp(30px, 8vw, 130px);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 34px);
    align-items: start;
}

.project-gallery__item {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.project-gallery__button {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    padding: 0;
    overflow: hidden;
}

.project-gallery__button:focus-visible {
    outline: 2px solid var(--moss);
    outline-offset: 5px;
}

.project-gallery img {
    --parallax-y: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y), 0) scale(1.08);
    transform-origin: center;
    transition: filter 240ms ease, transform 80ms linear;
    will-change: transform;
}

.project-gallery__button:hover img,
.project-gallery__button:focus-visible img {
    filter: brightness(0.9);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(12px, 2vw, 24px);
    align-items: center;
    justify-items: center;
    background: rgba(20, 22, 20, 0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-open {
    overflow: hidden;
}

.image-lightbox__stage {
    display: grid;
    gap: 14px;
    max-width: min(82vw, 1400px);
    margin: 0;
    transform: scale(0.96);
    transition: transform 260ms ease;
}

.image-lightbox.is-open .image-lightbox__stage {
    transform: scale(1);
}

.image-lightbox__image {
    max-width: min(82vw, 1400px);
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.image-lightbox__caption {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.image-lightbox__close,
.image-lightbox__nav {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.image-lightbox__nav[hidden] {
    display: none;
}

.image-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    min-height: 42px;
    padding: 10px 14px;
}

.image-lightbox__nav {
    width: clamp(46px, 6vw, 68px);
    height: clamp(46px, 6vw, 68px);
    border-radius: 50%;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible,
.image-lightbox__nav:hover,
.image-lightbox__nav:focus-visible {
    background: #ffffff;
    color: var(--ink);
}

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

.inquiry-form label {
    display: grid;
    gap: 8px;
}

.inquiry-form .span-2,
.inquiry-form .form-status,
.inquiry-form button {
    grid-column: 1 / -1;
}

.inquiry-form span {
    color: var(--ink-soft);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.inquiry-form span em {
    color: var(--moss-dark);
    font-style: normal;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.36);
    color: var(--ink);
    padding: 15px 14px;
}

.inquiry-form textarea {
    resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: 2px solid rgba(92, 102, 88, 0.32);
    outline-offset: 2px;
}

.company-field {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 28px;
    color: var(--moss-dark);
}

.form-status.is-success {
    border-left: 3px solid var(--moss);
    background: rgba(72, 77, 73, 0.08);
    padding: 12px 14px;
}

.form-status.is-error {
    border-left: 3px solid #9d2419;
    background: rgba(157, 36, 25, 0.08);
    color: #7f2119;
    padding: 12px 14px;
}

.site-footer {
    background: var(--moss);
    color: var(--paper);
    padding: clamp(54px, 7vw, 96px) var(--side) 28px;
}

.footer-inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
    display: grid;
    gap: clamp(38px, 6vw, 86px);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr) minmax(220px, 0.28fr);
    gap: clamp(24px, 5vw, 76px);
}

.footer-brand {
    display: grid;
    gap: 22px;
    align-content: start;
}

.footer-brand__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: 1;
}

.footer-brand__logo {
    width: clamp(132px, 16vw, 230px);
    max-height: 190px;
    object-fit: contain;
    object-position: left center;
}

.footer-top h2 {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-top p,
.footer-top a {
    color: rgba(246, 244, 239, 0.76);
}

.footer-links ul {
    display: grid;
    gap: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    flex-wrap: wrap;
    border-top: 1px solid rgba(246, 244, 239, 0.18);
    padding-top: 24px;
    color: rgba(246, 244, 239, 0.62);
    font-size: 0.82rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px clamp(16px, 2vw, 26px);
    justify-content: flex-end;
}

.footer-social a {
    color: rgba(246, 244, 239, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: #ffffff;
}

.footer-social-editor {
    flex-basis: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    border-top: 1px dashed rgba(246, 244, 239, 0.18);
    padding-top: 16px;
}

.footer-social-editor p {
    display: grid;
    gap: 3px;
    margin: 0;
}

.footer-social-editor p > span:first-child {
    color: rgba(246, 244, 239, 0.48);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-social-editor p > span:last-child {
    color: rgba(246, 244, 239, 0.82);
    overflow-wrap: anywhere;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

.alignwide,
.alignfull {
    max-width: none;
}

.entry-content {
    width: min(880px, calc(100% - (var(--side) * 2)));
    margin: 0 auto;
    padding: clamp(54px, 8vw, 112px) 0;
}

.entry-content > * + * {
    margin-top: 1.2em;
}

.project-story .entry-content {
    width: auto;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    padding: 8px;
}

.nav-links .current {
    background: var(--ink);
    color: var(--paper);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .primary-nav {
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        background: var(--moss);
        color: #ffffff;
        padding: 24px var(--side) 30px;
    }

    .admin-bar .primary-nav {
        top: 112px;
    }

    .menu-open .primary-nav {
        display: block;
    }

    .primary-nav ul {
        display: grid;
        gap: 18px;
    }

    .primary-nav a {
        display: block;
        font-family: var(--font-display);
        font-size: 2.1rem;
        font-weight: 500;
        text-transform: none;
    }

    .nav-item--has-submenu {
        padding: 0;
        margin: 0;
    }

    .primary-nav .nav-submenu {
        position: static;
        display: grid;
        min-width: 0;
        gap: 8px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        padding: 4px 0 0 18px;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .primary-nav .nav-submenu a {
        padding: 0;
        color: rgba(255, 255, 255, 0.74);
        font-family: var(--font-sans);
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .primary-nav .nav-submenu a:hover,
    .primary-nav .nav-submenu a:focus-visible {
        background: transparent;
        color: #ffffff;
    }

    .nav-toggle {
        display: inline-block;
    }

    .header-actions .button {
        display: none;
    }

    .hero__inner,
    .feature-band .section__inner,
    .split-copy,
    .studio-panel,
    .journal-grid,
    .journal-card-grid,
    .journal-card--featured,
    .journal-article-layout,
    .about-grid,
    .contact-grid,
    .contact-hero__inner,
    .contact-inquiry__grid,
    .contact-share-band__inner,
    .project-story,
    .about-hero,
    .about-story__grid,
    .founder-profile__grid,
    .image-duo__grid,
    .mcg-about-hero,
    .founder-feature__grid,
    .founder-video__inner,
    .offer-hero__inner,
    .offer-intro__grid,
    .offer-agenda__grid,
    .offer-takeaway__grid,
    .checkout-hero__inner,
    .mcg-dark-copy__grid,
    .mcg-about-cta__grid {
        grid-template-columns: 1fr;
    }

    .checkout-hero {
        min-height: auto;
    }

    .checkout-hero__inner {
        gap: 36px;
    }

    .checkout-hero__copy h1 {
        font-size: 4rem;
    }

    .checkout-card {
        max-width: 640px;
    }

    .offer-hero__inner {
        gap: 36px;
        padding: 48px 0;
    }

    .offer-hero__copy h1 {
        font-size: 4.5rem;
    }

    .offer-summary {
        max-width: 620px;
    }

    .offer-intro__grid,
    .offer-agenda__grid,
    .offer-takeaway__grid {
        gap: 38px;
    }

    .offer-agenda__grid > div:first-child {
        position: static;
    }

    .offer-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-agenda-item,
    .takeaway-sheet article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mcg-about-hero__copy {
        max-width: 760px;
    }

    .founder-feature__grid,
    .founder-video__inner {
        max-width: 760px;
    }

    .founder-feature__portrait,
    .founder-feature__portrait img {
        min-height: 620px;
    }

    .founder-video__copy {
        max-width: 620px;
    }

    .founder-video__media,
    .founder-video__media iframe,
    .founder-video__media video,
    .founder-video__placeholder,
    .founder-video__placeholder img {
        min-height: 430px;
    }

    .mcg-dark-images__grid {
        gap: 16px;
    }

    .about-hero {
        min-height: auto;
    }

    .about-hero__content {
        order: -1;
    }

    .about-hero__media {
        height: 680px;
    }

    .hero,
    .hero__inner {
        min-height: calc(100vh - 80px);
    }

    .hero__gallery-ui {
        grid-template-columns: 1fr;
    }

    .hero__controls {
        justify-content: flex-start;
    }

    .contact-hero__details {
        border-top: 1px solid rgba(255, 255, 255, 0.32);
        border-left: 0;
        padding-top: 22px;
        padding-left: 0;
    }

    .section-heading,
    .cta .section__inner {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .discipline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .image-duo__image--tall {
        grid-column: auto;
    }

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

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

@media (max-width: 760px) {
    :root {
        --side: 18px;
        --header-logo-scale: 1.18;
    }

    body {
        font-size: 15px;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand {
        min-width: 104px;
        height: 68px;
    }

    .brand__mark {
        width: 36px;
        height: 40px;
    }

.brand__mark--custom {
        width: auto;
        max-width: 112px;
        height: 54px;
    }

    .brand__text span {
        display: none;
    }

    .primary-nav {
        top: 68px;
    }

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

    .admin-bar .primary-nav {
        top: 114px;
    }

    .journal-subnav {
        top: 68px;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .admin-bar .journal-subnav {
        top: 114px;
    }

    .journal-sidebar {
        position: static;
        border-top: 1px solid var(--line);
        border-left: 0;
        padding-top: 28px;
        padding-left: 0;
    }

    .journal-article-hero {
        min-height: min(660px, calc(100vh - 68px));
    }

    .journal-article-hero__inner {
        padding-top: 138px;
        padding-bottom: 58px;
    }

    .journal-article-hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.5rem);
    }

    .hero,
    .hero__inner,
    .contact-hero,
    .contact-hero__inner,
    .offer-hero,
    .offer-hero__inner {
        min-height: calc(100vh - 68px);
    }

    .offer-hero__copy h1 {
        font-size: 3.25rem;
    }

    .offer-hero__image {
        object-position: 52% 50%;
    }

    .offer-summary {
        padding: 22px;
    }

    .offer-intro h2,
    .offer-agenda h2,
    .offer-takeaway h2 {
        font-size: 2.35rem;
    }

    .offer-process__grid,
    .offer-agenda-item,
    .takeaway-sheet article,
    .checkout-card dl div {
        grid-template-columns: 1fr;
    }

    .checkout-hero {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .checkout-hero__copy h1 {
        font-size: 3rem;
    }

    .checkout-card {
        padding: 24px;
    }

    .offer-step {
        min-height: auto;
        padding: 24px;
    }

    .takeaway-sheet {
        padding: 24px;
    }

    .hero {
        padding-top: 0;
    }

    .hero__inner {
        padding: 30px 0;
    }

    .hero__copy h1 {
        font-size: clamp(3.3rem, 18vw, 5.8rem);
    }

    .hero__brand-logo img {
        width: clamp(150px, 44vw, 260px);
        max-height: 280px;
    }

    .contact-hero__inner {
        padding: 34px 0;
    }

    .contact-hero__copy h1 {
        font-size: clamp(3rem, 15vw, 5.6rem);
    }

    .contact-inquiry__image {
        height: 420px;
    }

    .hero__meta,
    .service-row,
    .single-project-hero__meta,
    .detail-list div {
        grid-template-columns: 1fr;
    }

    .hero__caption {
        display: grid;
        gap: 8px;
    }

    .hero__caption span + span::before {
        content: "";
        margin-right: 0;
    }

    .hero__controls {
        gap: 8px;
    }

    .hero__dots button {
        width: 34px;
    }

    .project-grid,
    .project-gallery,
    .inquiry-form,
    .discipline-grid {
        grid-template-columns: 1fr;
    }

    .about-hero__media {
        height: 540px;
    }

    .founder-profile__image,
    .founder-profile__image img {
        min-height: 560px;
    }

    .discipline-card {
        min-height: 280px;
    }

    .mcg-about-hero__image,
    .mcg-about-hero__image img {
        min-height: 420px;
    }

    .founder-feature {
        padding-top: 10px;
    }

    .founder-feature__portrait,
    .founder-feature__portrait img {
        min-height: 500px;
    }

    .founder-feature__copy h2 {
        font-size: 3rem;
    }

    .founder-feature__note h3 {
        font-size: 1.4rem;
    }

    .founder-video {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .founder-video__media,
    .founder-video__media iframe,
    .founder-video__media video,
    .founder-video__placeholder,
    .founder-video__placeholder img {
        min-height: 330px;
    }

    .founder-video__copy h2 {
        font-size: 2.2rem;
    }

    .founder-video__placeholder span {
        right: 18px;
        bottom: 18px;
    }

    .mcg-dark-images__grid {
        grid-template-columns: 1fr;
    }

    .mcg-dark-images__image,
    .mcg-dark-images__image img {
        min-height: 340px;
    }

    .project-card__image {
        height: 500px;
    }

    .project-gallery__item {
        aspect-ratio: 4 / 3;
    }

    .image-lightbox {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 76px 16px 24px;
    }

    .image-lightbox__stage {
        max-width: 100%;
    }

    .image-lightbox__image {
        max-width: 100%;
        max-height: 70vh;
    }

    .image-lightbox__nav {
        position: absolute;
        bottom: 20px;
    }

    .image-lightbox__nav--prev {
        left: 18px;
    }

    .image-lightbox__nav--next {
        right: 18px;
    }

    .image-lightbox__close {
        top: 18px;
        right: 18px;
    }

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

    .footer-social {
        justify-content: flex-start;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
