@layer reset, base, components, pages, utilities, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, h4, p, figure, blockquote, ol, ul { margin: 0; }
  ol, ul { padding: 0; list-style: none; }
  img, svg { display: block; max-width: 100%; }
  img { height: auto; }
  button, input, textarea { font: inherit; }
  button { color: inherit; }
  a { color: inherit; text-decoration: none; }
}

@layer base {
  :root {
    --ink: #111714;
    --ink-2: #1a211d;
    --paper: #f2f0e9;
    --paper-2: #e7e3da;
    --white: #fffef9;
    --muted: #747a74;
    --accent: #d49a63;
    --accent-2: #af6a39;
    --line: rgba(17, 23, 20, .16);
    --line-light: rgba(255, 255, 255, .2);
    --shadow: 0 30px 80px rgba(14, 20, 16, .16);
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --max: 1360px;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-in-out: cubic-bezier(.65, 0, .35, 1);
    --header-h: 96px;
  }

  html { background: var(--ink); font-size: 16px; }
  body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .025;
    background: url('../images/noise.svg') repeat;
    mix-blend-mode: multiply;
  }
  ::selection { background: var(--accent); color: var(--ink); }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
  main { position: relative; z-index: 1; overflow-x: clip; background: var(--paper); }
  .container { width: min(calc(100% - 72px), var(--max)); margin-inline: auto; }
  .section-pad { padding: clamp(96px, 10vw, 170px) 0; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .skip-link { position: fixed; top: -100px; left: 24px; z-index: 10000; padding: 13px 20px; background: var(--white); color: var(--ink); font-weight: 700; }
  .skip-link:focus { top: 20px; }
  em { font-family: var(--serif); font-weight: 400; }
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
  .eyebrow-light { color: #efc49d; }
  .scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 101; pointer-events: none; }
  .scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--accent), #f1c69f); }
  .cursor, .cursor-dot { display: none; position: fixed; left: 0; top: 0; pointer-events: none; z-index: 10000; }
  .cursor { width: 62px; height: 62px; margin: -31px 0 0 -31px; border: 1px solid rgba(17,23,20,.42); border-radius: 50%; transition: width .3s var(--ease-out), height .3s var(--ease-out), margin .3s var(--ease-out), background .3s ease, border-color .3s ease; }
  .cursor span { display: grid; place-items: center; width: 100%; height: 100%; opacity: 0; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: opacity .2s ease; }
  .cursor-dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; border-radius: 50%; background: var(--accent-2); }
  .cursor-enabled .cursor, .cursor-enabled .cursor-dot { display: block; }
  .cursor-enabled .cursor.is-hovering { width: 84px; height: 84px; margin: -42px 0 0 -42px; background: rgba(212,154,99,.12); border-color: var(--accent); }
  .cursor-enabled .cursor.has-label { width: 92px; height: 92px; margin: -46px 0 0 -46px; background: var(--accent-2); border-color: var(--accent-2); }
  .cursor-enabled .cursor.has-label span { opacity: 1; }
  .cursor-enabled .cursor.is-light { border-color: rgba(255,255,255,.5); }
  .page-wipe { position: fixed; inset: 0; z-index: 9998; pointer-events: none; transform: translateY(102%); background: var(--ink); }
  body.is-leaving .page-wipe { animation: page-wipe-in .65s var(--ease-in-out) forwards; }
  @keyframes page-wipe-in { to { transform: translateY(0); } }
}

@layer components {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: #fff;
    transition: background-color .45s ease, color .45s ease, transform .4s var(--ease-out), box-shadow .45s ease;
  }
  .site-header.is-hidden { transform: translateY(-102%); }
  .site-header.is-stuck { background: rgba(242,240,233,.88); color: var(--ink); box-shadow: 0 10px 40px rgba(17,23,20,.08); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
  .header-inner { display: flex; align-items: center; min-height: var(--header-h); border-bottom: 1px solid rgba(255,255,255,.22); transition: min-height .4s var(--ease-out), border-color .3s ease; }
  .is-stuck .header-inner { min-height: 76px; border-color: var(--line); }
  .brand { display: inline-flex; align-items: center; gap: 14px; flex: 0 0 auto; }
  .brand-symbol { position: relative; display: grid; place-items: center; width: 46px; height: 46px; }
  .brand-symbol i { position: absolute; inset: 4px; border: 1px solid currentColor; transform: rotate(45deg); transition: transform .65s var(--ease-out), background .35s ease; }
  .brand-symbol b { position: relative; color: var(--accent); font-family: var(--serif); font-size: 22px; font-weight: 600; }
  .brand:hover .brand-symbol i { transform: rotate(135deg); background: rgba(212,154,99,.1); }
  .brand-copy { font-size: 20px; letter-spacing: -.04em; line-height: 1; }
  .brand-copy strong { font-weight: 800; }
  .brand-copy small { display: block; margin-top: 6px; font-size: 8px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; opacity: .72; }
  .main-nav { margin-left: auto; }
  .main-nav-links { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 40px); }
  .main-nav-links a { position: relative; padding: 10px 0; font-size: 13px; font-weight: 650; }
  .main-nav-links a span { display: none; }
  .main-nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--accent); transition: right .4s var(--ease-out); }
  .main-nav-links a:hover::after { right: 0; }
  .main-nav-meta { display: none; }
  .header-cta { display: inline-flex; align-items: center; gap: 18px; margin-left: 38px; padding: 13px 0 13px 28px; border-left: 1px solid rgba(255,255,255,.3); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .is-stuck .header-cta { border-color: var(--line); }
  .header-cta i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--ink); font-style: normal; transition: transform .4s var(--ease-out); }
  .header-cta:hover i { transform: rotate(45deg); }
  .menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

  .button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 62px; padding: 16px 28px; overflow: hidden; border: 1px solid transparent; font-size: 11px; font-weight: 850; letter-spacing: .12em; line-height: 1; text-transform: uppercase; transition: transform .35s var(--ease-out), border-color .3s ease, background .3s ease, color .3s ease, box-shadow .35s ease; }
  .button span, .button i { position: relative; z-index: 2; }
  .button i { font-style: normal; font-size: 16px; transition: transform .35s var(--ease-out); }
  .button::before { content: ""; position: absolute; inset: 0; transform: translateY(102%); background: var(--ink); transition: transform .45s var(--ease-out); }
  .button:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .button:hover::before { transform: translateY(0); }
  .button:hover i { transform: rotate(45deg); }
  .button-primary { background: var(--accent); color: var(--ink); }
  .button-primary:hover { color: #fff; }
  .button-dark { background: var(--ink); color: #fff; }
  .button-dark::before { background: var(--accent); }
  .button-dark:hover { color: var(--ink); }
  .button-outline { border-color: rgba(255,255,255,.35); color: #fff; }
  .button-outline::before { background: #fff; }
  .button-outline:hover { color: var(--ink); }
  .button-glass { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(12px); }
  .button-glass::before { background: #fff; }
  .button-glass:hover { color: var(--ink); }
  .round-link { display: grid; place-items: center; width: 112px; height: 112px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; transition: background .35s ease, color .35s ease, transform .35s var(--ease-out); }
  .round-link span { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .round-link i { margin-top: -22px; font-style: normal; font-size: 17px; }
  .round-link:hover { background: #fff; color: var(--ink); transform: rotate(8deg); }
  .text-link { display: inline-flex; align-items: center; gap: 18px; padding: 0 0 9px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .text-link i { font-style: normal; transition: transform .35s var(--ease-out); }
  .text-link:hover i { transform: translate(5px,-5px); }

  .motion-enabled [data-reveal] { opacity: 0; transition: opacity .9s var(--ease-out), transform 1.05s var(--ease-out); }
  .motion-enabled [data-reveal="up"] { transform: translateY(54px); }
  .motion-enabled [data-reveal="left"] { transform: translateX(-54px); }
  .motion-enabled [data-reveal="right"] { transform: translateX(54px); }
  .motion-enabled [data-reveal="scale"] { transform: scale(.94); }
  .motion-enabled [data-reveal].is-revealed { opacity: 1; transform: none; }
  .image-fade { opacity: 0; filter: blur(8px); transform: scale(1.025); transition: opacity .8s ease, filter 1.2s ease, transform 1.2s var(--ease-out); }
  .image-fade.is-loaded { opacity: 1; filter: none; transform: none; }
}

@layer pages {
  .hero { position: relative; min-height: max(760px, 100svh); overflow: hidden; isolation: isolate; background: #101512; color: #fff; }
  .hero-media, .hero-gradient, .hero-grid, .hero-glow { position: absolute; inset: 0; }
  .hero-media { z-index: -4; overflow: hidden; }
  .hero-media img { width: 100%; height: 112%; object-fit: cover; object-position: center 56%; transform: scale(1.04); animation: hero-image-in 1.8s var(--ease-out) both; }
  @keyframes hero-image-in { from { transform: scale(1.12); filter: brightness(.65); } to { transform: scale(1.04); filter: brightness(1); } }
  .hero-gradient { z-index: -3; background: linear-gradient(90deg, rgba(9,14,11,.92) 0%, rgba(9,14,11,.65) 42%, rgba(9,14,11,.14) 78%), linear-gradient(0deg, rgba(9,14,11,.72) 0%, transparent 42%), radial-gradient(circle at 67% 42%, transparent 0, rgba(9,14,11,.2) 65%); }
  .hero-grid, .page-hero-grid { z-index: -2; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: clamp(70px, 8vw, 120px) clamp(70px, 8vw, 120px); mask-image: linear-gradient(to bottom, #000, transparent 88%); }
  .hero-glow { z-index: -1; width: 520px; height: 520px; margin: -260px 0 0 -260px; border-radius: 50%; background: radial-gradient(circle, rgba(212,154,99,.18), transparent 68%); opacity: 0; transition: opacity .5s ease; }
  .pointer-ready .hero-glow { opacity: 1; }
  .hero-inner { position: relative; display: flex; align-items: flex-end; min-height: max(760px, 100svh); padding-top: 170px; padding-bottom: clamp(110px, 10vh, 150px); }
  .hero-copy { width: min(1010px, 84%); }
  .hero-eyebrow { margin-bottom: 35px; color: #efc49d; opacity: 0; animation: hero-copy-in .8s .15s var(--ease-out) forwards; }
  .hero-eyebrow::before { display: none; }
  .hero-eyebrow span { width: 38px; height: 1px; background: currentColor; }
  .hero-title { max-width: 1020px; font-family: var(--serif); font-size: clamp(58px, 7.25vw, 116px); font-weight: 400; line-height: .91; letter-spacing: -.062em; text-wrap: balance; }
  .hero-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 .06em .18em 0; margin-bottom: -.05em; }
  .hero-title .word-inner { display: inline-block; transform: translateY(115%); animation: hero-word-in 1s var(--ease-out) forwards; }
  @keyframes hero-word-in { to { transform: translateY(0); } }
  @keyframes hero-copy-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  .hero-bottom { display: grid; grid-template-columns: minmax(280px, 560px) auto; gap: 60px; align-items: end; margin-top: 42px; opacity: 0; animation: hero-copy-in .9s .75s var(--ease-out) forwards; }
  .hero-lead { max-width: 590px; color: rgba(255,255,255,.74); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.65; }
  .hero-actions { display: flex; align-items: center; gap: 24px; }
  .hero-signature { position: absolute; right: 0; top: 28%; display: flex; align-items: center; gap: 18px; transform: rotate(90deg) translateX(100%); transform-origin: right top; color: rgba(255,255,255,.56); }
  .hero-signature span { font-family: var(--serif); font-size: 38px; color: var(--accent); }
  .hero-signature small { font-family: var(--mono); font-size: 8px; letter-spacing: .16em; line-height: 1.5; text-transform: uppercase; }
  .hero-trust { position: absolute; left: max(36px, calc((100vw - var(--max))/2)); right: max(36px, calc((100vw - var(--max))/2)); bottom: 26px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
  .hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
  .hero-scroll { position: absolute; right: max(36px, calc((100vw - var(--max))/2)); bottom: 24px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
  .hero-scroll i { position: relative; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
  .hero-scroll i::before { content: ""; position: absolute; left: 50%; top: 10px; width: 1px; height: 12px; background: #fff; animation: scroll-pulse 1.6s infinite; }
  @keyframes scroll-pulse { 0% { transform: translateY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

  .manifest { background: var(--paper); }
  .manifest-grid { display: grid; grid-template-columns: .36fr 1fr; gap: clamp(50px, 9vw, 140px); }
  .manifest-label { display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 20px; }
  .manifest-index { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .16em; }
  .display-statement { max-width: 1040px; font-family: var(--serif); font-size: clamp(42px, 5.35vw, 79px); line-height: 1.06; letter-spacing: -.047em; text-wrap: balance; }
  .display-statement em { color: var(--accent-2); }
  .manifest-note { display: grid; grid-template-columns: 90px minmax(0, 440px); gap: 28px; align-items: start; margin: 68px 0 0 auto; width: min(100%, 560px); }
  .manifest-note span { height: 1px; margin-top: 13px; background: var(--ink); }
  .manifest-note p { color: var(--muted); font-size: 15px; }

  .marquee { overflow: hidden; border-block: 1px solid rgba(255,255,255,.13); background: var(--ink); color: #fff; }
  .marquee-track { display: flex; align-items: center; gap: 34px; width: max-content; padding: 21px 0; animation: marquee 25s linear infinite; }
  .marquee-track span { font-family: var(--serif); font-size: 18px; font-style: italic; letter-spacing: .02em; }
  .marquee-track i { color: var(--accent); font-style: normal; font-size: 11px; }
  @keyframes marquee { to { transform: translateX(-50%); } }

  .services { overflow: hidden; background: var(--paper-2); }
  .section-head { display: grid; grid-template-columns: 1fr .38fr; gap: 80px; align-items: end; margin-bottom: 70px; }
  .section-head h2, .craft-copy h2, .area h2, .page-cta h2, .project-next h2 { margin-top: 20px; font-family: var(--serif); font-size: clamp(47px, 5.2vw, 78px); font-weight: 400; line-height: .99; letter-spacing: -.05em; }
  .section-head h2 em, .craft-copy h2 em, .area h2 em, .page-cta h2 em, .project-next h2 em { color: var(--accent-2); }
  .section-head-note { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
  .section-head-note span { font-family: var(--mono); font-size: 10px; }
  .section-head-note p { color: var(--muted); font-size: 14px; }
  .services-stage { display: grid; grid-template-columns: 1.13fr .87fr; gap: 20px; min-height: 940px; }
  .service-feature, .service-visual, .service-minimal { position: relative; overflow: hidden; background: var(--ink); }
  [data-tilt] { transform-style: preserve-3d; will-change: transform; }
  .service-feature > a, .service-visual > a, .service-minimal > a { position: relative; display: block; width: 100%; height: 100%; }
  .service-feature img, .service-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter .6s ease; }
  .service-feature:hover img, .service-visual:hover img { transform: scale(1.05); filter: saturate(1.08); }
  .service-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,12,10,.92), transparent 65%), linear-gradient(90deg, rgba(8,12,10,.2), transparent); }
  .service-card-head { position: absolute; left: 38px; right: 38px; top: 38px; display: flex; justify-content: space-between; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
  .service-card-head i, .service-visual > a > i { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-style: normal; transition: transform .4s var(--ease-out), background .3s ease, color .3s ease; }
  .service-feature:hover .service-card-head i, .service-visual:hover > a > i { transform: rotate(45deg); background: #fff; color: var(--ink); }
  .service-card-copy { position: absolute; left: 42px; right: 42px; bottom: 42px; color: #fff; }
  .service-card-copy h3, .service-visual h3 { font-family: var(--serif); font-size: clamp(42px, 4.2vw, 66px); font-weight: 400; line-height: .96; letter-spacing: -.045em; }
  .service-card-copy p { margin-top: 18px; color: rgba(255,255,255,.68); }
  .services-stack { display: grid; grid-template-rows: .39fr .61fr; gap: 20px; }
  .service-minimal-dark { background: var(--ink); color: #fff; }
  .service-minimal > a { display: grid; grid-template-columns: auto 1fr 120px auto; gap: 28px; align-items: center; padding: 44px; }
  .service-no { align-self: start; color: var(--accent); font-family: var(--mono); font-size: 10px; }
  .service-minimal p { margin-bottom: 7px; color: rgba(255,255,255,.52); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
  .service-minimal h3 { font-family: var(--serif); font-size: clamp(36px, 4vw, 58px); font-weight: 400; }
  .service-minimal svg { width: 100px; opacity: .62; }
  .service-minimal svg path { fill: none; stroke: var(--accent); stroke-width: 2; stroke-dasharray: 260; stroke-dashoffset: 260; transition: stroke-dashoffset 1.2s var(--ease-out); }
  .service-minimal:hover svg path { stroke-dashoffset: 0; }
  .service-minimal > a > i { font-style: normal; font-size: 20px; transition: transform .35s var(--ease-out); }
  .service-minimal:hover > a > i { transform: rotate(45deg); }
  .service-visual span { position: absolute; left: 34px; top: 32px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
  .service-visual h3 { position: absolute; left: 36px; right: 36px; bottom: 36px; color: #fff; font-size: clamp(35px, 3.7vw, 57px); }
  .service-visual > a > i { position: absolute; right: 32px; top: 25px; color: #fff; }
  .service-ribbon { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
  .service-ribbon span { padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; color: #555d57; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease; }
  .service-ribbon span:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

  .craft { background: var(--paper); }
  .craft-grid { display: grid; grid-template-columns: 1.02fr .8fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
  .craft-visual { position: relative; min-height: 860px; }
  .craft-image { position: absolute; overflow: hidden; box-shadow: var(--shadow); }
  .craft-image img { width: 100%; height: 100%; object-fit: cover; }
  .craft-image-main { inset: 0 16% 12% 0; }
  .craft-image-main img { object-position: 45% center; }
  .craft-image-float { width: 46%; height: 42%; right: 0; bottom: 0; border: 12px solid var(--paper); }
  .craft-seal { position: absolute; right: 4%; top: 12%; display: grid; place-items: center; width: 132px; height: 132px; border-radius: 50%; background: var(--accent); color: var(--ink); box-shadow: 0 18px 45px rgba(17,23,20,.2); }
  .craft-seal span { font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .18em; line-height: 1.5; text-align: center; }
  .craft-seal i { position: absolute; font-family: var(--serif); font-size: 31px; font-style: normal; opacity: .18; }
  .craft-copy > p:not(.eyebrow) { max-width: 560px; margin-top: 32px; color: var(--muted); font-size: 17px; }
  .craft-list { margin-top: 48px; border-top: 1px solid var(--line); }
  .craft-list li { display: grid; grid-template-columns: 42px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--line); }
  .craft-list li > span { color: var(--accent-2); font-family: var(--mono); font-size: 10px; }
  .craft-list strong { font-size: 15px; }
  .craft-list p { margin-top: 5px; color: var(--muted); font-size: 13px; }
  .craft-copy .text-link { margin-top: 36px; }

  .process { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: #fff; }
  .process-light { position: absolute; z-index: -1; width: 820px; height: 820px; left: -330px; bottom: -480px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 120px rgba(255,255,255,.018), 0 0 0 240px rgba(255,255,255,.012); }
  .process-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(70px, 10vw, 150px); }
  .process-intro { position: sticky; top: 150px; align-self: start; }
  .process-intro h2 { margin: 24px 0 30px; font-family: var(--serif); font-size: clamp(45px, 5vw, 74px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
  .process-intro h2 em { color: var(--accent); }
  .process-intro > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.58); }
  .process-intro .button { margin-top: 42px; }
  .process-steps { border-top: 1px solid rgba(255,255,255,.16); }
  .process-steps li { border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-steps button { display: grid; grid-template-columns: 52px 1fr auto; gap: 22px; align-items: center; width: 100%; min-height: 115px; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
  .process-steps button span { color: var(--accent); font-family: var(--mono); font-size: 10px; }
  .process-steps button strong { font-family: var(--serif); font-size: clamp(25px, 2.5vw, 36px); font-weight: 400; transition: color .3s ease; }
  .process-steps button i { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-style: normal; transition: transform .4s var(--ease-out), background .3s ease, color .3s ease; }
  .process-steps li:hover button strong, .process-steps li.is-active button strong { color: var(--accent); }
  .process-steps li.is-active button i { transform: rotate(45deg); background: var(--accent); color: var(--ink); border-color: var(--accent); }
  .process-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-out); }
  .process-answer p { overflow: hidden; max-width: 560px; color: rgba(255,255,255,.58); font-size: 14px; }
  .process-steps li.is-active .process-answer { grid-template-rows: 1fr; }
  .process-steps li.is-active .process-answer p { padding: 0 0 36px 74px; }

  .showcase { position: relative; min-height: max(760px, 93svh); overflow: hidden; isolation: isolate; color: #fff; }
  .showcase-media, .showcase-overlay { position: absolute; inset: 0; }
  .showcase-media { z-index: -2; }
  .showcase-media img { width: 100%; height: 112%; object-fit: cover; object-position: center; }
  .showcase-overlay { z-index: -1; background: linear-gradient(90deg, rgba(8,13,10,.82), rgba(8,13,10,.32) 60%, rgba(8,13,10,.2)), linear-gradient(0deg, rgba(8,13,10,.62), transparent 48%); }
  .showcase-content { display: flex; flex-direction: column; justify-content: center; min-height: max(760px, 93svh); padding-block: 100px; }
  .showcase-kicker { display: flex; gap: 20px; align-items: center; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
  .showcase-kicker span { color: var(--accent); font-family: var(--mono); }
  .showcase blockquote { max-width: 1060px; margin: 38px 0 50px; font-family: var(--serif); font-size: clamp(48px, 6vw, 91px); line-height: .99; letter-spacing: -.055em; }
  .showcase blockquote em { color: #efc49d; }
  .showcase-content .button { align-self: flex-start; }
  .showcase-facts { position: absolute; right: max(36px, calc((100vw - var(--max))/2)); bottom: 38px; display: flex; gap: 34px; }
  .showcase-facts div { min-width: 120px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.3); }
  .showcase-facts span { color: var(--accent); font-family: var(--mono); font-size: 9px; }
  .showcase-facts p { margin-top: 6px; font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

  .area { background: var(--paper); }
  .area-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 100px; align-items: end; }
  .area-copy > p { max-width: 560px; color: var(--muted); font-size: 17px; }
  .area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
  .area-tags span { position: relative; padding: 13px 18px 13px 34px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
  .area-tags span::before { content: ""; position: absolute; left: 16px; top: 50%; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; background: var(--accent-2); }

  .contact { position: relative; overflow: hidden; isolation: isolate; padding: clamp(100px, 10vw, 165px) 0; background: #171e1a; color: #fff; }
  .contact-orbit { position: absolute; z-index: -1; right: -240px; top: -320px; width: 850px; height: 850px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 110px rgba(255,255,255,.018), 0 0 0 220px rgba(255,255,255,.011); }
  .contact-grid { display: grid; grid-template-columns: .73fr 1fr; gap: clamp(70px, 9vw, 140px); }
  .contact-info h2 { margin: 26px 0 30px; font-family: var(--serif); font-size: clamp(50px, 5.6vw, 83px); font-weight: 400; line-height: .98; letter-spacing: -.05em; }
  .contact-info h2 em { color: var(--accent); }
  .contact-info > p:not(.eyebrow) { max-width: 460px; color: rgba(255,255,255,.58); }
  .contact-direct { display: grid; gap: 24px; margin-top: 62px; }
  .contact-direct div { display: grid; gap: 3px; }
  .contact-direct span { color: rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
  .contact-direct a { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 31px); }
  .contact-form { padding: clamp(30px, 4vw, 58px); border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.045); backdrop-filter: blur(18px); }
  .honeypot { position: absolute; left: -9999px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-form label { display: block; margin-bottom: 26px; }
  .contact-form label > span { display: block; margin-bottom: 9px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; outline: 0; background: transparent; color: #fff; transition: border-color .25s ease, background .25s ease; }
  .contact-form input { height: 52px; }
  .contact-form textarea { min-height: 135px; padding: 15px 0; resize: vertical; }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.28); }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
  .form-submit { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 12px; }
  .form-submit p { max-width: 280px; color: rgba(255,255,255,.42); font-size: 11px; }
  .alert { margin-bottom: 26px; padding: 14px 17px; border-left: 3px solid; font-size: 13px; }
  .alert.success { border-color: #74c594; background: rgba(116,197,148,.12); }
  .alert.error { border-color: #e47f6f; background: rgba(228,127,111,.12); }

  .site-footer { position: relative; z-index: 0; overflow: hidden; padding: 120px 0 28px; background: #0c110e; color: #fff; }
  .footer-orbit { position: absolute; right: -18vw; top: -26vw; width: 62vw; height: 62vw; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; box-shadow: 0 0 0 10vw rgba(255,255,255,.009), 0 0 0 20vw rgba(255,255,255,.006); }
  .footer-top { position: relative; padding-bottom: 95px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer-giant-link { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-top: 27px; font-family: var(--serif); font-size: clamp(48px, 7.3vw, 112px); line-height: .92; letter-spacing: -.06em; }
  .footer-giant-link span, .footer-giant-link strong { grid-column: 1; font-weight: 400; }
  .footer-giant-link strong { color: var(--accent); font-style: italic; }
  .footer-giant-link i { grid-column: 2; grid-row: 1 / span 2; align-self: center; display: grid; place-items: center; width: clamp(90px, 10vw, 150px); height: clamp(90px, 10vw, 150px); border: 1px solid rgba(255,255,255,.26); border-radius: 50%; font-family: var(--sans); font-size: 28px; font-style: normal; transition: transform .5s var(--ease-out), background .3s ease, color .3s ease; }
  .footer-giant-link:hover i { transform: rotate(45deg); background: var(--accent); color: var(--ink); }
  .footer-grid { position: relative; display: grid; grid-template-columns: 1.45fr .62fr .85fr .85fr; gap: 58px; padding: 75px 0; }
  .brand-light { color: #fff; }
  .footer-brand-column p { max-width: 360px; margin-top: 28px; color: rgba(255,255,255,.46); font-size: 13px; }
  .footer-grid > div:not(.footer-brand-column) { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
  .footer-label { margin-bottom: 12px; color: var(--accent); font-size: 9px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
  .footer-grid a { transition: color .25s ease; }
  .footer-grid a:hover { color: var(--accent); }
  .footer-grid span:not(.footer-label) { color: rgba(255,255,255,.55); }
  .footer-availability p { display: flex; align-items: center; gap: 9px; }
  .footer-availability p i { width: 7px; height: 7px; border-radius: 50%; background: #69d18c; box-shadow: 0 0 0 5px rgba(105,209,140,.1); }
  .footer-availability > a { margin-top: 10px; color: rgba(255,255,255,.6); }
  .footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.36); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }

  .page-hero { position: relative; min-height: 700px; overflow: hidden; isolation: isolate; background: var(--ink); color: #fff; }
  .page-hero-media, .page-hero-shade, .page-hero-grid { position: absolute; inset: 0; }
  .page-hero-media { z-index: -3; }
  .page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .projects-hero .page-hero-media img { object-position: center 55%; }
  .page-hero-shade { z-index: -2; background: linear-gradient(90deg, rgba(8,13,10,.88), rgba(8,13,10,.4) 65%, rgba(8,13,10,.18)), linear-gradient(0deg, rgba(8,13,10,.58), transparent); }
  .page-hero-inner { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 700px; padding-top: 170px; padding-bottom: 90px; }
  .page-hero h1 { max-width: 980px; margin-top: 28px; font-family: var(--serif); font-size: clamp(68px, 8vw, 124px); font-weight: 400; line-height: .88; letter-spacing: -.065em; }
  .page-hero h1 em { color: var(--accent); }
  .page-hero-lead { max-width: 590px; margin-top: 38px; color: rgba(255,255,255,.68); font-size: 17px; }
  .page-number { position: absolute; right: 0; bottom: 92px; color: rgba(255,255,255,.36); font-family: var(--mono); font-size: 10px; letter-spacing: .16em; }
  .content-grid { display: grid; grid-template-columns: .32fr 1fr; gap: clamp(60px, 9vw, 140px); align-items: start; }
  .content-grid aside { position: sticky; top: 135px; padding: 34px; border: 1px solid var(--line); }
  .aside-mark { display: block; margin-bottom: 60px; color: var(--accent-2); font-family: var(--serif); font-size: 44px; }
  .content-grid aside p { margin-bottom: 30px; color: var(--muted); font-size: 13px; }
  .prose { max-width: 850px; font-size: 17px; }
  .prose > :first-child { margin-top: 0; }
  .prose h2 { margin: 0 0 34px; font-family: var(--serif); font-size: clamp(43px, 4.6vw, 68px); font-weight: 400; line-height: 1.02; letter-spacing: -.045em; }
  .prose h3 { margin: 60px 0 18px; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 400; }
  .prose p { margin: 0 0 22px; color: #515852; }
  .prose ul, .prose ol { margin: 30px 0; border-top: 1px solid var(--line); }
  .prose li { position: relative; padding: 18px 0 18px 38px; border-bottom: 1px solid var(--line); }
  .prose li::before { content: "↗"; position: absolute; left: 0; color: var(--accent-2); }
  .prose blockquote { margin: 55px 0; padding: 35px 0 35px 40px; border-left: 2px solid var(--accent); font-family: var(--serif); font-size: 30px; line-height: 1.3; }
  .prose a { color: var(--accent-2); border-bottom: 1px solid; }
  .page-cta { position: relative; overflow: hidden; isolation: isolate; padding: clamp(100px, 11vw, 175px) 0; background: var(--ink); color: #fff; }
  .page-cta-orbit { position: absolute; z-index: -1; right: -190px; top: -310px; width: 720px; height: 720px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 110px rgba(255,255,255,.015), 0 0 0 220px rgba(255,255,255,.008); }
  .page-cta h2 { max-width: 950px; color: #fff; }
  .page-cta .button { margin-top: 46px; }

  .projects-index { background: var(--paper); }
  .projects-intro { display: grid; grid-template-columns: .36fr 1fr; gap: 70px; margin-bottom: 90px; }
  .projects-intro > p:last-child { max-width: 620px; color: var(--muted); font-size: 17px; }
  .projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 100px 24px; }
  .project-card.featured { grid-column: 1 / -1; }
  .project-card-image { position: relative; display: block; height: 520px; overflow: hidden; background: var(--ink); }
  .project-card.featured .project-card-image { height: min(72vw, 760px); }
  .project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out), filter .5s ease; }
  .project-card-image:hover img { transform: scale(1.045); filter: saturate(1.08); }
  .project-index { position: absolute; left: 25px; top: 22px; color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
  .project-open { position: absolute; right: 24px; top: 22px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(12,17,14,.18); color: #fff; backdrop-filter: blur(8px); transition: transform .4s var(--ease-out), background .3s ease, color .3s ease; }
  .project-card-image:hover .project-open { transform: rotate(45deg); background: #fff; color: var(--ink); }
  .project-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--accent); font-family: var(--serif); font-size: 50px; background: radial-gradient(circle at 70% 20%, #253029, var(--ink)); }
  .project-card-meta { display: flex; justify-content: space-between; gap: 30px; margin-top: 26px; }
  .project-card-meta span, .project-card-meta small { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .project-card-meta h2 { font-family: var(--serif); font-size: clamp(29px, 3vw, 45px); font-weight: 400; line-height: 1.02; }
  .project-card-meta > p { min-width: 110px; font-size: 13px; }
  .project-excerpt { max-width: 580px; margin-top: 18px; color: var(--muted); font-size: 13px; }
  .projects-empty { display: grid; grid-template-columns: .35fr 1fr; gap: 70px; padding: 85px 0; border-block: 1px solid var(--line); }
  .projects-empty-number { color: var(--accent); font-family: var(--serif); font-size: 130px; line-height: .8; opacity: .55; }
  .projects-empty h2 { margin: 22px 0; font-family: var(--serif); font-size: clamp(45px, 5vw, 74px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
  .projects-empty h2 em { color: var(--accent-2); }
  .projects-empty > div > p:not(.eyebrow) { max-width: 520px; color: var(--muted); }
  .projects-empty .button { margin-top: 35px; }

  .project-hero { position: relative; min-height: 88svh; overflow: hidden; isolation: isolate; background: var(--ink); color: #fff; }
  .project-hero-image, .project-hero-shade { position: absolute; inset: 0; }
  .project-hero-image { z-index: -3; }
  .project-hero-image img { width: 100%; height: 110%; object-fit: cover; }
  .project-hero-shade { z-index: -2; background: linear-gradient(0deg, rgba(8,13,10,.82), transparent 65%), linear-gradient(90deg, rgba(8,13,10,.55), transparent); }
  .project-hero-content { display: flex; flex-direction: column; justify-content: flex-end; min-height: 88svh; padding: 160px 0 76px; }
  .project-hero h1 { max-width: 1080px; margin: 26px 0 48px; font-family: var(--serif); font-size: clamp(63px, 8vw, 122px); font-weight: 400; line-height: .9; letter-spacing: -.06em; }
  .project-facts { display: flex; gap: 70px; }
  .project-facts p { font-family: var(--serif); font-size: 25px; }
  .project-facts small { display: block; margin-bottom: 8px; color: rgba(255,255,255,.48); font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .project-story { background: var(--paper); }
  .project-story-grid { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(70px, 10vw, 150px); }
  .project-story h2 { margin-top: 22px; font-family: var(--serif); font-size: clamp(44px, 5vw, 73px); font-weight: 400; line-height: 1.02; letter-spacing: -.045em; }
  .project-gallery { padding: 0 0 clamp(100px, 10vw, 170px); background: var(--paper); }
  .gallery-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 38px; }
  .gallery-head > span { color: var(--muted); font-family: var(--mono); font-size: 10px; }
  .project-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .project-gallery-grid figure.wide { grid-column: 1 / -1; }
  .project-gallery-grid button { position: relative; width: 100%; height: 540px; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; }
  .project-gallery-grid figure.wide button { height: min(70vw, 760px); }
  .project-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
  .project-gallery-grid button:hover img { transform: scale(1.035); }
  .project-gallery-grid button span { position: absolute; right: 22px; top: 22px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); font-size: 24px; }
  .project-next { padding: clamp(90px, 10vw, 155px) 0; background: var(--paper-2); }
  .project-next .container { display: grid; grid-template-columns: .4fr 1fr; gap: 80px; align-items: start; }
  .project-next .button { margin-top: 38px; }
  .lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 5vw; background: rgba(5,8,6,.96); }
  .lightbox[hidden] { display: none; }
  .lightbox img { max-width: 100%; max-height: 84vh; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
  .lightbox-close { position: absolute; right: 28px; top: 22px; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }
  .lightbox-caption { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: 12px; }

  .not-found { position: relative; display: grid; place-items: center; min-height: 100svh; overflow: hidden; isolation: isolate; background: var(--ink); color: #fff; text-align: center; }
  .not-found-orbit { position: absolute; z-index: -1; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 110px rgba(255,255,255,.018), 0 0 0 220px rgba(255,255,255,.01); }
  .not-found .container { padding: 150px 0 80px; }
  .not-found .eyebrow { justify-content: center; }
  .not-found-code { display: block; margin: 20px 0 -38px; color: rgba(255,255,255,.06); font-family: var(--serif); font-size: clamp(160px, 27vw, 390px); line-height: .8; }
  .not-found h1 { position: relative; font-family: var(--serif); font-size: clamp(55px, 7vw, 100px); font-weight: 400; line-height: .92; letter-spacing: -.06em; }
  .not-found h1 em { color: var(--accent); }
  .not-found p:not(.eyebrow) { margin: 30px auto; color: rgba(255,255,255,.55); }
}

@layer responsive {
  @media (hover:hover) and (pointer:fine) {
    .cursor-enabled a, .cursor-enabled button { cursor: none; }
  }

  @media (max-width: 1180px) {
    :root { --header-h: 84px; }
    .header-cta span { display: none; }
    .header-cta { margin-left: 25px; padding-left: 22px; }
    .hero-copy { width: 92%; }
    .hero-bottom { grid-template-columns: 1fr; gap: 34px; }
    .hero-signature { display: none; }
    .services-stage { min-height: 820px; }
    .craft-visual { min-height: 700px; }
    .footer-grid { grid-template-columns: 1.2fr .7fr .9fr; }
    .footer-availability { grid-column: 2 / -1; }
  }

  @media (max-width: 1000px) {
    .container { width: min(calc(100% - 44px), var(--max)); }
    .site-header.menu-open { background: var(--ink); color: #fff; }
    .header-inner { justify-content: space-between; }
    .main-nav { position: fixed; inset: 0; z-index: -1; display: grid; align-content: space-between; visibility: hidden; padding: 130px 40px 42px; background: var(--ink); color: #fff; opacity: 0; transform: translateY(-20px); transition: opacity .35s ease, transform .5s var(--ease-out), visibility .35s; }
    .main-nav.open { visibility: visible; opacity: 1; transform: none; }
    .main-nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav-links a { display: flex; align-items: center; gap: 25px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--serif); font-size: clamp(35px, 7vw, 58px); font-weight: 400; line-height: 1; }
    .main-nav-links a span { display: block; width: 24px; color: var(--accent); font-family: var(--mono); font-size: 9px; }
    .main-nav-links a::after { display: none; }
    .main-nav-meta { display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: 10px; }
    .menu-toggle { position: relative; z-index: 2; display: flex; align-items: center; gap: 14px; padding: 10px 0 10px 15px; color: inherit; }
    .menu-toggle-label { font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
    .menu-toggle-lines { position: relative; width: 30px; height: 20px; }
    .menu-toggle-lines i { position: absolute; right: 0; width: 30px; height: 1px; background: currentColor; transition: top .35s var(--ease-out), transform .35s var(--ease-out), width .35s ease; }
    .menu-toggle-lines i:first-child { top: 6px; }
    .menu-toggle-lines i:last-child { top: 14px; width: 20px; }
    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { top: 10px; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { top: 10px; width: 30px; transform: rotate(-45deg); }
    .header-cta { display: none; }
    body.menu-open { overflow: hidden; }

    .manifest-grid, .craft-grid, .process-grid, .contact-grid, .area-grid, .project-story-grid { grid-template-columns: 1fr; }
    .manifest-label { flex-direction: row; }
    .services-stage { grid-template-columns: 1fr; min-height: auto; }
    .service-feature { height: 760px; }
    .services-stack { grid-template-rows: 320px 600px; }
    .craft-grid { gap: 85px; }
    .craft-visual { width: min(100%, 780px); }
    .process-intro { position: static; }
    .showcase-facts { display: none; }
    .area-grid { gap: 55px; }
    .contact-grid { gap: 70px; }
    .footer-giant-link { grid-template-columns: 1fr; }
    .footer-giant-link i { grid-column: 1; grid-row: auto; margin-top: 34px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-availability { grid-column: auto; }
    .content-grid { grid-template-columns: 1fr; }
    .content-grid aside { position: static; display: grid; grid-template-columns: auto 1fr auto; gap: 25px; align-items: center; }
    .aside-mark, .content-grid aside p { margin: 0; }
    .projects-empty { grid-template-columns: .25fr 1fr; }
    .project-next .container { grid-template-columns: 1fr; }
  }

  @media (max-width: 740px) {
    .motion-enabled [data-reveal="left"], .motion-enabled [data-reveal="right"] { transform: translateY(38px); }
    .container { width: min(calc(100% - 30px), var(--max)); }
    .section-pad { padding: 88px 0; }
    .brand-symbol { width: 40px; height: 40px; }
    .brand-copy { font-size: 18px; }
    .header-inner { min-height: 76px; }
    .main-nav { padding: 110px 22px 30px; }
    .main-nav-meta { flex-direction: column; }
    .hero { min-height: 780px; }
    .hero-inner { min-height: 780px; align-items: center; padding: 132px 0 120px; }
    .hero-copy { width: 100%; }
    .hero-title { font-size: clamp(53px, 15vw, 76px); }
    .hero-bottom { margin-top: 30px; gap: 26px; }
    .hero-lead { max-width: 92%; font-size: 16px; }
    .hero-actions { align-items: stretch; }
    .hero-actions .button { flex: 1; padding-inline: 16px; }
    .round-link { width: 82px; height: 82px; flex: 0 0 82px; }
    .round-link span { font-size: 8px; }
    .round-link i { margin-top: -16px; }
    .hero-trust { left: 15px; right: 15px; gap: 8px; font-size: 7px; letter-spacing: .1em; }
    .hero-scroll { display: none; }
    .manifest-grid { gap: 45px; }
    .display-statement { font-size: clamp(39px, 11vw, 57px); }
    .manifest-note { grid-template-columns: 45px 1fr; margin-top: 45px; }
    .section-head { grid-template-columns: 1fr; gap: 34px; margin-bottom: 45px; }
    .service-feature { height: 620px; }
    .services-stack { grid-template-rows: 280px 500px; }
    .service-minimal > a { grid-template-columns: auto 1fr auto; padding: 28px; }
    .service-minimal svg { display: none; }
    .service-card-head { left: 24px; right: 24px; top: 24px; }
    .service-card-copy { left: 24px; right: 24px; bottom: 26px; }
    .service-card-copy h3 { font-size: 48px; }
    .service-visual span { left: 24px; top: 24px; }
    .service-visual h3 { left: 24px; right: 24px; bottom: 25px; font-size: 39px; }
    .service-visual > a > i { right: 22px; top: 18px; }
    .craft-visual { min-height: 560px; }
    .craft-image-main { right: 9%; bottom: 10%; }
    .craft-image-float { width: 48%; height: 38%; border-width: 7px; }
    .craft-seal { width: 96px; height: 96px; right: 0; top: 8%; }
    .craft-copy h2 { font-size: 51px; }
    .process-steps button { grid-template-columns: 35px 1fr auto; min-height: 96px; gap: 12px; }
    .process-steps button strong { font-size: 25px; }
    .process-steps li.is-active .process-answer p { padding-left: 47px; }
    .showcase { min-height: 760px; }
    .showcase-content { min-height: 760px; }
    .showcase blockquote { font-size: clamp(46px, 13vw, 67px); }
    .area h2 { font-size: 49px; }
    .contact-form { padding: 25px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-submit { flex-direction: column; align-items: stretch; }
    .form-submit .button { width: 100%; }
    .footer-top { padding-bottom: 70px; }
    .footer-giant-link { font-size: clamp(46px, 13vw, 68px); }
    .footer-grid { grid-template-columns: 1fr; gap: 42px; padding: 60px 0; }
    .footer-bottom { flex-direction: column; gap: 10px; }

    .page-hero, .page-hero-inner { min-height: 620px; }
    .page-hero-inner { padding: 130px 0 65px; }
    .page-hero h1 { font-size: clamp(61px, 17vw, 88px); }
    .page-number { display: none; }
    .content-grid aside { grid-template-columns: auto 1fr; }
    .content-grid aside .button { grid-column: 1 / -1; }
    .projects-intro, .projects-empty { grid-template-columns: 1fr; gap: 35px; }
    .projects-grid { grid-template-columns: 1fr; gap: 75px; }
    .project-card.featured { grid-column: auto; }
    .project-card-image, .project-card.featured .project-card-image { height: 520px; }
    .projects-empty-number { font-size: 95px; }
    .project-hero, .project-hero-content { min-height: 760px; }
    .project-hero-content { padding-bottom: 55px; }
    .project-hero h1 { font-size: clamp(58px, 16vw, 84px); }
    .project-facts { flex-wrap: wrap; gap: 25px 42px; }
    .project-gallery-grid { grid-template-columns: 1fr; }
    .project-gallery-grid figure.wide { grid-column: auto; }
    .project-gallery-grid button, .project-gallery-grid figure.wide button { height: 470px; }
  }

  @media (max-width: 430px) {
    .hero-title { font-size: 50px; }
    .hero-actions { gap: 12px; }
    .hero-actions .button { min-height: 57px; font-size: 9px; }
    .round-link { width: 72px; height: 72px; flex-basis: 72px; }
    .hero-trust span:nth-of-type(3), .hero-trust i:nth-of-type(2) { display: none; }
    .service-feature { height: 540px; }
    .services-stack { grid-template-rows: 250px 440px; }
    .service-minimal h3 { font-size: 35px; }
    .craft-visual { min-height: 470px; }
    .craft-copy h2 { font-size: 45px; }
    .process-intro h2 { font-size: 45px; }
    .contact-info h2 { font-size: 52px; }
    .project-card-image, .project-card.featured .project-card-image { height: 430px; }
    .project-gallery-grid button, .project-gallery-grid figure.wide button { height: 390px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .marquee-track { transform: none !important; }
    .cursor, .cursor-dot { display: none !important; }
  }
}
