:root {
  --paper: #e9e4dc;
  --ivory: #fbf7ef;
  --clay: #b79572;
  --olive: #69684e;
  --coffee: #33251d;
  --ink: #211b17;
  --muted: rgba(33, 27, 23, 0.68);
  --line: rgba(33, 27, 23, 0.14);
  --veil: rgba(18, 12, 8, 0.42);
  --max: 1240px;
  --wide-max: 1500px;
  --frame-gutter: 48px;
  --frame: min(var(--max), calc(100% - var(--frame-gutter)));
  --wide-frame: min(var(--wide-max), calc(100% - var(--frame-gutter)));
  --narrow-frame: min(980px, calc(100% - var(--frame-gutter)));
  --font-display: "Clarendon LT", "Clarendon LT Std", Georgia, serif;
  --font-body: "Avenir Light", "Avenir LT Std 35 Light", Avenir, "Montserrat", sans-serif;
  --font-label: "Lulo Clean", "Lulo Clean One", "Montserrat", sans-serif;
  --font-editorial: Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(251, 247, 239, 0.78) 42%, var(--paper) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  isolation: isolate;
  transition: background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(233, 228, 220, 0.92);
  box-shadow: 0 18px 48px rgba(33, 27, 23, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled a,
.site-header.is-scrolled button {
  color: var(--ink);
}

.site-header.is-scrolled .brand img {
  filter: invert(1) brightness(0.2) sepia(0.25);
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(120px, 13vw, 174px) minmax(0, 1fr);
  column-gap: clamp(42px, 4.8vw, 64px);
  align-items: center;
  width: min(var(--wide-max), calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0;
}

.nav-group {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 38px);
  min-width: 0;
}

.nav-right {
  justify-content: flex-end;
  gap: clamp(24px, 2.8vw, 38px);
}

.nav-group a,
.menu-toggle,
.brand {
  color: var(--ivory);
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-group a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-group a:hover,
.brand:hover {
  opacity: 0.68;
}

.brand {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: clamp(120px, 13vw, 174px);
}

.brand::before {
  content: "";
  position: absolute;
  inset: -18px -28px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(18, 12, 8, 0.48) 0%, rgba(18, 12, 8, 0.3) 42%, rgba(18, 12, 8, 0) 72%);
  backdrop-filter: blur(1.5px);
  opacity: 0.96;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.site-header.is-scrolled .brand::before {
  opacity: 0;
}

.internal-page .brand::before {
  opacity: 0;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 100%;
  transition: filter 260ms ease, opacity 180ms ease;
}

.whatsapp-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-link {
  display: inline-grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-switch a {
  opacity: 0.54;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-right .language-switch {
  margin-left: 4px;
}

.nav-right .whatsapp-link {
  margin-left: 2px;
}

.language-switch a:hover,
.language-switch a.is-active {
  opacity: 1;
}

.site-header.is-scrolled .language-switch,
.internal-page .language-switch {
  color: var(--ink);
}

.site-header.is-scrolled .nav-group,
.site-header.is-scrolled .whatsapp-link,
.site-header.is-scrolled .menu-toggle {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1240px) and (min-width: 901px) {
  .site-nav {
    width: calc(100% - 20px);
    grid-template-columns: minmax(0, 1fr) clamp(120px, 12vw, 150px) minmax(0, 1fr);
    column-gap: clamp(28px, 3.4vw, 46px);
  }

  .nav-group {
    gap: clamp(18px, 2.1vw, 26px);
  }

  .nav-right {
    gap: clamp(18px, 2.1vw, 26px);
  }

  .nav-group a {
    font-size: 10.5px;
    letter-spacing: 0.14em;
  }

  .brand {
    width: clamp(120px, 12vw, 150px);
  }

  .brand::before {
    inset: -16px -24px;
  }

  .language-switch {
    gap: 5px;
    font-size: 9.5px;
    letter-spacing: 0.11em;
  }

  .whatsapp-link svg {
    width: 19px;
    height: 19px;
  }

  .whatsapp-link {
    width: 25px;
    height: 25px;
  }
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.menu-toggle {
  justify-self: end;
  padding: 8px;
}

.menu-toggle svg,
.menu-close svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.mobile-only,
.mobile-menu {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(82vw, 340px);
  height: 100svh;
  padding: 28px;
  background: var(--ivory);
  box-shadow: -20px 0 60px rgba(33, 27, 23, 0.16);
  transform: translateX(104%);
  transition: transform 260ms ease;
}

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

.mobile-menu nav {
  display: grid;
  gap: 24px;
  margin-top: 54px;
}

.mobile-menu a,
.mobile-whatsapp {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-whatsapp {
  display: inline-flex;
  margin-top: 68px;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 6px;
  color: var(--coffee);
}

.menu-close {
  margin-left: auto;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: var(--coffee);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.04);
}

.hero-media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 180ms ease;
}

.hero-media video.is-active {
  opacity: 1;
}

.hero-media img {
  transform: scale(1.08);
  animation: hero-cinema 24s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(18, 12, 8, 0.05), rgba(18, 12, 8, 0.36) 66%, rgba(18, 12, 8, 0.62)),
    linear-gradient(180deg, rgba(18, 12, 8, 0.34), rgba(18, 12, 8, 0.04) 34%, rgba(18, 12, 8, 0.78));
}

.hero-logo {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: clamp(230px, 28vw, 430px);
  padding: clamp(28px, 4vw, 58px) clamp(34px, 5vw, 78px);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(18, 12, 8, 0.48) 0%, rgba(18, 12, 8, 0.3) 42%, rgba(18, 12, 8, 0) 72%);
  backdrop-filter: blur(1.5px);
  opacity: 0.96;
  animation: hero-logo-in 1400ms ease-out both;
}

.hero-logo img {
  width: 100%;
}

.section-title p,
.about-copy > p:first-child,
.custom-copy > p:first-child,
.process-heading p,
.work-together-copy > p:first-child,
.contact-section p {
  margin-bottom: 18px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-title h2,
.about-copy h2,
.custom-copy h2,
.process-heading h2,
.work-together-copy h2,
.blog-heading h2,
.contact-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.about-copy a,
.work-together-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

@keyframes hero-cinema {
  0% {
    transform: scale(1.08) translate3d(-1.8%, -1.2%, 0);
  }

  25% {
    transform: scale(1.13) translate3d(1.2%, -0.4%, 0);
  }

  50% {
    transform: scale(1.16) translate3d(1.8%, 1%, 0);
  }

  75% {
    transform: scale(1.12) translate3d(-0.8%, 1.2%, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes hero-logo-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
  }
}

.section-title {
  width: var(--narrow-frame);
  margin: 0 auto;
  padding: 84px 0 46px;
  text-align: center;
}

.section-title p,
.custom-copy > p:first-child,
.process-heading p,
.work-together-copy > p:first-child {
  color: var(--olive);
}

.section-title h2 {
  color: var(--coffee);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
}

.work-section {
  padding-bottom: 14px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

.work-card {
  position: relative;
  min-height: min(42vw, 520px);
  overflow: hidden;
  border-radius: 0;
  background: var(--coffee);
  box-shadow: none;
  transition: box-shadow 260ms ease;
}

.work-card.tall {
  min-height: min(48vw, 610px);
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease, filter 800ms ease;
  filter: saturate(0.9) brightness(1.08);
}

.work-card img.residential-image {
  object-position: 50% center;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 8, 0), rgba(18, 12, 8, 0.34)),
    rgba(18, 12, 8, 0.12);
  transition: background 240ms ease, opacity 240ms ease;
}

.work-card span {
  position: absolute;
  inset: auto 26px 30px;
  z-index: 1;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1;
  text-shadow: 0 12px 34px rgba(18, 12, 8, 0.48);
}

.work-card:hover img {
  transform: scale(1.05);
  filter: saturate(0.76) brightness(0.88);
}

.work-card:hover {
  z-index: 1;
  box-shadow: 0 20px 54px rgba(18, 12, 8, 0.24);
}

.work-card:hover::after {
  background: rgba(18, 12, 8, 0.56);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 620px;
  margin-top: 86px;
  background: var(--coffee);
}

.about-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 12, 8, 0.02), rgba(18, 12, 8, 0.18));
  pointer-events: none;
}

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

.about-copy,
.custom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy {
  align-items: flex-start;
  background: var(--coffee);
  padding: clamp(42px, 7vw, 104px);
  color: var(--ivory);
}

.about-copy h2 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
}

.about-lead {
  color: rgba(251, 247, 239, 0.9);
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.about-copy > span,
.custom-copy > span {
  display: block;
  width: 54px;
  height: 1px;
  margin: 26px 0;
  background: var(--clay);
}

.about-copy p:last-of-type,
.custom-copy p:last-of-type,
.service-list p,
.process-grid p {
  max-width: 560px;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.about-copy p:last-of-type {
  color: rgba(251, 247, 239, 0.76);
}

.about-copy .about-more {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin-top: 34px;
  border: 0 !important;
  padding: 0;
  background: none;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease;
  text-decoration: none;
  box-shadow: none;
}

.about-copy .about-more-label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.about-copy .about-more-label::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-0.02em);
}

.about-copy .about-more-rule {
  width: 100%;
  height: 1px;
  margin-top: 9px;
  background: rgba(251, 247, 239, 0.42);
}

.about-copy .about-more:hover,
.about-copy .about-more:focus-visible {
  color: var(--clay);
}

.about-copy .about-more:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 8px;
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 122px);
  width: var(--wide-frame);
  margin: 0 auto;
  padding: 104px 0 112px;
}

.custom-copy h2,
.process-heading h2,
.work-together-copy h2,
.blog-heading h2,
.contact-section h2 {
  color: var(--coffee);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
}

.custom-copy p:last-of-type,
.service-list p,
.process-grid p,
.briefing-list p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 10px;
  align-self: center;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.service-list article {
  min-height: 174px;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: 6px;
  padding: 30px;
  background: rgba(251, 247, 239, 0.58);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-list article:hover {
  border-color: rgba(183, 149, 114, 0.46);
  background: rgba(251, 247, 239, 0.82);
  transform: translateY(-2px);
}

.service-list small,
.process-grid span {
  color: var(--olive);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-list h3,
.process-grid h3 {
  margin: 22px 0 12px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
}

.process-section {
  width: var(--wide-frame);
  margin: 0 auto 104px;
  border-top: 1px solid var(--line);
  padding-top: 62px;
  text-align: center;
}

.process-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-heading h2 {
  max-width: 820px;
  text-wrap: balance;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.process-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  background: rgba(251, 247, 239, 0.44);
  transition: border-color 220ms ease, background 220ms ease;
}

.process-grid article:hover {
  border-color: rgba(183, 149, 114, 0.42);
  background: rgba(251, 247, 239, 0.72);
}

.work-together-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 620px;
  margin-top: -16px;
  background: var(--ivory);
}

.work-together-media {
  min-height: 520px;
  overflow: hidden;
}

.work-together-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 900ms ease;
}

.work-together-section:hover .work-together-media img {
  transform: scale(1.025);
}

.work-together-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 104px);
}

.work-together-copy span {
  display: block;
  width: 54px;
  height: 1px;
  margin: 26px 0;
  background: var(--clay);
}

.work-together-copy > p:last-of-type {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.briefing-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
  border: 0;
  background: transparent;
}

.briefing-list div {
  min-height: 178px;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: 6px;
  padding: 24px;
  background: rgba(233, 228, 220, 0.62);
}

.briefing-list small {
  color: var(--olive);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.briefing-list strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.briefing-list p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.blog-section {
  width: var(--frame);
  margin: 0 auto;
  padding: 100px 0 84px;
  text-align: center;
}

.blog-heading {
  max-width: 720px;
  margin: 0 auto 44px;
}

.blog-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.blog-heading p {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.blog-featured {
  position: relative;
  margin-bottom: 32px;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.blog-featured__inner {
  position: relative;
  display: block;
  min-height: 560px;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: none;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.blog-featured__image,
.blog-featured__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-featured__image img {
  object-fit: cover;
  border-radius: 22px;
  transition: transform 600ms ease;
}

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.035);
}

.blog-featured:hover .blog-featured__inner {
  box-shadow: 0 20px 54px rgba(18, 12, 8, 0.24);
  transform: translateY(-4px);
}

.blog-featured__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 68px);
  background: linear-gradient(180deg, rgba(18, 12, 8, 0.06) 12%, rgba(18, 12, 8, 0.24) 48%, rgba(18, 12, 8, 0.9) 100%);
}

.blog-featured__body {
  max-width: 760px;
}

.blog-featured__title {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.98;
}

.blog-featured__excerpt {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(251, 247, 239, 0.82);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transition: none;
}

.blog-card__image {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: none;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.blog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 500ms ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.045);
}

.blog-card:hover .blog-card__image {
  box-shadow: 0 20px 54px rgba(18, 12, 8, 0.24);
  transform: translateY(-4px);
}

.blog-card__category {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px 8px;
  background: rgba(51, 37, 29, 0.88);
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.blog-featured .blog-card__category {
  top: clamp(32px, 5vw, 68px);
  left: clamp(32px, 5vw, 68px);
}

.blog-card__content {
  display: flex;
  min-height: 280px;
  padding: 34px 36px 38px;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(33, 27, 23, 0.54);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-featured .blog-card__meta {
  color: rgba(251, 247, 239, 0.62);
}

.blog-card__dot {
  opacity: 0.48;
}

.blog-card .blog-card__title {
  margin: 0 0 14px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.04;
}

.blog-card .blog-card__excerpt {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.blog-card__link,
.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  color: var(--coffee);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.blog-card__content .blog-card__link {
  margin-top: auto;
}

.blog-featured .blog-card__link {
  color: var(--ivory);
}

.blog-more {
  justify-content: center;
  margin: 54px auto 0;
}

.blog-card__link:hover,
.blog-featured:hover .blog-card__link,
.blog-more:hover,
.work-together-copy a:hover {
  color: var(--clay);
  transform: translateY(-1px);
}

.contact-section {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  padding: 58px 24px;
  background: var(--coffee);
  text-align: center;
}

.contact-panel {
  width: min(100%, 680px);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  padding: 1px;
  background: rgba(251, 247, 239, 0.18);
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 8px;
  min-height: 92px;
  align-content: center;
  padding: 20px 22px;
  background: var(--coffee);
}

.contact-list span {
  color: rgba(251, 247, 239, 0.58);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  transition: color 180ms ease;
}

.contact-list a:hover {
  color: var(--clay);
}

.contact-section p,
.contact-section h2,
.contact-list a,
.contact-list strong {
  color: var(--ivory);
}

.site-footer {
  background: var(--coffee);
  color: rgba(251, 247, 239, 0.68);
}

.site-footer-inner {
  width: var(--frame);
  margin: 0 auto;
  padding: 42px 0 22px;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(24px, 4vw, 58px);
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1;
}

.footer-col p {
  max-width: 290px;
  color: rgba(251, 247, 239, 0.66);
  font-size: 13px;
  line-height: 1.75;
}

.footer-social {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  justify-items: start;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(251, 247, 239, 0.2);
  border-radius: 50%;
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-app-icon {
  width: 17px;
  height: 17px;
  color: rgba(251, 247, 239, 0.46);
  fill: currentColor;
}

.footer-social-handle,
.footer-links a,
.footer-contact a,
.footer-contact strong {
  color: rgba(251, 247, 239, 0.68);
  font-size: 12px;
  line-height: 1.7;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-handle:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--clay);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-contact span {
  color: rgba(251, 247, 239, 0.46);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 2.2;
}

.footer-contact .footer-app-icon {
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid rgba(251, 247, 239, 0.12);
  padding-top: 18px;
}

.footer-bottom p {
  color: rgba(251, 247, 239, 0.48);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom .footer-credit {
  color: rgba(251, 247, 239, 0.34);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-credit span {
  color: rgba(192, 126, 93, 0.82);
  font-weight: 700;
}

.story-page {
  padding-top: 92px;
}

.article-page {
  padding-top: 0;
}

.article-main {
  padding-bottom: 0;
}

.article-hero {
  width: 100%;
  height: clamp(460px, 72svh, 780px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--coffee);
  box-shadow: 0 24px 58px rgba(33, 27, 23, 0.14);
}

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

.article-content {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0 100px;
}

.article-back {
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  color: var(--coffee);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.article-back:hover {
  color: var(--clay);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  color: var(--olive);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-content h1 {
  margin-top: 24px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.article-intro {
  margin-top: 30px;
  color: rgba(33, 27, 23, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.72;
  text-wrap: pretty;
}

.article-content section {
  margin-top: 62px;
}

.article-content section h2 {
  margin-bottom: 20px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.article-content section p {
  color: rgba(33, 27, 23, 0.76);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  text-wrap: pretty;
}

.article-content section p + p {
  margin-top: 20px;
}

.article-section-media {
  margin: 34px 0 0;
}

.article-section-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-content blockquote {
  margin: 68px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.article-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid rgba(251, 247, 239, 0.2);
  padding: 54px 0 58px;
  background: var(--coffee);
  color: var(--ivory);
}

.article-main .article-next {
  position: relative;
  width: 100%;
  padding-right: max(24px, calc((100% - 1120px) / 2));
  padding-left: max(24px, calc((100% - 1120px) / 2));
}

.article-next > span {
  color: rgba(251, 247, 239, 0.58);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-next a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 650px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  text-align: right;
  transition: color 180ms ease;
}

.article-next a:hover {
  color: var(--clay);
}

.article-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(24px, calc((100% - 1120px) / 2));
  background: var(--coffee);
  color: rgba(251, 247, 239, 0.62);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-footer a:hover {
  color: var(--ivory);
}

.story-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.74), rgba(18, 12, 8, 0.16) 58%, rgba(18, 12, 8, 0.6)),
    var(--story-hero) center / cover;
}

.story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(251, 247, 239, 0.05), rgba(18, 12, 8, 0.13) 48%, rgba(18, 12, 8, 0.62)),
    linear-gradient(180deg, rgba(18, 12, 8, 0.18), rgba(18, 12, 8, 0.76));
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(56px, 8vw, 104px);
  color: var(--ivory);
}

.story-page--residential,
.story-page--commercial,
.story-page--facades,
.story-page--inspiration {
  padding-top: 0;
}

.story-page--residential .site-header,
.story-page--commercial .site-header,
.story-page--facades .site-header,
.story-page--inspiration .site-header {
  background: linear-gradient(180deg, rgba(18, 12, 8, 0.48), rgba(18, 12, 8, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.story-page--residential .site-header a,
.story-page--residential .site-header button,
.story-page--commercial .site-header a,
.story-page--commercial .site-header button,
.story-page--facades .site-header a,
.story-page--facades .site-header button,
.story-page--inspiration .site-header a,
.story-page--inspiration .site-header button {
  color: var(--ivory);
}

.story-page--residential .site-header .brand img,
.story-page--commercial .site-header .brand img,
.story-page--facades .site-header .brand img,
.story-page--inspiration .site-header .brand img {
  filter: none;
}

.story-page--residential .site-header.is-scrolled,
.story-page--commercial .site-header.is-scrolled,
.story-page--facades .site-header.is-scrolled,
.story-page--inspiration .site-header.is-scrolled {
  background: rgba(233, 228, 220, 0.92);
  box-shadow: 0 18px 48px rgba(33, 27, 23, 0.1);
  backdrop-filter: blur(18px);
}

.story-page--residential .site-header.is-scrolled a,
.story-page--residential .site-header.is-scrolled button,
.story-page--commercial .site-header.is-scrolled a,
.story-page--commercial .site-header.is-scrolled button,
.story-page--facades .site-header.is-scrolled a,
.story-page--facades .site-header.is-scrolled button,
.story-page--inspiration .site-header.is-scrolled a,
.story-page--inspiration .site-header.is-scrolled button {
  color: var(--ink);
}

.story-page--residential .site-header.is-scrolled .brand img,
.story-page--commercial .site-header.is-scrolled .brand img,
.story-page--facades .site-header.is-scrolled .brand img,
.story-page--inspiration .site-header.is-scrolled .brand img {
  filter: invert(1) brightness(0.2) sepia(0.25);
}

.story-page--residential .story-hero,
.story-page--commercial .story-hero,
.story-page--facades .story-hero,
.story-page--inspiration .story-hero {
  display: block;
  min-height: clamp(460px, 72svh, 780px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--coffee);
  box-shadow: 0 24px 58px rgba(33, 27, 23, 0.14);
}

.story-page--residential .story-hero::after,
.story-page--commercial .story-hero::after,
.story-page--facades .story-hero::after,
.story-page--inspiration .story-hero::after {
  display: none;
  content: none;
}

.story-page--residential .story-hero img,
.story-page--commercial .story-hero img,
.story-page--facades .story-hero img,
.story-page--inspiration .story-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-page--residential .story-hero-inner,
.story-page--commercial .story-hero-inner,
.story-page--facades .story-hero-inner,
.story-page--inspiration .story-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 0;
  color: var(--coffee);
}

.story-page--residential .story-hero-inner .story-back,
.story-page--commercial .story-hero-inner .story-back,
.story-page--facades .story-hero-inner .story-back,
.story-page--inspiration .story-hero-inner .story-back {
  color: var(--coffee);
}

.story-page--residential .story-hero-inner .story-brand,
.story-page--commercial .story-hero-inner .story-brand,
.story-page--facades .story-hero-inner .story-brand,
.story-page--inspiration .story-hero-inner .story-brand {
  color: var(--olive);
}

.story-page--residential .story-hero-inner .story-lead,
.story-page--commercial .story-hero-inner .story-lead,
.story-page--facades .story-hero-inner .story-lead,
.story-page--inspiration .story-hero-inner .story-lead {
  color: rgba(33, 27, 23, 0.78);
}

.story-back,
.story-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.story-back:hover,
.story-cta a:hover {
  color: var(--clay);
  transform: translateY(-1px);
}

.story-brand {
  margin-top: 24px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.story-hero h1 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 124px);
  font-weight: 400;
  line-height: 0.92;
}

.story-lead {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(251, 247, 239, 0.84);
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 84px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 18px -24px;
  z-index: -1;
  border-radius: 6px;
  background: transparent;
}

.story-section--reverse::before {
  background: rgba(251, 247, 239, 0.38);
}

.story-page--about .story-section:nth-of-type(2) {
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.58fr);
  max-width: 980px;
}

.story-page--about .story-section:nth-of-type(2) .story-media--single img {
  min-height: 520px;
  object-position: center top;
}

.story-page--residential .story-section:nth-of-type(4),
.story-page--facades .story-section:nth-of-type(2) {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.story-page--commercial .story-section {
  align-items: stretch;
}

.story-page--commercial .story-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(183, 149, 114, 0.42);
  padding-left: clamp(22px, 3vw, 38px);
}

.story-page--commercial .story-media--single img,
.story-page--commercial .story-media--split img {
  min-height: 330px;
}

.story-page--commercial .story-section.story-section--positioning {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--commercial .story-media--positioning {
  grid-column: 1;
  order: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--commercial .story-section--positioning .story-copy {
  grid-column: 2;
  order: 2;
  min-height: auto;
  text-align: left;
}

.story-page--commercial .story-media--positioning img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--commercial .story-section.story-section--journey {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--commercial .story-section--journey .story-copy {
  grid-column: 1;
  order: 1;
  min-height: auto;
  text-align: left;
}

.story-page--commercial .story-media--journey {
  grid-column: 2;
  order: 2;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--commercial .story-media--journey img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--commercial .story-section.story-section--operation {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--commercial .story-media--operation {
  grid-column: 1;
  order: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--commercial .story-section--operation .story-copy {
  grid-column: 2;
  order: 2;
  min-height: auto;
  text-align: left;
}

.story-page--commercial .story-media--operation img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--commercial .story-section.story-section--memory {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--commercial .story-section--memory .story-copy {
  grid-column: 1;
  order: 1;
  min-height: auto;
  text-align: left;
}

.story-page--commercial .story-media--memory {
  grid-column: 2;
  order: 2;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--commercial .story-media--memory img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--commercial .story-section.story-section--perception {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 56px);
  align-items: center;
}

.story-page--commercial .story-media--perception {
  width: min(100%, 980px);
  margin: 0 auto;
}

.story-page--commercial .story-media--perception img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--commercial .story-section--perception .story-copy {
  width: min(100%, 720px);
  min-height: auto;
  padding-left: 0;
  border-left: 0;
  text-align: center;
}

.story-page--commercial .story-section--perception .story-copy p:last-of-type {
  margin-right: auto;
  margin-left: auto;
}

.story-commercial-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(18px, 2.6vw, 34px);
  width: min(100% - 44px, 1120px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) 0 clamp(76px, 8vw, 118px);
}

.story-commercial-gallery figure {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.04);
}

.story-commercial-gallery figure:first-child {
  transform: translateY(clamp(16px, 3vw, 38px));
}

.story-commercial-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.story-page--facades .story-media--single img {
  min-height: 430px;
}

.story-page--facades .story-media img {
  object-position: center;
}

.story-page--inspiration .story-section {
  align-items: start;
}

.story-page--inspiration .story-copy h2 {
  max-width: 680px;
}

.story-page--inspiration .story-media--split {
  gap: 10px;
}

.story-page--inspiration .story-media img {
  filter: saturate(0.88) contrast(1.02);
}

.story-page--inspiration .story-section.story-section--clipping {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--inspiration .story-media--clipping {
  grid-column: 1;
  order: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--inspiration .story-section--clipping .story-copy {
  grid-column: 2;
  order: 2;
  text-align: left;
}

.story-page--inspiration .story-media--clipping img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--inspiration .story-section.story-section--palette {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--inspiration .story-section--palette .story-copy {
  grid-column: 1;
  order: 1;
  text-align: left;
}

.story-page--inspiration .story-media--palette {
  grid-column: 2;
  order: 2;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--inspiration .story-media--palette img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--inspiration .story-section.story-section--inspiration-materials {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 56px);
  align-items: center;
}

.story-page--inspiration .story-media--inspiration-materials {
  width: min(100%, 980px);
  margin: 0 auto;
}

.story-page--inspiration .story-media--inspiration-materials img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--inspiration .story-section--inspiration-materials .story-copy {
  width: min(100%, 720px);
  text-align: center;
}

.story-page--inspiration .story-section--inspiration-materials .story-copy p:last-of-type {
  margin-right: auto;
  margin-left: auto;
}

.story-page--inspiration .story-section.story-section--balance {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.story-page--inspiration .story-media--balance {
  grid-column: 1;
  order: 1;
  width: min(100%, 520px);
  margin: 0 auto;
}

.story-page--inspiration .story-section--balance .story-copy {
  grid-column: 2;
  order: 2;
  text-align: left;
}

.story-page--inspiration .story-media--balance img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--inspiration .story-section.story-section--atmosphere {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--inspiration .story-section--atmosphere .story-copy {
  grid-column: 1;
  order: 1;
  text-align: left;
}

.story-page--inspiration .story-media--atmosphere {
  grid-column: 2;
  order: 2;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--inspiration .story-media--atmosphere img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-inspiration-feature {
  width: min(100% - 44px, 520px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px) 0 clamp(76px, 8vw, 118px);
}

.story-inspiration-feature figure {
  margin: 0;
}

.story-inspiration-feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.story-section--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.story-section--reverse .story-copy {
  order: 2;
}

.story-section--reverse .story-media {
  order: 1;
}

.story-kicker {
  margin-bottom: 18px;
  color: var(--olive);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-copy h2 {
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.04;
}

.story-copy p:last-of-type {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.story-media {
  display: grid;
  gap: 12px;
}

.story-media img {
  width: 100%;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: 6px;
  background: rgba(251, 247, 239, 0.4);
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  box-shadow: 0 18px 48px rgba(33, 27, 23, 0.08);
  transition: filter 260ms ease, transform 900ms ease, box-shadow 260ms ease;
}

.story-media img:hover {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.012);
  box-shadow: 0 22px 58px rgba(33, 27, 23, 0.12);
}

.story-media--single img {
  min-height: 380px;
}

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

.story-media--split img {
  min-height: 250px;
}

.article-hub {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0) 0, var(--paper) 42rem),
    var(--paper);
}

.article-hub .article-hub-hero img {
  filter: saturate(0.82) contrast(1.04) brightness(0.92);
}

.article-hub-intro {
  position: relative;
}

.article-hub-intro::after {
  content: "";
  display: block;
  width: min(420px, 78vw);
  height: 1px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  background: linear-gradient(90deg, transparent, rgba(105, 104, 78, 0.56), transparent);
}

.article-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 3vw, 34px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) 0 clamp(78px, 9vw, 124px);
}

.article-hub-card {
  position: relative;
  display: grid;
  min-height: clamp(460px, 54vw, 680px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--coffee);
  color: var(--ivory);
  isolation: isolate;
}

.article-hub-card:not(.article-hub-card--featured) {
  min-height: clamp(310px, 26vw, 384px);
}

.article-hub-card--featured {
  grid-row: span 2;
}

.article-hub-card figure {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.article-hub-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 8, 0.08), rgba(18, 12, 8, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(251, 247, 239, 0.12), transparent 32%);
}

.article-hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
  transform: scale(1.01);
  transition: filter 420ms ease, transform 900ms ease;
}

.article-hub-card__content {
  align-self: end;
  display: grid;
  gap: 18px;
  max-width: 620px;
  padding: clamp(26px, 4vw, 52px);
}

.article-hub-card__category,
.article-hub-card__link {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-hub-card__category {
  color: rgba(251, 247, 239, 0.72);
}

.article-hub-card h2 {
  max-width: 13ch;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.article-hub-card:not(.article-hub-card--featured) h2 {
  max-width: 15ch;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.article-hub-card p {
  max-width: 58ch;
  color: rgba(251, 247, 239, 0.78);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  text-wrap: pretty;
}

.article-hub-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
}

.article-hub-card:hover img {
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.045);
}

.article-hub-note {
  display: grid;
  gap: 24px;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 0 0 clamp(78px, 9vw, 118px);
  text-align: center;
}

.article-hub-note p {
  margin-top: clamp(38px, 5vw, 58px);
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.article-hub-note a {
  justify-self: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  color: var(--coffee);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-cta {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 112px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.story-cta h2 {
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
}

.story-cta p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.story-cta a {
  margin-top: 28px;
  color: var(--coffee);
}

.internal-page .site-header {
  background: rgba(233, 228, 220, 0.92);
  box-shadow: 0 18px 48px rgba(33, 27, 23, 0.1);
  backdrop-filter: blur(18px);
}

.internal-page .site-header a,
.internal-page .site-header button {
  color: var(--ink);
}

.internal-page .brand img {
  filter: invert(1) brightness(0.2) sepia(0.25);
}

.article-page .site-header {
  background: linear-gradient(180deg, rgba(18, 12, 8, 0.48), rgba(18, 12, 8, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.article-page .site-header a,
.article-page .site-header button {
  color: var(--ivory);
}

.article-page .site-header .brand img {
  filter:
    drop-shadow(0 10px 22px rgba(18, 12, 8, 0.52))
    drop-shadow(0 2px 4px rgba(18, 12, 8, 0.36));
}

.article-page .site-header.is-scrolled {
  background: rgba(233, 228, 220, 0.92);
  box-shadow: 0 18px 48px rgba(33, 27, 23, 0.1);
  backdrop-filter: blur(18px);
}

.article-page .site-header.is-scrolled a,
.article-page .site-header.is-scrolled button {
  color: var(--ink);
}

.article-page .site-header.is-scrolled .brand img {
  filter: invert(1) brightness(0.2) sepia(0.25);
}

.subpage-main {
  padding-top: 92px;
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 74svh, 760px);
  place-items: end start;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.72), rgba(18, 12, 8, 0.2) 58%, rgba(18, 12, 8, 0.5)),
    var(--hero-image) center / cover;
}

.subpage-hero--text {
  min-height: clamp(360px, 52svh, 520px);
  background:
    linear-gradient(135deg, rgba(51, 37, 29, 0.98), rgba(105, 104, 78, 0.72)),
    var(--paper);
}

.subpage-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(58px, 8vw, 96px);
  color: var(--ivory);
}

.subpage-hero-copy a,
.subpage-content > div:first-child p,
.subpage-text a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.subpage-hero-copy a,
.subpage-text a {
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
}

.subpage-hero-copy h1,
.subpage-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.subpage-hero-copy h1 {
  margin-top: 24px;
  font-size: clamp(58px, 11vw, 128px);
  line-height: 0.92;
}

.subpage-hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(251, 247, 239, 0.82);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
}

.subpage-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 100px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 108px;
}

.subpage-content > div:first-child p {
  margin-bottom: 18px;
  color: var(--olive);
}

.subpage-content h2 {
  color: var(--coffee);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.02;
}

.subpage-text {
  align-self: center;
}

.subpage-inline-image {
  display: block;
  width: 100%;
  max-width: 680px;
  margin: 30px 0;
  border: 1px solid var(--line);
  object-fit: cover;
}

.subpage-text p,
.subpage-text li {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.subpage-text ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.subpage-text li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.subpage-text a {
  margin-top: 34px;
  color: var(--coffee);
}

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

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

@media (min-width: 901px) {
  .about-copy,
  .custom-copy,
  .process-heading,
  .work-together-copy,
  .blog-heading,
  .contact-section,
  .story-hero-inner,
  .story-copy,
  .story-cta,
  .subpage-hero-copy,
  .subpage-content,
  .subpage-text {
    text-align: center;
  }

  .about-copy,
  .custom-copy,
  .process-heading,
  .work-together-copy,
  .blog-heading,
  .contact-section,
  .story-hero-inner,
  .story-copy,
  .story-cta,
  .subpage-hero-copy,
  .subpage-content,
  .subpage-text {
    display: grid;
    justify-items: center;
  }

  .about-copy > span,
  .custom-copy > span,
  .work-together-copy span {
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy p:last-of-type,
  .custom-copy p:last-of-type,
  .process-grid p,
  .work-together-copy > p:last-of-type,
  .blog-card p,
  .contact-section p,
  .story-copy p:last-of-type,
  .story-cta p,
  .subpage-text p,
  .subpage-text li,
  .subpage-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-list article,
  .process-grid article,
  .briefing-list div {
    text-align: center;
  }
}

@media (max-width: 900px) {
  :root {
    --frame-gutter: 28px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only,
  .mobile-menu {
    display: block;
  }

  body {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.72), rgba(233, 228, 220, 0) 420px),
      var(--paper);
  }

  .site-header {
    background: linear-gradient(180deg, rgba(18, 12, 8, 0.54), rgba(18, 12, 8, 0));
  }

  .site-header.is-scrolled {
    background: rgba(251, 247, 239, 0.9);
  }

  .internal-page .site-header {
    background: rgba(251, 247, 239, 0.9);
  }

  .story-page--residential .site-header,
  .story-page--commercial .site-header,
  .story-page--facades .site-header,
  .story-page--inspiration .site-header {
    background: linear-gradient(180deg, rgba(18, 12, 8, 0.54), rgba(18, 12, 8, 0));
    box-shadow: none;
    backdrop-filter: none;
  }

  .story-page--residential .site-header a,
  .story-page--residential .site-header button,
  .story-page--commercial .site-header a,
  .story-page--commercial .site-header button,
  .story-page--facades .site-header a,
  .story-page--facades .site-header button,
  .story-page--inspiration .site-header a,
  .story-page--inspiration .site-header button {
    color: var(--ivory);
  }

  .story-page--residential .site-header .brand img,
  .story-page--commercial .site-header .brand img,
  .story-page--facades .site-header .brand img,
  .story-page--inspiration .site-header .brand img {
    filter: none;
  }

  .story-page--residential .site-header.is-scrolled,
  .story-page--commercial .site-header.is-scrolled,
  .story-page--facades .site-header.is-scrolled,
  .story-page--inspiration .site-header.is-scrolled {
    background: rgba(233, 228, 220, 0.92);
    box-shadow: 0 18px 48px rgba(33, 27, 23, 0.1);
    backdrop-filter: blur(18px);
  }

  .story-page--residential .site-header.is-scrolled a,
  .story-page--residential .site-header.is-scrolled button,
  .story-page--commercial .site-header.is-scrolled a,
  .story-page--commercial .site-header.is-scrolled button,
  .story-page--facades .site-header.is-scrolled a,
  .story-page--facades .site-header.is-scrolled button,
  .story-page--inspiration .site-header.is-scrolled a,
  .story-page--inspiration .site-header.is-scrolled button {
    color: var(--ink);
  }

  .story-page--residential .site-header.is-scrolled .brand img,
  .story-page--commercial .site-header.is-scrolled .brand img,
  .story-page--facades .site-header.is-scrolled .brand img,
  .story-page--inspiration .site-header.is-scrolled .brand img {
    filter: invert(1) brightness(0.2) sepia(0.25);
  }

  .article-page .site-header {
    background: linear-gradient(180deg, rgba(18, 12, 8, 0.54), rgba(18, 12, 8, 0));
  }

  .article-page .site-header.is-scrolled {
    background: rgba(251, 247, 239, 0.9);
  }

  .story-page {
    padding-top: 72px;
  }

  .article-page {
    padding-top: 0;
  }

  .article-hero {
    width: 100%;
    height: clamp(360px, 56svh, 560px);
    margin-top: 0;
    border-radius: 0;
  }

  .article-content {
    width: calc(100% - 40px);
    padding: 54px 0 70px;
  }

  .article-meta {
    margin-top: 30px;
  }

  .article-content h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .article-intro {
    margin-top: 24px;
    font-size: 18px;
  }

  .article-content section {
    margin-top: 48px;
  }

  .article-content section p {
    font-size: 15px;
    line-height: 1.82;
  }

  .article-content blockquote {
    margin-top: 52px;
    padding: 34px 0;
    font-size: 31px;
  }

  .article-main .article-next {
    align-items: flex-start;
    padding: 42px 20px 46px;
    flex-direction: column;
  }

  .article-next a {
    font-size: 32px;
    text-align: left;
  }

  .article-footer {
    padding: 24px 20px;
    flex-direction: column;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    width: calc(100% - 32px);
    padding: 14px 0;
  }

  .brand {
    justify-self: start;
    width: clamp(116px, 33vw, 148px);
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(251, 247, 239, 0.42);
    border-radius: 999px;
    background: rgba(18, 12, 8, 0.16);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: rgba(33, 27, 23, 0.16);
    background: rgba(255, 255, 255, 0.28);
  }

  .menu-toggle svg,
  .menu-close svg {
    width: 24px;
    height: 24px;
  }

  .mobile-menu {
    width: min(88vw, 380px);
    padding: 24px;
    background:
      linear-gradient(145deg, rgba(251, 247, 239, 0.98), rgba(233, 228, 220, 0.96)),
      var(--ivory);
    box-shadow: -24px 0 70px rgba(18, 12, 8, 0.22);
  }

  .mobile-menu::before {
    content: "Marcia Nath";
    display: block;
    max-width: 190px;
    margin: 0 auto;
    color: var(--coffee);
    font-family: var(--font-display);
    font-size: 31px;
    line-height: 0.96;
    text-align: center;
  }

  .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .mobile-menu nav {
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 2px;
    color: var(--ink);
    text-align: center;
  }

  .mobile-menu .language-switch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 8px;
    border-bottom: 1px solid var(--line);
    padding: 18px 2px;
    color: var(--ink);
  }

  .mobile-menu .language-switch span {
    opacity: 0.45;
  }

  .mobile-whatsapp {
    justify-content: center;
    width: 100%;
    margin-top: 34px;
    border: 1px solid var(--coffee);
    padding: 15px 18px;
    background: var(--coffee);
    color: var(--ivory);
  }

  .hero {
    min-height: 92svh;
    padding-top: 72px;
  }

  .hero-media video,
  .hero-media img {
    object-position: 58% center;
    filter: saturate(0.76) contrast(1.06);
  }

  .hero::after {
    background:
      radial-gradient(circle at 54% 42%, rgba(251, 247, 239, 0.05), rgba(18, 12, 8, 0.34) 56%, rgba(18, 12, 8, 0.7)),
      linear-gradient(180deg, rgba(18, 12, 8, 0.52), rgba(18, 12, 8, 0.18) 38%, rgba(18, 12, 8, 0.8));
  }

  .hero-logo {
    width: clamp(210px, 58vw, 330px);
    align-self: center;
  }

  .about-section,
  .custom-section,
  .process-grid,
  .work-together-section,
  .briefing-list,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .about-copy,
  .custom-copy,
  .process-heading,
  .work-together-copy,
  .blog-heading,
  .contact-section,
  .story-hero-inner,
  .story-copy,
  .story-cta,
  .subpage-hero-copy,
  .subpage-content,
  .subpage-text {
    text-align: center;
  }

  .about-copy,
  .custom-copy,
  .process-heading,
  .work-together-copy,
  .blog-heading,
  .contact-section,
  .story-hero-inner,
  .story-copy,
  .story-cta,
  .subpage-hero-copy,
  .subpage-content,
  .subpage-text {
    align-items: center;
    justify-items: center;
  }

  .process-heading,
  .blog-heading,
  .story-copy,
  .story-cta,
  .subpage-hero-copy,
  .subpage-text {
    display: grid;
    gap: 14px;
  }

  .story-hero-inner {
    display: grid;
    gap: 14px;
  }

  .section-title {
    padding: 68px 0 38px;
  }

  .section-title h2,
  .custom-copy h2,
  .process-heading h2,
  .work-together-copy h2,
  .blog-heading h2,
  .contact-section h2 {
    font-size: clamp(38px, 10vw, 62px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0 auto;
  }

  .work-card,
  .work-card.tall {
    min-height: 48vw;
  }

  .work-card span {
    inset: auto 16px 18px;
    font-size: clamp(30px, 8vw, 46px);
  }

  .about-section {
    width: var(--frame);
    margin: 68px auto 0;
    min-height: 0;
    border-radius: 6px;
    overflow: hidden;
  }

  .about-image {
    min-height: 58vw;
  }

  .about-copy {
    padding: 46px 26px 50px;
  }

  .about-copy p:last-of-type,
  .custom-copy p:last-of-type,
  .process-grid p,
  .work-together-copy > p:last-of-type,
  .blog-card p,
  .contact-section p,
  .story-copy p:last-of-type,
  .story-cta p,
  .subpage-text p,
  .subpage-text li,
  .subpage-hero-copy p {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy h2 {
    font-size: clamp(43px, 12vw, 66px);
  }

  .custom-section,
  .process-section,
  .subpage-content {
    width: min(var(--frame), 640px);
  }

  .subpage-main {
    padding-top: 72px;
  }

  .subpage-hero {
    min-height: 72svh;
    background:
      linear-gradient(180deg, rgba(18, 12, 8, 0.28), rgba(18, 12, 8, 0.76)),
      var(--hero-image) center / cover;
  }

  .subpage-hero--text {
    min-height: 44svh;
    background:
      linear-gradient(180deg, rgba(51, 37, 29, 0.96), rgba(105, 104, 78, 0.82)),
      var(--paper);
  }

  .subpage-hero-copy {
    width: var(--frame);
    padding-bottom: 46px;
  }

  .subpage-hero-copy h1 {
    font-size: clamp(54px, 18vw, 92px);
    text-wrap: balance;
  }

  .subpage-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 62px 0 78px;
  }

  .custom-section {
    gap: 34px;
    padding: 78px 0 82px;
  }

  .service-list {
    border-color: rgba(33, 27, 23, 0.12);
    box-shadow: none;
  }

  .service-list article {
    min-height: auto;
    padding: 28px;
    background: rgba(251, 247, 239, 0.68);
    text-align: center;
  }

  .process-section {
    margin-bottom: 74px;
    padding-top: 48px;
  }

  .process-grid article {
    min-height: auto;
    padding: 28px;
    background: rgba(251, 247, 239, 0.42);
    text-align: center;
  }

  .work-together-section {
    width: min(var(--frame), 640px);
    min-height: 0;
    margin: 0 auto 74px;
    border-radius: 6px;
    overflow: hidden;
  }

  .work-together-media {
    min-height: 58vw;
  }

  .work-together-copy {
    padding: 42px 26px 46px;
  }

  .briefing-list {
    margin-top: 30px;
    box-shadow: none;
  }

  .briefing-list div {
    min-height: auto;
    padding: 24px;
    background: rgba(233, 228, 220, 0.72);
    text-align: center;
  }

  .blog-section {
    width: min(var(--frame), 640px);
    padding: 38px 0 50px;
  }

  .blog-heading {
    margin-bottom: 34px;
  }

  .blog-heading p {
    font-size: 14px;
  }

  .blog-featured {
    margin-bottom: 24px;
  }

  .blog-featured__inner {
    min-height: 460px;
    aspect-ratio: auto;
  }

  .blog-featured__overlay {
    padding: 28px 24px 30px;
  }

  .blog-featured .blog-card__category {
    top: 24px;
    left: 24px;
  }

  .blog-featured__title {
    font-size: clamp(36px, 11vw, 50px);
  }

  .blog-featured__excerpt {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .blog-grid {
    gap: 24px;
  }

  .blog-card__image {
    height: 240px;
  }

  .blog-card__content {
    min-height: auto;
    padding: 28px 26px 30px;
  }

  .blog-more {
    margin-top: 42px;
  }

  .article-hub-grid {
    grid-template-columns: 1fr;
    width: min(var(--frame), 640px);
    padding: 42px 0 72px;
  }

  .article-hub-card,
  .article-hub-card:not(.article-hub-card--featured) {
    min-height: 430px;
  }

  .article-hub-card--featured {
    grid-row: auto;
  }

  .article-hub-card__content {
    padding: 30px 24px 32px;
  }

  .article-hub-card h2,
  .article-hub-card:not(.article-hub-card--featured) h2 {
    max-width: 13ch;
    font-size: clamp(34px, 10vw, 52px);
  }

  .article-hub-card p {
    font-size: 14px;
    line-height: 1.72;
  }

  .article-hub-note {
    width: min(var(--frame), 640px);
    padding-bottom: 74px;
  }

  .contact-section {
    min-height: 0;
    padding: 54px 22px;
  }

  .contact-list {
    grid-template-columns: 1fr;
    width: min(100%, 380px);
    margin-top: 26px;
  }

  .contact-list li {
    min-height: 86px;
    padding: 18px 20px;
  }

  .subpage-content > div:first-child p {
    margin-left: auto;
    margin-right: auto;
  }

  .subpage-inline-image {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer-inner {
    width: min(var(--frame), 640px);
    padding: 44px 0 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col p,
  .footer-social {
    margin-right: auto;
    margin-left: auto;
    justify-items: center;
  }

  .footer-contact li {
    grid-template-columns: 1fr;
    gap: 4px;
    justify-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 34px;
  }
}

@media (max-width: 520px) {
  :root {
    --frame-gutter: 20px;
  }

  .section-title {
    width: var(--frame);
    padding: 54px 0 30px;
  }

  .section-title p,
  .about-copy > p:first-child,
  .custom-copy > p:first-child,
  .process-heading p,
  .work-together-copy > p:first-child,
  .contact-section p {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .site-nav {
    width: calc(100% - 24px);
  }

  .hero-logo {
    width: min(68vw, 260px);
  }

  .work-card,
  .work-card.tall {
    min-height: 58vw;
  }

  .work-card span {
    font-size: clamp(27px, 8vw, 36px);
  }

  .about-image {
    min-height: 330px;
  }

  .about-section,
  .custom-section,
  .process-section,
  .work-together-section,
  .blog-section,
  .subpage-content {
    width: var(--frame);
  }

  .subpage-hero-copy {
    width: var(--frame);
  }

  .subpage-hero-copy p,
  .subpage-text p,
  .subpage-text li {
    font-size: 14px;
    line-height: 1.75;
  }

  .story-hero {
    min-height: 76svh;
  }

  .story-hero-inner {
    width: calc(100% - 28px);
    padding-bottom: 54px;
  }

  .story-hero h1 {
    font-size: clamp(52px, 16vw, 92px);
    text-wrap: balance;
  }

  .story-page--residential .story-hero,
  .story-page--commercial .story-hero,
  .story-page--facades .story-hero,
  .story-page--inspiration .story-hero {
    min-height: clamp(360px, 56svh, 560px);
  }

  .story-page--residential .story-hero-inner,
  .story-page--commercial .story-hero-inner,
  .story-page--facades .story-hero-inner,
  .story-page--inspiration .story-hero-inner {
    width: calc(100% - 28px);
    padding-top: 44px;
    padding-bottom: 0;
  }

  .story-section,
  .story-section--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    width: calc(100% - 28px);
    padding: 70px 0;
    justify-items: center;
  }

  .story-section::before {
    inset: 14px -10px;
  }

  .story-page--about .story-section:nth-of-type(2),
  .story-page--residential .story-section:nth-of-type(4),
  .story-page--facades .story-section:nth-of-type(2) {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .story-page--commercial .story-copy {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(183, 149, 114, 0.42);
    padding-top: 24px;
    padding-left: 0;
    justify-items: center;
    text-align: center;
  }

  .story-page--commercial .story-section.story-section--positioning {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--commercial .story-media--positioning,
  .story-page--commercial .story-section--positioning .story-copy {
    grid-column: 1;
  }

  .story-page--commercial .story-media--positioning {
    width: 100%;
  }

  .story-page--commercial .story-section.story-section--journey {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--commercial .story-section--journey .story-copy,
  .story-page--commercial .story-media--journey {
    grid-column: 1;
  }

  .story-page--commercial .story-media--journey {
    width: 100%;
  }

  .story-page--commercial .story-section.story-section--operation {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--commercial .story-media--operation,
  .story-page--commercial .story-section--operation .story-copy {
    grid-column: 1;
  }

  .story-page--commercial .story-media--operation {
    width: 100%;
  }

  .story-page--commercial .story-section.story-section--memory {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--commercial .story-section--memory .story-copy,
  .story-page--commercial .story-media--memory {
    grid-column: 1;
  }

  .story-page--commercial .story-media--memory {
    width: 100%;
  }

  .story-commercial-gallery {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 0 0 72px;
  }

  .story-commercial-gallery figure:first-child {
    transform: none;
  }

  .story-commercial-gallery img {
    aspect-ratio: 4 / 5;
  }

  .story-page--inspiration .story-section.story-section--clipping {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--inspiration .story-media--clipping,
  .story-page--inspiration .story-section--clipping .story-copy {
    grid-column: 1;
  }

  .story-page--inspiration .story-media--clipping {
    width: 100%;
  }

  .story-page--inspiration .story-section.story-section--palette {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--inspiration .story-section--palette .story-copy,
  .story-page--inspiration .story-media--palette {
    grid-column: 1;
  }

  .story-page--inspiration .story-media--palette {
    width: 100%;
  }

  .story-page--inspiration .story-section.story-section--balance {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--inspiration .story-media--balance,
  .story-page--inspiration .story-section--balance .story-copy {
    grid-column: 1;
  }

  .story-page--inspiration .story-media--balance {
    width: min(100%, 520px);
  }

  .story-page--inspiration .story-section.story-section--atmosphere {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--inspiration .story-section--atmosphere .story-copy,
  .story-page--inspiration .story-media--atmosphere {
    grid-column: 1;
  }

  .story-inspiration-feature {
    width: min(calc(100% - 28px), 460px);
    padding: 0 0 72px;
  }

  .story-page--inspiration .story-media--atmosphere {
    width: 100%;
  }

  .story-section--reverse .story-copy,
  .story-section--reverse .story-media {
    order: initial;
  }

  .story-media--split {
    grid-template-columns: 1fr;
  }

  .story-media,
  .story-media--split,
  .story-media--single {
    width: 100%;
    justify-self: center;
  }

  .story-media--single img {
    min-height: 300px;
  }

  .story-cta {
    width: calc(100% - 28px);
    padding: 46px 0 82px;
  }

  .story-cta p {
    font-size: 14px;
    line-height: 1.75;
  }

  .subpage-inline-image {
    margin: 24px 0;
  }

  .about-copy p:last-of-type,
  .custom-copy p:last-of-type,
  .service-list p,
  .process-grid p,
  .work-together-copy > p:last-of-type {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-copy,
  .service-list article,
  .process-grid article,
  .work-together-copy,
  .briefing-list div {
    padding-right: 22px;
    padding-left: 22px;
  }

  .service-list h3,
  .process-grid h3,
  .briefing-list strong {
    font-size: 29px;
  }

  .blog-card h3 {
    font-size: 34px;
  }

  .work-together-media {
    min-height: 330px;
  }

  .contact-section {
    min-height: 390px;
  }

  .mobile-menu {
    width: min(92vw, 360px);
    padding: 22px;
  }
}

/* Text-only presentation: media was intentionally removed from content sections. */
.reveal {
  opacity: 1;
  transform: none;
}

.about-section,
.work-together-section {
  grid-template-columns: 1fr;
}

.about-section {
  min-height: 0;
  background: var(--coffee);
  overflow: hidden;
}

.about-copy,
.work-together-copy {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-copy {
  width: 100%;
}

.story-hero {
  background: var(--coffee);
}

.story-section,
.story-section--reverse,
.story-page--about .story-section:nth-of-type(2),
.story-page--residential .story-section:nth-of-type(4),
.story-page--facades .story-section:nth-of-type(2) {
  grid-template-columns: 1fr;
}

.story-section--reverse .story-copy {
  order: initial;
}

.story-page--facades .story-section.story-section--street {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--facades .story-media--street {
  grid-column: 1;
  order: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--facades .story-section--street .story-copy {
  grid-column: 2;
  order: 2;
  text-align: left;
}

.story-page--facades .story-media--street img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--facades .story-section.story-section--volumetry {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--facades .story-section--volumetry .story-copy {
  grid-column: 1;
  order: 1;
  text-align: left;
}

.story-page--facades .story-media--volumetry {
  grid-column: 2;
  order: 2;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--facades .story-media--volumetry img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--facades .story-section.story-section--materials {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--facades .story-media--materials {
  grid-column: 1;
  order: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--facades .story-section--materials .story-copy {
  grid-column: 2;
  order: 2;
  text-align: left;
}

.story-page--facades .story-media--materials img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--facades .story-section.story-section--route {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--facades .story-section--route .story-copy {
  grid-column: 1;
  order: 1;
  text-align: left;
}

.story-page--facades .story-media--route {
  grid-column: 2;
  order: 2;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--facades .story-media--route img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--facades .story-section.story-section--surroundings {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-page--facades .story-media--surroundings {
  grid-column: 1;
  order: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.story-page--facades .story-section--surroundings .story-copy {
  grid-column: 2;
  order: 2;
  text-align: left;
}

.story-page--facades .story-media--surroundings img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.story-page--residential .story-section--routine {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.story-section--routine .story-media {
  margin: 0;
}

.story-section--routine .story-media img {
  display: block;
  aspect-ratio: 3 / 4;
  min-height: 0;
  object-position: center;
}

.story-section--routine .story-copy {
  text-align: center;
}

.story-section--routine .story-copy p:last-of-type {
  margin-right: auto;
  margin-left: auto;
}

.story-page--residential .story-section--plant {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-section--plant .story-media {
  margin: 0;
}

.story-section--plant .story-media img {
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-position: center;
}

.story-page--residential .story-section--bedrooms {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-section--bedrooms .story-media {
  margin: 0;
}

.story-section--bedrooms .story-media img {
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-position: center;
}

.story-section--bedrooms .story-copy {
  text-align: center;
}

.story-section--bedrooms .story-copy p:last-of-type {
  margin-right: auto;
  margin-left: auto;
}

.story-page--residential .story-section--living {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-section--living .story-media {
  margin: 0;
}

.story-section--living .story-media img {
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-position: center;
}

.story-page--residential .story-section--hosting {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.story-section--hosting .story-media {
  margin: 0;
}

.story-section--hosting .story-media img {
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-position: center;
}

.story-section--hosting .story-copy {
  text-align: center;
}

.story-section--hosting .story-copy p:last-of-type {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 901px) {
  .site-nav {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(210px, 20vw, 300px);
  }

  .brand {
    position: absolute;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
  }

  .nav-group {
    justify-content: flex-start;
  }

  .nav-right {
    justify-content: flex-end;
  }
}

@media (max-width: 1240px) and (min-width: 901px) {
  .site-nav {
    column-gap: clamp(180px, 18vw, 230px);
  }

  .nav-group,
  .nav-right {
    gap: clamp(10px, 1.15vw, 16px);
  }

  .nav-group a {
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  .nav-right .language-switch {
    display: inline-flex;
    gap: 4px;
    margin-left: 0;
    font-size: 8.5px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 900px) {
  .about-section {
    border-radius: 0;
  }

  .story-page--facades .story-section.story-section--street {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--facades .story-media--street {
    grid-column: 1;
    width: 100%;
  }

  .story-page--facades .story-section--street .story-copy {
    grid-column: 1;
  }

  .story-page--facades .story-section.story-section--volumetry {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--facades .story-section--volumetry .story-copy,
  .story-page--facades .story-media--volumetry {
    grid-column: 1;
  }

  .story-page--facades .story-media--volumetry {
    width: 100%;
  }

  .story-page--facades .story-section.story-section--materials {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--facades .story-media--materials,
  .story-page--facades .story-section--materials .story-copy {
    grid-column: 1;
  }

  .story-page--facades .story-media--materials {
    width: 100%;
  }

  .story-page--facades .story-section.story-section--route {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--facades .story-section--route .story-copy,
  .story-page--facades .story-media--route {
    grid-column: 1;
  }

  .story-page--facades .story-media--route {
    width: 100%;
  }

  .story-page--facades .story-section.story-section--surroundings {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--facades .story-media--surroundings,
  .story-page--facades .story-section--surroundings .story-copy {
    grid-column: 1;
  }

  .story-page--facades .story-media--surroundings {
    width: 100%;
  }

  .story-page--residential .story-section--routine {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--residential .story-section--plant {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--residential .story-section--bedrooms {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--residential .story-section--living {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-page--residential .story-section--hosting {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-section--routine .story-media {
    width: min(100%, 560px);
  }

  .story-section--plant .story-media,
  .story-section--bedrooms .story-media,
  .story-section--living .story-media,
  .story-section--hosting .story-media {
    width: 100%;
  }

  .brand {
    position: relative;
    left: auto;
    transform: none;
  }
}

/* Center service category labels within equally sized blocks. */
.work-card,
.work-card.tall {
  display: grid;
  min-height: min(42vw, 520px);
  place-items: center;
}

.work-card span {
  position: relative;
  inset: auto;
  max-width: calc(100% - 32px);
  text-align: center;
  text-wrap: balance;
}

.work-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: min(320px, calc(100% - 32px));
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.work-card-copy p {
  color: rgba(251, 247, 239, 0.74);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-wrap: balance;
}

@media (max-width: 900px) {
  .work-card,
  .work-card.tall {
    min-height: 48vw;
  }
}

@media (max-width: 520px) {
  .work-card,
  .work-card.tall {
    min-height: 58vw;
  }

  .work-card-copy {
    gap: 12px;
  }

  .work-card-copy p {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

/* Match every category subpage hero to the blog article hero treatment. */
.story-page {
  padding-top: 0;
}

.story-page .site-header {
  background: linear-gradient(180deg, rgba(18, 12, 8, 0.48), rgba(18, 12, 8, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.story-page .site-header a,
.story-page .site-header button {
  color: var(--ivory);
}

.story-page .site-header .brand img {
  filter:
    drop-shadow(0 10px 22px rgba(18, 12, 8, 0.52))
    drop-shadow(0 2px 4px rgba(18, 12, 8, 0.36));
}

.story-page .site-header.is-scrolled {
  background: rgba(233, 228, 220, 0.92);
  box-shadow: 0 18px 48px rgba(33, 27, 23, 0.1);
  backdrop-filter: blur(18px);
}

.story-page .site-header.is-scrolled a,
.story-page .site-header.is-scrolled button {
  color: var(--ink);
}

.story-page .site-header.is-scrolled .brand img {
  filter: invert(1) brightness(0.2) sepia(0.25);
}

.article-page .site-header .brand::before,
.story-page .site-header .brand::before {
  inset: -18px -28px;
  background:
    radial-gradient(ellipse at center, rgba(18, 12, 8, 0.48) 0%, rgba(18, 12, 8, 0.3) 42%, rgba(18, 12, 8, 0) 72%);
  backdrop-filter: blur(1.5px);
  opacity: 0.96;
}

.article-page .site-header.is-scrolled .brand::before,
.story-page .site-header.is-scrolled .brand::before {
  opacity: 0;
}

.story-page .story-hero {
  display: block;
  width: 100%;
  height: clamp(460px, 72svh, 780px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--coffee);
  box-shadow: 0 24px 58px rgba(33, 27, 23, 0.14);
}

.story-page .story-hero::after {
  display: none;
  content: none;
}

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

@media (max-width: 900px) {
  .story-page .site-header {
    background: linear-gradient(180deg, rgba(18, 12, 8, 0.54), rgba(18, 12, 8, 0));
  }

  .story-page .site-header.is-scrolled {
    background: rgba(251, 247, 239, 0.9);
  }

  .story-page .story-hero {
    height: clamp(360px, 56svh, 560px);
    margin-top: 0;
  }
}

/* Keep every internal hero image the same scale as the home hero. */
.article-page .article-hero,
.story-page .story-hero {
  height: auto;
  min-height: 100svh;
}

.article-page .article-hero img,
.story-page .story-hero img {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
}

.story-page main {
  position: relative;
}

.story-page .story-hero {
  position: relative;
}

.story-page .story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at center, rgba(18, 12, 8, 0.03), rgba(18, 12, 8, 0.28) 60%, rgba(18, 12, 8, 0.58)),
    linear-gradient(180deg, rgba(18, 12, 8, 0.28), rgba(18, 12, 8, 0.08) 35%, rgba(18, 12, 8, 0.82));
  pointer-events: none;
}

.story-page .story-hero-inner {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(54px, 8vw, 104px);
  color: var(--ivory);
}

/* The articles hub uses its introduction as a separate section after the hero. */
.article-hub .article-hub-intro {
  position: relative;
  z-index: auto;
  inset: auto;
  display: grid;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 0;
  color: var(--coffee);
  text-align: center;
  justify-items: center;
}

.story-page .article-hub .article-hub-intro .story-back,
.story-page .article-hub .article-hub-intro .story-brand,
.story-page .article-hub .article-hub-intro .story-lead,
.story-page .article-hub .article-hub-intro h1 {
  color: var(--coffee);
  text-shadow: none;
}

.story-page .story-hero-inner .story-back,
.story-page .story-hero-inner .story-brand,
.story-page .story-hero-inner .story-lead {
  color: rgba(251, 247, 239, 0.86);
}

.story-page .story-hero h1 {
  color: var(--ivory);
}

.story-page .story-hero-inner .story-lead {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-shadow: 0 12px 34px rgba(18, 12, 8, 0.48);
}

@media (max-width: 900px) {
  .article-page .article-hero,
  .story-page .story-hero {
    min-height: 100svh;
  }

  .article-page .article-hero img,
  .story-page .story-hero img {
    height: 100svh;
    min-height: 100svh;
  }

  .story-page .story-hero-inner {
    width: calc(100% - 32px);
    padding: 0 0 52px;
  }

  .article-hub .article-hub-intro {
    width: calc(100% - 32px);
    padding: 52px 0 0;
  }
}

.story-page--residential .story-hero-inner,
.story-page--commercial .story-hero-inner,
.story-page--facades .story-hero-inner,
.story-page--inspiration .story-hero-inner {
  position: static;
  inset: auto;
  z-index: auto;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 0;
  color: var(--ink);
  text-align: center;
}

.story-page--residential .story-hero-inner .story-back,
.story-page--commercial .story-hero-inner .story-back,
.story-page--facades .story-hero-inner .story-back,
.story-page--inspiration .story-hero-inner .story-back,
.story-page--residential .story-hero-inner .story-brand,
.story-page--commercial .story-hero-inner .story-brand,
.story-page--facades .story-hero-inner .story-brand,
.story-page--inspiration .story-hero-inner .story-brand,
.story-page--residential .story-hero-inner .story-lead,
.story-page--commercial .story-hero-inner .story-lead,
.story-page--facades .story-hero-inner .story-lead,
.story-page--inspiration .story-hero-inner .story-lead {
  color: inherit;
  text-shadow: none;
}

.story-page--residential .story-hero-inner .story-back,
.story-page--commercial .story-hero-inner .story-back,
.story-page--facades .story-hero-inner .story-back,
.story-page--inspiration .story-hero-inner .story-back {
  color: var(--olive);
}

.story-page--residential .story-hero-inner .story-brand,
.story-page--commercial .story-hero-inner .story-brand,
.story-page--facades .story-hero-inner .story-brand,
.story-page--inspiration .story-hero-inner .story-brand {
  margin-top: 12px;
}

.story-page--residential .story-hero-inner h1,
.story-page--commercial .story-hero-inner h1,
.story-page--facades .story-hero-inner h1,
.story-page--inspiration .story-hero-inner h1 {
  color: var(--coffee);
}

.story-page--residential .story-hero-inner .story-lead,
.story-page--commercial .story-hero-inner .story-lead,
.story-page--facades .story-hero-inner .story-lead,
.story-page--inspiration .story-hero-inner .story-lead {
  max-width: 720px;
  margin: 18px auto 0;
}

.story-page--residential .story-hero::after,
.story-page--commercial .story-hero::after,
.story-page--facades .story-hero::after,
.story-page--inspiration .story-hero::after {
  display: none;
  content: none;
}

@media (max-width: 900px) {
  .story-page--residential .story-hero-inner,
  .story-page--commercial .story-hero-inner,
  .story-page--facades .story-hero-inner,
  .story-page--inspiration .story-hero-inner {
    width: calc(100% - 32px);
    padding-top: 28px;
  }

  .story-page--residential .story-hero-inner .story-lead,
  .story-page--commercial .story-hero-inner .story-lead,
  .story-page--facades .story-hero-inner .story-lead,
  .story-page--inspiration .story-hero-inner .story-lead {
    margin-top: 14px;
  }
}
