/*
DLD Studio standalone website
Version: 1.0.5
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);
}

* {
    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: 92px;
}

.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;
}

.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,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.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.72) 0%, rgba(16, 18, 16, 0.45) 42%, rgba(16, 18, 16, 0.18) 100%),
        linear-gradient(0deg, rgba(16, 18, 16, 0.58) 0%, rgba(16, 18, 16, 0.1) 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__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);
}

.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;
}

.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);
}

.mcg-founder-section {
    background: var(--paper);
    padding-top: 0;
}

.mcg-founder-wrap {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    max-width: 920px;
}

.mcg-founder-card img {
    width: 260px;
    aspect-ratio: 260 / 292;
    object-fit: cover;
    object-position: 50% 22%;
    background: var(--mist);
}

.mcg-founder-card h3 {
    margin-top: 13px;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 500;
}

.mcg-founder-card__title {
    margin-top: 4px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.mcg-founder-card p:not(.mcg-founder-card__title) {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}

.mcg-founder-note {
    display: grid;
    gap: 18px;
}

.mcg-founder-note h2 {
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.mcg-founder-note p {
    max-width: 620px;
    color: var(--ink-soft);
}

.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(16px, 2vw, 26px);
    align-items: start;
}

.project-gallery__item {
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.project-gallery__item:first-child,
.project-gallery__item:nth-child(4n) {
    grid-column: span 2;
}

.project-gallery__item:nth-child(even):not(:first-child) {
    margin-top: clamp(34px, 5vw, 86px);
}

.project-gallery__button {
    display: block;
    width: 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: clamp(420px, 62vw, 760px);
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y), 0) scale(1.12);
    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 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);
}

.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;
}

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

.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;
    border-top: 1px solid rgba(246, 244, 239, 0.18);
    padding-top: 24px;
    color: rgba(246, 244, 239, 0.62);
    font-size: 0.82rem;
}

.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-toggle {
        display: inline-block;
    }

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

    .hero__inner,
    .feature-band .section__inner,
    .split-copy,
    .studio-panel,
    .journal-grid,
    .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,
    .mcg-founder-wrap,
    .mcg-dark-copy__grid,
    .mcg-about-cta__grid {
        grid-template-columns: 1fr;
    }

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

    .mcg-founder-wrap {
        max-width: 760px;
    }

    .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;
    }

    body {
        font-size: 15px;
    }

    .header-inner {
        min-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;
    }

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

    .hero {
        padding-top: 0;
    }

    .hero__inner {
        padding: 30px 0;
    }

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

    .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;
    }

    .mcg-founder-card img {
        width: min(260px, 100%);
    }

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

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

    .project-gallery figure:first-child,
    .project-gallery figure:nth-child(4n),
    .project-gallery__item:first-child,
    .project-gallery__item:nth-child(4n) {
        grid-column: auto;
    }

    .project-gallery__item:nth-child(even):not(:first-child) {
        margin-top: 0;
    }

    .project-card__image,
    .project-gallery img {
        height: 500px;
    }

    .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;
    }
}

@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;
    }
}
