:root {
  --forest-deep: #0f1c12;
  --forest: #1f3322;
  --forest-soft: #2d4a31;
  --moss: #a8ab78;
  --moss-soft: #c8c39b;
  --cream: #f2ede4;
  --cream-soft: rgba(242, 237, 228, 0.76);
  --gold: #b89a4c;
  --copper: #8a4d29;
  --ink: #121311;
  --line: rgba(242, 237, 228, 0.14);
  --line-strong: rgba(242, 237, 228, 0.22);
  --panel: rgba(19, 28, 20, 0.74);
  --panel-strong: rgba(24, 39, 27, 0.86);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --content-width: min(1180px, calc(100% - 48px));
  --vi-sans-active: "Inter", "Helvetica Neue", sans-serif;
  --vi-sans-alt: "Be Vietnam Pro", "Helvetica Neue", sans-serif;
  --vi-serif-active: "Cormorant Garamond", Georgia, serif;
  --vi-serif-alt: "EB Garamond", Georgia, serif;
  --vi-serif-alt-2: "Vollkorn", Georgia, serif;
  --vi-serif-alt-3: "Libre Caslon Text", Georgia, serif;
  --vi-serif-weight-active: 400;
  --vi-serif-weight-alt: 600;
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -2%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 2%, 0) scale(1.06);
  }
}

@keyframes surface-sheen {
  0% {
    transform: translateX(-140%) rotate(10deg);
  }
  100% {
    transform: translateX(140%) rotate(10deg);
  }
}

@keyframes halo-float {
  0% {
    transform: translate3d(-4%, 0, 0);
  }
  50% {
    transform: translate3d(4%, -3%, 0);
  }
  100% {
    transform: translate3d(-2%, 2%, 0);
  }
}

@keyframes curtain-fade {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes curtain-logo {
  0% {
    opacity: 0;
    transform: scale(0.82) translateY(18px);
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes curtain-line {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: min(180px, 36vw);
    opacity: 1;
  }
}

@keyframes hero-layer-rise {
  0% {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes word-lift {
  0% {
    opacity: 0;
    transform: translateY(120%) skewY(6deg);
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
    filter: blur(0);
  }
}

@keyframes veil-open {
  0% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--cream);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.16), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(168, 171, 120, 0.12), transparent 24%),
    linear-gradient(180deg, #213623 0%, #0f1611 54%, #121311 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-entering {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image: url("./pattern.svg");
  background-size: 420px 420px;
  opacity: 0.04;
  animation: halo-float 24s ease-in-out infinite alternate;
}

body::after {
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.18), rgba(9, 13, 10, 0.42)),
    radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.3) 100%);
}

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

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(200, 195, 155, 0.14);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(184, 154, 76, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(13, 22, 14, 0.98), rgba(7, 11, 8, 0.98));
  transition: opacity 880ms cubic-bezier(0.22, 1, 0.36, 1), visibility 880ms ease;
}

.page-curtain::before,
.page-curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-curtain::before {
  background-image: url("./pattern.svg");
  background-size: 300px 300px;
  opacity: 0.04;
}

.page-curtain::after {
  background: linear-gradient(90deg, transparent, rgba(242, 237, 228, 0.06), transparent);
  transform: translateX(-100%);
  animation: surface-sheen 3.2s ease forwards;
}

.page-curtain__core {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.page-curtain__logo {
  width: 92px;
  height: auto;
  opacity: 0;
  animation: curtain-logo 980ms cubic-bezier(0.21, 1, 0.24, 1) 180ms forwards;
}

.page-curtain__line {
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, rgba(242, 237, 228, 0.62), transparent);
  animation: curtain-line 980ms ease 520ms forwards;
}

.page-curtain__domain {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.68);
  opacity: 0;
  animation: curtain-logo 900ms cubic-bezier(0.21, 1, 0.24, 1) 760ms forwards;
}

body.is-ready {
  overflow: visible;
}

body.is-ready .page-curtain {
  opacity: 0;
  visibility: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 80;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(15, 28, 18, 0.96);
  border: 1px solid rgba(242, 237, 228, 0.18);
  color: var(--cream);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

main,
section,
article,
nav,
div,
form {
  min-width: 0;
}

section[id] {
  scroll-margin-top: 156px;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(200, 195, 155, 0.9);
  outline-offset: 4px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0;
  transition: padding 220ms ease;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 13, 0.84), rgba(12, 18, 13, 0.58));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(242, 237, 228, 0.08);
}

.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: transform 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.topbar__nav a,
.topbar__mail,
.hero-points li,
.eyebrow,
.service-card__number,
.process-item span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand strong {
  font-size: 0.78rem;
  font-weight: 700;
}

.brand__symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(242, 237, 228, 0.04);
  border: 1px solid rgba(242, 237, 228, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand__symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand small {
  color: var(--cream-soft);
  font-size: 0.76rem;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__nav a,
.topbar__mail {
  font-size: 0.74rem;
  color: var(--cream-soft);
}

.topbar__nav a {
  position: relative;
  padding-bottom: 4px;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--moss-soft);
  transition: transform 180ms ease;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__nav a.is-active {
  color: var(--cream);
}

.topbar__nav a.is-active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--moss-soft), rgba(242, 237, 228, 0.88));
}

.topbar__mail {
  padding: 10px 16px;
  border: 1px solid rgba(242, 237, 228, 0.12);
  border-radius: 999px;
  background: rgba(242, 237, 228, 0.04);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.topbar__mail:hover,
.topbar__mail:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 237, 228, 0.2);
  background: rgba(242, 237, 228, 0.08);
}

.topbar.is-scrolled {
  padding: 12px 0;
}

.topbar.is-scrolled::before {
  background: linear-gradient(180deg, rgba(10, 16, 11, 0.94), rgba(10, 16, 11, 0.72));
  border-bottom-color: rgba(242, 237, 228, 0.12);
}

.topbar.is-scrolled .topbar__inner {
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 82px);
  padding: 72px 0 56px;
  display: flex;
  align-items: center;
}

.hero-section__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 22, 14, 0.92), rgba(13, 22, 14, 0.82)),
    radial-gradient(circle at top right, rgba(184, 154, 76, 0.16), transparent 38%);
  transform: scaleY(1);
  transform-origin: bottom;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-section::before {
  top: 12%;
  right: 10%;
  width: min(34vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 76, 0.18), rgba(184, 154, 76, 0) 72%);
  filter: blur(12px);
  animation: halo-float 18s ease-in-out infinite alternate;
}

.hero-section::after {
  left: 50%;
  bottom: 28px;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(242, 237, 228, 0.22), transparent);
}

.hero-section__backdrop {
  position: absolute;
  inset: 0;
}

.hero-section__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.54) contrast(1.04);
  animation: ambient-drift 22s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-section__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 14, 10, 0.88) 0%, rgba(9, 14, 10, 0.56) 44%, rgba(9, 14, 10, 0.74) 100%),
    linear-gradient(180deg, rgba(9, 14, 10, 0.32), rgba(9, 14, 10, 0.58));
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.68fr);
  gap: 28px;
  align-items: end;
  z-index: 3;
}

.hero-copy,
.service-card,
.statement-card,
.process-card,
.editorial-copy,
.signature-copy,
.contact-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-card--note,
.value-strip__card,
.service-card,
.statement-card,
.process-card,
.editorial-copy,
.signature-copy,
.contact-panel,
.contact-pillars__item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy > *,
.hero-card--note > *,
.value-strip__card > *,
.service-card > *,
.statement-card > *,
.process-card > *,
.editorial-copy > *,
.signature-copy > *,
.contact-panel > *,
.contact-pillars__item > * {
  position: relative;
  z-index: 1;
}

.hero-copy::before,
.hero-card--note::before,
.value-strip__card::before,
.service-card::before,
.statement-card::before,
.process-card::before,
.editorial-copy::before,
.signature-copy::before,
.contact-panel::before,
.contact-pillars__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(242, 237, 228, 0.12),
    transparent 40%
  );
  opacity: 0.75;
}

.hero-copy {
  padding: clamp(34px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 24, 15, 0.9), rgba(14, 24, 15, 0.74)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.14), transparent 38%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: -28%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 42%,
    rgba(242, 237, 228, 0.09) 50%,
    transparent 58%
  );
  animation: surface-sheen 14s linear infinite;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  color: var(--moss-soft);
  font-weight: 700;
}

.hero-copy h1,
.section-header h2,
.statement-card h2,
.signature-copy h2,
.contact-copy h2,
.hero-card--note h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-weight: 600;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 8vw, 6.8rem);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.hero-copy__headline {
  display: grid;
}

.hero-copy__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.18em;
  overflow: hidden;
}

.hero-copy__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%);
  will-change: transform, opacity, filter;
}

.hero-copy__domain {
  margin: 22px 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.42);
}

.hero-copy__lead,
.section-header__lead,
.statement-card p,
.signature-copy p,
.contact-copy p,
.hero-card--note p,
.service-card p,
.process-item p {
  color: var(--cream-soft);
}

.hero-copy__lead {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    120deg,
    transparent 28%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 70%
  );
  transform: translateX(-160%) rotate(8deg);
  transition: transform 700ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(160%) rotate(8deg);
}

.button--primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--moss-soft), #ede7c9);
}

.button--secondary {
  border-color: rgba(242, 237, 228, 0.18);
  background: rgba(242, 237, 228, 0.04);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 237, 228, 0.12);
  background: rgba(242, 237, 228, 0.05);
  font-size: 0.72rem;
  color: var(--cream);
}

.hero-aside {
  display: grid;
  gap: 20px;
}

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card--pattern {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(242, 237, 228, 0.12);
  box-shadow: var(--shadow);
}

.hero-card--pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.94);
  transition: transform 520ms ease, filter 520ms ease;
}

.hero-card--pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(242, 237, 228, 0.08), transparent 36%),
    linear-gradient(180deg, transparent 44%, rgba(15, 28, 18, 0.32));
  pointer-events: none;
}

.hero-card--pattern:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.98);
}

.hero-card--note {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(135, 77, 41, 0.2), rgba(18, 28, 19, 0.9)),
    radial-gradient(circle at top right, rgba(184, 154, 76, 0.16), transparent 36%);
}

.hero-card--note h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.hero-card--note p:last-child {
  margin-bottom: 0;
}

.value-strip {
  position: relative;
  z-index: 4;
  margin-top: -40px;
  padding: 0 0 24px;
}

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

.value-strip__card {
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(242, 237, 228, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(17, 28, 18, 0.94), rgba(17, 28, 18, 0.78)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.1), transparent 42%);
}

.value-strip__card--warm {
  background:
    linear-gradient(180deg, rgba(42, 26, 18, 0.84), rgba(20, 17, 15, 0.86)),
    radial-gradient(circle at top right, rgba(184, 154, 76, 0.14), transparent 40%);
}

.value-strip__card--soft {
  background:
    linear-gradient(180deg, rgba(37, 52, 29, 0.84), rgba(17, 26, 18, 0.82)),
    radial-gradient(circle at top left, rgba(200, 195, 155, 0.12), transparent 42%);
}

.value-strip__card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.value-strip__card p:last-child {
  margin-bottom: 0;
  color: var(--cream-soft);
}

.section-block {
  padding: 100px 0;
}

.services-section,
.contact-section {
  position: relative;
}

.services-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top center, rgba(168, 171, 120, 0.06), transparent 46%);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header h2,
.statement-card h2,
.signature-copy h2,
.contact-copy h2 {
  font-size: clamp(2.9rem, 5vw, 4.4rem);
}

.section-header__lead {
  margin: 0;
  max-width: 34ch;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 34, 23, 0.84), rgba(17, 25, 18, 0.86)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.1), transparent 38%);
  overflow: hidden;
}

.service-card,
.hero-card,
.value-strip__card,
.statement-card,
.process-card,
.editorial-copy,
.editorial-visual,
.signature-visual,
.signature-copy,
.contact-panel {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.service-card:focus-within,
.hero-card:hover,
.value-strip__card:hover,
.statement-card:hover,
.process-card:hover,
.editorial-copy:hover,
.editorial-visual:hover,
.signature-copy:hover,
.signature-visual:hover,
.contact-panel:focus-within {
  transform: translateY(-4px);
  border-color: rgba(242, 237, 228, 0.2);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.38);
}

.service-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  color: rgba(242, 237, 228, 0.18);
}

.service-card__kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.service-card__media {
  height: 168px;
  margin-bottom: 22px;
  border-radius: 20px;
  border: 1px solid rgba(242, 237, 228, 0.1);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 420ms ease, background-size 420ms ease, filter 420ms ease;
}

.service-card__media--interior {
  background-image:
    linear-gradient(180deg, rgba(14, 21, 15, 0.18), rgba(14, 21, 15, 0.42)),
    url("./assets/visuals/hero-1.png");
  background-position: 86% center;
  background-size: 126%;
}

.service-card__media--pattern {
  background-image:
    linear-gradient(180deg, rgba(14, 21, 15, 0.1), rgba(14, 21, 15, 0.24)),
    url("./assets/visuals/pattern-band.png");
  background-position: center;
  background-size: 114%;
}

.service-card__media--palette {
  background-image:
    linear-gradient(
      90deg,
      var(--cream) 0 28%,
      var(--moss) 28% 57%,
      var(--gold) 57% 78%,
      var(--copper) 78% 100%
    );
}

.service-card__media--atelier {
  background:
    linear-gradient(135deg, rgba(15, 27, 17, 0.1), rgba(15, 27, 17, 0.48)),
    url("./pattern.svg"),
    linear-gradient(135deg, rgba(184, 154, 76, 0.78), rgba(138, 77, 41, 0.86));
  background-size: auto, 260px 260px, auto;
}

.service-card:hover .service-card__media,
.service-card:focus-within .service-card__media {
  transform: scale(1.02);
}

.service-card:hover .service-card__media--interior,
.service-card:focus-within .service-card__media--interior {
  background-size: 134%;
}

.service-card:hover .service-card__media--pattern,
.service-card:focus-within .service-card__media--pattern {
  background-size: 120%;
}

.service-card h3,
.editorial-point h3,
.contact-pillars__item h3,
.process-item h3 {
  margin: 0;
  font-size: 1.34rem;
  font-weight: 600;
}

.service-card p,
.editorial-point p,
.contact-pillars__item p,
.process-item p {
  margin-bottom: 0;
}

.service-card__outcomes {
  list-style: none;
  padding: 18px 0 0;
  margin: auto 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(242, 237, 228, 0.1);
}

.service-card__outcomes li {
  position: relative;
  padding-left: 18px;
  color: rgba(242, 237, 228, 0.82);
  font-size: 0.92rem;
}

.service-card__outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss-soft), var(--gold));
}

.editorial-section {
  position: relative;
  padding-top: 18px;
}

.editorial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 40%, rgba(184, 154, 76, 0.08), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(168, 171, 120, 0.08), transparent 26%);
}

.editorial-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.editorial-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(17, 26, 18, 0.58);
}

.editorial-visual__collage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.editorial-visual__shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(242, 237, 228, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.editorial-visual__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.84);
  transition: transform 560ms ease, filter 560ms ease;
}

.editorial-visual__shot--guest {
  left: 30px;
  top: 30px;
  width: 40%;
  height: 46%;
}

.editorial-visual__shot--guest img {
  object-position: 14% center;
}

.editorial-visual__shot--interior {
  right: 0;
  bottom: 0;
  width: 72%;
  height: 74%;
  border-bottom-right-radius: 0;
}

.editorial-visual__shot--interior img {
  object-position: 88% center;
}

.editorial-visual__swatch {
  position: absolute;
  left: 30px;
  bottom: 32px;
  width: 190px;
  height: 78px;
  border-radius: 18px;
  border: 1px solid rgba(242, 237, 228, 0.14);
  background:
    linear-gradient(
      90deg,
      rgba(242, 237, 228, 0.92) 0 33%,
      rgba(200, 195, 155, 0.92) 33% 67%,
      rgba(184, 154, 76, 0.92) 67% 100%
    );
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.editorial-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 9, 0.18), rgba(8, 12, 9, 0.42)),
    linear-gradient(90deg, rgba(8, 12, 9, 0.4), transparent 38%, rgba(8, 12, 9, 0.18));
  pointer-events: none;
  z-index: 1;
}

.editorial-visual::after {
  content: "";
  position: absolute;
  inset: auto auto -16% -12%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 76, 0.24), rgba(184, 154, 76, 0) 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 1;
}

.editorial-visual__pattern {
  position: absolute;
  right: -16%;
  top: -4%;
  width: min(120%, 760px);
  height: auto;
  opacity: 0.24;
  filter: brightness(1.05);
  mix-blend-mode: screen;
  z-index: 1;
}

.editorial-visual__badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(242, 237, 228, 0.16);
  background:
    linear-gradient(180deg, rgba(17, 26, 18, 0.9), rgba(17, 26, 18, 0.7)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.14), transparent 36%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  z-index: 2;
}

.editorial-visual__badge span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.editorial-visual__badge strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.editorial-copy {
  padding: clamp(34px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 29, 19, 0.84), rgba(18, 29, 19, 0.72)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.14), transparent 36%);
}

.editorial-copy::after {
  content: "";
  position: absolute;
  inset: -24%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 42%,
    rgba(242, 237, 228, 0.06) 50%,
    transparent 58%
  );
  animation: surface-sheen 16s linear infinite;
}

.editorial-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.editorial-copy p {
  color: var(--cream-soft);
}

.editorial-copy__grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.editorial-point {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(242, 237, 228, 0.1);
}

.editorial-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.editorial-point span {
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
}

.statement-card,
.process-card,
.signature-copy,
.contact-panel {
  border-radius: var(--radius-lg);
}

.statement-card {
  position: relative;
  padding: clamp(34px, 4vw, 50px);
  background:
    linear-gradient(180deg, rgba(15, 25, 17, 0.84), rgba(15, 25, 17, 0.72)),
    radial-gradient(circle at top right, rgba(184, 154, 76, 0.14), transparent 36%);
  overflow: hidden;
}

.statement-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(168, 171, 120, 0.18), rgba(168, 171, 120, 0) 70%);
}

.statement-card p {
  position: relative;
  z-index: 1;
  max-width: 48ch;
}

.statement-pillars {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.statement-pillars li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 237, 228, 0.12);
  background: rgba(242, 237, 228, 0.05);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(24, 39, 27, 0.84), rgba(17, 26, 18, 0.92)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.12), transparent 38%);
}

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(242, 237, 228, 0.1);
}

.process-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.process-item span {
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.signature-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.signature-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.signature-visual::before {
  content: "";
  position: absolute;
  inset: auto auto -10% -10%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 76, 0.22), rgba(184, 154, 76, 0) 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 26% center;
  filter: saturate(0.88) contrast(1.02) brightness(0.84);
  transition: transform 540ms ease, filter 540ms ease;
}

.signature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 10, 0.16), rgba(9, 14, 10, 0.36)),
    linear-gradient(0deg, rgba(9, 14, 10, 0.54), rgba(9, 14, 10, 0));
}

.signature-visual:hover img {
  transform: scale(1.05);
  filter: saturate(0.94) contrast(1.03) brightness(0.88);
}

.editorial-visual:hover .editorial-visual__shot img {
  transform: scale(1.05);
  filter: saturate(0.96) contrast(1.04) brightness(0.88);
}

.signature-plaque {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(242, 237, 228, 0.16);
  background:
    linear-gradient(180deg, rgba(17, 26, 18, 0.88), rgba(17, 26, 18, 0.72)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.14), transparent 36%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.signature-plaque span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.signature-plaque strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.signature-copy {
  padding: clamp(34px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(18, 29, 19, 0.84), rgba(18, 29, 19, 0.7)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.14), transparent 36%);
}

.signature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}

.signature-list li {
  position: relative;
  padding: 0 0 0 22px;
  color: var(--cream-soft);
}

.signature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss-soft), var(--gold));
}

.contact-section {
  padding-bottom: 110px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(15, 23, 16, 0.9), rgba(15, 23, 16, 0.76)),
    radial-gradient(circle at top right, rgba(168, 171, 120, 0.12), transparent 32%);
}

.contact-copy__mail {
  display: inline-flex;
  margin-top: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.contact-copy__mail:hover,
.contact-copy__mail:focus-visible {
  color: var(--cream);
}

.contact-pillars {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-pillars__item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 18px 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(242, 237, 228, 0.1);
  background:
    linear-gradient(180deg, rgba(242, 237, 228, 0.04), rgba(242, 237, 228, 0.02)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.08), transparent 40%);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-pillars__item:hover,
.contact-pillars__item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(242, 237, 228, 0.18);
  background:
    linear-gradient(180deg, rgba(242, 237, 228, 0.05), rgba(242, 237, 228, 0.03)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.11), transparent 44%);
}

.contact-pillars__item span {
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(242, 237, 228, 0.12);
  border-radius: 18px;
  background: rgba(242, 237, 228, 0.04);
  color: var(--cream);
  padding: 16px 18px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(242, 237, 228, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 195, 155, 0.48);
  background: rgba(242, 237, 228, 0.07);
  box-shadow: 0 0 0 3px rgba(168, 171, 120, 0.12);
}

.footer {
  padding: 0 0 28px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 237, 228, 0.08);
  color: rgba(242, 237, 228, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
}

.footer__logo {
  width: 90px;
  height: auto;
}

body.is-entering .topbar,
body.is-entering .hero-copy,
body.is-entering .hero-aside,
body.is-entering .value-strip__grid {
  opacity: 0;
}

body.is-loaded .topbar {
  animation: hero-layer-rise 700ms cubic-bezier(0.21, 1, 0.24, 1) 240ms both;
}

body.is-loaded .hero-section__veil {
  animation: veil-open 1.1s cubic-bezier(0.19, 1, 0.22, 1) 520ms forwards;
}

body.is-loaded .hero-copy {
  animation: hero-layer-rise 900ms cubic-bezier(0.21, 1, 0.24, 1) 720ms both;
}

body.is-loaded .hero-aside {
  animation: hero-layer-rise 920ms cubic-bezier(0.21, 1, 0.24, 1) 900ms both;
}

body.is-loaded .value-strip__grid {
  animation: hero-layer-rise 900ms cubic-bezier(0.21, 1, 0.24, 1) 1120ms both;
}

body.is-entering .hero-copy .eyebrow,
body.is-entering .hero-copy__lead,
body.is-entering .hero-actions,
body.is-entering .hero-points,
body.is-entering .hero-copy__domain,
body.is-entering .hero-card--pattern,
body.is-entering .hero-card--note {
  opacity: 0;
}

body.is-loaded .hero-copy .eyebrow {
  animation: hero-layer-rise 680ms cubic-bezier(0.21, 1, 0.24, 1) 900ms both;
}

body.is-loaded .hero-copy__lead {
  animation: hero-layer-rise 760ms cubic-bezier(0.21, 1, 0.24, 1) 1280ms both;
}

body.is-loaded .hero-actions {
  animation: hero-layer-rise 760ms cubic-bezier(0.21, 1, 0.24, 1) 1420ms both;
}

body.is-loaded .hero-points {
  animation: hero-layer-rise 760ms cubic-bezier(0.21, 1, 0.24, 1) 1540ms both;
}

body.is-loaded .hero-copy__domain {
  animation: hero-layer-rise 760ms cubic-bezier(0.21, 1, 0.24, 1) 1650ms both;
}

body.is-loaded .hero-card--pattern {
  animation: hero-layer-rise 840ms cubic-bezier(0.21, 1, 0.24, 1) 1080ms both;
}

body.is-loaded .hero-card--note {
  animation: hero-layer-rise 860ms cubic-bezier(0.21, 1, 0.24, 1) 1220ms both;
}

body.is-loaded .hero-copy__word {
  animation: word-lift 900ms cubic-bezier(0.2, 1, 0.2, 1) both;
  animation-delay: calc(980ms + var(--word-delay, 0ms));
}

.value-strip__grid .value-strip__card:nth-child(2),
.services-grid .service-card:nth-child(2),
.process-card .process-item:nth-child(2) {
  transition-delay: 90ms;
}

.value-strip__grid .value-strip__card:nth-child(3),
.services-grid .service-card:nth-child(3),
.process-card .process-item:nth-child(3) {
  transition-delay: 180ms;
}

.services-grid .service-card:nth-child(4) {
  transition-delay: 270ms;
}

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

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

@media (max-width: 1080px) {
  .topbar__mail {
    display: none;
  }

  .value-strip {
    margin-top: -20px;
  }

  .hero-layout,
  .value-strip__grid,
  .section-header,
  .editorial-frame,
  .approach-grid,
  .signature-frame,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-aside {
    grid-template-columns: 1fr 1fr;
  }

  .signature-visual {
    min-height: 420px;
  }

  .editorial-copy {
    order: -1;
  }

  .editorial-visual {
    min-height: 440px;
  }
}

@media (max-width: 780px) {
  :root {
    --content-width: min(100% - 28px, 1000px);
  }

  section[id] {
    scroll-margin-top: 224px;
  }

  .topbar {
    padding: 14px 0;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .topbar__nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .hero-aside,
  .value-strip__grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 78px 0;
  }

  .service-card,
  .statement-card,
  .process-card,
  .editorial-copy,
  .signature-copy {
    padding: 24px;
  }

  .signature-plaque {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: 260px;
    padding: 16px 18px;
  }

  .editorial-visual__shot--guest {
    left: 18px;
    top: 18px;
    width: 42%;
    height: 42%;
  }

  .editorial-visual__swatch {
    left: 18px;
    bottom: 18px;
    width: 148px;
    height: 60px;
  }
}

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

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

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

@media (max-width: 560px) {
  .hero-copy,
  .hero-card--note,
  .contact-panel {
    padding: 22px;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-points li {
    width: 100%;
    text-align: center;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .editorial-point,
  .contact-pillars__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer__logo {
    width: 78px;
  }

  .signature-plaque {
    max-width: none;
  }

  .editorial-visual__shot--interior {
    width: 76%;
    height: 68%;
  }

  .editorial-visual__badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

/* Simplified Luxury Refresh */
body {
  background:
    linear-gradient(180deg, rgba(11, 18, 12, 0.3), rgba(11, 18, 12, 0.7)),
    linear-gradient(180deg, #112015 0%, #0f1811 48%, #0c140e 100%);
}

body::before,
body::after,
.page-curtain,
.hero-section__veil,
.hero-section::before,
.hero-section::after,
.hero-copy::before,
.hero-copy::after,
.hero-card--note::before,
.value-strip__card::before,
.service-card::before,
.statement-card::before,
.process-card::before,
.editorial-copy::before,
.editorial-copy::after,
.signature-copy::before,
.contact-panel::before,
.contact-pillars__item::before {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body,
body.is-entering,
body.is-ready {
  overflow: visible;
}

.reveal,
.reveal.is-visible,
body.is-entering .topbar,
body.is-entering .hero-copy,
body.is-entering .hero-aside,
body.is-entering .value-strip__grid,
body.is-entering .hero-copy .eyebrow,
body.is-entering .hero-copy__lead,
body.is-entering .hero-actions,
body.is-entering .hero-points,
body.is-entering .hero-copy__domain,
body.is-entering .hero-card--pattern,
body.is-entering .hero-card--note,
body.is-loaded .topbar,
body.is-loaded .hero-section__veil,
body.is-loaded .hero-copy,
body.is-loaded .hero-aside,
body.is-loaded .value-strip__grid,
body.is-loaded .hero-copy .eyebrow,
body.is-loaded .hero-copy__lead,
body.is-loaded .hero-actions,
body.is-loaded .hero-points,
body.is-loaded .hero-copy__domain,
body.is-loaded .hero-card--pattern,
body.is-loaded .hero-card--note,
body.is-loaded .hero-copy__word {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  transition: none !important;
}

.topbar {
  padding: 18px 0;
}

.topbar::before {
  background: rgba(10, 16, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 237, 228, 0.08);
}

.topbar.is-scrolled {
  padding: 18px 0;
}

.topbar.is-scrolled .topbar__inner {
  transform: none;
}

.brand {
  gap: 16px;
}

.brand__symbol {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(242, 237, 228, 0.12);
  box-shadow: none;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.brand small {
  color: rgba(242, 237, 228, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.topbar__nav {
  gap: 30px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(242, 237, 228, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-switch__button {
  border: 0;
  background: transparent;
  color: rgba(242, 237, 228, 0.7);
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.language-switch__button.is-active {
  background: rgba(242, 237, 228, 0.14);
  color: var(--cream);
}

.language-switch__button:focus-visible {
  outline-offset: 2px;
}

.topbar__nav a,
.topbar__mail {
  font-size: 0.82rem;
}

.topbar__mail {
  padding: 12px 20px;
  border-color: rgba(242, 237, 228, 0.16);
  background: transparent;
}

.topbar__mail:hover,
.topbar__mail:focus-visible {
  transform: none;
  background: rgba(242, 237, 228, 0.05);
}

.hero-section {
  min-height: 100svh;
  padding: 140px 0 96px;
}

.hero-section__backdrop img {
  animation: none;
  filter: saturate(0.84) brightness(0.52) contrast(1.03);
}

.hero-section__backdrop::after {
  background:
    linear-gradient(180deg, rgba(8, 12, 9, 0.24), rgba(8, 12, 9, 0.5)),
    linear-gradient(90deg, rgba(8, 12, 9, 0.42), rgba(8, 12, 9, 0.22));
}

.hero-layout {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy,
.service-card,
.statement-card,
.process-card,
.contact-panel,
.contact-pillars__item,
.contact-form input,
.contact-form textarea {
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy {
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: 0.95;
  text-shadow: none;
}

.hero-copy__headline {
  display: block;
}

.hero-copy__line {
  display: inline;
  overflow: visible;
}

.hero-copy__word {
  display: inline;
  opacity: 1;
}

.hero-copy__lead {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 1.05rem;
  color: rgba(242, 237, 228, 0.82);
}

.hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  box-shadow: none;
}

.button::after {
  display: none;
}

.button:hover,
.button:focus-visible {
  transform: none;
  box-shadow: none;
}

.button--primary {
  background: #c89a53;
  color: #fff8ef;
}

.button--secondary {
  background: transparent;
  border-color: rgba(242, 237, 228, 0.16);
}

.hero-points {
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(242, 237, 228, 0.1);
}

.hero-copy__domain {
  margin-top: 26px;
  color: rgba(242, 237, 228, 0.56);
}

.hero-aside,
.value-strip,
.editorial-section,
.signature-section {
  display: none;
}

.section-block {
  padding: 100px 0;
}

.services-section,
.approach-section,
.contact-section {
  position: relative;
}

.services-section::before,
.approach-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%);
  pointer-events: none;
}

.section-header {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

.section-header h2,
.statement-card h2,
.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.96;
}

.section-header__lead {
  max-width: 640px;
}

.services-grid {
  gap: 24px;
}

.service-card {
  min-height: 0;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(242, 237, 228, 0.1);
  background: rgba(16, 24, 17, 0.84);
  transition: none;
}

.service-card:hover,
.service-card:focus-within {
  transform: none;
  border-color: rgba(242, 237, 228, 0.1);
  box-shadow: none;
}

.service-card__number {
  color: rgba(242, 237, 228, 0.1);
}

.service-card__media {
  height: 180px;
  margin-bottom: 20px;
  border-radius: 18px;
}

.service-card__media--interior {
  background-size: cover;
  background-position: 84% center;
}

.service-card:hover .service-card__media,
.service-card:focus-within .service-card__media,
.service-card:hover .service-card__media--interior,
.service-card:focus-within .service-card__media--interior,
.service-card:hover .service-card__media--pattern,
.service-card:focus-within .service-card__media--pattern {
  transform: none;
  background-size: cover;
}

.service-card__kicker {
  color: rgba(242, 237, 228, 0.48);
}

.service-card__outcomes {
  margin-top: 20px;
}

.approach-grid,
.contact-panel {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.statement-card,
.process-card,
.contact-panel {
  padding: 34px;
  border: 1px solid rgba(242, 237, 228, 0.1);
  background: rgba(16, 24, 17, 0.84);
}

.statement-card::after {
  display: none;
}

.statement-pillars li,
.contact-pillars__item {
  background: transparent;
  border-color: rgba(242, 237, 228, 0.1);
}

.process-card {
  transition: none;
}

.process-card:hover {
  transform: none;
  border-color: rgba(242, 237, 228, 0.1);
  box-shadow: none;
}

.contact-panel {
  align-items: start;
}

.contact-pillars {
  margin-top: 24px;
}

.contact-copy__mail {
  color: rgba(200, 195, 155, 0.86);
}

.contact-form {
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.footer {
  padding-bottom: 34px;
}

.footer__inner {
  padding-top: 28px;
}

@media (max-width: 1080px) {
  .hero-layout,
  .approach-grid,
  .contact-panel {
    max-width: none;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  section[id] {
    scroll-margin-top: 158px;
  }

  .topbar {
    padding: 14px 0;
  }

  .topbar__inner {
    gap: 16px;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .topbar__nav {
    gap: 18px;
  }

  .topbar__actions {
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    min-height: auto;
    padding: 132px 0 84px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero-copy__lead {
    font-size: 1rem;
  }

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

  .section-block {
    padding: 78px 0;
  }

  .statement-card,
  .process-card,
  .contact-panel {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .topbar__nav,
  .hero-actions {
    justify-content: center;
  }

  .hero-points li {
    width: 100%;
    text-align: center;
  }

  .contact-pillars__item,
  .process-item {
    grid-template-columns: 1fr;
  }
}

/* Compact Contact Refresh */

.contact-section {
  padding-top: 56px;
  padding-bottom: 68px;
}

.contact-panel {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(16, 24, 17, 0.92), rgba(16, 24, 17, 0.8)),
    radial-gradient(circle at top right, rgba(184, 154, 76, 0.08), transparent 34%);
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 {
  max-width: 14ch;
  margin-bottom: 10px;
  font-size: clamp(1.72rem, 2.8vw, 2.28rem);
  line-height: 1.01;
}

.contact-copy p {
  max-width: 34ch;
  font-size: 0.94rem;
  margin-bottom: 0;
}

.contact-copy__mail {
  margin-top: 12px;
  padding: 8px 13px;
  border: 1px solid rgba(242, 237, 228, 0.1);
  border-radius: 999px;
  background: rgba(242, 237, 228, 0.03);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.contact-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.contact-pillars__item {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(242, 237, 228, 0.025);
}

.contact-pillars__item span {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
}

.contact-pillars__item strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.28;
  font-weight: 600;
  color: var(--cream);
}

.contact-form {
  align-self: start;
  padding: 16px;
  border: 1px solid rgba(242, 237, 228, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(242, 237, 228, 0.035), rgba(242, 237, 228, 0.02)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.06), transparent 42%);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.contact-form__field {
  min-width: 0;
}

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

.contact-form label {
  gap: 7px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.contact-form input,
.contact-form textarea {
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 88px;
  resize: vertical;
}

.contact-form .button {
  margin-top: 10px;
  min-height: 44px;
}

@media (max-width: 1080px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .contact-section {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .contact-panel {
    padding: 20px;
  }

  .contact-copy h2 {
    max-width: none;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Header + Hero Refinement */

@media (max-width: 780px) {
  section[id] {
    scroll-margin-top: 112px;
  }

  .topbar {
    padding: 10px 0 8px;
  }

  .topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand__symbol {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand__text {
    min-width: 0;
    gap: 0;
  }

  .brand strong {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    line-height: 1;
  }

  .brand small,
  .topbar__mail {
    display: none;
  }

  .topbar__actions {
    width: auto;
    justify-content: flex-end;
    gap: 0;
  }

  .language-switch {
    padding: 3px;
  }

  .language-switch__button {
    min-width: 36px;
    height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    padding-top: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topbar__nav::-webkit-scrollbar {
    display: none;
  }

  .topbar__nav a {
    flex: 0 0 auto;
    padding-bottom: 2px;
    font-size: 0.72rem;
  }

  .hero-section {
    min-height: calc(100svh - 74px);
    padding: 30px 0 34px;
    align-items: center;
  }

  .hero-layout {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 9.3ch;
    font-size: clamp(2.7rem, 12.2vw, 4rem);
    line-height: 0.94;
  }

  .hero-copy__lead {
    max-width: 31ch;
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.72rem;
  }

  .hero-points,
  .hero-copy__domain {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: calc(100svh - 68px);
    padding: 24px 0 30px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }
}

/* Slides Feedback r1 */

.topbar {
  padding: 12px 0;
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  gap: 12px;
}

.brand__symbol {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border-radius: 50%;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.brand small {
  display: none;
}

.topbar__mail {
  justify-self: center;
  padding: 10px 18px;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0.03em;
  color: rgba(242, 237, 228, 0.78);
}

.topbar__nav {
  justify-self: end;
  gap: 38px;
}

.topbar__nav a {
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0.03em;
  color: rgba(242, 237, 228, 0.72);
}

.hero-section {
  min-height: calc(100svh - 78px);
  padding: 104px 0 72px;
  align-items: center;
}

.hero-section__backdrop img {
  filter: saturate(0.92) brightness(0.68) contrast(1.01);
}

.hero-section__backdrop::after {
  background:
    linear-gradient(180deg, rgba(12, 20, 13, 0.28), rgba(12, 20, 13, 0.42)),
    linear-gradient(90deg, rgba(15, 23, 16, 0.56), rgba(15, 23, 16, 0.2));
}

.hero-layout {
  max-width: 980px;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.9rem, 6.4vw, 5.8rem);
  line-height: 0.92;
}

.hero-copy__lead {
  max-width: 52ch;
  margin: 18px auto 0;
  font-size: 1rem;
  color: rgba(242, 237, 228, 0.86);
}

.hero-actions {
  margin-top: 28px;
}

.hero-actions .button {
  min-height: 52px;
  padding: 0 26px;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0.04em;
}

.hero-points,
.hero-copy__domain {
  display: none;
}

.services-section {
  padding-top: 76px;
  padding-bottom: 84px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 4.6vw, 4.4rem);
  line-height: 0.96;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  padding: 22px;
  border-radius: 24px;
  min-height: 0;
}

.service-card__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card__icon--advisory {
  background: #c8c39b;
  color: #1f3322;
}

.service-card__icon--operations {
  background: #1f3322;
  color: #f2ede4;
}

.service-card__icon--review {
  background: #b89a4c;
  color: #132016;
}

.service-card__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(20, 32, 22, 0.64);
}

.service-card h3 {
  min-height: 2.2em;
  margin-top: 8px;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 0.98;
}

.service-card p {
  font-size: 0.95rem;
}

.service-card__outcomes {
  margin-top: 16px;
  gap: 8px;
}

.service-card__outcomes li {
  padding-left: 18px;
  font-size: 0.9rem;
}

.service-card__outcomes li::before {
  top: 10px;
  width: 7px;
  height: 7px;
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: auto 1fr;
  }

  .topbar__mail {
    display: none;
  }

  .topbar__nav {
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .topbar {
    padding: 8px 0 6px;
  }

  .topbar__inner {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
  }

  .brand__symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    justify-self: start;
    gap: 24px;
    padding-top: 2px;
  }

  .topbar__nav a {
    font-size: 0.84rem;
  }

  .hero-section {
    min-height: calc(100svh - 88px);
    padding: 90px 0 40px;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
    font-size: clamp(2.9rem, 10.5vw, 4.3rem);
  }

  .hero-copy__lead {
    max-width: 28ch;
    font-size: 0.92rem;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.86rem;
  }

  .services-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    max-width: none;
    font-size: clamp(2.45rem, 9vw, 3.2rem);
  }
}

/* Light Sections Refresh */

.services-section,
.approach-section,
.contact-section,
.footer {
  color: #142016;
  background:
    linear-gradient(180deg, rgba(247, 242, 233, 0.98), rgba(239, 231, 219, 0.98)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.08), transparent 28%);
}

.services-section::before,
.approach-section::before,
.contact-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 18%),
    radial-gradient(circle at top center, rgba(184, 154, 76, 0.08), transparent 44%);
}

.services-section {
  border-top: 1px solid rgba(20, 32, 22, 0.06);
}

.services-section .eyebrow,
.approach-section .eyebrow,
.contact-section .eyebrow,
.service-card__kicker,
.contact-form label,
.footer__inner,
.footer a {
  color: rgba(31, 51, 34, 0.68);
}

.services-section .section-header h2,
.approach-section h2,
.contact-section h2,
.service-card h3,
.process-item h3 {
  color: #132016;
}

.services-section .section-header__lead,
.service-card p,
.service-card__outcomes li,
.statement-card p,
.process-item p,
.contact-copy p,
.contact-form input,
.contact-form textarea {
  color: rgba(20, 32, 22, 0.8);
}

.service-card,
.statement-card,
.process-card,
.contact-panel {
  border-color: rgba(20, 32, 22, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 242, 233, 0.96)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.08), transparent 34%);
  box-shadow: 0 20px 56px rgba(39, 31, 18, 0.08);
}

.service-card__number {
  color: rgba(20, 32, 22, 0.08);
}

.service-card__media,
.contact-form,
.contact-copy__mail {
  border-color: rgba(20, 32, 22, 0.1);
}

.statement-pillars li {
  color: #1f3322;
  border-color: rgba(31, 51, 34, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.statement-pillars li::before,
.service-card__outcomes li::before {
  background: linear-gradient(135deg, #9d8240, #315036);
}

.process-item {
  border-color: rgba(20, 32, 22, 0.1);
}

.process-item span {
  color: #8a6e31;
}

.contact-panel {
  background:
    linear-gradient(180deg, rgba(252, 248, 241, 0.98), rgba(243, 236, 225, 0.98)),
    radial-gradient(circle at top right, rgba(184, 154, 76, 0.08), transparent 30%);
}

.contact-copy__mail {
  background: rgba(255, 255, 255, 0.64);
  color: #315036;
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 232, 0.96)),
    radial-gradient(circle at top left, rgba(184, 154, 76, 0.05), transparent 42%);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(20, 32, 22, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(20, 32, 22, 0.34);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(49, 80, 54, 0.32);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 3px rgba(168, 171, 120, 0.12);
}

.contact-form .button--primary {
  background: #b88e49;
  color: #fff8ef;
}

.footer {
  padding-top: 6px;
}

.footer__inner {
  border-top-color: rgba(20, 32, 22, 0.1);
}

.footer__brand {
  color: #1f3322;
}

.footer__logo {
  width: 98px;
}

@media (max-width: 780px) {
  .services-section,
  .approach-section,
  .contact-section,
  .footer {
    background:
      linear-gradient(180deg, rgba(248, 243, 235, 0.98), rgba(241, 234, 223, 0.98)),
      radial-gradient(circle at top left, rgba(184, 154, 76, 0.06), transparent 26%);
  }
}

/* Compact Top Refinement */

.topbar {
  padding: 10px 0;
}

.topbar__inner {
  gap: 18px;
}

.brand {
  gap: 12px;
}

.brand__symbol {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
}

.brand small {
  display: none;
}

.topbar__nav {
  gap: 22px;
}

.topbar__nav a,
.topbar__mail {
  font-size: 0.78rem;
}

.topbar__mail {
  padding: 9px 14px;
}

@media (max-width: 780px) {
  .topbar {
    padding: 6px 0 4px;
  }

  .topbar__inner {
    gap: 6px 10px;
  }

  .brand__symbol {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .topbar__nav {
    gap: 16px;
    padding-top: 0;
  }

  .topbar__nav a {
    font-size: 0.69rem;
  }
}

/* Slides Refresh r2 */

.topbar {
  padding: 10px 0;
}

.topbar::before {
  background: rgba(9, 16, 11, 0.88);
  border-bottom: 1px solid rgba(242, 237, 228, 0.08);
}

.topbar.is-scrolled {
  padding: 10px 0;
}

.topbar__inner {
  grid-template-columns: auto 1fr auto;
  gap: 18px 30px;
}

.brand {
  gap: 12px;
}

.brand__symbol {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.12em;
}

.topbar__mail {
  justify-self: center;
  padding: 9px 16px;
  font-size: 0.84rem;
  color: rgba(242, 237, 228, 0.78);
}

.topbar__nav {
  justify-self: end;
  gap: 34px;
}

.topbar__nav a {
  font-size: 0.9rem;
}

.hero-section {
  min-height: calc(100svh - 72px);
  padding: 88px 0 62px;
}

.hero-section__backdrop img {
  filter: saturate(0.96) brightness(0.76) contrast(1.02);
}

.hero-section__backdrop::after {
  background:
    linear-gradient(180deg, rgba(9, 14, 10, 0.26), rgba(9, 14, 10, 0.42)),
    linear-gradient(90deg, rgba(12, 19, 13, 0.44), rgba(12, 19, 13, 0.18));
}

.hero-layout {
  max-width: 940px;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.75rem, 6.3vw, 5.7rem);
}

.hero-copy__lead {
  max-width: 55ch;
  margin-top: 20px;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 28px;
}

.hero-actions .button {
  min-height: 50px;
  padding: 0 24px;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.services-section,
.approach-section,
.contact-section {
  padding-top: 72px;
  padding-bottom: 80px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 4.2vw, 3.85rem);
}

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

.service-card {
  padding: 20px;
  border-radius: 22px;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 16px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__kicker {
  font-size: 0.76rem;
}

.service-card h3 {
  min-height: 0;
  font-size: clamp(1.48rem, 1.8vw, 1.92rem);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card__outcomes {
  margin-top: 14px;
  padding-top: 14px;
  gap: 7px;
}

.service-card__outcomes li {
  font-size: 0.84rem;
  line-height: 1.46;
}

.approach-grid,
.contact-panel {
  gap: 20px;
}

.statement-card,
.process-card,
.contact-panel {
  padding: 28px;
  border-radius: 24px;
}

.statement-card h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.25rem);
}

.statement-card p,
.process-item p,
.contact-copy p,
.contact-form input,
.contact-form textarea {
  color: rgba(20, 32, 22, 0.78);
}

.process-item {
  padding-top: 14px;
  padding-bottom: 14px;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.contact-copy__mail {
  margin-top: 22px;
  padding: 11px 15px;
}

.contact-form {
  padding: 22px;
  border-radius: 20px;
}

.contact-form__grid {
  gap: 14px 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 13px 15px;
}

.contact-form textarea {
  min-height: 132px;
}

.contact-form .button--primary {
  min-height: 48px;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.03em;
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: auto 1fr;
  }

  .topbar__mail {
    display: none;
  }
}

@media (max-width: 980px) {
  .services-grid,
  .approach-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 780px) {
  .topbar {
    padding: 8px 0 6px;
  }

  .topbar.is-scrolled {
    padding: 8px 0 6px;
  }

  .topbar__inner {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
  }

  .brand__symbol {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    justify-self: start;
    gap: 22px;
    padding-top: 0;
  }

  .topbar__nav a {
    font-size: 0.82rem;
  }

  .hero-section {
    min-height: calc(100svh - 86px);
    padding: 74px 0 44px;
  }

  .hero-copy h1 {
    max-width: 9.8ch;
    font-size: clamp(2.85rem, 10.8vw, 4.15rem);
  }

  .hero-copy__lead {
    max-width: 31ch;
    font-size: 0.94rem;
  }

  .services-section,
  .approach-section,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section-header h2 {
    max-width: none;
    font-size: clamp(2.2rem, 8.4vw, 3rem);
  }

  .service-card,
  .statement-card,
  .process-card,
  .contact-panel,
  .contact-form {
    padding: 18px;
  }

  .contact-form__grid {
    gap: 12px;
  }

  .contact-form textarea {
    min-height: 120px;
  }
}

/* Slides Refresh r3 */

:root {
  --gold: #ac854c;
  --copper: #7a4021;
}

.topbar__inner {
  grid-template-columns: 1fr auto 1fr;
  gap: 18px 24px;
}

.brand {
  justify-self: start;
}

.topbar__mail {
  grid-column: 2;
  justify-self: center;
}

.topbar__nav {
  grid-column: 3;
  justify-self: end;
  gap: 42px;
}

.hero-section {
  min-height: calc(100svh - 72px);
  padding: 82px 0 78px;
}

.hero-section__backdrop img {
  filter: saturate(0.98) brightness(0.82) contrast(0.98);
}

.hero-section__backdrop::after {
  background:
    linear-gradient(180deg, rgba(10, 16, 11, 0.18), rgba(10, 16, 11, 0.42)),
    linear-gradient(90deg, rgba(15, 25, 17, 0.42), rgba(15, 25, 17, 0.12)),
    radial-gradient(circle at 50% 82%, rgba(172, 133, 76, 0.18), transparent 42%);
}

.hero-layout {
  max-width: 980px;
}

.hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(3.15rem, 5.05vw, 4.8rem);
  line-height: 0.93;
}

.hero-copy__lead {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1.02rem;
  color: rgba(242, 237, 228, 0.88);
}

.hero-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.hero-actions .button--primary {
  min-height: 56px;
  padding: 0 32px;
  border-radius: 22px;
  background: #ac854c;
  color: #fff8ef;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-section,
.approach-section,
.contact-section {
  padding-top: 80px;
  padding-bottom: 84px;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-header > div {
  display: grid;
  justify-items: center;
}

.services-section .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(172, 133, 76, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(172, 133, 76, 0.92);
  letter-spacing: 0.18em;
}

.section-header h2 {
  max-width: 16ch;
  margin: 12px auto 0;
  font-size: clamp(2.55rem, 3.45vw, 3.35rem);
  line-height: 0.95;
}

.services-grid {
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(31, 51, 34, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.08), transparent 34%);
  box-shadow: 0 12px 28px rgba(27, 31, 24, 0.06);
}

.service-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
}

.service-card__icon--advisory {
  background: #a8ab78;
  color: #29412d;
}

.service-card__icon--operations {
  background: #29412d;
  color: #f7f0e4;
}

.service-card__icon--review {
  background: #ac854c;
  color: #1f3322;
}

.service-card__kicker {
  color: rgba(31, 51, 34, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 10px;
  min-height: 1.9em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.2vw, 2.45rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #1f3322;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card > p:not(.service-card__kicker) {
  min-height: 8em;
  margin-bottom: 0;
}

.service-card__outcomes {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 51, 34, 0.08);
}

.service-card__outcomes li {
  font-size: 0.87rem;
  line-height: 1.48;
}

.statement-card h2,
.contact-copy h2 {
  font-size: clamp(2.45rem, 3.4vw, 3.2rem);
  line-height: 0.96;
}

.statement-pillars li {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 0.96;
}

.contact-form .button--primary {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: auto 1fr;
  }

  .topbar__mail {
    display: none;
  }

  .topbar__nav {
    grid-column: 2;
    gap: 34px;
  }
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    max-width: none;
  }
}

@media (max-width: 780px) {
  .topbar__inner {
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    justify-self: start;
    gap: 24px;
  }

  .hero-section {
    min-height: calc(100dvh - 84px + 120px);
    min-height: calc(100svh - 84px + 120px);
    padding: 74px 0 96px;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(2.72rem, 9.8vw, 3.85rem);
  }

  .hero-copy__lead {
    max-width: 30ch;
    font-size: 0.95rem;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-actions .button--primary {
    width: auto;
    max-width: min(78vw, 280px);
    min-width: 220px;
    flex: 0 0 auto;
    margin-inline: auto;
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.84rem;
  }

  .services-section,
  .approach-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    max-width: 10ch;
    font-size: clamp(2.05rem, 7.4vw, 2.6rem);
  }

  .service-card h3 {
    min-height: 0;
    font-size: 2rem;
  }

  .service-card > p:not(.service-card__kicker) {
    min-height: 0;
  }
}

/* Slides Refresh r4 */

.topbar::before {
  background: rgba(41, 66, 41, 0.96);
}

.topbar__inner {
  grid-template-columns: auto minmax(250px, 1fr) auto;
  gap: 18px 36px;
}

.brand {
  gap: 10px;
}

.brand__symbol {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.brand__text {
  align-items: center;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.18em;
}

.topbar__mail {
  padding: 10px 18px;
  border-color: rgba(242, 237, 228, 0.12);
  background: rgba(13, 20, 14, 0.1);
  color: rgba(242, 237, 228, 0.82);
}

.topbar__nav {
  gap: 48px;
}

.topbar__nav a {
  font-size: 0.94rem;
  text-transform: none;
}

.services-section .section-header {
  max-width: 1180px;
  margin-bottom: 30px;
}

.services-section .section-header h2 {
  max-width: none;
  font-size: clamp(2.08rem, 2.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  gap: 18px;
  padding: 28px;
}

.service-card__meta {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: end;
  gap: 16px;
  min-height: 128px;
  padding: 16px 20px 16px 16px;
  border-radius: 24px;
  width: calc(100% + 12px);
  margin: 0 -6px 2px;
}

.service-card__meta--advisory {
  background:
    linear-gradient(90deg, rgba(168, 171, 120, 0.28), rgba(168, 171, 120, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.4));
}

.service-card__meta--operations {
  background:
    linear-gradient(90deg, rgba(41, 66, 41, 0.16), rgba(41, 66, 41, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.42));
}

.service-card__meta--review {
  background:
    linear-gradient(90deg, rgba(172, 133, 76, 0.24), rgba(172, 133, 76, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.42));
}

.service-card__icon {
  width: 92px;
  height: 92px;
  margin-bottom: 0;
  border-radius: 24px;
  flex: 0 0 92px;
}

.service-card__icon svg {
  width: 44px;
  height: 44px;
}

.service-card__icon--advisory svg {
  width: 50px;
  height: 50px;
}

.service-card__kicker {
  margin: 0;
  align-self: end;
  padding-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.3;
}

.service-card h3 {
  margin-top: 0;
  min-height: 0;
  font-size: clamp(2.28rem, 2.65vw, 3rem);
  line-height: 1.02;
  white-space: nowrap;
}

.service-card--operations h3 {
  font-size: clamp(2.02rem, 2.08vw, 2.36rem);
}

.service-card > p:not(.service-card__kicker) {
  min-height: 5.8em;
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-card__outcomes {
  display: none;
}

.section-header--approach {
  max-width: 1180px;
  margin-bottom: 34px;
}

.approach-section .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(172, 133, 76, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(172, 133, 76, 0.92);
  letter-spacing: 0.18em;
}

.approach-section .section-header h2 {
  max-width: none;
  font-size: clamp(2.02rem, 2.45vw, 2.74rem);
  line-height: 1.02;
  white-space: nowrap;
}

.section-header__body--approach {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-top: 22px;
}

.section-header__body--approach p {
  margin: 0;
  color: rgba(20, 32, 22, 0.78);
  font-size: 1rem;
  line-height: 1.66;
}

.approach-grid {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.process-card,
.values-card {
  border-radius: 26px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.1), transparent 36%);
  box-shadow: 0 12px 28px rgba(27, 31, 24, 0.06);
}

.process-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  height: 100%;
}

.process-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  flex: 1 1 0;
  align-content: start;
}

.process-item:first-child {
  padding-top: 0;
}

.process-item + .process-item {
  border-top: 1px solid rgba(31, 51, 34, 0.1);
}

.process-item span {
  color: rgba(172, 133, 76, 0.96);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-item h3 {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.process-item p {
  margin: 0;
}

.values-card {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.values-card__row {
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  border-top: 1px solid rgba(31, 51, 34, 0.1);
}

.values-card__row:first-child {
  border-top: 0;
}

.values-card__index,
.values-card__row h3,
.values-card__row p {
  padding: 18px 20px;
}

.values-card__index {
  color: rgba(31, 51, 34, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.values-card__row h3 {
  margin: 0;
  border-left: 1px solid rgba(31, 51, 34, 0.1);
  font-size: 1.02rem;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.values-card__row p {
  margin: 0;
  border-left: 1px solid rgba(31, 51, 34, 0.1);
  color: rgba(20, 32, 22, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.approach-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 26px 24px;
  border-radius: 28px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 232, 0.96)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.08), transparent 36%);
  box-shadow: 0 12px 28px rgba(27, 31, 24, 0.05);
}

.approach-stat {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px 18px;
  text-align: center;
}

.approach-stat + .approach-stat {
  border-left: 1px solid rgba(31, 51, 34, 0.1);
}

.approach-stat strong {
  color: #29412d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.05rem, 4.1vw, 4.2rem);
  font-weight: 600;
  line-height: 0.95;
}

.approach-stat span {
  color: rgba(20, 32, 22, 0.62);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-section {
  background:
    linear-gradient(180deg, rgba(246, 240, 231, 0.9), rgba(243, 237, 228, 0.96)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.08), transparent 34%);
}

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

.team-section .section-header {
  max-width: 920px;
  margin-bottom: 34px;
}

.team-section .eyebrow {
  color: rgba(172, 133, 76, 0.9) !important;
}

.team-section .section-header h2 {
  color: #1a2418 !important;
  max-width: 14ch;
}

.team-card {
  display: grid;
  gap: 22px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.08), transparent 30%);
  box-shadow: 0 14px 30px rgba(27, 31, 24, 0.06);
}

.team-card__media {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-card__body {
  display: grid;
  gap: 10px;
}

.team-card__role {
  margin: 0;
  color: rgba(122, 64, 33, 0.96);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-card__body h3 {
  margin: 0;
  color: #1a2418;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  line-height: 1;
}

.team-card__body p:last-child {
  margin: 0;
  color: rgba(20, 32, 22, 0.76);
  font-size: 0.98rem;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px 18px;
  }

  .topbar__mail {
    display: inline-flex;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .topbar__nav {
    grid-column: 3;
    justify-self: end;
    gap: 24px;
  }

  .topbar__actions {
    grid-column: 2;
    justify-self: center;
    width: auto;
  }

  .values-card__row {
    grid-template-columns: 52px minmax(132px, 0.68fr) minmax(0, 1.32fr);
  }

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

@media (max-width: 980px) {
  .services-section .section-header h2,
  .approach-section .section-header h2,
  .service-card h3 {
    white-space: normal;
  }

  .services-section .section-header h2 {
    max-width: 14ch;
  }

  .approach-section .section-header h2 {
    max-width: 15ch;
  }

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

@media (max-width: 780px) {
  .topbar__inner {
    grid-template-columns: auto 1fr;
    gap: 10px 16px;
  }

  .brand__symbol {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand strong {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    justify-self: start;
    gap: 20px;
  }

  .topbar__nav a {
    font-size: 0.85rem;
  }

  .services-section .section-header h2 {
    max-width: 12ch;
    font-size: clamp(1.96rem, 6.6vw, 2.5rem);
  }

  .service-card {
    padding: 20px;
  }

  .service-card__meta {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 98px;
    gap: 12px;
    padding: 12px 14px 12px 12px;
    border-radius: 20px;
    width: calc(100% + 8px);
    margin: 0 -4px 2px;
  }

  .service-card__icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    border-radius: 18px;
  }

  .service-card__icon svg {
    width: 34px;
    height: 34px;
  }

  .service-card__icon--advisory svg {
    width: 38px;
    height: 38px;
  }

  .service-card__kicker {
    padding-bottom: 4px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .service-card h3 {
    font-size: clamp(2rem, 7.6vw, 2.46rem);
    white-space: normal;
  }

  .service-card--operations h3 {
    font-size: clamp(1.86rem, 6.9vw, 2.12rem);
  }

  .section-header--approach {
    margin-bottom: 26px;
  }

  .section-header__body--approach {
    gap: 12px;
  }

  .process-card {
    padding: 22px 18px;
  }

  .process-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .process-item h3 {
    font-size: 1.62rem;
  }

  .values-card {
    padding: 8px 18px;
  }

  .values-card__row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 14px 0;
  }

  .values-card__row + .values-card__row {
    border-top: 1px solid rgba(31, 51, 34, 0.1);
  }

  .values-card__index,
  .values-card__row h3,
  .values-card__row p {
    padding: 0;
    border-left: 0;
  }

  .values-card__row h3 {
    align-self: center;
  }

  .values-card__row p {
    grid-column: 1 / -1;
    font-size: 0.9rem;
  }

  .approach-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .approach-stat + .approach-stat {
    border-left: 0;
    border-top: 1px solid rgba(31, 51, 34, 0.1);
    padding-top: 18px;
  }

  .team-card {
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .team-card__media {
    border-radius: 18px;
  }

  .team-card__body h3 {
    font-size: clamp(1.78rem, 8vw, 2.2rem);
  }

  .team-card__body p:last-child {
    font-size: 0.94rem;
    line-height: 1.62;
  }
}

/* Feedback pass: align with latest slide notes */

.topbar::before {
  background: rgba(8, 11, 9, 0.98) !important;
}

.topbar__mail {
  background: rgba(255, 255, 255, 0.02);
}

.hero-copy .eyebrow {
  letter-spacing: 0.18em;
}

.hero-copy__headline {
  max-width: 17ch;
}

.hero-copy__headline span {
  display: block;
}

.hero-copy__headline span + span {
  margin-top: 0.04em;
}

.service-card__meta {
  align-items: center;
}

.service-card__kicker {
  align-self: center;
  padding-bottom: 0;
}

.service-card h3,
.service-card--operations h3 {
  font-size: clamp(2.02rem, 2.18vw, 2.28rem);
}

.service-card__outcomes {
  display: grid !important;
  gap: 10px;
  margin: 6px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(31, 51, 34, 0.1);
}

.service-card__outcomes li {
  position: relative;
  padding-left: 18px;
  color: rgba(20, 32, 22, 0.82);
  font-size: 0.95rem;
  line-height: 1.48;
}

.service-card__outcomes li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(122, 64, 33, 0.88);
}

.approach-stats {
  margin-top: 0;
  margin-bottom: 26px;
}

.approach-grid {
  margin-top: 0;
}

.values-card {
  padding: 10px 28px;
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.08), transparent 34%);
}

.values-card__row {
  grid-template-columns: 52px minmax(170px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(31, 51, 34, 0.08);
}

.values-card__index,
.values-card__row h3,
.values-card__row p {
  padding: 0;
  border-left: 0;
}

.values-card__index {
  color: #7a4021;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.values-card__row h3 {
  font-size: 1.08rem;
}

.values-card__row p {
  font-size: 0.97rem;
  line-height: 1.66;
}

.team-section .section-header h2 {
  color: #1a2418 !important;
}

.team-card__media img {
  object-position: center top;
}

.team-card__body {
  align-content: start;
}

.team-card__body p:last-child + p:last-child {
  margin-top: 0;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-section .contact-panel.site-shell {
  width: var(--content-width);
  max-width: none;
}

.contact-copy {
  padding: 34px 30px;
  border-radius: 30px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.08), transparent 34%);
  box-shadow: 0 14px 30px rgba(27, 31, 24, 0.06);
}

.contact-copy .eyebrow {
  color: rgba(122, 64, 33, 0.88);
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-form--minimal {
  padding: 34px 36px;
  border-radius: 30px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.08), transparent 32%);
  box-shadow: 0 14px 30px rgba(27, 31, 24, 0.06);
}

.contact-form__heading {
  margin: 0 0 28px;
  color: #1a2418;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.contact-form--minimal .contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
}

.contact-form--minimal .contact-form__field {
  gap: 10px;
}

.contact-form--minimal .contact-form__field span {
  color: rgba(20, 32, 22, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form--minimal input,
.contact-form--minimal textarea {
  min-height: 0;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(20, 32, 22, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form--minimal textarea {
  min-height: 96px;
  resize: vertical;
}

.contact-form--minimal .button--primary {
  min-width: 130px;
  margin-top: 26px;
  padding-inline: 28px;
}

.footer {
  padding-top: 42px;
  padding-bottom: 50px;
  background: #f6f0e8;
  border-top: 1px solid rgba(31, 51, 34, 0.08);
}

.footer__inner--columns {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: start;
}

.footer__brand-block {
  display: grid;
  gap: 16px;
}

.footer__copyright {
  margin: 0;
  color: rgba(20, 32, 22, 0.46);
  font-size: 0.45rem;
  line-height: 1.5;
}

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

.footer__column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer__column h3 {
  margin: 0 0 4px;
  color: #1f3322;
  font-size: 1rem;
  font-weight: 700;
}

.footer__column a,
.footer__column span {
  color: rgba(20, 32, 22, 0.72);
  font-size: 0.96rem;
  line-height: 1.5;
}

.footer__placeholder {
  color: rgba(20, 32, 22, 0.46);
}

@media (max-width: 980px) {
  .contact-section .contact-panel.site-shell {
    width: var(--content-width);
  }

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

  .footer__inner--columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 780px) {
  .hero-copy__headline {
    max-width: 12ch;
  }

  .service-card__outcomes {
    gap: 8px;
    padding-top: 14px;
  }

  .values-card {
    padding: 6px 18px;
  }

  .values-card__row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 12px;
  }

  .values-card__row p {
    grid-column: 1 / -1;
    font-size: 0.92rem;
  }

  .contact-copy,
  .contact-form--minimal {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .contact-form__heading {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
  }

  .contact-form--minimal .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer__nav-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Alignment pass 2: match feedback deck more closely */

.service-card h3,
.service-card--operations h3 {
  max-width: 10.2ch;
  font-size: clamp(1.84rem, 2vw, 2.08rem);
  line-height: 1.04;
  white-space: normal;
}

.service-card > p:not(.service-card__kicker) {
  min-height: 4.9em;
}

.approach-stats {
  margin-bottom: 34px;
}

.values-card {
  padding: 14px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.05), transparent 40%);
}

.values-card__row {
  grid-template-columns: 54px minmax(160px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(31, 51, 34, 0.06);
}

.values-card__index {
  color: #7a4021;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.values-card__row h3 {
  font-size: 1.06rem;
}

.values-card__row p {
  font-size: 0.95rem;
  line-height: 1.62;
}

.team-section .section-header {
  margin-bottom: 28px;
}

.team-portraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.team-portrait {
  margin: 0;
  display: grid;
  gap: 14px;
}

.team-portrait img {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.06), transparent 32%);
  box-shadow: 0 14px 30px rgba(27, 31, 24, 0.06);
}

.team-portrait--james img {
  transform: none;
}

.team-portrait figcaption {
  color: #1a2418;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.team-table {
  overflow: hidden;
  border: 1px solid rgba(31, 51, 34, 0.16);
  background: rgba(255, 255, 255, 0.4);
}

.team-table__row {
  display: grid;
  grid-template-columns: 170px repeat(2, minmax(0, 1fr));
}

.team-table__row + .team-table__row {
  border-top: 1px solid rgba(31, 51, 34, 0.14);
}

.team-table__label,
.team-table__cell {
  min-width: 0;
  padding: 22px 20px;
}

.team-table__cell + .team-table__cell,
.team-table__label + .team-table__cell {
  border-left: 1px solid rgba(31, 51, 34, 0.14);
}

.team-table__label {
  color: #1f3322;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-table__cell {
  color: rgba(20, 32, 22, 0.82);
  font-size: 0.98rem;
  line-height: 1.68;
}

.team-table__row:not(.team-table__row--bio) .team-table__cell {
  color: #1a2418;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.team-table__row--bio .team-table__cell {
  padding-top: 26px;
  padding-bottom: 26px;
}

.team-table__cell p {
  margin: 0;
}

.team-table__cell p + p {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .team-table__row {
    grid-template-columns: 140px repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .team-portraits {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .team-table__row {
    grid-template-columns: 120px 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .team-portraits {
    grid-template-columns: 1fr;
  }

  .team-portrait figcaption {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .team-table {
    border: 1px solid rgba(31, 51, 34, 0.1);
  }

  .team-table__row {
    grid-template-columns: 1fr;
  }

  .team-table__label,
  .team-table__cell {
    padding: 16px 16px 18px;
  }

  .team-table__cell + .team-table__cell,
  .team-table__label + .team-table__cell {
    border-left: 0;
    border-top: 1px solid rgba(31, 51, 34, 0.12);
  }

  .team-table__row--bio .team-table__cell {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* Customer note lock: keep fidelity to client feedback over prior styling passes */

@media (max-width: 780px) {
  .hero-copy {
    padding: 24px 18px;
  }

  .hero-copy h1 {
    font-size: clamp(1.3rem, 5.8vw, 1.85rem);
    line-height: 0.98;
  }

  .hero-copy__headline {
    max-width: none;
  }

  .hero-copy__headline span {
    white-space: nowrap;
  }

  .hero-copy__lead {
    max-width: 32ch;
  }
}

.values-card {
  padding: 8px 22px;
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 241, 232, 0.92)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.045), transparent 40%);
}

.values-card__row {
  grid-template-columns: 50px minmax(150px, 0.58fr) minmax(0, 1.42fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(31, 51, 34, 0.045);
}

.values-card__row:first-child {
  border-top: 0;
}

.values-card__index {
  color: #7a4021;
  font-size: 0.98rem;
  letter-spacing: 0.13em;
}

.values-card__row h3 {
  font-size: 1.02rem;
}

.values-card__row p {
  color: rgba(20, 32, 22, 0.72);
  font-size: 0.96rem;
  line-height: 1.72;
}

@media (max-width: 780px) {
  .values-card {
    padding: 4px 16px;
  }

  .values-card__row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 18px 0;
  }

  .values-card__row p {
    grid-column: 1 / -1;
    font-size: 0.92rem;
    line-height: 1.64;
  }
}

/* Client feedback pass: restore softer approach panel and profile-style team layout */

.approach-stats {
  margin-bottom: 26px;
}

.values-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(31, 51, 34, 0.08);
  border-radius: 32px;
  box-shadow: 0 16px 36px rgba(27, 31, 24, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.05), transparent 42%);
}

.values-card__row {
  grid-template-columns: 68px minmax(170px, 0.56fr) minmax(0, 1.44fr);
  gap: 28px;
  padding: 30px 34px;
  border-top: 1px solid rgba(31, 51, 34, 0.075);
}

.values-card__row:first-child {
  border-top: 0;
}

.values-card__index,
.values-card__row h3,
.values-card__row p {
  padding: 0;
  border-left: 0;
}

.values-card__index {
  color: #7a4021;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.values-card__row h3 {
  color: #1a2418;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
}

.values-card__row p {
  color: rgba(20, 32, 22, 0.8);
  font-size: 0.99rem;
  line-height: 1.74;
}

.team-section .section-header {
  margin-bottom: 32px;
}

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

.founder-card {
  display: grid;
  gap: 22px;
  align-content: start;
}

.founder-card__header {
  display: grid;
  gap: 8px;
}

.founder-card__header h3 {
  margin: 0;
  color: #1a2418;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.founder-card__header p {
  margin: 0;
  color: #7a4021;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-card__body {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.founder-card__portrait {
  margin: 0;
  width: min(100%, 300px);
  justify-self: start;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.06), transparent 32%);
  box-shadow: 0 14px 30px rgba(27, 31, 24, 0.06);
}

.founder-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-card__portrait--james img {
  object-position: center 8%;
}

.founder-card__portrait--hien img {
  object-position: center 12%;
}

.founder-card__bio {
  display: grid;
  gap: 22px;
  padding-top: 2px;
}

.founder-card__bio p {
  margin: 0;
  color: rgba(20, 32, 22, 0.6);
  font-size: 0.98rem;
  line-height: 1.72;
}

/* Services: restore classic layout with bullet points inside each card */

.service-card {
  min-height: 0;
}

.service-card > p:not(.service-card__kicker) {
  min-height: 5.2em;
}

.service-card__outcomes {
  display: grid !important;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
  position: relative;
  width: 100%;
  align-self: stretch;
  box-sizing: border-box;
}

.service-card__outcomes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(31, 51, 34, 0.1);
}

.service-card__outcomes li {
  position: relative;
  padding-left: 18px;
  color: rgba(20, 32, 22, 0.82);
  font-size: 0.95rem;
  line-height: 1.48;
}

.service-card__outcomes li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(122, 64, 33, 0.88);
}

@media (max-width: 780px) {
  .service-card__outcomes {
    gap: 8px;
    padding-top: 14px;
  }

  .service-card__outcomes li {
    font-size: 0.92rem;
  }
}

/* Client note: team section should be horizontal rows, one founder per row */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-header--team {
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

.section-header--team h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  line-height: 0.98;
}

.founders-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.founder-card {
  padding: 20px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.96)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.04), transparent 42%);
  box-shadow: 0 10px 22px rgba(27, 31, 24, 0.035);
}

.founder-card__header {
  gap: 4px;
  margin-bottom: 10px;
}

.founder-card__header h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  line-height: 1;
}

.founder-card__header p {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.founder-card__body {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.founder-card__portrait {
  width: 180px;
}

.founder-card__portrait img {
  border-radius: 22px;
}

.founder-card__bio {
  gap: 16px;
  padding-top: 2px;
}

.founder-card__bio p {
  max-width: 60ch;
  font-size: 0.96rem;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .founder-card {
    padding: 20px 22px 22px;
  }

  .founder-card__body {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 20px;
  }

  .founder-card__portrait {
    width: 170px;
  }
}

@media (max-width: 1180px) {
  .founder-card__body {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
  }

  .values-card__row {
    grid-template-columns: 56px minmax(150px, 0.58fr) minmax(0, 1.42fr);
    gap: 22px;
    padding: 26px 28px;
  }
}

@media (max-width: 980px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 780px) {
  .founder-card {
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .founder-card__body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .founder-card__portrait {
    width: min(100%, 188px);
  }

  .founder-card__bio p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.66;
  }
}

@media (max-width: 780px) {
  .founder-card {
    gap: 14px;
  }

  .founder-card__header h3 {
    font-size: clamp(1.9rem, 10vw, 2.25rem);
  }

  .founder-card__body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .founder-card__portrait {
    width: min(100%, 188px);
  }

  .founder-card__portrait img {
    height: 100%;
  }

  .founder-card__bio {
    gap: 16px;
  }

  .founder-card__bio p {
    font-size: 0.94rem;
    line-height: 1.64;
  }

  .values-card {
    padding: 0;
  }

  .values-card__row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 18px 18px;
  }

  .values-card__row p {
    grid-column: 1 / -1;
    font-size: 0.92rem;
    line-height: 1.64;
  }
}

/* Final client-lock pass: 2026-04-14 */

.hero-copy__lead--stack {
  display: grid;
  gap: 14px;
  max-width: 34ch;
}

.hero-copy__lead--stack p {
  margin: 0;
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

.hero-copy {
  width: min(100%, 860px);
  max-width: 860px;
  margin-inline: auto;
}

.hero-copy h1 {
  font-size: clamp(2.95rem, 4.55vw, 3.95rem);
  line-height: 1.02;
}

.hero-copy__headline {
  display: grid;
  justify-items: center;
  max-width: min(15.2ch, 100%);
  margin-inline: auto;
}

.hero-copy__headline span {
  white-space: nowrap;
}

.hero-copy__headline span:nth-child(1) {
  transform: translateX(-5.54rem);
}

.hero-copy__headline span:nth-child(2) {
  transform: translateX(-5.8rem);
}

.hero-copy__headline span:nth-child(3) {
  justify-self: center;
  transform: translateX(-5.09rem);
}

.service-card__meta {
  align-items: center;
}

.service-card h3 {
  max-width: 7ch;
}

.service-card--operations h3,
.service-card--review h3 {
  max-width: 5ch;
}

.service-card__outcomes {
  gap: 12px;
  min-height: 12.1rem;
}

.service-card__outcomes li {
  line-height: 1.52;
}

.section-header--team {
  display: flex;
  justify-content: center;
  max-width: none;
  margin-bottom: 24px;
}

.section-header--team .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(122, 64, 33, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(25, 31, 21, 0.06);
}

.founders-grid {
  gap: 28px;
}

.founder-card {
  gap: 18px;
  padding: 26px 28px 28px;
}

.founder-card__header {
  gap: 6px;
}

.founder-card__body {
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 64px;
}

.founder-card__portrait {
  width: 278px;
}

.founder-card__portrait--james img {
  object-position: center 7%;
}

.founder-card__portrait--hien img {
  object-position: center 13%;
}

.founder-card__bio {
  gap: 18px;
}

.founder-card__bio p {
  max-width: 70ch;
}

.contact-panel {
  gap: clamp(42px, 5vw, 78px);
}

.contact-copy {
  padding: 42px 36px;
}

.contact-form--minimal {
  padding: 42px 40px;
}

.footer__column a,
.footer__column span,
.footer__column h3 {
  text-transform: none;
}

.properties-page-body {
  background: linear-gradient(180deg, #efe8dc 0%, #f6f0e8 40%, #f6f0e8 100%);
}

.properties-main {
  padding-top: 34px;
}

.properties-section {
  min-height: calc(100svh - 88px);
  padding-top: 72px;
}

.properties-section__header {
  margin-bottom: 38px;
}

.properties-section__header h1,
.properties-section__header .section-header__lead {
  color: #1a2418;
}

.properties-section__header h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.properties-list {
  display: grid;
  gap: 28px;
}

.property-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(31, 51, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.98)),
    radial-gradient(circle at top left, rgba(168, 171, 120, 0.05), transparent 40%);
  box-shadow: 0 18px 42px rgba(27, 31, 24, 0.05);
}

.property-card__content {
  display: grid;
  gap: 18px;
  padding: 34px 34px 28px;
}

.property-card__eyebrow {
  margin: 0;
  color: #7a4021;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.property-card__content h2 {
  margin: 0;
  color: #1a2418;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 0.96;
}

.property-card__content > p {
  margin: 0;
  max-width: 60ch;
  color: rgba(20, 32, 22, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.property-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-card__facts li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 51, 34, 0.1);
  color: rgba(20, 32, 22, 0.72);
  font-size: 0.9rem;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.48);
}

.property-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-top: 1px solid rgba(31, 51, 34, 0.08);
}

.property-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 25, 18, 0.08), rgba(16, 25, 18, 0.22)),
    linear-gradient(90deg, rgba(16, 25, 18, 0.08), transparent 32%, rgba(16, 25, 18, 0.12));
  pointer-events: none;
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-card:nth-child(1) .property-card__media img {
  object-position: center 62%;
}

.property-card:nth-child(2) .property-card__media img {
  object-position: center 36%;
}

.property-card:nth-child(3) .property-card__media img {
  object-position: center 42%;
}

@media (max-width: 1180px) {
  .founder-card__body {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 38px;
  }

  .founder-card__portrait {
    width: 210px;
  }
}

@media (max-width: 980px) {
  .founder-card {
    padding: 24px;
  }

  .founder-card__body {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
  }

  .founder-card__portrait {
    width: 190px;
  }

  .contact-panel {
    gap: 30px;
  }
}

@media (max-width: 780px) {
  .hero-copy__lead--stack {
    gap: 10px;
    max-width: 30ch;
  }

  .hero-copy h1 {
    font-size: clamp(1.3rem, 5.8vw, 1.85rem);
  }

  .hero-copy__headline span {
    white-space: normal;
  }

  .hero-copy__headline span:nth-child(1),
  .hero-copy__headline span:nth-child(2),
  .hero-copy__headline span:nth-child(3) {
    transform: none;
  }

  .hero-copy__headline span:nth-child(3) {
    justify-self: center;
  }

  .service-card h3,
  .service-card--operations h3,
  .service-card--review h3 {
    max-width: none;
  }

  .service-card__outcomes {
    min-height: 0;
  }

  .founder-card {
    padding: 20px 20px 22px;
  }

  .founder-card__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-card__portrait {
    width: min(100%, 244px);
  }

  .contact-copy,
  .contact-form--minimal {
    padding: 26px 22px;
  }

  .properties-main {
    padding-top: 24px;
  }

  .properties-section__header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .properties-section__header h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.1rem);
  }

  .property-card__content {
    padding: 24px 22px 20px;
  }

  .property-card__media {
    aspect-ratio: 1.15 / 1;
  }
}

/* VI-EN launch pass: 2026-04-14 */

.topbar__inner {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
}

.topbar__actions {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  justify-self: center;
  align-self: center;
}

.topbar__mail {
  justify-self: auto;
  margin: 0;
}

.topbar__nav {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

.topbar__nav .language-switch {
  margin-left: 6px;
  flex-shrink: 0;
}

.topbar__actions {
  width: auto;
}

html[lang="vi"] body,
html[lang="vi"] input,
html[lang="vi"] textarea,
html[lang="vi"] button,
html[lang="vi"] select {
  font-family: var(--vi-sans-active);
}

html[lang="vi"] .hero-copy h1,
html[lang="vi"] .section-header h2,
html[lang="vi"] .contact-copy h2,
html[lang="vi"] .contact-form__heading,
html[lang="vi"] .service-card h3,
html[lang="vi"] .founder-card__header h3,
html[lang="vi"] .properties-section__header h1,
html[lang="vi"] .property-card__content h2,
html[lang="vi"] .approach-stat strong {
  font-family: var(--vi-serif-active);
  letter-spacing: -0.04em;
  font-weight: 300;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 0 0 0.14px currentColor;
}

html[lang="vi"] .hero-copy h1 {
  font-family: var(--vi-serif-alt);
  font-weight: 400;
  text-shadow: none;
  -webkit-text-stroke: 0;
  -webkit-font-smoothing: antialiased;
  filter: none;
}

html[lang="vi"] .services-section .section-header h2,
html[lang="vi"] .service-card h3 {
  font-family: var(--vi-serif-alt);
  font-weight: 400;
  text-shadow: none;
  -webkit-text-stroke: 0;
  -webkit-font-smoothing: antialiased;
  filter: none;
}

html[lang="vi"] .approach-section .section-header h2 {
  font-family: var(--vi-serif-alt);
  font-weight: 400;
  text-shadow: none;
  -webkit-text-stroke: 0;
  -webkit-font-smoothing: antialiased;
  filter: none;
}

html[lang="vi"] .contact-copy h2,
html[lang="vi"] .contact-form__heading {
  font-family: var(--vi-serif-alt);
  font-weight: 400;
  text-shadow: none;
  -webkit-text-stroke: 0;
  -webkit-font-smoothing: antialiased;
  filter: none;
}

html[lang="vi"] .hero-copy__headline {
  transform: translateX(2rem);
}

html[lang="vi"] .services-section .section-header h2,
html[lang="vi"] .approach-section .section-header h2,
html[lang="vi"] .contact-copy h2,
html[lang="vi"] .contact-form__heading,
html[lang="vi"] .properties-section__header h1,
html[lang="vi"] .property-card__content h2,
html[lang="vi"] .approach-stat strong {
  font-weight: 300;
}

html[lang="vi"] .services-section .section-header h2,
html[lang="vi"] .approach-section .section-header h2 {
  white-space: normal;
  text-wrap: balance;
}

html[lang="vi"] .service-card__kicker {
  max-width: 12ch;
  white-space: normal;
  text-wrap: balance;
  line-height: 1.24;
}

html[lang="vi"] .service-card h3 {
  font-weight: 300;
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}

html[lang="vi"] .services-section .section-header h2,
html[lang="vi"] .service-card h3 {
  font-family: var(--vi-serif-alt);
  font-weight: 400;
}

html[lang="vi"] .approach-section .section-header h2 {
  font-family: var(--vi-serif-alt);
  font-weight: 400;
}

html[lang="vi"] .contact-copy h2,
html[lang="vi"] .contact-form__heading {
  font-family: var(--vi-serif-alt);
  font-weight: 400;
}

html[lang="vi"] .values-card__row h3 {
  font-family: var(--vi-sans-active);
}

html[lang="vi"] .approach-stat strong {
  font-weight: 300;
}

html[lang="vi"] .approach-stat span {
  font-family: var(--vi-sans-active);
}

html[lang="vi"] .founder-card__header h3 {
  font-weight: 300;
}

@media (max-width: 780px) {
  .topbar__inner {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
  }

  .topbar__actions {
    display: none;
  }

  .topbar__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 18px;
    padding-top: 2px;
  }

  .topbar__nav .language-switch {
    margin-left: 8px;
  }

  html[lang="vi"] .hero-copy__headline {
    transform: translateX(1rem);
  }

}
