:root {
  --ink: #171b1a;
  --muted: #68706b;
  --paper: #f5f1e8;
  --bone: #fffaf0;
  --line: rgba(23, 27, 26, 0.14);
  --forest: #1f3a34;
  --copper: #b85c38;
  --clay: #d8b08c;
  --shadow: 0 22px 70px rgba(20, 24, 22, 0.18);
  --radius: 8px;
  font-family: "Aptos", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(31, 58, 52, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 58, 52, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--bone);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 30px);
  font-size: 0.94rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
}

.admin-link {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 86px) 76px;
  color: var(--bone);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
  background: var(--forest);
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroFade 18s infinite;
}

.hero-slide.is-one {
  background-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=2200&q=82");
}

.hero-slide.is-two {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2200&q=82");
  animation-delay: 6s;
}

.hero-slide.is-three {
  background-image: url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=2200&q=82");
  animation-delay: 12s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 15, 0.58), rgba(10, 18, 15, 0.12)),
    linear-gradient(0deg, rgba(10, 18, 15, 0.38), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  animation: rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--clay);
}

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

h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 7.5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-slider-ui {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}

.hero-slider-ui span {
  width: 34px;
  height: 2px;
  background: rgba(255, 250, 240, 0.45);
  overflow: hidden;
}

.hero-slider-ui span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bone);
  transform: translateX(-100%);
  animation: heroDot 18s infinite;
}

.hero-slider-ui span:nth-child(2)::after {
  animation-delay: 6s;
}

.hero-slider-ui span:nth-child(3)::after {
  animation-delay: 12s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  border-color: var(--bone);
  color: var(--ink);
  background: var(--bone);
}

.button.ghost {
  color: var(--bone);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--bone);
}

.metrics article {
  padding: clamp(22px, 5vw, 42px) clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics span {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.metrics p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 86px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 15px;
  color: var(--forest);
  background: transparent;
  border: 1px solid rgba(31, 58, 52, 0.24);
  border-radius: 999px;
  cursor: pointer;
}

.filter-chip.is-active {
  color: var(--bone);
  background: var(--forest);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-section {
  background: var(--bone);
}

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

.featured-grid .project-card {
  min-height: 500px;
}

.project-card {
  display: grid;
  min-height: 390px;
  overflow: hidden;
  color: var(--bone);
  background: var(--forest);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  isolation: isolate;
  padding: 0;
  text-align: left;
}

.project-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-card::after {
  content: "";
  grid-area: 1 / 1;
  background: linear-gradient(0deg, rgba(12, 18, 16, 0.82), rgba(12, 18, 16, 0.04) 62%);
  z-index: 1;
}

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

.project-card-content {
  grid-area: 1 / 1;
  align-self: end;
  z-index: 2;
  padding: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.85rem;
}

.project-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.08;
}

.project-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.project-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--clay);
  font-weight: 800;
}

.services-preview {
  background: rgba(255, 250, 240, 0.48);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip a {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: clamp(22px, 4vw, 38px);
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.service-strip a:last-child {
  border-right: 0;
}

.service-strip a:hover {
  background: var(--bone);
  transform: translateY(-3px);
}

.service-strip span,
.case-study-grid span {
  color: var(--copper);
  font-weight: 900;
}

.service-strip h3,
.case-study-grid h3 {
  margin: 34px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.service-strip p,
.case-study-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.studio-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
  padding: clamp(64px, 10vw, 128px) clamp(20px, 6vw, 86px);
  color: var(--bone);
  background: var(--forest);
}

.studio-band p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

.inline-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--clay);
  font-weight: 900;
}

.values-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 92, 56, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #efe8dc 100%);
}

.values-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 58, 52, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 52, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, auto);
  gap: 14px;
}

.value-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(31, 58, 52, 0.12);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 20px 60px rgba(23, 27, 26, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.value-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 58, 52, 0.18);
  border-radius: 999px;
  content: "";
}

.value-card:hover {
  border-color: rgba(184, 92, 56, 0.34);
  box-shadow: 0 26px 72px rgba(23, 27, 26, 0.13);
  transform: translateY(-3px);
}

.value-card > span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-card h3 {
  max-width: 360px;
  margin: 26px 0 12px;
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
}

.value-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.value-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--forest);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 900;
}

.value-card.is-featured {
  grid-column: span 2;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(31, 58, 52, 0.96), rgba(31, 58, 52, 0.82)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
}

.value-card.is-featured p,
.value-card.is-featured em {
  color: rgba(255, 250, 240, 0.78);
}

.value-card.is-featured > span {
  color: #f1c7a8;
}

.value-image {
  background:
    linear-gradient(180deg, rgba(31, 58, 52, 0.05), rgba(31, 58, 52, 0.28)),
    url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
}

.value-image::after {
  border-color: rgba(255, 250, 240, 0.5);
}

.value-wide {
  grid-column: span 2;
  background: #fffdf7;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.value-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--forest);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 16px;
}

.contact-promise {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(31, 58, 52, 0.96), rgba(31, 58, 52, 0.74)),
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
  border-radius: calc(var(--radius) * 1.4);
}

.contact-promise::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  content: "";
}

.contact-promise span {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-promise p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.contact-grid a {
  position: relative;
  display: grid;
  min-height: 112px;
  padding: 18px 56px 18px 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.15);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 16px 42px rgba(23, 27, 26, 0.06);
  font-size: 1rem;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-grid a::after {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--forest);
  background: var(--green-soft);
  border-radius: 999px;
  content: "↗";
  font-size: 0.9rem;
}

.contact-grid a:hover {
  border-color: rgba(31, 58, 52, 0.32);
  box-shadow: 0 22px 54px rgba(23, 27, 26, 0.11);
  transform: translateY(-2px);
}

.contact-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--bone);
  background: var(--forest);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-grid small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  margin-top: 7px;
  overflow-wrap: anywhere;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.contact-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-cues span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--forest);
  background: rgba(223, 232, 216, 0.9);
  border: 1px solid rgba(31, 58, 52, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 253, 247, 0.92)),
    radial-gradient(circle at top right, rgba(184, 92, 56, 0.12), transparent 36%);
  border: 1px solid rgba(31, 58, 52, 0.16);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 26px 80px rgba(23, 27, 26, 0.13);
}

.form-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.form-kicker span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.form-kicker p {
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  color: var(--ink);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  resize: vertical;
  padding: 15px;
  line-height: 1.55;
}

.contact-form .button.primary {
  min-height: 54px;
  padding-inline: 24px;
  color: var(--bone);
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 16px 34px rgba(31, 58, 52, 0.2);
}

.contact-form .button.primary:hover {
  background: #142823;
  transform: translateY(-1px);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 58, 52, 0.12);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
  line-height: 1.5;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.detail-list dt {
  color: var(--muted);
}

.detail-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.premium-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(220px, 0.35fr);
  align-items: start;
  padding-top: 46px;
  padding-bottom: 46px;
  color: var(--ink);
  background: var(--bone);
}

.footer-brand {
  margin-bottom: 22px;
}

.premium-footer p,
.premium-footer address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.premium-footer nav {
  display: grid;
  gap: 10px;
  min-width: 140px;
  font-weight: 800;
}

.project-page {
  background: var(--bone);
}

.project-header {
  position: sticky;
}

.project-hero-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  min-height: 82vh;
  padding-top: 78px;
  background: var(--forest);
  color: var(--bone);
}

.project-hero-detail img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.project-hero-copy {
  display: grid;
  align-content: end;
  padding: clamp(34px, 7vw, 86px);
}

.project-hero-copy h1 {
  font-size: clamp(2.45rem, 5.6vw, 4.9rem);
}

.project-hero-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.8);
  font-size: 1.02rem;
  line-height: 1.75;
}

.project-info-band {
  padding: clamp(26px, 5vw, 46px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.project-info-grid div {
  display: grid;
  gap: 8px;
}

.project-info-grid dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-info-grid dd {
  margin: 0;
  font-weight: 800;
}

.project-story,
.project-case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 7vw, 90px);
  align-items: start;
}

.project-story p,
.project-case-study p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.case-study-grid {
  display: grid;
  gap: 28px;
}

.case-study-grid article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.case-study-grid h3 {
  margin-top: 16px;
}

.expertise-band {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 84px);
  padding: 0 clamp(20px, 6vw, 86px) clamp(64px, 8vw, 100px);
}

.expertise-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-band span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  color: var(--forest);
  border: 1px solid rgba(31, 58, 52, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.66);
  font-weight: 800;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(64px, 10vw, 130px);
}

.project-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
}

.project-gallery figure.is-large {
  grid-column: 1 / -1;
}

.project-gallery img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.project-gallery figure.is-large img {
  height: min(720px, 76vh);
}

.next-step,
.project-missing {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 86px);
  color: var(--bone);
  background: var(--forest);
}

.next-step h2,
.project-missing h1 {
  max-width: 820px;
}

.dark-button {
  width: fit-content;
  margin-top: 18px;
}

.services-page {
  background: var(--bone);
}

.about-page {
  background: var(--bone);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  min-height: 82vh;
  padding-top: 78px;
  color: var(--bone);
  background: var(--forest);
}

.about-hero div {
  display: grid;
  align-content: end;
  padding: clamp(34px, 7vw, 86px);
}

.about-hero h1 {
  font-size: clamp(2.45rem, 5.6vw, 5rem);
}

.about-hero p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-hero img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-statement h2 {
  max-width: 1080px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
  padding: 0 clamp(20px, 6vw, 86px) clamp(64px, 10vw, 130px);
}

.about-split img {
  width: 100%;
  height: min(680px, 72vh);
  object-fit: cover;
  border-radius: var(--radius);
}

.about-split p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 84px);
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 86px);
  color: var(--bone);
  background: var(--forest);
}

.team-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 250, 240, 0.18);
}

.team-grid article {
  padding: clamp(22px, 4vw, 34px);
  background: var(--forest);
}

.team-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-weight: 900;
}

.team-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.7;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.68fr);
  min-height: 70vh;
  padding-top: 78px;
  color: var(--bone);
  background:
    linear-gradient(120deg, rgba(31, 58, 52, 0.96), rgba(31, 58, 52, 0.82)),
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 240, 0.06) 1px, transparent 1px),
    var(--forest);
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.services-hero-media {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.2), rgba(255, 250, 240, 0.02)),
    linear-gradient(90deg, rgba(255, 250, 240, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 240, 0.12) 1px, transparent 1px);
  background-position: center;
  background-size: auto, 34px 34px, 34px 34px;
  border-left: 1px solid rgba(255, 250, 240, 0.18);
  position: relative;
}

.services-hero-media::before,
.services-hero-media::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 250, 240, 0.34);
}

.services-hero-media::before {
  inset: 12% 14% 42% 18%;
}

.services-hero-media::after {
  inset: 42% 22% 16% 10%;
}

.services-hero div {
  display: grid;
  align-content: end;
  padding: clamp(34px, 7vw, 86px);
}

.services-hero h1 {
  font-size: clamp(2.45rem, 5.8vw, 5rem);
}

.services-hero p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.8);
  font-size: 1.02rem;
  line-height: 1.75;
}

.service-detail-list {
  padding: clamp(52px, 8vw, 110px) clamp(20px, 6vw, 86px);
}

.service-detail-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: clamp(18px, 4vw, 54px);
  padding: clamp(28px, 5vw, 58px) 0;
  border-top: 1px solid var(--line);
}

.service-detail-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail-list article > span {
  color: var(--copper);
  font-weight: 900;
}

.service-detail-list h2 {
  margin-bottom: 18px;
}

.service-detail-list p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-detail-list ul {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.process-band {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 86px);
  color: var(--bone);
  background: var(--forest);
}

.process-band h2 {
  max-width: 860px;
}

.process-band > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 250, 240, 0.18);
}

.process-band article {
  padding: clamp(22px, 4vw, 38px);
  background: var(--forest);
}

.process-band span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 900;
}

.process-band p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.7;
}

@keyframes rise {
  from {
    opacity: 0.92;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  0% {
    opacity: 1;
    transform: scale(1.04);
  }
  30% {
    opacity: 1;
  }
  38%,
  100% {
    opacity: 0;
    transform: scale(1.01);
  }
}

@keyframes heroDot {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }
  38%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .project-header {
    position: sticky;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .section-heading,
  .studio-band,
  .project-hero-detail,
  .project-story,
  .project-case-study,
  .expertise-band,
  .services-hero,
  .contact-layout,
  .about-hero,
  .about-split,
  .team-band,
  .premium-footer {
    grid-template-columns: 1fr;
  }

  .contact-form {
    position: static;
  }

  .project-grid,
  .contact-grid,
  .featured-grid,
  .service-strip,
  .process-band > div {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-detail-list article {
    grid-template-columns: 1fr;
  }

  .project-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-hero-detail img {
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header[data-menu-open="true"] .nav-links {
    display: grid;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 82vh;
    padding-top: 176px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.55rem, 7.6vw, 2.18rem);
  }

  .hero-copy,
  .project-hero-copy p:not(.eyebrow),
  .about-hero p:not(.eyebrow),
  .services-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .metrics,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-card {
    min-height: 340px;
  }

  .site-footer {
    display: grid;
  }

  .project-info-grid,
  .project-gallery,
  .contact-layout,
  .featured-grid,
  .service-strip,
  .values-grid,
  .process-band > div,
  .about-hero,
  .about-split,
  .team-band,
  .premium-footer {
    grid-template-columns: 1fr;
  }

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

  .value-card.is-featured,
  .value-wide {
    grid-column: auto;
  }

  .contact-promise {
    min-height: 190px;
  }

  .form-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-hero-media {
    order: 2;
    min-height: 380px;
  }

  .services-hero > div:not(.services-hero-media) {
    order: 1;
  }

  .about-hero img {
    min-height: 360px;
  }

  .featured-grid .project-card {
    min-height: 360px;
  }

  .project-gallery figure.is-large {
    grid-column: auto;
  }

  .project-gallery img,
  .project-gallery figure.is-large img {
    height: 340px;
  }
}
