@font-face {
  font-family: "Sora";
  src: url("../brand_assets/fonts/sora/sora-latin-variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../brand_assets/fonts/bricolage/bricolage-grotesque-v9-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../brand_assets/fonts/bricolage/bricolage-grotesque-v9-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../brand_assets/fonts/bricolage/bricolage-grotesque-v9-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../brand_assets/fonts/ibm-plex-sans/ibm-plex-sans-v23-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../brand_assets/fonts/ibm-plex-sans/ibm-plex-sans-v23-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: var(--space-3);
  font-size: var(--step-4);
  font-weight: 700;
}

h2 em,
h1 em {
  color: var(--coral);
  font-style: normal;
}

.shell {
  width: min(100% - (2 * var(--gutter)), var(--max));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--space-6);
}

.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;
  z-index: 999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-3);
  color: var(--blue);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--blue-light);
}

.kicker {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 260ms var(--ease), color 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.button svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-3px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.wordmark:focus-visible,
.round-link:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.button-coral {
  color: var(--ink-deep);
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(217, 60, 29, 0.24);
}

.button-coral:hover {
  color: var(--paper);
  background: var(--coral-dark);
  box-shadow: 0 16px 34px rgba(217, 60, 29, 0.28);
}

.button-ink {
  color: var(--paper);
  background: var(--ink);
}

.button-ink:hover {
  background: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 600;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}

.text-link span {
  color: var(--coral);
  transition: transform 260ms var(--ease);
}

.text-link:hover span {
  transform: translateX(0.3rem);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(246, 248, 244, 0.94);
  box-shadow: 0 12px 28px rgba(4, 28, 45, 0.06);
  backdrop-filter: blur(18px);
}

.home-site-header:not(.is-scrolled) .wordmark,
.home-site-header:not(.is-scrolled) .main-nav > a:not(.nav-cta) {
  color: var(--paper);
}

.home-site-header:not(.is-scrolled) .nav-cta {
  color: var(--ink-deep);
  background: var(--coral);
}

.header-inner {
  display: flex;
  width: min(100% - (2 * var(--gutter)), var(--max));
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark b {
  color: var(--coral);
  font-size: 1.12em;
}

.wordmark-mark {
  display: grid;
  width: 2.65rem;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 1.35rem;
  font-weight: 800;
  transform: rotate(-7deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.3rem);
}

.main-nav a {
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.65rem 0.9rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius-sm);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(48rem, 54vw, 60rem);
  overflow: hidden;
  color: var(--paper);
  background: #061b31;
}

.hero-art,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 22, 40, 0.97) 0%, rgba(4, 22, 40, 0.86) 31%, rgba(4, 22, 40, 0.28) 57%, rgba(4, 22, 40, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 22, 40, 0.34), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(48rem, 54vw, 60rem);
  align-items: center;
}

.hero-copy {
  width: min(48rem, 52vw);
  padding-top: 5rem;
}

.hero-eyebrow {
  color: #ff856d;
  font-size: clamp(0.82rem, 1vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero h1 {
  max-width: 10.7ch;
  margin-bottom: clamp(1.4rem, 2vw, 2.2rem);
  color: var(--paper);
  font-size: clamp(3.8rem, 5.4vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 i {
  color: var(--coral);
  font-style: normal;
}

.hero-lead {
  max-width: 37rem;
  margin-bottom: clamp(1.6rem, 2.5vw, 2.6rem);
  color: #d7e0e7;
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  color: var(--ink-deep);
  background: var(--paper);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.7rem;
  padding: 0;
  margin: 0;
  color: #d5dfe5;
  font-size: var(--step--1);
  list-style: none;
}

.trust-line li {
  position: relative;
  padding-left: 1.45rem;
}

.trust-line li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid #ff9a86;
  border-radius: 50%;
  color: #ff9a86;
  content: "✓";
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 0.85rem;
  text-align: center;
}

/* Logos */
.logo-ribbon {
  padding: 0 var(--gutter);
  color: var(--paper);
  background: var(--ink);
}

.proof-track {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.proof-track li {
  display: grid;
  gap: 0.15rem;
  padding: 1.5rem clamp(1rem, 2.2vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-track li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-track strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1;
}

.proof-track span {
  color: #91a7b4;
  font-size: 0.76rem;
}

/* Work */
.work {
  background: var(--paper);
}

.section-intro {
  max-width: 62rem;
}

.section-intro > p:last-child {
  max-width: 41rem;
  color: var(--muted);
  font-size: var(--step-1);
}

.work-intro {
  margin-bottom: var(--space-5);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem) clamp(1.4rem, 3vw, 3rem);
}

.work-card {
  min-width: 0;
}

.work-card-main {
  grid-column: 1 / 8;
}

.work-card-side {
  grid-column: 8 / -1;
  padding-top: clamp(3rem, 7vw, 7rem);
}

.work-card-wide {
  display: block;
  grid-column: 3 / 11;
  margin-top: clamp(1rem, 3vw, 3rem);
}

.work-shot {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  padding: 0;
  border-radius: clamp(0.65rem, 1vw, 1rem);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(5, 28, 45, 0.16);
}

.work-card-side .work-shot {
  height: auto;
}

.work-card-wide .work-shot {
  height: auto;
}

.work-shot-blue {
  background: var(--blue-light);
}

.work-shot-coral {
  background: var(--coral);
}

.work-shot-sand {
  background: var(--sandstone-light);
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.work-card:hover .work-shot img {
  transform: scale(1.025);
}

.work-index {
  position: absolute;
  right: 0.8rem;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  text-shadow: 0 6px 24px rgba(4, 28, 45, 0.28);
  font-weight: 800;
  line-height: 0.85;
}

.work-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
}

.work-meta h3 {
  margin-bottom: 0;
  font-size: var(--step-2);
}

.round-link {
  display: grid;
  width: 3.6rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 260ms var(--ease), background-color 260ms var(--ease), transform 260ms var(--ease);
}

.round-link svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.round-link:hover {
  color: var(--paper);
  background: var(--coral);
  transform: rotate(8deg);
}

/* Services */
.services {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.services .eyebrow {
  color: var(--blue-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: var(--space-5);
}

.services-title {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.services-title h2 {
  font-size: var(--step-3);
}

.services-title > p:last-child {
  max-width: 31rem;
  color: #b8c7d0;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: padding 300ms var(--ease), color 300ms var(--ease);
}

.service-row > span {
  color: #ff6b4a;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
}

.service-row h3 {
  margin-bottom: 0.8rem;
  font-size: var(--step-2);
}

.service-row p {
  max-width: 39rem;
  margin-bottom: 0;
  color: #b8c7d0;
}

.service-row svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.3;
  transition: transform 300ms var(--ease);
}

.service-row:hover {
  padding-left: 0.8rem;
  color: var(--blue-light);
}

.service-row:hover svg {
  transform: translateX(0.5rem);
}

/* Dresden */
.local-stage {
  display: grid;
  min-height: 49rem;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
  background: var(--ink-deep);
}

.local-image {
  min-height: 43rem;
  overflow: hidden;
}

.local-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.local-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: var(--space-5);
  color: var(--paper);
}

.local-copy h2 {
  font-size: var(--step-3);
}

.local-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: #bfccd4;
  font-size: var(--step-1);
}

.local-facts {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.local-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  padding-top: var(--space-2);
}

.local-facts strong {
  display: block;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
}

.local-facts span {
  color: #bfccd4;
  font-size: var(--step--1);
}

/* Process */
.process {
  background:
    radial-gradient(circle at 90% 0, rgba(183, 156, 120, 0.22), transparent 30rem),
    var(--sandstone-light);
}

.process-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: end;
  margin-bottom: var(--space-5);
}

.process-head .eyebrow {
  align-self: start;
}

.process-head h2 {
  font-size: var(--step-3);
}

.process-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 18rem;
  padding: var(--space-3);
  border-top: 2px solid var(--ink);
  border-right: 1px solid rgba(9, 38, 61, 0.23);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  display: inline-block;
  margin-bottom: var(--space-5);
  color: var(--coral);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 0.75rem;
  font-size: var(--step-2);
}

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

/* Price */
.price-block {
  padding-block: var(--space-6);
  color: var(--paper);
  background:
    linear-gradient(100deg, transparent 0 67%, rgba(255, 255, 255, 0.035) 67%),
    var(--blue);
}

.price-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.8fr;
  align-items: center;
  gap: var(--space-4);
}

.price-grid h2 {
  font-size: var(--step-3);
}

.price-grid h2 em {
  color: var(--blue-light);
}

.price-number {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-inline: var(--space-3);
  border-inline: 1px solid rgba(255, 255, 255, 0.24);
}

.price-number > span {
  color: var(--blue-light);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-number strong {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 10rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.price-number sup {
  color: var(--coral);
  font-size: 0.23em;
  letter-spacing: 0;
  vertical-align: top;
}

.price-copy p {
  color: #d6e6ef;
}

.price-copy ul {
  padding: 0;
  margin: var(--space-3) 0;
  list-style: none;
}

.price-copy li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--step--1);
}

.price-copy li::before {
  position: absolute;
  top: 0.83rem;
  left: 0;
  width: 0.6rem;
  height: 0.3rem;
  border-bottom: 2px solid var(--coral);
  border-left: 2px solid var(--coral);
  content: "";
  transform: rotate(-45deg);
}

/* About */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
}

.about-photo {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background: var(--blue-light);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03);
}

.about-photo > span {
  position: absolute;
  right: -0.03em;
  bottom: -0.05em;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-align: right;
  text-transform: uppercase;
}

.about-copy h2 {
  font-size: var(--step-3);
}

.about-lead {
  color: var(--muted);
  font-size: var(--step-1);
}

.about-copy blockquote {
  margin: var(--space-4) 0;
  padding: var(--space-3) 0 var(--space-3) var(--space-3);
  border-left: 3px solid var(--coral);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.25;
}

/* Blog */
.blog {
  background: var(--porcelain);
}

.blog-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.blog-head h2 {
  margin-bottom: 0;
}

.blog-head > p {
  color: var(--muted);
  font-size: var(--step-1);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: var(--space-3);
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--paper);
}

.article-image {
  position: relative;
  display: block;
  height: 18rem;
  overflow: hidden;
}

.article-featured .article-image {
  height: 23rem;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.article-image > span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 0.55rem;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card:hover .article-image img {
  filter: saturate(1.15);
  transform: scale(1.04);
}

.article-copy {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: var(--space-3);
}

.article-copy h3 {
  margin-bottom: var(--space-2);
  font-size: var(--step-1);
  line-height: 1.12;
}

.article-featured .article-copy h3 {
  font-size: var(--step-2);
}

.article-copy h3 a {
  text-decoration: none;
}

.article-copy > p:not(.kicker) {
  color: var(--muted);
}

.article-copy .text-link {
  margin-top: auto;
  font-size: var(--step--1);
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--space-5);
}

.faq-head {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.faq-head h2 {
  font-size: var(--step-3);
}

.faq-head > p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  transition: transform 300ms var(--ease), background-color 300ms var(--ease);
}

.faq-list details[open] summary::after {
  background: var(--coral);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 46rem;
  padding: 0 3rem var(--space-3) 0;
  color: var(--muted);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-6);
  color: var(--paper);
  background: var(--ink);
}

.contact::before {
  position: absolute;
  width: 38rem;
  height: 38rem;
  top: -19rem;
  right: -10rem;
  border: 1px solid rgba(203, 233, 244, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-5);
}

.contact-copy {
  position: relative;
}

.contact-copy h2 {
  font-size: var(--step-3);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: #b8c7d0;
  font-size: var(--step-1);
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
  margin-block: var(--space-4);
}

.contact-links a {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  text-decoration-color: var(--coral);
  text-underline-offset: 0.3em;
}

.contact-copy img {
  width: 7rem;
  aspect-ratio: 1;
  border: 5px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(-5deg);
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: var(--space-4);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-dark);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.contact-form label {
  display: block;
  margin-bottom: var(--space-3);
}

.contact-form label > span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: var(--step--1);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--line);
  border-radius: 0;
  padding: 0.7rem 0.1rem;
  color: var(--ink);
  background: transparent;
  outline: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 2px 0 var(--blue);
}

.contact-form .check {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
}

.contact-form .check input {
  width: 1rem;
  margin-top: 0.3rem;
  accent-color: var(--coral);
}

.contact-form .check span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--blue);
  font-size: var(--step--1);
}

/* Footer */
.site-footer {
  padding: var(--space-5) 0 var(--space-3);
  color: var(--paper);
  background: var(--ink-deep);
}

.wordmark-light {
  color: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  align-items: start;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
}

.footer-top > p {
  max-width: 25rem;
  margin-bottom: 0;
  color: #b8c7d0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.05;
}

.footer-top nav {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}

.footer-top nav a,
.footer-bottom a {
  color: #b8c7d0;
  text-underline-offset: 0.25em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #7f949f;
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

/* Entry motion */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stage-in {
  from {
    opacity: 0;
    transform: translateX(2rem) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

.hero-copy > * {
  opacity: 0;
  animation: hero-rise 700ms var(--ease) forwards;
}

.hero-copy > :nth-child(1) { animation-delay: 80ms; }
.hero-copy > :nth-child(2) { animation-delay: 160ms; }
.hero-copy > :nth-child(3) { animation-delay: 240ms; }
.hero-copy > :nth-child(4) { animation-delay: 320ms; }
.hero-copy > :nth-child(5) { animation-delay: 400ms; }

.hero-stage {
  opacity: 0;
  animation: stage-in 900ms 220ms var(--ease) forwards;
}

@media (max-width: 1050px) {
  .hero-copy {
    width: min(43rem, 65vw);
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-featured {
    grid-column: 1 / -1;
  }

  .article-featured {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
  }

  .article-featured .article-image {
    height: 100%;
    min-height: 23rem;
  }
}

@media (max-width: 820px) {
  .home-site-header {
    background: rgba(4, 22, 40, 0.9);
    backdrop-filter: blur(18px);
  }

  .home-site-header.is-scrolled {
    background: rgba(246, 248, 244, 0.96);
  }

  .header-inner {
    min-height: 4.7rem;
  }

  .menu-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.28rem;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .home-site-header:not(.is-scrolled) .menu-toggle {
    color: var(--paper);
  }

  .home-site-header.is-scrolled .menu-toggle {
    color: var(--ink);
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: currentColor;
    transition: transform 250ms var(--ease), opacity 250ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: flex;
    width: 100%;
    height: calc(100dvh - 4.7rem);
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: var(--space-4) var(--gutter);
    background: var(--porcelain);
    transform: translateX(100%);
    transition: transform 380ms var(--ease);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .home-site-header .main-nav.is-open > a:not(.nav-cta) {
    color: var(--ink);
  }

  .main-nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: var(--step-2);
  }

  .main-nav .nav-cta {
    width: auto;
    margin-top: var(--space-3);
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: var(--step-0);
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 52rem;
  }

  .hero-copy {
    width: min(42rem, 83vw);
    padding-top: 5.5rem;
  }

  .hero-art img {
    object-position: 62% center;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(4, 22, 40, 0.97) 0%, rgba(4, 22, 40, 0.82) 55%, rgba(4, 22, 40, 0.35) 100%);
  }

  .proof-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-track li:nth-child(3),
  .proof-track li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .work-card-main,
  .work-card-side,
  .work-card-wide {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .services-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-title,
  .faq-head {
    position: static;
  }

  .local-stage {
    grid-template-columns: 1fr;
  }

  .local-image {
    min-height: 30rem;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-copy {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: 2;
  }

  .blog-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 47rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 13.4vw, 4.2rem);
  }

  .hero-grid {
    min-height: 47rem;
    align-items: center;
  }

  .hero-copy {
    width: 100%;
    padding-top: 4.5rem;
  }

  .hero-art img {
    object-position: 68% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(4, 22, 40, 0.98) 0%, rgba(4, 22, 40, 0.86) 73%, rgba(4, 22, 40, 0.56) 100%),
      linear-gradient(0deg, rgba(4, 22, 40, 0.68), transparent 60%);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .trust-line {
    gap: 0.55rem 1rem;
  }

  .proof-track li {
    padding: 1.2rem 0.8rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card-side {
    padding-top: 0;
  }

  .work-card-wide {
    display: block;
    margin-top: 0;
  }

  .work-shot,
  .work-card-side .work-shot,
  .work-card-wide .work-shot {
    width: 100%;
    height: auto;
  }

  .work-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    grid-template-columns: 2.2rem 1fr;
  }

  .service-row svg {
    display: none;
  }

  .local-image {
    min-height: 22rem;
  }

  .local-copy {
    padding: var(--space-5) var(--gutter);
  }

  .local-facts {
    grid-template-columns: 1fr;
  }

  .process-head {
    display: block;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    min-height: 0;
    grid-template-columns: 3rem 1fr;
    border-right: 0;
  }

  .process-list li > span {
    margin-bottom: 0;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-number {
    padding: var(--space-3) 0;
    border-block: 1px solid rgba(255, 255, 255, 0.24);
    border-inline: 0;
  }

  .price-copy {
    grid-column: auto;
  }

  .about-photo,
  .about-photo img {
    min-height: 22rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-featured {
    display: flex;
    grid-column: auto;
  }

  .article-featured .article-image {
    height: 18rem;
    min-height: 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: var(--space-3);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
