:root {
    font-family: "Manrope", sans-serif;
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("assets/fonts/cormorant-garamond-500.ttf") format("truetype");
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("assets/fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("assets/fonts/cormorant-garamond-700.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("assets/fonts/manrope-800.ttf") format("truetype");
}

:root {
    --ink: #0a0b0d;
    --graphite: #161719;
    --charcoal: #23211f;
    --ivory: #f7f1e8;
    --stone: #d8d0c2;
    --champagne: #c9a96a;
    --copper: #9f5834;
    --blueprint: #7fa0ac;
    --white: #ffffff;
    --muted: rgba(247, 241, 232, 0.72);
    --line: rgba(247, 241, 232, 0.18);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius: 8px;
    --section-x: clamp(20px, 5vw, 72px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ivory);
    background: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    color: var(--ink);
    background: var(--champagne);
    border-radius: var(--radius);
    transition: transform 180ms ease;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px var(--section-x);
    color: var(--ivory);
    transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    padding-block: 14px;
    background: rgba(10, 11, 13, 0.78);
    border-bottom: 1px solid rgba(247, 241, 232, 0.12);
    backdrop-filter: blur(18px);
}

.brand img {
    width: clamp(160px, 20vw, 260px);
    filter: brightness(0) invert(1);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 38px);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    color: rgba(247, 241, 232, 0.82);
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--champagne);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    color: var(--ivory);
    background: rgba(247, 241, 232, 0.08);
    border: 1px solid var(--line);
    border-radius: 999px;
}

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

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.section {
    width: min(1480px, 100%);
    margin: 0 auto;
    padding: clamp(84px, 11vw, 150px) var(--section-x);
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--champagne);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.95;
}

h1 {
    max-width: 980px;
    margin-bottom: 24px;
    font-size: clamp(3.8rem, 9vw, 9.5rem);
}

h2 {
    font-size: clamp(2.5rem, 5.4vw, 5.8rem);
}

h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.6rem);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding: 132px var(--section-x) clamp(42px, 7vw, 84px);
    overflow: hidden;
    isolation: isolate;
}

.hero::before,
.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    z-index: -1;
}

.hero::before {
    background: linear-gradient(90deg, rgba(8, 9, 10, 0.92), rgba(8, 9, 10, 0.52) 46%, rgba(8, 9, 10, 0.08));
}

.hero::after {
    background: linear-gradient(0deg, var(--ink), transparent 22%), radial-gradient(circle at 22% 28%, rgba(201, 169, 106, 0.28), transparent 26%);
    mix-blend-mode: screen;
    opacity: 0.74;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img,
.hero-media video,
.story-bg img,
.quote-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media video {
    display: block;
}

.hero-content {
    width: min(980px, 100%);
}

.hero-copy {
    width: min(760px, 100%);
    margin-bottom: 34px;
    color: rgba(247, 241, 232, 0.84);
    font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: var(--ink);
    background: linear-gradient(135deg, #f2d89e, var(--champagne) 48%, #8d6330);
}

.button-secondary {
    color: var(--ivory);
    background: rgba(247, 241, 232, 0.08);
    border-color: rgba(247, 241, 232, 0.24);
}

.hero-panel {
    position: absolute;
    right: var(--section-x);
    bottom: clamp(28px, 5vw, 64px);
    width: min(360px, calc(100% - 40px));
    padding: 22px;
    background: rgba(10, 11, 13, 0.44);
    border: 1px solid rgba(247, 241, 232, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-panel span,
.process-step span {
    color: var(--champagne);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero-panel strong {
    display: block;
    margin: 8px 0;
    font-size: 1.05rem;
}

.hero-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.intro-band {
    background: linear-gradient(135deg, var(--ivory), #e4dccf 58%, #bec9c9);
    color: var(--ink);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(28px, 6vw, 92px);
    align-items: end;
}

.intro-grid h2 {
    margin-bottom: 0;
}

.intro-grid p {
    margin-bottom: 0;
    color: rgba(10, 11, 13, 0.7);
    font-size: 1.05rem;
}

.projects {
    background: linear-gradient(180deg, var(--ink), #151210 48%, #0f1212);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(170px, 0.3fr) minmax(0, 0.7fr);
    gap: clamp(24px, 5vw, 80px);
    align-items: start;
    margin-bottom: clamp(36px, 6vw, 72px);
}

.section-heading h2 {
    margin-bottom: 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 310px;
    gap: 14px;
}

.project-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--graphite);
    isolation: isolate;
}

.project-card::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.74));
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease, filter 600ms ease;
}

.project-card:hover img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.045);
}

.project-card div {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 2;
}

.project-card span {
    color: var(--champagne);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 6px 0 0;
    font-size: clamp(1.5rem, 2.4vw, 2.8rem);
}

.project-card.tall {
    grid-row: span 2;
}

.project-card.wide {
    grid-column: span 2;
}

.designer {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 90px);
    align-items: center;
    background: var(--ivory);
    color: var(--ink);
}

.designer-image {
    padding: 12px;
    background: linear-gradient(135deg, var(--champagne), var(--blueprint));
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(10, 11, 13, 0.18);
}

.designer-image img {
    width: 100%;
    border-radius: calc(var(--radius) - 2px);
}

.designer-copy .lede {
    width: min(640px, 100%);
    color: rgba(10, 11, 13, 0.66);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--copper);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-link::after {
    width: 44px;
    height: 1px;
    content: "";
    background: currentColor;
    transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    width: 70px;
}

.process {
    background: #101214;
}

.process-heading {
    padding-bottom: 36px;
}

.process-heading h2 {
    width: min(860px, 100%);
    margin-bottom: 0;
}

.process-rail {
    width: min(1480px, 100%);
    margin: 0 auto;
    padding: 0 var(--section-x) clamp(84px, 11vw, 150px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.process-step {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--graphite);
    isolation: isolate;
}

.process-step::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.86));
}

.process-step img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step h3 {
    margin: 10px 0 14px;
}

.process-step p {
    margin-bottom: 0;
    color: var(--muted);
}

.story,
.quote {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.story-bg,
.quote-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.story::after,
.quote::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(10, 11, 13, 0.94), rgba(10, 11, 13, 0.72) 54%, rgba(10, 11, 13, 0.5));
}

.story-content h2 {
    width: min(990px, 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(34px, 6vw, 80px);
    background: var(--line);
    border: 1px solid var(--line);
}

.story-grid article {
    padding: clamp(22px, 3vw, 34px);
    background: rgba(10, 11, 13, 0.54);
    backdrop-filter: blur(16px);
}

.story-grid h3 {
    font-size: clamp(1.55rem, 2.2vw, 2.4rem);
}

.story-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.clients {
    background: linear-gradient(135deg, #ede5d8, var(--ivory) 44%, #dce4e2);
    color: var(--ink);
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(8, minmax(78px, 1fr));
    gap: 12px;
    margin-bottom: clamp(46px, 7vw, 84px);
}

.logo-cloud img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: clamp(12px, 2vw, 22px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(10, 11, 13, 0.08);
    border-radius: var(--radius);
    filter: grayscale(1);
    transition: filter 180ms ease, transform 180ms ease;
}

.logo-cloud img:hover {
    filter: grayscale(0);
    transform: translateY(-3px);
}

.testimonial {
    margin: 0;
    padding: clamp(26px, 5vw, 54px);
    color: var(--ivory);
    background: linear-gradient(135deg, var(--ink), #24201b);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(10, 11, 13, 0.18);
}

.testimonial blockquote {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4.2vw, 4.5rem);
    line-height: 1.02;
}

.testimonial figcaption {
    color: var(--champagne);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quote-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
}

.quote-copy p:not(.eyebrow) {
    width: min(580px, 100%);
    color: var(--muted);
    font-size: 1.12rem;
}

.text-link.light {
    color: var(--champagne);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(247, 241, 232, 0.1);
    border: 1px solid rgba(247, 241, 232, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

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

.quote-form span {
    color: rgba(247, 241, 232, 0.76);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    color: var(--ivory);
    background: rgba(10, 11, 13, 0.52);
    border: 1px solid rgba(247, 241, 232, 0.2);
    border-radius: var(--radius);
    outline: 0;
    padding: 14px 14px;
    resize: vertical;
    transition: border-color 180ms ease, background 180ms ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
    background: rgba(10, 11, 13, 0.72);
    border-color: var(--champagne);
}

.full {
    grid-column: 1 / -1;
}

.form-note {
    min-height: 22px;
    margin: 0;
    color: var(--champagne);
    font-size: 0.92rem;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 34px var(--section-x);
    color: rgba(247, 241, 232, 0.72);
    background: var(--ink);
    border-top: 1px solid var(--line);
}

.footer-logo img {
    width: 168px;
    filter: brightness(0) invert(1);
}

.site-footer p {
    margin: 0;
}

.site-footer a:last-child {
    color: var(--champagne);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.floating-actions {
    position: fixed;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(14px, 2vw, 24px);
    z-index: 30;
    display: grid;
    gap: 10px;
}

.float-button {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 999px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-button:hover,
.float-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
}

.float-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.float-button.call {
    background: linear-gradient(135deg, #f2d89e, var(--champagne) 50%, #8d6330);
    color: var(--ink);
}

.float-button.whatsapp {
    background: #25d366;
}

.inner-page {
    background: #111214;
}

.page-hero {
    position: relative;
    min-height: min(760px, 92svh);
    display: grid;
    align-items: end;
    padding: 132px var(--section-x) clamp(48px, 8vw, 96px);
    overflow: hidden;
    isolation: isolate;
}

.page-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(10, 11, 13, 0.9), rgba(10, 11, 13, 0.62) 52%, rgba(10, 11, 13, 0.22)), linear-gradient(0deg, #111214, transparent 24%);
}

.page-hero-media,
.page-hero-media .page-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    margin: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-copy {
    width: min(960px, 100%);
}

.page-hero-copy h1 {
    margin-bottom: 24px;
}

.page-lede {
    width: min(760px, 100%);
    color: rgba(247, 241, 232, 0.82);
    font-size: clamp(1.06rem, 2vw, 1.34rem);
}

.page-lede p {
    margin-bottom: 10px;
}

.page-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    background: #111214;
}

.page-gallery .page-image {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--graphite);
}

.page-gallery .page-image:first-child:nth-last-child(odd),
.page-gallery .page-image:nth-child(3n + 1) {
    grid-column: span 2;
}

.page-gallery img {
    width: 100%;
    height: 100%;
    min-height: clamp(280px, 42vw, 620px);
    object-fit: cover;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 0;
}

.content-panel {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(247, 241, 232, 0.07);
}

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

.content-panel p {
    color: var(--muted);
}

.content-panel .bullet {
    position: relative;
    padding-left: 20px;
}

.content-panel .bullet::before {
    position: absolute;
    left: 0;
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 0.6em;
    border-radius: 50%;
    background: var(--champagne);
}

.contact-strip {
    width: min(1180px, calc(100% - (var(--section-x) * 2)));
    margin: clamp(46px, 7vw, 86px) auto;
    padding: clamp(34px, 6vw, 68px);
    color: var(--ivory);
    text-align: center;
    background: linear-gradient(135deg, rgba(247, 241, 232, 0.1), rgba(127, 160, 172, 0.12)), #141414;
    border: 1px solid rgba(247, 241, 232, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.contact-strip h2 {
    width: min(760px, 100%);
    margin-inline: auto;
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4.2vw, 4.4rem);
}

.contact-strip .eyebrow {
    margin-inline: auto;
}

.contact-strip .hero-actions {
    justify-content: center;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .logo-cloud {
        grid-template-columns: repeat(4, minmax(78px, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header,
    .site-header.is-scrolled,
    .site-header.is-open {
        padding: 12px var(--section-x);
    }

    .nav-toggle {
        display: inline-block;
        position: relative;
        z-index: 62;
    }

    .site-nav {
        position: fixed;
        top: 74px;
        right: 14px;
        left: 14px;
        z-index: 61;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: calc(100svh - 96px);
        padding: 10px;
        overflow-y: auto;
        background: rgba(10, 11, 13, 0.94);
        border: 1px solid rgba(247, 241, 232, 0.16);
        border-radius: var(--radius);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(18px);
        font-size: 0.92rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px) scale(0.98);
        transform-origin: top center;
        transition: opacity 200ms ease, transform 200ms ease;
    }

    .site-nav a {
        width: 100%;
        padding: 15px 14px;
        text-align: center;
        border-bottom: 1px solid rgba(247, 241, 232, 0.1);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .hero {
        align-items: center;
        min-height: 94svh;
        padding-top: 112px;
    }

    .hero-panel {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 36px;
    }

    .intro-grid,
    .section-heading,
    .designer,
    .process-rail,
    .quote-shell {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: 460px;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .contact-strip {
        width: calc(100% - 28px);
    }
}

@media (max-width: 620px) {
    .brand img {
        width: 136px;
    }

    h1 {
        font-size: clamp(3.2rem, 15vw, 5.2rem);
    }

    h2 {
        font-size: clamp(2.25rem, 10.5vw, 3.8rem);
    }

    h3 {
        font-size: clamp(1.45rem, 7vw, 2.2rem);
    }

    .hero-copy,
    .page-lede,
    .quote-copy p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .project-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 390px;
    }

    .project-card.tall,
    .project-card.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .story-grid,
    .logo-cloud {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial blockquote {
        font-size: clamp(1.85rem, 8.5vw, 2.8rem);
    }

    .site-footer {
        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;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}