:root {
  --brand: #5d6f84;
  --brand-deep: #314156;
  --brand-dark: #202c3b;
  --ink: #1e242b;
  --muted: #6e747b;
  --paper: #f6f5f2;
  --paper-2: #eeece7;
  --white: #ffffff;
  --line: rgba(49,65,86,.16);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: 1380px;
  --header-h: 88px;
  --ease: cubic-bezier(.22,.75,.18,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 96px), var(--container)); margin: 0 auto; }
.section { padding: 132px 0; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 1000; background: #fff; padding: 12px 18px; border: 1px solid var(--line); }
.skip-link:focus { top: 20px; }
.scroll-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 300; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--brand); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 200; height: var(--header-h); transition: background .35s ease, box-shadow .35s ease, height .35s var(--ease); }
.site-header::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.22); transition: background .3s ease; }
.site-header.scrolled { height: 76px; background: rgba(255,255,255,.97); box-shadow: 0 14px 40px rgba(26,34,44,.08); backdrop-filter: blur(16px); }
.site-header.scrolled::after { background: var(--line); }
.header-inner { width: min(calc(100% - 64px), 1480px); height: 100%; margin: 0 auto; display: grid; grid-template-columns: 238px 1fr auto; align-items: center; gap: 38px; }
.brand { display: flex; align-items: center; width: 220px; height: 62px; overflow: hidden; background: #fff; }
.brand img { width: 100%; height: 100%; object-fit: contain; transition: opacity .25s ease; }
.brand:hover img { opacity: .78; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; padding: 12px 0; color: rgba(255,255,255,.92); font-size: 13px; font-weight: 500; line-height: 1; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .28s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.site-header.scrolled .desktop-nav a { color: var(--brand-deep); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.icon-link { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); color: #fff; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.icon-link:hover { background: #fff; color: var(--brand-deep); }
.site-header.scrolled .icon-link { color: var(--brand-deep); border-color: var(--line); }
.site-header.scrolled .icon-link:hover { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: transparent; position: relative; }
.menu-toggle span { position: absolute; left: 12px; right: 12px; height: 1px; background: currentColor; transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle.active span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle.active span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-nav { position: fixed; inset: var(--header-h) 0 0; z-index: 190; padding: 34px 32px 30px; background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .35s var(--ease); overflow: auto; }
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav-top { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.mobile-nav nav { padding: 18px 0 28px; }
.mobile-nav nav a { display: grid; grid-template-columns: 42px 1fr; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 34px; line-height: 1.08; }
.mobile-nav nav a span { font-family: var(--sans); font-size: 12px; color: var(--brand); }
.mobile-nav-foot { display: grid; gap: 12px; }
.mobile-nav-foot a { display: flex; gap: 10px; align-items: center; font-size: 15px; }

/* Buttons + links */
.btn { min-height: 56px; padding: 7px 8px 7px 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; border: 1px solid transparent; font-size: 13px; font-weight: 600; line-height: 1; transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; transition: transform .3s var(--ease), background .3s ease, color .3s ease; }
.btn .icon { width: 17px; height: 17px; }
.btn:hover .btn-icon { transform: translateX(3px); }
.btn-brand { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
.btn-brand .btn-icon { background: #fff; color: var(--brand-deep); }
.btn-brand:hover { background: #25364b; border-color: #25364b; }
.btn-light { background: #fff; color: var(--brand-deep); border-color: #fff; }
.btn-light .btn-icon { background: var(--brand-deep); color: #fff; }
.btn-light:hover { background: var(--paper); border-color: var(--paper); }
.btn-outline { background: transparent; color: var(--brand-deep); border-color: rgba(49,65,86,.34); }
.btn-outline .btn-icon { background: var(--brand-deep); color: #fff; }
.btn-outline:hover { border-color: var(--brand-deep); }
.btn-compact { min-height: 48px; padding: 5px 6px 5px 18px; font-size: 12.5px; }
.btn-compact .btn-icon { width: 36px; height: 36px; }
.site-header:not(.scrolled) .btn-brand { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); backdrop-filter: blur(10px); }
.site-header:not(.scrolled) .btn-brand .btn-icon { background: #fff; }
.site-header:not(.scrolled) .btn-brand:hover { background: #fff; color: var(--brand-deep); }
.link-arrow { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 5px; border-bottom: 1px solid rgba(49,65,86,.36); color: var(--brand-deep); font-size: 14px; font-weight: 600; line-height: 1.2; }
.link-arrow .icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover .icon { transform: translate(3px,-3px); }
.link-arrow-light { color: #fff; border-color: rgba(255,255,255,.4); }

.section-label { margin: 0; color: var(--brand-deep); font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.section-label.light { color: rgba(255,255,255,.78); }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--serif); font-weight: 400; }
h2 { font-size: clamp(52px,5vw,78px); line-height: 1.02; letter-spacing: -.035em; }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: stretch; overflow: hidden; color: #fff; background: var(--brand-dark); }
.hero-media { position: absolute; inset: -5%; background: url('https://images.pexels.com/photos/28586195/pexels-photo-28586195/free-photo-of-modern-poolside-patio-with-glass-doors.jpeg?auto=compress&w=2200') center 48%/cover no-repeat; transform: scale(1.03); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,25,34,.72) 0%, rgba(17,25,34,.44) 50%, rgba(17,25,34,.1) 100%), linear-gradient(0deg, rgba(17,25,34,.52), transparent 45%); }
.hero-frame { position: absolute; inset: calc(var(--header-h) + 26px) 32px 30px; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.hero-content { position: relative; z-index: 2; min-height: 100svh; padding-top: calc(var(--header-h) + 106px); padding-bottom: 132px; display: grid; grid-template-columns: minmax(0, 1.25fr) .45fr; gap: 80px; align-items: end; }
.hero-copy { max-width: 860px; }
.hero h1 { max-width: 920px; margin: 24px 0 28px; font-size: clamp(74px,7.8vw,126px); line-height: .9; letter-spacing: -.055em; text-wrap: balance; }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: rgba(255,255,255,.88); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-side-note { align-self: center; justify-self: end; width: 210px; display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.8; }
.side-line { width: 36px; height: 1px; margin-top: 13px; background: rgba(255,255,255,.62); }
.hero-bottom { position: absolute; z-index: 3; left: 32px; right: 32px; bottom: 30px; min-height: 76px; display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)) auto; align-items: center; background: rgba(17,25,34,.56); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.14); }
.hero-bottom-item { padding: 0 24px; border-right: 1px solid rgba(255,255,255,.14); }
.hero-bottom-item small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-bottom-item strong { font-size: 14px; font-weight: 500; }
.hero-scroll { height: 76px; padding: 0 26px; display: flex; align-items: center; gap: 18px; color: #fff; font-size: 13px; font-weight: 600; }
.hero-scroll .icon { width: 16px; transition: transform .3s var(--ease); }
.hero-scroll:hover .icon { transform: translateX(4px); }
.hero-load { opacity: 0; transform: translateY(26px); animation: heroIn .85s .35s both var(--ease); }
.hero-side-note.hero-load { animation-delay: .55s; }
.hero-bottom.hero-load { animation-delay: .7s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Intro */
.intro { background: var(--paper); }
.intro-layout { display: grid; grid-template-columns: .42fr 1.45fr .58fr; gap: 70px; align-items: start; }
.intro-mark { padding-top: 12px; display: grid; gap: 22px; }
.intro-mark > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--brand); font-size: 13px; }
.intro-statement h2 { margin: 0; max-width: 840px; font-size: clamp(52px,5.4vw,82px); line-height: .99; }
.intro-copy { padding-top: 17px; }
.intro-copy p { margin-bottom: 28px; color: #515860; font-size: 18px; line-height: 1.75; }

/* Project feature */
.project-feature { background: #fff; }
.project-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 84px; align-items: end; margin-bottom: 52px; }
.project-heading h2 { max-width: 850px; margin: 18px 0 0; }
.project-intro { margin: 0 0 8px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.feature-visual { position: relative; width: min(calc(100% - 64px), 1580px); height: min(74vw, 820px); margin: 0 auto; overflow: hidden; background: var(--paper-2); }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature-visual:hover img { transform: scale(1.025); }
.feature-visual-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,25,34,.55), transparent 42%); }
.feature-tag { position: absolute; left: 34px; bottom: 30px; display: grid; gap: 6px; color: #fff; }
.feature-tag span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.72); }
.feature-tag strong { font-family: var(--serif); font-size: 32px; font-weight: 400; }
.visual-control { position: absolute; top: 26px; right: 26px; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); background: rgba(20,28,38,.25); color: #fff; backdrop-filter: blur(8px); cursor: pointer; transition: .3s ease; }
.visual-control:hover { background: #fff; color: var(--brand-deep); }
.project-data { padding-top: 42px; display: grid; grid-template-columns: .72fr 1.05fr .72fr; gap: 48px; align-items: start; }
.project-data-title { display: grid; grid-template-columns: 34px 1fr; gap: 18px; align-items: start; }
.project-data-title > span { color: var(--brand); font-size: 12px; padding-top: 10px; }
.project-data-title h3 { margin: 0; font-size: 38px; line-height: 1.08; }
.project-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.project-facts > div { min-height: 92px; padding: 20px 0; display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; border-bottom: 1px solid var(--line); }
.project-facts .icon { color: var(--brand); margin-top: 3px; }
.project-facts small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 12px; }
.project-facts strong { font-size: 15px; font-weight: 600; }
.project-data-copy { color: var(--muted); font-size: 17px; line-height: 1.75; }

/* Service stories */
.service-story { background: var(--paper); }
.story-reverse { background: #fff; }
.story-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.78fr); gap: 96px; align-items: center; }
.story-reverse .story-media { order: 2; }
.story-reverse .story-copy { order: 1; }
.story-media { position: relative; min-height: 700px; }
.story-large { position: absolute; inset: 0 11% 8% 0; overflow: hidden; }
.story-large.portrait { inset: 0 0 7% 16%; }
.story-large img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.story-media:hover .story-large img { transform: scale(1.025); }
.story-small { position: absolute; right: 0; bottom: 0; width: 42%; background: #fff; padding: 8px; box-shadow: 0 20px 50px rgba(28,36,45,.12); }
.story-reverse .story-small { left: 0; right: auto; width: 48%; }
.story-small.landscape { bottom: 0; }
.story-small img { aspect-ratio: 1/1; object-fit: cover; }
.story-small span { display: block; padding: 12px 10px 8px; color: var(--muted); font-size: 12px; }
.story-copy h2 { margin: 18px 0 26px; font-size: clamp(50px,4.6vw,72px); }
.story-lead { color: #4c545d; font-size: 20px; line-height: 1.65; }
.feature-list { list-style: none; margin: 34px 0 36px; padding: 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--white); color: var(--brand-deep); border: 1px solid var(--line); }
.story-reverse .feature-icon { background: var(--paper); }
.feature-list strong { display: block; margin-bottom: 4px; font-size: 16px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 15px; }
.spec-points { margin: 34px 0 36px; border-top: 1px solid var(--line); }
.spec-points > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.spec-points span { color: var(--brand); font-size: 12px; padding-top: 4px; }
.spec-points p { margin: 0; color: #515860; font-size: 16px; }

/* Image ribbon */
.image-ribbon { display: grid; grid-template-columns: 1fr 1.2fr 1fr; height: 540px; background: var(--brand-dark); }
.image-ribbon-item { position: relative; overflow: hidden; }
.image-ribbon-item + .image-ribbon-item { border-left: 1px solid rgba(255,255,255,.22); }
.image-ribbon-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.image-ribbon-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,23,31,.65), transparent 50%); }
.image-ribbon-item:hover img { transform: scale(1.04); filter: saturate(.88); }
.image-ribbon-item div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: flex; justify-content: space-between; align-items: end; color: #fff; }
.image-ribbon-item span { color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.image-ribbon-item strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }

/* Process */
.process { color: #fff; background: var(--brand-dark); }
.process-layout { display: grid; grid-template-columns: .62fr 1fr; gap: 100px; align-items: start; }
.process-intro { position: sticky; top: 120px; }
.process-intro h2 { margin: 18px 0 28px; font-size: clamp(56px,5.5vw,84px); }
.process-intro > p:not(.section-label) { max-width: 480px; margin-bottom: 30px; color: rgba(255,255,255,.68); font-size: 17px; }
.process-list { border-top: 1px solid rgba(255,255,255,.18); }
.process-item { min-height: 160px; display: grid; grid-template-columns: 50px 58px 1fr 30px; gap: 22px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.18); transition: background .3s ease, padding .3s var(--ease); }
.process-item:hover { padding-left: 18px; background: rgba(255,255,255,.045); }
.process-number { color: rgba(255,255,255,.45); font-size: 12px; }
.process-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.9); }
.process-item h3 { margin: 0 0 4px; font-size: 36px; line-height: 1; }
.process-item p { margin: 0; max-width: 560px; color: rgba(255,255,255,.62); font-size: 15px; }
.process-arrow { color: rgba(255,255,255,.5); transition: transform .3s var(--ease), color .3s ease; }
.process-item:hover .process-arrow { transform: translateX(6px); color: #fff; }

/* Gallery */
.gallery { background: #fff; }
.gallery-head { margin-bottom: 52px; display: grid; grid-template-columns: 1.15fr .55fr; gap: 80px; align-items: end; }
.gallery-head h2 { margin: 18px 0 0; max-width: 860px; }
.gallery-head > p { color: var(--muted); font-size: 17px; }
.gallery-grid { width: min(calc(100% - 64px), 1580px); margin: 0 auto; display: grid; grid-template-columns: 1.25fr .72fr .72fr; grid-template-rows: 360px 360px; gap: 12px; }
.gallery-card { position: relative; padding: 0; border: 0; background: var(--paper-2); overflow: hidden; cursor: pointer; text-align: left; }
.gallery-wide { grid-row: 1 / 3; }
.gallery-tall { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,26,35,.62), transparent 50%); transition: background .3s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card span { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 14px; align-items: end; color: #fff; }
.gallery-card small { grid-column: 1; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.gallery-card strong { grid-column: 1; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.gallery-card .icon { grid-column: 2; grid-row: 1 / 3; align-self: center; width: 20px; height: 20px; transition: transform .3s var(--ease); }
.gallery-card:hover .icon { transform: scale(1.18); }

/* Studio */
.studio { position: relative; min-height: 760px; padding: 0; display: grid; align-items: end; overflow: hidden; background: var(--brand-dark); color: #fff; }
.studio-media { position: absolute; inset: 0; }
.studio-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.studio-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,25,34,.84) 0%, rgba(18,25,34,.58) 50%, rgba(18,25,34,.2) 100%), linear-gradient(0deg, rgba(18,25,34,.45), transparent); }
.studio-content { position: relative; z-index: 2; padding: 120px 0 90px; display: grid; grid-template-columns: .55fr 1fr; gap: 90px; align-items: end; }
.studio-stat { align-self: end; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.32); }
.studio-stat strong { display: block; font-family: var(--serif); font-size: 86px; line-height: .95; font-weight: 400; }
.studio-stat > span { display: block; max-width: 220px; margin-top: 10px; color: rgba(255,255,255,.66); font-size: 14px; }
.studio-copy { max-width: 770px; }
.studio-copy h2 { margin: 18px 0 24px; }
.studio-copy > p:not(.section-label) { max-width: 660px; color: rgba(255,255,255,.74); font-size: 18px; }

/* Houston */
.houston { background: var(--paper); }
.houston-layout { display: grid; grid-template-columns: 1.15fr .55fr; gap: 90px; align-items: end; }
.houston-layout h2 { margin: 18px 0 0; max-width: 850px; }
.houston-layout > p { color: var(--muted); font-size: 18px; }
.area-strip { margin-top: 60px; display: grid; grid-template-columns: repeat(6,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area-strip span { padding: 22px 14px; text-align: center; border-right: 1px solid var(--line); font-size: 13px; font-weight: 500; }
.area-strip span:last-child { border-right: 0; }

/* Contact */
.contact { background: #fff; }
.contact-layout { display: grid; grid-template-columns: .7fr 1fr; gap: 100px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { margin: 18px 0 26px; max-width: 620px; }
.contact-copy > p:not(.section-label) { max-width: 560px; color: var(--muted); font-size: 18px; }
.contact-direct { margin-top: 42px; border-top: 1px solid var(--line); }
.contact-direct a { display: grid; grid-template-columns: 50px 1fr; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--paper); color: var(--brand-deep); }
.contact-direct small { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.contact-direct strong { font-size: 15px; font-weight: 600; }
.project-form { padding: 42px; background: var(--paper); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; }
.project-form label { display: grid; gap: 9px; }
.project-form label > span { color: var(--brand-deep); font-size: 12px; font-weight: 600; }
.form-full { grid-column: 1 / -1; }
.project-form input, .project-form select, .project-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(49,65,86,.28); border-radius: 0; background: transparent; color: var(--ink); outline: none; font-size: 16px; transition: border-color .25s ease; }
.project-form textarea { resize: vertical; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--brand-deep); }
.form-foot { margin-top: 34px; display: flex; gap: 20px; align-items: center; justify-content: space-between; }
.form-foot p { margin: 0; max-width: 420px; color: var(--muted); font-size: 13px; }

/* Footer */
.site-footer { background: #172231; color: #fff; padding-top: 84px; }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; padding-bottom: 74px; }
.footer-brand img { width: 240px; max-width: 100%; background: #fff; padding: 4px; }
.footer-brand p { max-width: 360px; margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: 15px; }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 46px; }
.footer-nav h3 { margin: 0 0 18px; font-family: var(--sans); color: rgba(255,255,255,.48); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav a, .footer-nav span { display: block; width: fit-content; margin: 9px 0; color: rgba(255,255,255,.82); font-size: 14px; }
.footer-nav a { position: relative; }
.footer-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: #fff; transform: scaleX(0); transform-origin: right; transition: transform .28s var(--ease); }
.footer-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-cta { min-height: 220px; padding: 44px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-cta div { display: grid; gap: 8px; }
.footer-cta span { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.footer-cta strong { font-family: var(--serif); font-size: clamp(40px,4.7vw,72px); font-weight: 400; line-height: 1; }
.footer-cta-link { width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); transition: .3s ease; }
.footer-cta-link .icon { width: 24px; height: 24px; }
.footer-cta-link:hover { background: #fff; color: var(--brand-deep); transform: translateY(-3px); }
.footer-bottom { min-height: 76px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 20px; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-bottom > span:nth-child(2) { text-align: center; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.76); }
.footer-bottom .icon { width: 14px; height: 14px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 500; padding: 64px; display: grid; place-items: center; background: rgba(10,15,21,.95); opacity: 0; visibility: hidden; transition: .3s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { width: min(1100px,90vw); }
.lightbox-inner img { max-height: 76vh; width: 100%; object-fit: contain; background: #111; }
.lightbox-caption { padding-top: 14px; display: flex; justify-content: space-between; color: #fff; }
.lightbox-caption small { color: rgba(255,255,255,.52); }
.lightbox-caption strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.lightbox-close { position: fixed; top: 24px; right: 24px; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff; cursor: pointer; }

/* Reveals */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 1200px) {
  .header-inner { width: min(calc(100% - 40px), 1380px); grid-template-columns: 190px 1fr auto; gap: 24px; }
  .brand { width: 178px; }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 12px; }
  .header-actions .icon-link { display: none; }
  .story-grid { gap: 62px; }
  .story-media { min-height: 620px; }
  .project-data { grid-template-columns: .8fr 1fr; }
  .project-data-copy { grid-column: 2; }
  .process-layout { gap: 64px; }
}

@media (max-width: 980px) {
  :root { --header-h: 78px; }
  .container { width: min(calc(100% - 48px), var(--container)); }
  .section { padding: 96px 0; }
  .header-inner { width: calc(100% - 36px); grid-template-columns: 180px 1fr auto; }
  .desktop-nav, .header-actions { display: none; }
  .brand { width: 176px; height: 54px; }
  .menu-toggle { display: block; justify-self: end; color: #fff; border-color: rgba(255,255,255,.42); }
  .site-header.scrolled .menu-toggle { color: var(--brand-deep); border-color: var(--line); }
  .mobile-nav { inset-top: var(--header-h); }
  .hero-frame { inset: calc(var(--header-h) + 18px) 18px 18px; }
  .hero-content { padding-top: calc(var(--header-h) + 80px); padding-bottom: 160px; grid-template-columns: 1fr; align-items: end; }
  .hero-side-note { display: none; }
  .hero-bottom { left: 18px; right: 18px; bottom: 18px; grid-template-columns: repeat(3,1fr); }
  .hero-scroll { display: none; }
  .hero h1 { font-size: clamp(64px,12vw,98px); }
  .intro-layout { grid-template-columns: .32fr 1fr; gap: 42px; }
  .intro-copy { grid-column: 2; max-width: 640px; }
  .project-heading, .gallery-head, .houston-layout { grid-template-columns: 1fr; gap: 24px; }
  .project-data { grid-template-columns: 1fr; gap: 30px; }
  .project-data-copy { grid-column: auto; max-width: 620px; }
  .story-grid { grid-template-columns: 1fr; gap: 58px; }
  .story-reverse .story-media, .story-reverse .story-copy { order: initial; }
  .story-media { min-height: 680px; }
  .story-copy { max-width: 760px; }
  .image-ribbon { height: auto; grid-template-columns: 1fr; }
  .image-ribbon-item { height: 430px; }
  .image-ribbon-item + .image-ribbon-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .process-layout { grid-template-columns: 1fr; gap: 50px; }
  .process-intro { position: static; max-width: 760px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 520px 420px; }
  .gallery-wide { grid-row: 1; grid-column: 1 / 3; }
  .gallery-tall { grid-row: 2; grid-column: 1; }
  .studio-content { grid-template-columns: .45fr 1fr; gap: 50px; }
  .area-strip { grid-template-columns: repeat(3,1fr); }
  .area-strip span:nth-child(3) { border-right: 0; }
  .area-strip span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .contact-copy { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(44px,13vw,60px); }
  .header-inner { width: calc(100% - 24px); grid-template-columns: 154px 1fr auto; }
  .brand { width: 150px; height: 48px; }
  .mobile-nav { padding-left: 20px; padding-right: 20px; }
  .mobile-nav nav a { font-size: 30px; }
  .hero { min-height: 880px; }
  .hero-media { background-position: 58% center; }
  .hero-content { padding-top: 170px; padding-bottom: 160px; }
  .hero h1 { font-size: clamp(58px,18vw,82px); line-height: .92; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-bottom { grid-template-columns: 1fr; min-height: auto; }
  .hero-bottom-item { min-height: 64px; display: flex; align-items: center; justify-content: space-between; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero-frame { display: none; }
  .intro-layout { grid-template-columns: 1fr; gap: 30px; }
  .intro-copy { grid-column: auto; }
  .intro-statement h2 { font-size: clamp(44px,13vw,62px); }
  .project-heading { margin-bottom: 34px; }
  .feature-visual { width: calc(100% - 16px); height: 74vh; min-height: 560px; }
  .feature-tag { left: 20px; bottom: 18px; }
  .feature-tag strong { font-size: 26px; }
  .visual-control { top: 16px; right: 16px; width: 46px; height: 46px; }
  .project-data-title { grid-template-columns: 28px 1fr; }
  .project-data-title h3 { font-size: 34px; }
  .project-facts { grid-template-columns: 1fr; }
  .story-media { min-height: 500px; }
  .story-large { inset: 0 8% 10% 0; }
  .story-large.portrait { inset: 0 0 10% 10%; }
  .story-small, .story-reverse .story-small { width: 48%; padding: 6px; }
  .story-small span { font-size: 11px; padding: 8px 6px 4px; }
  .story-copy h2 { font-size: clamp(44px,13vw,60px); }
  .story-lead { font-size: 18px; }
  .image-ribbon-item { height: 360px; }
  .process-item { min-height: 150px; grid-template-columns: 36px 46px 1fr; gap: 14px; }
  .process-arrow { display: none; }
  .process-item h3 { font-size: 31px; }
  .gallery-grid { width: calc(100% - 16px); grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .gallery-card { min-height: 520px; }
  .gallery-card:nth-child(3), .gallery-card:nth-child(4) { min-height: 380px; }
  .studio { min-height: 850px; }
  .studio-content { padding: 100px 0 72px; grid-template-columns: 1fr; gap: 40px; }
  .studio-stat strong { font-size: 72px; }
  .area-strip { grid-template-columns: 1fr 1fr; }
  .area-strip span:nth-child(3) { border-right: 1px solid var(--line); }
  .area-strip span:nth-child(even) { border-right: 0; }
  .area-strip span { border-bottom: 1px solid var(--line); }
  .area-strip span:nth-last-child(-n+2) { border-bottom: 0; }
  .project-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-foot { align-items: stretch; flex-direction: column-reverse; }
  .form-foot .btn { width: 100%; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-nav > div:last-child { grid-column: 1 / -1; }
  .footer-cta { align-items: flex-start; flex-direction: column; }
  .footer-cta-link { width: 60px; height: 60px; }
  .footer-bottom { padding: 20px 0; grid-template-columns: 1fr; min-height: auto; }
  .footer-bottom > span:nth-child(2) { text-align: left; }
  .lightbox { padding: 54px 14px 24px; }
}

@media (hover:none) {
  .btn:hover { transform: none; }
  .story-media:hover .story-large img, .feature-visual:hover img, .gallery-card:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal,.hero-load { opacity: 1; transform: none; }
}
