@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #0a0e15;
  --ink-soft: #111824;
  --navy: #111a29;
  --navy-light: #182335;
  --gold: #bd9550;
  --gold-bright: #d5b36f;
  --gold-pale: #ead8ad;
  --ivory: #f1ede4;
  --paper: #faf8f3;
  --white: #ffffff;
  --text: #33363a;
  --muted: #6d706f;
  --line: rgba(16, 25, 40, 0.16);
  --line-dark: rgba(234, 216, 173, 0.2);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 96px));
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--gold-pale);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-light,
.section-ivory,
.section-dark,
.section-navy {
  position: relative;
  padding-block: 132px;
}

.section-light {
  background: var(--paper);
}

.section-ivory {
  background: var(--ivory);
}

.section-dark {
  color: var(--ivory);
  background: var(--ink);
}

.section-navy {
  color: var(--ivory);
  background: var(--navy);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: #7a6034;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-gold {
  color: var(--gold-bright);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.section-dark h2,
.section-navy h2 {
  color: var(--ivory);
}

h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

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

.button-gold {
  color: #17130c;
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

.button-wide {
  width: 100%;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 200ms ease, gap 200ms ease;
}

.text-link:hover {
  gap: 20px;
  color: #805e25;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  background: rgba(8, 13, 21, 0.82);
  backdrop-filter: blur(12px);
  transition: height 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 9, 14, 0.22), transparent);
  content: "";
  pointer-events: none;
}

.site-header.is-scrolled,
.inner-page .site-header {
  height: 76px;
  background: rgba(8, 13, 21, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before,
.inner-page .site-header::before {
  opacity: 0;
}

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

.brand img {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(213, 179, 111, 0.55);
  border-radius: 50%;
  object-fit: cover;
  transition: width 300ms ease, height 300ms ease;
}

.is-scrolled .brand img,
.inner-page .brand img {
  width: 52px;
  height: 52px;
}

.brand-copy {
  display: grid;
  color: var(--ivory);
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-bright);
  font-size: 0.53rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 40px);
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 10px 18px !important;
  border: 1px solid rgba(213, 179, 111, 0.65);
  color: var(--gold-pale);
  transition: color 220ms ease, background 220ms ease;
}

.nav-contact:hover {
  color: var(--ink);
  background: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  color: var(--ivory);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.8s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.98) 0%, rgba(6, 11, 19, 0.88) 32%, rgba(8, 13, 21, 0.38) 68%, rgba(8, 13, 21, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 8, 13, 0.82) 0%, transparent 35%, rgba(5, 8, 13, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 140px;
}

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

.hero-eyebrow::before {
  display: none;
}

.hero-eyebrow span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1 {
  max-width: 830px;
  margin: 0 0 32px;
  color: var(--ivory);
  font-size: clamp(4.2rem, 7.5vw, 7.2rem);
  font-weight: 400;
  line-height: 0.84;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 42px;
  color: rgba(241, 237, 228, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  color: rgba(241, 237, 228, 0.54);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-foot span + span::before {
  display: inline-block;
  width: 16px;
  height: 1px;
  margin: 0 20px 3px 0;
  background: var(--gold);
  content: "";
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(241, 237, 228, 0.55);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(213, 179, 111, 0.3);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--gold-bright);
  content: "";
  animation: scroll-line 2s infinite;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(70px, 9vw, 145px);
  align-items: start;
}

.intro-copy {
  padding-top: 52px;
}

.intro-copy p {
  color: var(--muted);
}

.intro-copy .lead {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.35;
}

.perspective-strip {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: 88px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.perspective-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid var(--gold);
  color: #81632e;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.perspective-strip p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
}

.perspective-strip p strong {
  color: var(--ink-soft);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.purpose-grid article {
  padding: 50px 54px 50px 0;
}

.purpose-grid article + article {
  padding-right: 0;
  padding-left: 54px;
  border-left: 1px solid var(--line);
}

.purpose-grid .eyebrow {
  margin-bottom: 22px;
}

.purpose-grid h3 {
  max-width: 470px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.purpose-grid article > p:last-child {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.practice::before,
.contact::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.practice-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.practice-head > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: rgba(241, 237, 228, 0.58);
}

.practice-list {
  position: relative;
  border-bottom: 1px solid var(--line-dark);
}

.practice-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 64px;
  gap: 34px;
  align-items: start;
  padding: 46px 30px 44px 0;
  border-top: 1px solid var(--line-dark);
  transition: padding 300ms var(--ease), background 300ms ease;
}

.practice-card:hover {
  padding-left: 30px;
  background: rgba(255, 255, 255, 0.025);
}

.card-number {
  padding-top: 12px;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.practice-card h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1;
}

.practice-card p {
  max-width: 700px;
  margin-bottom: 20px;
  color: rgba(241, 237, 228, 0.58);
}

.practice-card > svg {
  width: 54px;
  margin-top: 6px;
  fill: none;
  stroke: rgba(213, 179, 111, 0.75);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.practice-card details {
  color: rgba(241, 237, 228, 0.72);
}

.practice-card summary {
  width: max-content;
  cursor: pointer;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.practice-card details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 28px;
  max-width: 760px;
  margin: 20px 0 0;
  padding: 20px 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(241, 237, 228, 0.56);
  font-size: 0.86rem;
}

.method-head {
  max-width: 850px;
  margin-bottom: 72px;
}

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

.principles article {
  position: relative;
  min-height: 365px;
  padding: 44px 42px 42px 0;
}

.principles article + article {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.principles article > span {
  display: block;
  margin-bottom: 88px;
  color: #95743c;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.principles h3 {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 2.8rem;
  line-height: 1;
}

.principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 150px);
}

.process-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 32px;
  font-size: clamp(2.6rem, 4.1vw, 4.2rem);
}

.process-intro > p:last-child {
  max-width: 480px;
  color: var(--muted);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  min-height: 112px;
  border-top: 1px solid var(--line);
}

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

.process-steps span {
  color: #8c6b32;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.process-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.2;
}

.director {
  overflow: hidden;
}

.director::after {
  position: absolute;
  right: -8vw;
  bottom: -30vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(213, 179, 111, 0.1);
  border-radius: 50%;
  content: "";
}

.director-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.director-visual {
  display: grid;
  justify-items: center;
}

.director-seal {
  position: relative;
  width: min(390px, 100%);
  padding: 16px;
  border: 1px solid rgba(213, 179, 111, 0.3);
  border-radius: 50%;
}

.director-seal::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(213, 179, 111, 0.13);
  border-radius: inherit;
  content: "";
}

.director-seal img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.director-visual > p {
  margin: 28px 0 0;
  color: rgba(241, 237, 228, 0.46);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.director-copy h2 {
  margin-bottom: 18px;
}

.director-copy .role {
  margin-bottom: 42px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.director-copy blockquote {
  margin: 0 0 32px;
  padding: 0 0 0 28px;
  border-left: 1px solid var(--gold);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-style: italic;
  line-height: 1.38;
}

.director-summary {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(241, 237, 228, 0.58);
}

.office-location {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(213, 179, 111, 0.2);
}

.office-location > svg {
  width: 30px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.office-location > div {
  display: grid;
  line-height: 1.35;
}

.office-location > div span {
  margin-bottom: 5px;
  color: rgba(241, 237, 228, 0.38);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.office-location strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.office-location small {
  color: rgba(241, 237, 228, 0.5);
  font-size: 0.72rem;
}

.office-location > a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid rgba(213, 179, 111, 0.7);
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 80px;
}

.commitment-grid .eyebrow {
  align-self: start;
}

.commitment-grid h2 {
  max-width: 820px;
  margin-bottom: 36px;
}

.commitment-grid div p {
  max-width: 780px;
  color: var(--muted);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 42px;
  color: rgba(241, 237, 228, 0.56);
}

.phone-link {
  display: block;
  width: max-content;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.contact-location {
  display: grid;
  gap: 7px;
  justify-items: start;
}

.contact-location > span {
  color: rgba(241, 237, 228, 0.44);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-location a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form {
  padding: 48px;
  border: 1px solid rgba(213, 179, 111, 0.22);
  background: rgba(255, 255, 255, 0.025);
}

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

.contact-form label:not(.consent) {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.contact-form label > span:first-child {
  color: rgba(241, 237, 228, 0.66);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(241, 237, 228, 0.2);
  border-radius: 0;
  outline: 0;
  color: var(--ivory);
  background: transparent;
  transition: border-color 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 120px;
  padding-block: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-bright);
}

.contact-form select option {
  color: var(--ink);
  background: var(--paper);
}

.contact-form ::placeholder {
  color: rgba(241, 237, 228, 0.3);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 4px 0 26px;
  color: rgba(241, 237, 228, 0.48);
  font-size: 0.74rem;
  line-height: 1.55;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold-bright);
}

.form-note {
  margin: 18px 0 0;
  color: rgba(241, 237, 228, 0.37);
  font-size: 0.71rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-bright);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, background 220ms ease;
}

.whatsapp-float:hover {
  background: var(--gold-pale);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  fill: currentColor;
}

.site-footer {
  padding: 70px 48px 24px;
  color: rgba(241, 237, 228, 0.55);
  background: #06090e;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
}

.footer-main > p {
  max-width: 470px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.35;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.footer-contact span {
  color: rgba(241, 237, 228, 0.36);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.footer-bottom {
  display: flex;
  max-width: 1240px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom a:hover {
  color: var(--gold-bright);
}

.page-hero,
.error-page {
  color: var(--ivory);
  background: var(--ink);
}

.page-hero {
  padding: 190px 0 95px;
}

.page-hero h1,
.error-page h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ivory);
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.page-hero > .shell > p:last-child {
  margin: 0;
  color: rgba(241, 237, 228, 0.55);
}

.legal-shell {
  max-width: 840px;
}

.legal-shell h2 {
  margin: 58px 0 18px;
  font-size: 2.1rem;
  line-height: 1.1;
}

.legal-shell h2:first-child {
  margin-top: 0;
}

.legal-shell p {
  color: var(--muted);
}

.legal-shell a {
  color: #815e24;
  border-bottom: 1px solid currentColor;
}

.legal-note {
  margin-top: 54px;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-note p,
.updated {
  margin-bottom: 0;
}

.updated {
  margin-top: 30px;
  font-size: 0.78rem;
}

.error-page {
  display: grid;
  min-height: 75vh;
  padding: 180px 0 100px;
  align-items: center;
}

.error-code {
  margin-bottom: 0;
  color: rgba(213, 179, 111, 0.11);
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 17rem);
  line-height: 0.6;
}

.error-page h1 {
  max-width: 720px;
  margin-bottom: 42px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(200%); }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 64px, 1240px);
  }

  .site-header {
    padding-inline: 32px;
  }

  .brand-copy {
    display: none;
  }

  .practice-head,
  .contact-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 60px;
  }

  .contact-form {
    padding: 36px;
  }

  .site-footer {
    padding-inline: 32px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 78px;
  }

  .section-light,
  .section-ivory,
  .section-dark,
  .section-navy {
    padding-block: 96px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 100px 10vw;
    background: rgba(8, 13, 21, 0.99);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-contact {
    width: 100%;
    padding: 14px 0 !important;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--serif);
    font-size: 2.15rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-content {
    padding-top: 155px;
  }

  .hero-foot {
    display: none;
  }

  .scroll-cue {
    left: 32px;
  }

  .intro-grid,
  .practice-head,
  .process-grid,
  .director-grid,
  .commitment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .practice-head,
  .process-grid,
  .director-grid,
  .commitment-grid,
  .contact-grid {
    gap: 56px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .perspective-strip {
    grid-template-columns: 90px 1fr;
  }

  .perspective-strip .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .practice-head > p {
    margin: 0;
  }

  .practice-card {
    grid-template-columns: 58px minmax(0, 1fr) 50px;
    gap: 24px;
  }

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

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

  .purpose-grid article,
  .purpose-grid article + article {
    padding: 42px 0;
    border-left: 0;
  }

  .purpose-grid article + article {
    border-top: 1px solid var(--line);
  }

  .principles article,
  .principles article + article {
    min-height: 0;
    padding: 42px 0;
    border-left: 0;
  }

  .principles article + article {
    border-top: 1px solid var(--line);
  }

  .principles article > span {
    margin-bottom: 40px;
  }

  .process-intro {
    position: static;
  }

  .director-visual {
    justify-items: start;
  }

  .director-seal {
    width: min(320px, 72vw);
  }

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

  .footer-contact {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 40px);
  }

  body {
    font-size: 15px;
  }

  .site-header,
  .site-footer {
    padding-inline: 20px;
  }

  .brand img,
  .is-scrolled .brand img,
  .inner-page .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 9, 15, 0.96) 0%, rgba(6, 11, 19, 0.81) 72%, rgba(8, 13, 21, 0.58) 100%), linear-gradient(0deg, rgba(5, 8, 13, 0.88), transparent 48%);
  }

  .hero-content {
    padding-top: 128px;
    padding-bottom: 120px;
  }

  .hero-eyebrow {
    max-width: 330px;
    flex-wrap: wrap;
    gap: 8px 10px;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.5rem, 17vw, 5.2rem);
    line-height: 0.88;
  }

  .hero-intro {
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .scroll-cue {
    display: none;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .section-light,
  .section-ivory,
  .section-dark,
  .section-navy {
    padding-block: 78px;
  }

  .perspective-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 58px;
  }

  .perspective-strip .text-link {
    grid-column: 1;
  }

  .practice-card {
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 34px 0;
  }

  .practice-card:hover {
    padding-left: 0;
  }

  .practice-card > svg {
    display: none;
  }

  .practice-card details ul {
    grid-template-columns: 1fr;
  }

  .principles h3 {
    font-size: 2.35rem;
  }

  .process-steps li {
    grid-template-columns: 52px 1fr;
    min-height: 95px;
  }

  .director-copy blockquote {
    padding-left: 20px;
  }

  .office-location {
    grid-template-columns: 34px 1fr;
  }

  .office-location > a {
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
  }

  .contact-form {
    margin-inline: -6px;
    padding: 28px 22px;
  }

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

  .phone-link {
    font-size: 1.85rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

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

  .footer-contact {
    grid-column: 1;
  }

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

  .page-hero {
    padding: 155px 0 75px;
  }

  .legal-note {
    padding: 24px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
