:root {
  --bg: #f7f7f5;
  --paper: #ffffff;
  --ink: #1f242b;
  --muted: #73777d;
  --line: #e8e6e1;
  --accent: #d2a258;
  --accent-dark: #ad7d35;
  --charcoal: #221c19;
  --white: #ffffff;
  --black: #000000;
  --warm-surface: #ecebe8;
  --warm-surface-alt: #ecebe7;
  --subtle-surface: #fbfbfa;
  --map-surface: #dfded9;
  --map-marker: #e95b0c;
  --form-line: #bdb7ad;
  --list-line: #d7d3ca;
  --skill-track: #dedbd3;
  --soft-text: #9a9a95;
  --secondary-text: #575b61;
  --tertiary-text: #a7a9ad;
  --radius: 8px;
  --header-h: 88px;
  --container-max: 1180px;
  --container-gutter: 48px;
  --container: min(var(--container-max), calc(100vw - var(--container-gutter)));
  --shadow: 0 24px 70px rgba(31, 36, 43, .12);
  --shadow-soft: 0 18px 50px rgba(31, 36, 43, .08);
  --shadow-card: 0 18px 54px rgba(31, 36, 43, .08);
  --shadow-header: 0 12px 36px rgba(20, 22, 24, .08);
  --shadow-button: 0 12px 28px rgba(0, 0, 0, .14);
  --overlay-hero: rgba(21, 18, 16, .58);
  --overlay-cta: rgba(17, 22, 22, .5);
  --overlay-dark: rgba(0, 0, 0, .72);
  --overlay-footer-start: rgba(24, 23, 22, .88);
  --overlay-footer-end: rgba(24, 23, 22, .92);
  --glass-header: rgba(255, 255, 255, .94);
  --glass-panel: rgba(255, 255, 255, .78);
  --glass-soft: rgba(255, 255, 255, .65);
  --dark-glass: rgba(31, 36, 43, .76);
  --orange-shadow: 0 14px 24px rgba(233, 91, 12, .28);
  --header-border: rgba(32, 36, 41, .08);
  --dark-line: rgba(31, 36, 43, .07);
  --faint-ink: rgba(31, 36, 43, .035);
  --mobile-panel-shadow: -30px 0 80px rgba(0, 0, 0, .16);
  --image-shadow: 0 16px 38px rgba(22, 22, 20, .08);
  --showcase-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --mini-shadow: 0 10px 26px rgba(31, 36, 43, .08);
  --inverted-text: rgba(255, 255, 255, .78);
  --inverted-text-soft: rgba(255, 255, 255, .62);
  --inverted-text-muted: rgba(255, 255, 255, .72);
  --inverted-text-footer: rgba(255, 255, 255, .74);
  --inverted-watermark: rgba(255, 255, 255, .13);
  --inverted-ghost: rgba(255, 255, 255, .035);
  --inverted-line: rgba(255, 255, 255, .16);
  --inverted-line-strong: rgba(255, 255, 255, .18);
  --inverted-line-soft: rgba(255, 255, 255, .12);
  --inverted-chip-line: rgba(255, 255, 255, .2);
  --inverted-glass: rgba(255, 255, 255, .08);
  --inverted-glass-light: rgba(255, 255, 255, .06);
  --grid-line-light: rgba(255, 255, 255, .4);
  --dark-panel-glass: rgba(31, 31, 29, .38);
  --project-overlay-start: rgba(16, 15, 14, .78);
  --project-overlay-mid: rgba(16, 15, 14, .22);
  --project-overlay-end: rgba(16, 15, 14, .1);
  --mobile-overlay-start: rgba(16, 15, 14, .12);
  --brand-watermark: "brand";
  --footer-bg-image: url("images/page-hero.jpg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 200px minmax(420px, 1fr) 330px;
  align-items: center;
  gap: 24px;
  padding-inline: max(28px, calc((100vw - var(--container-max)) / 2));
  background: var(--glass-header);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  height: 74px;
  box-shadow: var(--shadow-header);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.brand-mark {
  width: 24px;
  height: 18px;
  display: inline-block;
  background: var(--accent);
  clip-path: polygon(0 22%, 18% 0, 50% 18%, 82% 0, 100% 22%, 50% 58%, 50% 100%, 0 68%, 0 45%, 50% 76%, 100% 45%, 100% 68%, 50% 100%, 50% 58%);
}

.brand-mark.has-logo {
  width: 34px;
  height: 34px;
  background: transparent;
  clip-path: none;
}

.brand-mark.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.phone-link small {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 27px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.round-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease;
}

.round-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  place-items: center;
  gap: 4px;
  padding: 12px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: currentColor;
  mask: var(--mask) center / contain no-repeat;
}

.icon-phone { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.62a2 2 0 0 1-.45 2.11L8 9.72a16 16 0 0 0 6.28 6.28l1.27-1.27a2 2 0 0 1 2.11-.45c.84.3 1.72.51 2.62.63A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.icon-search { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E"); }
.icon-user { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }
.icon-grid { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Ccircle cx='5' cy='5' r='2'/%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='19' cy='5' r='2'/%3E%3Ccircle cx='5' cy='12' r='2'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Ccircle cx='19' cy='12' r='2'/%3E%3Ccircle cx='5' cy='19' r='2'/%3E%3Ccircle cx='12' cy='19' r='2'/%3E%3Ccircle cx='19' cy='19' r='2'/%3E%3C/svg%3E"); }
.icon-arrow { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E"); }
.icon-x { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); }

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(410px, 92vw);
  z-index: 80;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--mobile-panel-shadow);
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin: 22px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
  font-weight: 800;
}

.mobile-panel nav a {
  display: block;
  padding: 8px 0 8px 14px;
}

.mobile-panel .brand {
  width: 100%;
  padding: 0 72px 20px 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-panel .quote-btn {
  width: 100%;
  margin-top: auto;
}

.close-menu {
  position: absolute;
  top: 22px;
  right: 22px;
}

.home-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(480px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 48px;
  width: var(--container);
  margin: 0 auto;
  padding: 54px 0 70px;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--glass-soft);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.eyebrow.light {
  color: var(--white);
  border-color: var(--inverted-line-strong);
  background: var(--inverted-glass-light);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 4.7vw, 70px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: break-word;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

h1 span,
h2 span {
  color: var(--accent);
}

.home-hero h1 span {
  display: inline;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 500px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 800;
}

.hero-media {
  position: relative;
  height: clamp(430px, 43vw, 560px);
  min-height: 0;
  border-radius: 0 0 0 70px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--warm-surface-alt);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, color-mix(in srgb, var(--bg) 18%, transparent), color-mix(in srgb, var(--black) 8%, transparent));
  pointer-events: none;
}

.hero-media img,
.page-hero img,
.service-panels > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: center center;
}

.brand-strip {
  width: var(--container);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  color: var(--soft-text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.brand-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  border-right: 1px solid var(--dark-line);
}

.brand-strip div:first-child {
  justify-content: flex-start;
}

.brand-strip div:last-child {
  justify-content: flex-end;
  border-right: 0;
}

.mini-icon,
.line-icon {
  width: 38px;
  height: 26px;
  display: inline-block;
  border: 0;
  border-radius: 0;
  opacity: .55;
  background:
    linear-gradient(var(--accent), var(--accent)) 4px 18px / 28px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 8px 12px / 20px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 12px 6px / 12px 2px no-repeat;
  position: relative;
}

.mini-icon::before,
.line-icon::before {
  content: "";
  position: absolute;
  inset: 3px 7px auto;
  height: 13px;
  border: 2px solid var(--accent);
  border-bottom: 0;
  transform: skewX(-18deg);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
}

.intro-section {
  padding-top: 58px;
  padding-bottom: 118px;
}

.intro-section .section-heading.centered {
  max-width: 640px;
  margin-bottom: 22px;
}

.intro-section h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
}

.section-heading.centered {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.section-heading.split p {
  max-width: 650px;
}

.image-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 10px;
  margin-bottom: 76px;
}

.image-triptych img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--image-shadow);
}

.image-triptych img:nth-child(1) {
  --reveal-y: 0px;
}

.image-triptych img:nth-child(2) {
  --reveal-y: 34px;
}

.image-triptych img:nth-child(3) {
  --reveal-y: 68px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 0;
}

.stats-row article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.stats-row strong {
  display: block;
  font-size: 34px;
  letter-spacing: -.04em;
}

.stats-row span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.project-stack {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 120px;
}

.stack-card {
  position: sticky;
  top: var(--stack-top, 104px);
  z-index: var(--stack-z, 1);
  height: min(680px, 76svh);
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--black);
  box-shadow: var(--shadow);
  transform-origin: center top;
  will-change: transform, filter, opacity, border-radius;
}

.stack-card:last-child {
  margin-bottom: 0;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7);
  transform: scale(1.04);
  transition: filter .25s ease;
}

.stack-overlay {
  position: absolute;
  inset: auto 34px 34px 34px;
  color: var(--white);
  z-index: 2;
  transition: inset .25s ease, transform .25s ease;
}

.stack-overlay span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 260px);
  color: var(--accent);
  font-weight: 800;
  transition: inset .25s ease, font-size .25s ease;
}

.stack-overlay h2 {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(32px, 5vw, 62px);
  transition: font-size .25s ease, max-width .25s ease;
}

.stack-overlay p {
  max-width: 460px;
  color: var(--inverted-text);
  transition: opacity .2s ease, transform .2s ease;
}

.stack-card.is-compact {
  border-radius: 22px;
}

.stack-card.is-compact img {
  filter: brightness(.62) saturate(.9);
}

.stack-card.is-compact .stack-overlay {
  inset: auto 20px 18px 20px;
}

.stack-card.is-compact .stack-overlay span {
  position: static;
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.stack-card.is-compact .stack-overlay h2 {
  max-width: 260px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.05;
}

.stack-card.is-compact .stack-overlay p {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.accordion,
.numbered-list {
  display: grid;
}

.services-preview {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}

.services-preview::before {
  content: var(--brand-watermark);
  position: absolute;
  left: max(24px, calc((100vw - var(--container-max)) / 2));
  bottom: 8px;
  color: var(--faint-ink);
  font-size: min(18vw, 230px);
  font-weight: 800;
  line-height: .7;
  letter-spacing: -.08em;
  pointer-events: none;
}

.service-overview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 78px;
}

.service-copy {
  position: sticky;
  top: 118px;
}

.service-copy h2 {
  max-width: 500px;
}

.service-copy p {
  max-width: 390px;
}

.accordion a,
.numbered-list a {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  min-height: 70px;
  border-top: 1px solid var(--list-line);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.04em;
}

.accordion a:last-child,
.numbered-list a:last-child {
  border-bottom: 1px solid var(--list-line);
}

.accordion span,
.numbered-list span {
  color: var(--accent);
  font-size: 13px;
}

.dark-curation {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 94px max(24px, calc((100vw - var(--container-max)) / 2)) 116px;
  background: var(--charcoal);
  color: var(--white);
}

.dark-curation .section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.dark-curation h2 {
  max-width: 780px;
  color: var(--white);
}

.watermark {
  position: absolute;
  top: 12px;
  left: 4vw;
  color: var(--inverted-ghost);
  font-size: 180px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 42px 0 62px;
}

.process-grid article {
  border-top: 1px solid var(--inverted-line);
  padding-top: 18px;
}

.process-grid article:nth-child(2),
.process-grid article:nth-child(4) {
  --reveal-y: 22px;
}

.process-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.process-grid h3 {
  color: var(--white);
  font-size: 18px;
}

.process-grid p {
  color: var(--inverted-text-soft);
  font-size: 14px;
}

.wide-showcase {
  width: 100%;
  height: min(560px, 45vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--showcase-shadow);
}

.pricing-section {
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 460px;
  background:
    linear-gradient(90deg, transparent 0 49%, var(--faint-ink) 49% 50%, transparent 50%),
    linear-gradient(0deg, transparent 0 49%, var(--faint-ink) 49% 50%, transparent 50%);
  background-size: 74px 74px;
  pointer-events: none;
}

.plans {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1fr 1fr;
  gap: 24px;
}

.plan {
  min-height: 460px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass-panel);
  box-shadow: var(--shadow-soft);
}

.plans .plan:nth-child(2) {
  --reveal-y: 18px;
}

.plans .plan:nth-child(3) {
  --reveal-y: 36px;
}

.plan.image-plan {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  border: 0;
}

.plan.image-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--overlay-dark));
}

.plan.image-plan img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan.image-plan h3,
.plan.image-plan p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.plan strong {
  display: block;
  margin: 24px 0;
  color: var(--accent);
  font-size: 42px;
  letter-spacing: -.05em;
}

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

.plan li {
  color: var(--muted);
  font-weight: 700;
}

.plan li::before {
  content: "•";
  margin-right: 9px;
  color: var(--accent);
}

.plan a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 800;
}

.testimonial-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .78fr;
  align-items: stretch;
  background: var(--warm-surface);
}

.testimonial-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.testimonial-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .5s ease, transform .7s ease;
}

.testimonial-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(42px, calc((100vw - var(--container-max)) / 2)) 70px 70px;
}

.testimonial-copy h2 {
  max-width: 520px;
}

.testimonial-copy p {
  max-width: 470px;
  min-height: 128px;
}

.rating {
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 800;
}

.rating span {
  color: var(--accent);
  letter-spacing: 2px;
}

.testimonial-role {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.testimonial-controls button:hover,
.testimonial-controls button.is-active {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.faq-grid {
  max-width: 940px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
  background: var(--subtle-surface);
}

.faq-list p {
  max-width: 760px;
  margin: -4px 26px 8px;
  color: var(--muted);
}

.faq-answer {
  display: none;
}

.faq-answer[hidden] {
  display: none !important;
}

.faq-item.is-open + .faq-answer {
  display: block;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 46px;
  align-items: start;
}

.featured-post img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-list a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.post-list img {
  width: 160px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: 92px 24px 116px;
  text-align: center;
  background:
    linear-gradient(135deg, transparent 0 47%, var(--faint-ink) 47% 48%, transparent 48%),
    linear-gradient(45deg, transparent 0 47%, var(--faint-ink) 47% 48%, transparent 48%),
    var(--subtle-surface);
  background-size: 120px 120px;
}

.newsletter h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  width: min(620px, calc(100vw - var(--container-gutter)));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 46px;
  align-items: center;
  border-bottom: 1px solid var(--form-line);
}

.newsletter-form input {
  height: 56px;
  border: 0;
  background: transparent;
}

.newsletter-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  cursor: pointer;
}

.page-hero {
  position: relative;
  height: 350px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}

.page-hero img {
  position: absolute;
  inset: 0;
}

.page-hero div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 82px);
}

.page-hero p {
  color: var(--inverted-text);
  font-weight: 700;
}

.services-page {
  padding-top: 110px;
}

.service-detail {
  padding-top: 108px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
}

.service-detail-main > img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 34px 0 42px;
  box-shadow: var(--shadow);
}

.service-detail-main h2,
.service-detail-main p {
  max-width: 760px;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.service-points article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass-soft);
}

.service-points span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 800;
}

.service-side-nav {
  position: sticky;
  top: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass-panel);
}

.service-side-nav h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.service-side-nav a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.service-side-nav a.is-active {
  color: var(--ink);
}

.service-feature,
.skill-grid,
.contact-section,
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.service-card {
  position: relative;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-card p {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--dark-glass);
  backdrop-filter: blur(10px);
}

.service-panels {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.service-panels::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, var(--overlay-dark));
}

.service-panels > img {
  position: absolute;
  inset: 0;
}

.panel-row {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
}

.panel-row article {
  min-height: 190px;
  padding: 30px;
  border-left: 1px solid var(--inverted-line-strong);
  background: var(--dark-panel-glass);
}

.panel-row h3 {
  max-width: 260px;
  color: var(--white);
}

.panel-row p {
  color: color-mix(in srgb, var(--white) 75%, transparent);
}

.skill-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.skill-list li {
  padding: 16px 0;
  border-top: 1px solid var(--list-line);
}

.skill-list li:last-child {
  border-bottom: 1px solid var(--list-line);
}

.skill-image,
.about-grid > img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-section {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  padding-top: 118px;
  padding-bottom: 118px;
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 92px;
}

.contact-details small {
  display: block;
  margin-bottom: 18px;
  color: var(--tertiary-text);
  font-weight: 800;
}

.contact-details p {
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-form label {
  display: grid;
  gap: 11px;
  color: var(--secondary-text);
  font-size: 13px;
  font-weight: 800;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  padding: 0 26px;
}

.contact-form input {
  height: 62px;
}

.contact-form textarea {
  min-height: 140px;
  padding-top: 24px;
  resize: vertical;
}

.contact-form .quote-btn {
  justify-self: start;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.map-section {
  position: relative;
  height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--grid-line-light) 1px, transparent 1px),
    linear-gradient(var(--grid-line-light) 1px, transparent 1px),
    var(--map-surface);
  background-size: 74px 74px;
}

.map-card {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 260px;
  height: 86px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--accent-dark);
  font-weight: 800;
  box-shadow: var(--mini-shadow);
}

.map-section span {
  position: absolute;
  width: 34px;
  height: 9px;
  right: 0;
  background: var(--map-marker);
  box-shadow: var(--orange-shadow);
}

.map-section span:nth-child(2) { top: 34%; }
.map-section span:nth-child(3) { top: 63%; }
.map-section span:nth-child(4) { top: 83%; }

.office-grid,
.project-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  text-align: center;
}

.office-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.office-grid p {
  margin: 0;
}

.project-grid,
.article-grid {
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
}

.project-tile,
.article-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.project-tile img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-tile:hover img {
  transform: scale(1.04);
}

.project-tile span,
.project-tile h3 {
  position: absolute;
  z-index: 1;
  color: var(--white);
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, var(--overlay-dark));
}

.project-tile span {
  right: 24px;
  top: 24px;
  color: var(--accent);
  font-weight: 800;
}

.project-tile h3 {
  left: 24px;
  bottom: 12px;
}

.projects-showcase {
  padding-top: 112px;
}

.projects-showcase .section-heading {
  margin-bottom: 48px;
}

.projects-showcase .section-heading.split {
  grid-template-columns: minmax(430px, .95fr) minmax(360px, .75fr);
  gap: 70px;
}

.projects-showcase .section-heading h2 {
  max-width: 720px;
}

.projects-showcase .section-heading p {
  max-width: 430px;
}

.project-feature {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.project-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .8s ease;
}

.project-feature:hover img {
  transform: scale(1.045);
}

.project-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--project-overlay-start), var(--project-overlay-mid) 58%, var(--project-overlay-end)),
    linear-gradient(180deg, transparent 50%, var(--overlay-hero));
}

.project-feature-content {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 5vw, 70px);
  bottom: clamp(28px, 5vw, 70px);
  width: min(570px, calc(100% - 56px));
  color: var(--white);
}

.project-feature-content > span,
.project-card span {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.project-feature-content h2 {
  max-width: 560px;
  margin: 14px 0 18px;
  color: var(--white);
  overflow-wrap: break-word;
}

.project-feature-content p {
  max-width: 500px;
  color: var(--inverted-text);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.project-meta b,
.project-card small {
  border: 1px solid var(--inverted-chip-line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--inverted-glass);
  font-size: 12px;
  font-weight: 800;
}

.project-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.project-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  transition: transform .55s ease;
}

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

.project-card div {
  padding: 28px;
}

.project-card h3 {
  margin: 10px 0 10px;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -.035em;
}

.project-card p {
  min-height: 58px;
  margin-bottom: 22px;
}

.project-card small {
  display: inline-flex;
  border-color: var(--line);
  color: var(--ink);
  background: var(--bg);
}

.about-values {
  display: grid;
  gap: 24px;
}

.about-values article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.about-values span,
.article-card span {
  color: var(--accent);
  font-weight: 800;
}

.article-card {
  padding-bottom: 22px;
}

a.article-card,
a.featured-post {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  margin-bottom: 22px;
}

.article-card h3,
.article-card p,
.article-card span {
  margin-left: 24px;
  margin-right: 24px;
}

.article-page {
  padding-top: 100px;
}

.article-content {
  width: min(820px, var(--container));
  margin: 0 auto;
}

.article-content .eyebrow {
  margin-bottom: 22px;
}

.article-content h2 {
  margin: 46px 0 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.04em;
}

.article-content h3 {
  margin: 30px 0 12px;
  font-size: clamp(23px, 2vw, 32px);
  letter-spacing: -.02em;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--secondary-text);
  font-size: 18px;
  line-height: 1.78;
}

.article-content ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 34px;
  padding-left: 22px;
  color: var(--secondary-text);
  font-size: 18px;
  line-height: 1.65;
}

.article-content li::marker {
  color: var(--accent);
}

.article-note {
  margin: 40px 0;
  border-left: 3px solid var(--accent);
  padding: 18px 24px;
  background: var(--subtle-surface);
}

.article-note p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 110px 0 0;
  color: var(--white);
  background:
    linear-gradient(var(--overlay-footer-start), var(--overlay-footer-end)),
    var(--footer-bg-image) center / cover;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .6fr .7fr 1.15fr;
  gap: 68px;
}

.footer-inner > * {
  min-width: 0;
}

.footer-brand p {
  margin: 45px 0 18px;
  max-width: 300px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.7;
}

.footer-brand span,
.footer-nav a,
.socials a {
  color: var(--inverted-text-muted);
}

.footer-nav {
  display: grid;
  gap: 16px;
  align-content: start;
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-contact > a {
  font-size: 28px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-contact > a:first-child {
  color: var(--accent);
  text-decoration: underline;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 50px;
  font-weight: 800;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 88px auto 0;
  padding: 34px 0;
  border-top: 1px solid var(--inverted-line-soft);
  color: var(--inverted-text-footer);
  text-align: center;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-bottom a {
  color: var(--accent);
}

.footer-watermark {
  position: relative;
  z-index: 0;
  height: 220px;
  margin-top: -30px;
  color: var(--inverted-watermark);
  font-size: min(23vw, 350px);
  font-weight: 800;
  line-height: .7;
  letter-spacing: -.09em;
  text-align: center;
  pointer-events: none;
}

.has-compact-brand-text .footer-brand .brand {
  font-size: clamp(24px, 2.2vw, 28px);
}

.has-compact-brand-text .footer-bottom span {
  display: inline-block;
  max-width: min(100%, 20ch);
  overflow-wrap: anywhere;
  vertical-align: bottom;
}

.has-compact-brand-text .footer-watermark {
  font-size: min(17vw, 270px);
  letter-spacing: -.06em;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-button);
  font-size: 24px;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.92);
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

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

@media (scripting: enabled) {
  .reveal {
    opacity: 0;
    transform: translateY(calc(34px + var(--reveal-y, 0px)));
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
  }

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

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 72%, var(--white));
  outline-offset: 4px;
}

input:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 72%, var(--white));
  outline-offset: 3px;
}

@supports not selector(:focus-visible) {
  :where(a, button, input, textarea, select, [tabindex]):focus {
    outline: 3px solid color-mix(in srgb, var(--accent) 72%, var(--white));
    outline-offset: 4px;
  }
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 180px minmax(320px, 1fr) 286px;
  }

  .desktop-nav {
    gap: 16px;
  }
}

@media (max-width: 1060px) {
  .phone-link {
    display: none;
  }

  .site-header {
    grid-template-columns: 170px minmax(320px, 1fr) auto;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 72px;
    --container: calc(100vw - 34px);
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-inline: 17px;
    width: 100%;
    max-width: 100vw;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: grid;
    position: absolute;
    right: 17px;
    top: 12px;
    margin-left: auto;
  }

  .brand {
    font-size: 26px;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .home-hero > * {
    min-width: 0;
  }

  .service-copy {
    position: static;
  }

  .hero-media {
    min-height: 430px;
    border-radius: var(--radius);
  }

  .brand-strip,
  .stats-row,
  .service-overview,
  .process-grid,
  .plans,
  .testimonial-section,
  .faq-grid,
  .blog-layout,
  .service-feature,
  .skill-grid,
  .contact-section,
  .about-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    margin-bottom: 36px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-showcase .section-heading.split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .image-triptych,
  .office-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-triptych img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.48;
  }

  .intro-section {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .image-triptych {
    margin-bottom: 48px;
  }

  .image-triptych img:nth-child(1),
  .image-triptych img:nth-child(2),
  .image-triptych img:nth-child(3),
  .process-grid article:nth-child(2),
  .process-grid article:nth-child(4),
  .plans .plan:nth-child(2),
  .plans .plan:nth-child(3) {
    --reveal-y: 0px;
  }

  .project-stack {
    padding-bottom: 54px;
  }

  .stack-card {
    top: calc(76px + (var(--i, 0) * 12px));
    height: min(520px, 68svh);
    margin-bottom: 18px;
  }

  .stack-overlay {
    inset: auto 24px 24px 24px;
  }

  .stack-overlay span {
    bottom: calc(100% + 180px);
  }

  .process-grid,
  .plans {
    gap: 18px;
  }

  .services-preview {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .services-preview::before {
    display: none;
  }

  .wide-showcase {
    height: 430px;
  }

  .testimonial-media {
    min-height: 430px;
  }

  .testimonial-copy {
    padding: 52px 24px;
  }

  .panel-row {
    grid-template-columns: 1fr 1fr;
  }

  .office-grid,
  .project-grid,
  .project-catalog,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .projects-showcase {
    padding-top: 72px;
  }

  .project-feature {
    min-height: 520px;
  }

  .project-feature::after {
    background: linear-gradient(180deg, var(--mobile-overlay-start), var(--overlay-dark));
  }

  .footer-inner {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .hamburger {
    left: min(calc(100vw - 65px), 324px);
    right: auto;
  }

  .home-hero {
    gap: 26px;
  }

  .hero-copy p {
    max-width: 330px;
    font-size: 16px;
  }

  h1 {
    font-size: clamp(36px, 11.4vw, 45px);
    line-height: 1.02;
    letter-spacing: -.045em;
  }

  .home-hero h1 span {
    display: block;
  }

  h2 {
    font-size: clamp(31px, 9.7vw, 40px);
    line-height: 1.04;
    letter-spacing: -.04em;
    max-width: 300px;
  }

  h2 span {
    display: block;
    max-width: 300px;
  }

  .contact-copy h2,
  .services-page h2 {
    max-width: 300px;
  }

  .section-heading.split p,
  .contact-copy p {
    max-width: 330px;
  }

  .hero-media,
  .stack-card {
    min-height: 0;
    height: 390px;
  }

  .brand-strip,
  .image-triptych,
  .stats-row,
  .service-points,
  .service-detail-grid,
  .process-grid,
  .plans,
  .contact-details,
  .contact-form,
  .image-triptych,
  .panel-row {
    grid-template-columns: 1fr;
  }

  .intro-section .section-heading.centered {
    margin-bottom: 24px;
  }

  .intro-section h2 {
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 8.6vw, 34px);
  }

  .image-triptych img:first-child {
    grid-column: auto;
    aspect-ratio: 1.08;
  }

  .image-triptych img:nth-child(n + 2) {
    display: none;
  }

  .brand-strip {
    gap: 12px;
  }

  .brand-strip div,
  .brand-strip div:first-child,
  .brand-strip div:last-child {
    justify-content: flex-start;
    border-right: 0;
  }

  .accordion a,
  .numbered-list a {
    grid-template-columns: 42px 1fr auto;
    font-size: 21px;
  }

  .dark-curation {
    padding-top: 70px;
  }

  .wide-showcase {
    height: 320px;
  }

  .watermark {
    font-size: 96px;
  }

  .plan {
    min-height: auto;
  }

  .post-list a {
    grid-template-columns: 112px 1fr;
  }

  .post-list img {
    width: 112px;
    height: 84px;
  }

  .page-hero {
    height: 280px;
  }

  .mobile-panel {
    width: min(100vw, 420px);
    padding: 18px 18px 22px;
  }

  .mobile-panel .brand {
    padding: 4px 72px 16px 10px;
    font-size: 24px;
  }

  .mobile-panel nav {
    margin-top: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 23px;
  }

  .mobile-panel nav a {
    padding-left: 10px;
  }

  .close-menu {
    top: 16px;
    right: 16px;
  }

  .stack-card {
    top: calc(74px + (var(--i, 0) * 10px));
    height: min(400px, 62svh);
  }

  .stack-overlay {
    inset: auto 18px 18px 18px;
  }

  .stack-overlay span {
    bottom: calc(100% + 96px);
  }

  .stack-overlay h2 {
    max-width: 230px;
    font-size: clamp(28px, 8.8vw, 36px);
  }

  .stack-overlay p {
    max-width: 270px;
    font-size: 14px;
  }

  .projects-showcase .section-heading {
    margin-bottom: 32px;
  }

  .projects-showcase,
  .project-catalog,
  .project-feature,
  .project-card {
    min-width: 0;
    max-width: 100%;
  }

  .projects-showcase .section-heading h2 {
    max-width: 320px;
    font-size: clamp(34px, 9.2vw, 38px);
  }

  .project-feature {
    min-height: 440px;
    border-radius: 12px;
  }

  .project-feature-content {
    left: 22px;
    bottom: 24px;
    width: calc(100% - 44px);
  }

  .project-feature-content p {
    font-size: 14px;
  }

  .project-feature-content h2 {
    max-width: min(100%, 255px);
    font-size: clamp(34px, 9vw, 38px);
    overflow-wrap: anywhere;
  }

  .project-meta {
    gap: 8px;
    margin-top: 22px;
  }

  .project-meta b {
    padding: 8px 11px;
  }

  .project-catalog {
    gap: 18px;
  }

  .project-card {
    border-radius: 12px;
  }

  .project-card div {
    padding: 22px;
  }

  .project-card p {
    min-height: 0;
  }

  .service-panels {
    height: 720px;
  }

  .contact-section {
    padding-top: 70px;
  }

  .contact-details {
    margin-top: 38px;
  }

  .footer-contact > a {
    font-size: 23px;
  }

  .footer-watermark {
    height: 120px;
  }
}
