:root {
  --ink: #101410;
  --ink-soft: #525b55;
  --forest-950: #07110e;
  --forest-900: #0b1713;
  --forest-850: #10211b;
  --forest-800: #153027;
  --forest-700: #205040;
  --cream: #f5f1e8;
  --cream-deep: #e9e1d2;
  --paper: #fbfaf6;
  --white: #ffffff;
  --gold: #c99b48;
  --gold-light: #ebc87e;
  --gold-dark: #9e7130;
  --line: rgba(16, 20, 16, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 30px rgba(7, 17, 14, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 17, 14, 0.15);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 86px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  background: var(--cream);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

html.intro-active,
body.menu-open,
body.intro-active {
  overflow: hidden;
}

html.intro-active {
  background: var(--forest-950);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  border: 0;
}

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

ul,
ol {
  padding-left: 0;
}

::selection {
  color: var(--forest-950);
  background: var(--gold-light);
}

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

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

.section {
  position: relative;
  padding-block: clamp(94px, 10vw, 150px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 11px 16px;
  color: var(--forest-950);
  background: var(--gold-light);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Cinematic entrance */
.site-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  opacity: 1;
  visibility: visible;
  isolation: isolate;
  touch-action: none;
  transition: opacity 440ms ease, visibility 0s linear 440ms;
}

.has-js .site-intro {
  display: grid;
  animation: intro-failsafe 0s 3.4s forwards;
}

.site-intro::before,
.site-intro::after {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 1px;
  height: 0;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(235, 200, 126, 0.35), transparent);
  animation: intro-vertical 1.9s 180ms var(--ease) forwards;
  pointer-events: none;
}

.site-intro::before {
  left: 12%;
}

.site-intro::after {
  right: 12%;
  animation-delay: 320ms;
}

.site-intro__panel {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  width: 50.1%;
  will-change: transform;
  transition: transform 820ms var(--ease);
}

.site-intro__panel--left {
  left: 0;
  background:
    radial-gradient(circle at 100% 50%, rgba(45, 104, 82, 0.18), transparent 42%),
    var(--forest-950);
}

.site-intro__panel--right {
  right: 0;
  background:
    radial-gradient(circle at 0 50%, rgba(201, 155, 72, 0.08), transparent 42%),
    #0a1813;
}

.site-intro__grain {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.3'/%3E%3C/svg%3E");
  pointer-events: none;
  transition: opacity 320ms ease;
}

.site-intro__orb {
  position: absolute;
  z-index: 1;
  width: min(540px, 54vw);
  aspect-ratio: 1;
  border: 1px solid rgba(235, 200, 126, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.78);
  animation: intro-orb 1.5s 240ms var(--ease) forwards;
  pointer-events: none;
}

.site-intro__orb::before,
.site-intro__orb::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.site-intro__orb::before {
  inset: 13%;
}

.site-intro__orb::after {
  inset: 29%;
}

.site-intro__content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  padding: 36px;
  opacity: 0;
  transform: translateY(18px);
  animation: intro-content 700ms 300ms var(--ease) forwards;
  transition: opacity 260ms ease, transform 360ms var(--ease);
}

.site-intro__brand {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.site-intro__mark {
  position: relative;
  display: grid;
  width: clamp(84px, 8vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: #101514;
  border: 1px solid rgba(235, 200, 126, 0.5);
  border-radius: 22px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 75px rgba(0, 0, 0, 0.34);
}

.site-intro__mark::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(235, 200, 126, 0.14);
  border-radius: 15px;
  pointer-events: none;
}

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

.site-intro__mark i {
  position: absolute;
  z-index: 2;
  top: -30%;
  bottom: -30%;
  left: -70%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 201, 0.9), transparent);
  opacity: 0;
  transform: skewX(-16deg);
  animation: intro-mark-shine 900ms 950ms var(--ease) forwards;
}

.site-intro__rule {
  width: 1px;
  height: 68px;
  background: linear-gradient(to bottom, transparent, rgba(235, 200, 126, 0.68), transparent);
  opacity: 0;
  transform: scaleY(0);
  animation: intro-rule 650ms 760ms var(--ease) forwards;
}

.site-intro__wordmark {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-12px);
  animation: intro-wordmark 650ms 830ms var(--ease) forwards;
}

.site-intro__wordmark strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(39px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  white-space: nowrap;
}

.site-intro__wordmark small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(7px, .75vw, 10px);
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-intro__oab {
  margin: 28px 0 0;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  animation: intro-oab 500ms 1.18s ease forwards;
}

.site-intro__progress {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 56px;
  width: min(390px, 46vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(50%);
}

.site-intro__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 16px rgba(235, 200, 126, 0.34);
  animation: intro-progress 2.4s linear forwards;
}

.site-intro__status {
  position: absolute;
  z-index: 3;
  bottom: 72px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.site-intro__skip {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 22px;
  display: inline-flex;
  padding: 9px 6px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, gap 260ms var(--ease);
}

.site-intro__skip:hover,
.site-intro__skip:focus-visible {
  gap: 12px;
  color: var(--cream);
}

.site-intro.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

.site-intro.is-exiting::before,
.site-intro.is-exiting::after,
.site-intro.is-exiting .site-intro__grain,
.site-intro.is-exiting .site-intro__orb {
  opacity: 0;
  animation: none;
}

.site-intro.is-exiting .site-intro__content {
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  animation: none;
}

.site-intro.is-exiting .site-intro__progress,
.site-intro.is-exiting .site-intro__status,
.site-intro.is-exiting .site-intro__skip {
  opacity: 0;
  animation: none;
}

.site-intro.is-exiting .site-intro__panel {
  transform: none;
}

@keyframes intro-content {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes intro-orb {
  to { opacity: 1; transform: scale(1); }
}

@keyframes intro-vertical {
  to { height: 100%; }
}

@keyframes intro-rule {
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes intro-rule-horizontal {
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes intro-wordmark {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes intro-oab {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes intro-mark-shine {
  0% { left: -70%; opacity: 0; }
  25% { opacity: .85; }
  100% { left: 145%; opacity: 0; }
}

@keyframes intro-progress {
  to { width: 100%; }
}

@keyframes intro-failsafe {
  to { visibility: hidden; pointer-events: none; }
}

/* Header and brand */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 17, 14, 0.72), transparent);
  border-bottom: 1px solid transparent;
  transition:
    height 300ms var(--ease),
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(7, 17, 14, 0.93);
  border-color: rgba(235, 200, 126, 0.14);
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(270px, auto) 1fr auto;
  align-items: center;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  gap: 36px;
}

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

.brand__mark {
  position: relative;
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: #111514;
  border: 1px solid rgba(235, 200, 126, 0.42);
  border-radius: 13px;
  isolation: isolate;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 9px 24px rgba(0, 0, 0, 0.2);
  transition: transform 400ms var(--ease), border-color 300ms ease;
}

.brand__mark::before {
  position: absolute;
  z-index: 2;
  inset: -4px;
  content: "";
  border: 1px solid transparent;
  border-top-color: var(--gold-light);
  border-right-color: rgba(235, 200, 126, 0.3);
  border-radius: 15px;
  opacity: 0;
  transform: rotate(-50deg);
  transition: opacity 300ms ease, transform 600ms var(--ease);
  pointer-events: none;
}

.brand__mark img {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  transition: transform 600ms var(--ease), filter 400ms ease;
}

.brand__mark i {
  position: absolute;
  z-index: 1;
  top: -30%;
  bottom: -30%;
  left: -78%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 201, 0.82), transparent);
  filter: blur(1px);
  opacity: 0;
  transform: skewX(-16deg);
  pointer-events: none;
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  border-color: rgba(235, 200, 126, 0.78);
  transform: translateY(-1px);
}

.brand:hover .brand__mark::before,
.brand:focus-visible .brand__mark::before {
  opacity: 1;
  transform: rotate(0deg);
}

.brand:hover .brand__mark img,
.brand:focus-visible .brand__mark img {
  filter: brightness(1.08) contrast(1.03);
  transform: scale(1.025);
}

.brand:hover .brand__mark i,
.brand:focus-visible .brand__mark i {
  animation: brand-shine 850ms var(--ease) both;
}

.brand__wordmark {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.brand__wordmark strong {
  overflow: hidden;
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__wordmark small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes brand-shine {
  0% { left: -78%; opacity: 0; }
  18% { opacity: 0.8; }
  100% { left: 145%; opacity: 0; }
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  gap: 9px;
  color: var(--forest-950);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: transparent;
  box-shadow: 0 8px 30px rgba(201, 155, 72, 0.16);
  transform: translateY(-1px);
}

.header-cta__status {
  width: 7px;
  height: 7px;
  background: #20845e;
  border: 2px solid rgba(7, 17, 14, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(32, 132, 94, 0.16);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
}

.menu-overlay {
  position: fixed;
  z-index: 198;
  inset: 0;
  visibility: hidden;
  background: rgba(3, 8, 6, 0.68);
  opacity: 0;
  transition: opacity 360ms ease, visibility 360ms;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(430px, 92vw);
  padding: 28px;
  color: var(--white);
  background: var(--forest-900);
  border-left: 1px solid rgba(235, 200, 126, 0.16);
  flex-direction: column;
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.3);
  transform: translateX(105%);
  transition: transform 480ms var(--ease);
  contain: layout paint;
}

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

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.54);
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu__head button {
  position: relative;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.mobile-menu__head button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--white);
}

.mobile-menu__head button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__head button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu nav {
  display: flex;
  padding-block: 20px;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 14px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: clamp(29px, 8vw, 38px);
  line-height: 1.05;
}

.mobile-menu nav a span {
  color: var(--gold-light);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mobile-menu__contact {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu__contact p {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.65;
}

.mobile-menu__contact > a:last-child {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  overflow-wrap: anywhere;
}

/* Buttons and small type */
.button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), box-shadow 260ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 260ms var(--ease);
}

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

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(3px);
}

.button--large {
  min-height: 60px;
  padding-inline: 29px;
}

.button--gold {
  color: var(--forest-950);
  background: linear-gradient(110deg, var(--gold), var(--gold-light));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 36px rgba(201, 155, 72, 0.16);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-light);
  box-shadow: 0 20px 42px rgba(201, 155, 72, 0.24);
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--forest-950);
  background: var(--cream);
  border-color: var(--cream);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  gap: 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  gap: 9px;
  color: var(--forest-800);
  border-bottom: 1px solid rgba(16, 33, 27, 0.38);
  font-size: 12px;
  font-weight: 800;
  transition: color 220ms ease, border-color 220ms ease, gap 260ms var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  gap: 13px;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.text-link--light {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  padding-top: calc(var(--header-height) + 58px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(238, 231, 216, 0.1), transparent 33%),
    linear-gradient(125deg, #0d241c 0%, #163a2d 50%, #255943 100%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: linear-gradient(to right, black, transparent 90%);
  mask-image: linear-gradient(to right, black, transparent 90%);
  pointer-events: none;
}

.hero__monogram {
  position: absolute;
  top: 7%;
  right: -1.5vw;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(280px, 38vw, 630px);
  font-weight: 600;
  letter-spacing: -0.13em;
  line-height: 1;
  opacity: 0.16;
  -webkit-text-stroke: 1px rgba(235, 200, 126, 0.34);
  transform: rotate(-4deg);
  pointer-events: none;
  user-select: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  align-items: center;
  min-height: 610px;
  gap: clamp(58px, 7vw, 104px);
}

.hero__copy {
  padding-bottom: 38px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(58px, 5.6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__assurances {
  display: flex;
  margin-bottom: 0;
  gap: 12px 24px;
  list-style: none;
  flex-wrap: wrap;
}

.hero__assurances li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 600;
}

.hero__assurances svg {
  width: 14px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero__visual {
  position: relative;
}

.portrait-stage {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  padding: 22px 0 0 22px;
}

.portrait-stage::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -9%;
  width: 83%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(235, 200, 126, 0.28);
  border-radius: 50%;
}

.portrait-stage::after {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: 4%;
  width: 54%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(201, 155, 72, 0.19), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}

.portrait-stage__image {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: #f9f7f1;
  border: 1px solid rgba(235, 200, 126, 0.42);
  border-radius: 110px 24px 110px 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.portrait-stage__image::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-stage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.portrait-stage__line {
  position: absolute;
  z-index: 2;
  background: var(--gold-light);
  box-shadow: 0 0 14px rgba(235, 200, 126, 0.22);
}

.portrait-stage__line--top {
  top: 0;
  left: 0;
  width: 120px;
  height: 1px;
}

.portrait-stage__line--side {
  top: 0;
  left: 0;
  width: 1px;
  height: 120px;
}

.portrait-stage__card {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.portrait-stage__card--top {
  top: 13%;
  right: -12%;
  width: 194px;
  padding: 17px 18px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 13px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.portrait-stage__card--top > span {
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-stage__card--top strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.portrait-stage__card--top small {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.45;
}

.portrait-stage__card--bottom {
  right: 8%;
  bottom: -25px;
  display: grid;
  width: 246px;
  padding: 15px 17px;
  color: var(--white);
  background: var(--forest-800);
  border: 1px solid rgba(235, 200, 126, 0.25);
  border-radius: 12px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.portrait-stage__card--bottom i {
  position: relative;
  width: 10px;
  height: 10px;
  background: #63b98e;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(99, 185, 142, 0.11);
}

.portrait-stage__card--bottom p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.2;
}

.portrait-stage__card--bottom span {
  color: rgba(255, 255, 255, 0.51);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-stage__card--bottom strong {
  margin-top: 4px;
  font-size: 13px;
  font-style: normal;
}

.hero__footer {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100px;
  margin-top: 24px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.hero__footer p {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
}

.hero__footer p span {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero__footer > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__footer > a i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-style: normal;
  transition: background-color 220ms ease, color 220ms ease;
}

.hero__footer > a:hover i {
  color: var(--forest-950);
  background: var(--gold-light);
}

/* Trust bar */
.proof-bar {
  position: relative;
  z-index: 4;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.proof-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-bar__inner > div {
  display: flex;
  min-height: 118px;
  padding: 24px 34px;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.proof-bar__inner > div:first-child {
  padding-left: 0;
}

.proof-bar__inner > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-bar__icon {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--gold-dark);
  background: rgba(201, 155, 72, 0.09);
  border: 1px solid rgba(158, 113, 48, 0.18);
  border-radius: 50%;
}

.proof-bar__icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.proof-bar p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.35;
}

.proof-bar strong {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
}

.proof-bar p span {
  color: var(--ink-soft);
  font-size: 10px;
}

/* Section headings */
.section-heading--split {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .62fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.process h2,
.third-sector h2,
.about h2,
.principles h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(47px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading__lead {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

/* Practice areas */
.practice {
  background:
    radial-gradient(circle at 95% 5%, rgba(201, 155, 72, 0.11), transparent 18%),
    var(--cream);
}

.practice-jump {
  display: flex;
  margin-bottom: 28px;
  gap: 8px;
  flex-wrap: wrap;
}

.practice-jump a {
  padding: 10px 15px;
  color: var(--forest-800);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.practice-jump a:hover,
.practice-jump a:focus-visible {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
  transform: translateY(-1px);
}

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

.practice-card {
  position: relative;
  display: flex;
  min-height: 560px;
  padding: clamp(30px, 3.4vw, 46px);
  overflow: hidden;
  background: rgba(251, 250, 246, 0.87);
  border: 1px solid rgba(16, 20, 16, 0.11);
  border-radius: var(--radius-md);
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  scroll-margin-top: 106px;
  transition: transform 460ms var(--ease), box-shadow 460ms var(--ease), border-color 360ms ease, background-color 360ms ease;
}

.practice-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width 520ms var(--ease);
}

.practice-card::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 220px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(201, 155, 72, 0.13);
  border-radius: 50%;
  transition: transform 700ms var(--ease), border-color 300ms ease;
}

.practice-card:hover,
.practice-card:focus-within {
  background: var(--paper);
  border-color: rgba(158, 113, 48, 0.34);
  box-shadow: 0 28px 70px rgba(7, 17, 14, 0.12);
  transform: translateY(-7px);
}

.practice-card:hover::before,
.practice-card:focus-within::before {
  right: auto;
  left: 0;
  width: 100%;
}

.practice-card:hover::after,
.practice-card:focus-within::after {
  border-color: rgba(201, 155, 72, 0.3);
  transform: scale(1.14);
}

.practice-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 58px;
  margin-bottom: 25px;
  align-items: flex-start;
  justify-content: space-between;
}

.practice-card__number {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.practice-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold-dark);
  background: rgba(201, 155, 72, 0.08);
  border: 1px solid rgba(158, 113, 48, 0.18);
  border-radius: 50%;
  transition: color 300ms ease, background-color 300ms ease, transform 420ms var(--ease);
}

.practice-card:hover .practice-card__icon,
.practice-card:focus-within .practice-card__icon {
  color: var(--cream);
  background: var(--forest-800);
  transform: rotate(-4deg) scale(1.06);
}

.practice-card__icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.practice-card__tag {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.practice-card h3 {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 47px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  text-wrap: balance;
}

.practice-card__description {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin-bottom: 23px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.practice-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 30px;
  gap: 10px;
  list-style: none;
}

.practice-card li {
  position: relative;
  padding-left: 18px;
  color: #364039;
  font-size: 13px;
  line-height: 1.55;
}

.practice-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.card-link {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 5px;
  align-items: center;
  gap: 9px;
  color: var(--forest-800);
  border-bottom: 1px solid rgba(21, 48, 39, 0.35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: gap 260ms var(--ease), color 220ms ease, border-color 220ms ease;
}

.card-link:hover,
.card-link:focus-visible {
  gap: 14px;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.practice-card--wide {
  min-height: 390px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 15%, rgba(45, 104, 82, 0.32), transparent 25%),
    var(--forest-900);
  border-color: rgba(235, 200, 126, 0.16);
  grid-column: 1 / -1;
}

.practice-card--wide:hover,
.practice-card--wide:focus-within {
  background:
    radial-gradient(circle at 95% 15%, rgba(45, 104, 82, 0.4), transparent 27%),
    var(--forest-900);
  border-color: rgba(235, 200, 126, 0.38);
}

.practice-card--wide .practice-card__icon {
  color: var(--gold-light);
  background: rgba(201, 155, 72, 0.08);
  border-color: rgba(235, 200, 126, 0.2);
}

.practice-card--wide:hover .practice-card__icon,
.practice-card--wide:focus-within .practice-card__icon {
  color: var(--forest-950);
  background: var(--gold-light);
}

.practice-card--wide__copy {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
}

.practice-card--wide h3 {
  max-width: 610px;
  color: var(--cream);
}

.practice-card--wide .practice-card__description,
.practice-card--wide li {
  color: rgba(255, 255, 255, 0.62);
}

.practice-card--wide .card-link {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.3);
}

.practice-note {
  display: grid;
  margin-top: 16px;
  padding: 22px 25px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.practice-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold-dark);
  border: 1px solid rgba(158, 113, 48, 0.32);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
}

.practice-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.65;
}

.practice-note p strong {
  color: var(--ink);
}

.practice-note a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest-800);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.practice-note a:hover span {
  transform: translateX(3px);
}

/* Process */
.process {
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 20, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 16, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper), var(--cream-deep));
  background-size: 90px 90px, 90px 90px, 100% 100%;
  background-repeat: repeat, repeat, no-repeat;
}

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

.process .text-link--light {
  color: var(--forest-800);
  border-color: rgba(16, 33, 27, 0.38);
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 9vw, 135px);
}

.process__intro {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.process__intro h2 {
  margin-bottom: 26px;
  color: var(--ink);
}

.process__intro > p:not(.eyebrow) {
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.process__steps {
  margin: 0;
  list-style: none;
}

.process__steps li {
  display: grid;
  min-height: 220px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 78px 1fr;
  gap: 20px;
}

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

.process__number {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.process__meta {
  margin-bottom: 8px;
  color: rgba(16, 20, 16, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process__steps h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.05;
}

.process__steps li p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

/* Third sector */
.third-sector {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 50%, rgba(201, 155, 72, 0.1), transparent 28%),
    linear-gradient(120deg, #172d25, #23483a);
}

.third-sector::before,
.third-sector::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(235, 200, 126, 0.12);
  border-radius: 50%;
}

.third-sector::before {
  top: -260px;
  left: -260px;
  width: 620px;
  height: 620px;
}

.third-sector::after {
  right: -180px;
  bottom: -320px;
  width: 720px;
  height: 720px;
}

.third-sector__mark {
  position: absolute;
  top: 4%;
  left: -4%;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(300px, 42vw, 680px);
  font-weight: 600;
  letter-spacing: -0.15em;
  line-height: 1;
  opacity: 0.07;
  -webkit-text-stroke: 1px var(--gold-light);
  pointer-events: none;
}

.third-sector__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(350px, .85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.third-sector__copy h2 {
  margin-bottom: 26px;
  color: var(--cream);
}

.third-sector__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.85;
}

.third-sector__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.third-sector__actions > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.third-sector__catalog {
  border-top: 1px solid var(--line-light);
}

.third-sector__catalog article {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 55px 1fr;
  gap: 18px;
  transition: padding-left 300ms var(--ease), background-color 300ms ease;
}

.third-sector__catalog article:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}

.third-sector__catalog article > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.third-sector__catalog h3 {
  margin-bottom: 7px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
}

.third-sector__catalog p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.7;
}

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

.about__grid {
  display: grid;
  grid-template-columns: minmax(360px, .84fr) minmax(500px, 1.16fr);
  align-items: start;
  gap: clamp(70px, 9vw, 135px);
}

.about__media {
  position: sticky;
  top: 120px;
  width: min(100%, 440px);
  max-width: 440px;
  justify-self: start;
}

.about__photo {
  position: relative;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px 90px 28px 90px;
}

.about__photo::before {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 110px;
  height: 110px;
  content: "";
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-radius: 0 34px 0 0;
}

.about__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 18%;
  background: var(--white);
  border-radius: 18px 76px 18px 76px;
  filter: none;
}

.about__signature {
  display: flex;
  padding: 23px 16px 0;
  flex-direction: column;
}

.about__signature span {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.about__signature small {
  margin-top: 7px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about__content h2 {
  margin-bottom: 27px;
}

.about__lead {
  margin-bottom: 18px;
  color: #303a34;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.about__content > p:not(.eyebrow):not(.about__lead) {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

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

.about__values > div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.about__values > div:first-child {
  padding-left: 0;
}

.about__values > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.about__values > div > span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about__values p {
  display: flex;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.55;
  flex-direction: column;
}

.about__values strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 11px;
}

.education {
  margin-bottom: 30px;
  padding: 27px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.education__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.education__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
}

.education__head span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.education ul {
  display: grid;
  margin: 0;
  gap: 14px;
  list-style: none;
}

.education li {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: baseline;
  gap: 18px;
}

.education li strong {
  font-size: 11px;
}

.education li span {
  color: var(--ink-soft);
  font-size: 9px;
  text-align: right;
}

/* Principles */
.principles {
  padding-block: 80px;
  color: var(--white);
  background: #151816;
  border-top: 1px solid rgba(235, 200, 126, 0.12);
  border-bottom: 1px solid rgba(235, 200, 126, 0.12);
}

.principles__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 0;
}

.principles__intro,
.principle {
  min-height: 250px;
  padding: 32px 45px;
  border-right: 1px solid var(--line-light);
}

.principles__intro {
  padding-left: 0;
}

.principle:last-child {
  padding-right: 0;
  border-right: 0;
}

.principles__intro h2 {
  max-width: 560px;
  color: var(--cream);
  font-size: clamp(42px, 4vw, 59px);
}

.principle > span {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 48px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(235, 200, 126, 0.28);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 23px;
  font-style: italic;
}

.principle h3 {
  margin-bottom: 9px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.principle p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.65;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq__intro {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq__intro h2 {
  margin-bottom: 24px;
}

.faq__intro > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  padding: 28px 2px;
  cursor: pointer;
  background: transparent;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.faq-item button > span {
  font-family: var(--display);
  font-size: clamp(23px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.15;
}

.faq-item button i {
  position: relative;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(16, 20, 16, 0.18);
  border-radius: 50%;
  transition: background-color 250ms ease, border-color 250ms ease, transform 400ms var(--ease);
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 300ms var(--ease);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button:hover i,
.faq-item button[aria-expanded="true"] i {
  color: var(--forest-950);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 420ms var(--ease), opacity 320ms ease;
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item__answer p {
  max-width: 700px;
  margin: -2px 0 28px;
  padding-right: 56px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.faq-item__answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Contact */
.contact {
  position: relative;
  padding-block: clamp(100px, 11vw, 160px);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-900);
}

.contact::before {
  position: absolute;
  top: -260px;
  right: 6%;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(235, 200, 126, 0.12);
  border-radius: 50%;
}

.contact__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at left center, rgba(201, 155, 72, 0.13), transparent 65%);
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: end;
  gap: clamp(70px, 10vw, 155px);
}

.contact__copy h2 {
  max-width: 700px;
  margin-bottom: 25px;
  color: var(--cream);
  font-size: clamp(55px, 6vw, 82px);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.contact__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact__actions > span {
  max-width: 160px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contact__details {
  display: flex;
  margin: 0;
  border-top: 1px solid var(--line-light);
  flex-direction: column;
  font-style: normal;
}

.contact__details > a,
.contact__details > div {
  display: grid;
  min-width: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr auto;
  gap: 5px 15px;
}

.contact__details > a {
  transition: padding-left 280ms var(--ease), background-color 280ms ease;
}

.contact__details > a:hover,
.contact__details > a:focus-visible {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent);
}

.contact__details span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__details strong {
  min-width: 0;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  grid-column: 1;
  overflow-wrap: anywhere;
}

.contact__details i {
  color: var(--gold-light);
  font-style: normal;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

/* Footer */
.site-footer {
  padding-top: 42px;
  color: var(--white);
  background: #080908;
}

.site-footer__top {
  display: grid;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 45px;
}

.brand--footer .brand__mark {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
}

.site-footer__top > p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.65;
}

.site-footer__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: grid;
  padding-block: 22px 25px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  line-height: 1.55;
}

.site-footer__bottom p:nth-child(2) {
  text-align: center;
}

.site-footer__bottom p:last-child {
  color: rgba(235, 200, 126, 0.6);
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Persistent conversion actions */
.desktop-whatsapp {
  position: fixed;
  z-index: 80;
  right: 25px;
  bottom: 25px;
  display: flex;
  min-width: 174px;
  padding: 11px 16px 11px 11px;
  visibility: hidden;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(15, 62, 45, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 300ms ease, visibility 300ms, transform 400ms var(--ease), background-color 220ms ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.desktop-whatsapp.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.desktop-whatsapp:hover,
.desktop-whatsapp:focus-visible {
  background: #196447;
  transform: translateY(-2px);
}

.desktop-whatsapp svg {
  width: 33px;
  height: 33px;
  padding: 7px;
  fill: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.desktop-whatsapp span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.desktop-whatsapp small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-whatsapp strong {
  font-size: 11px;
}

.mobile-contact-bar {
  display: none;
}

/* Progressive reveals */
.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.has-js .reveal[data-delay="1"] { transition-delay: 90ms; }
.has-js .reveal[data-delay="2"] { transition-delay: 180ms; }
.has-js .reveal[data-delay="3"] { transition-delay: 270ms; }
.has-js .reveal[data-delay="4"] { transition-delay: 360ms; }

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

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --shell: min(1120px, calc(100vw - 48px));
  }

  .site-header__inner {
    grid-template-columns: minmax(250px, auto) 1fr auto;
    gap: 22px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.7vw, 76px);
  }

  .portrait-stage__card--top {
    right: -4%;
  }

  .third-sector__grid,
  .about__grid {
    gap: 70px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 76px;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(50px, 6.8vw, 66px);
  }

  .hero__lead {
    font-size: 14px;
  }

  .portrait-stage__card--top {
    display: none;
  }

  .hero__footer {
    margin-top: 60px;
  }

  .proof-bar__inner > div {
    padding-inline: 22px;
  }

  .proof-bar__icon {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
  }

  .section-heading--split,
  .process__layout,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .section-heading--split {
    align-items: start;
  }

  .section-heading__lead {
    max-width: 700px;
  }

  .process__intro,
  .faq__intro,
  .about__media {
    position: relative;
    top: auto;
  }

  .process__intro {
    max-width: 700px;
  }

  .third-sector__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .third-sector__copy {
    max-width: 760px;
  }

  .about__media {
    display: block;
    width: min(100%, 440px);
    max-width: 440px;
    margin-inline: auto;
    justify-self: center;
  }

  .about__signature {
    padding: 20px 14px 0;
  }

  .principles__grid {
    grid-template-columns: 1.1fr .9fr .9fr;
  }

  .principles__intro,
  .principle {
    padding-inline: 30px;
  }

  .principles__intro {
    padding-left: 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 70px;
  }

  .contact__details {
    max-width: 760px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 40px);
    --radius-md: 20px;
  }

  .site-intro::before {
    left: 7%;
  }

  .site-intro::after {
    right: 7%;
  }

  .site-intro__orb {
    width: min(430px, 88vw);
  }

  .site-intro__content {
    width: 100%;
    padding: 24px;
  }

  .site-intro__brand {
    flex-direction: column;
    gap: 18px;
  }

  .site-intro__mark {
    width: clamp(78px, 23vw, 96px);
    border-radius: 19px;
  }

  .site-intro__rule {
    width: 72px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(235, 200, 126, 0.68), transparent);
    transform: scaleX(0);
    animation-name: intro-rule-horizontal;
  }

  .site-intro__wordmark {
    align-items: center;
    transform: translateY(10px);
    animation-name: intro-oab;
  }

  .site-intro__wordmark strong {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 54px);
    line-height: 0.94;
    text-align: center;
    white-space: normal;
  }

  .site-intro__wordmark small {
    max-width: 270px;
    margin-top: 12px;
    font-size: 7px;
    letter-spacing: 0.13em;
    text-align: center;
    white-space: normal;
  }

  .site-intro__oab {
    margin-top: 21px;
  }

  .site-intro__progress {
    bottom: 59px;
    width: calc(100% - 64px);
  }

  .site-intro__status {
    bottom: 75px;
    font-size: 6px;
  }

  .site-intro__skip {
    right: 15px;
    bottom: 12px;
  }

  .section {
    padding-block: 92px;
  }

  .brand__mark {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
    border-radius: 11px;
  }

  .brand__wordmark strong {
    font-size: 19px;
  }

  .brand__wordmark small {
    font-size: 6.7px;
    letter-spacing: 0.13em;
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero__inner {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 50px;
  }

  .hero__copy {
    width: 100%;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(47px, 12vw, 67px);
    line-height: 0.99;
  }

  .hero__lead {
    max-width: 640px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    flex: 1 1 230px;
  }

  .hero__visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .portrait-stage {
    width: min(92%, 500px);
    margin: 0 auto 30px;
  }

  .portrait-stage__card--top {
    display: flex;
    right: -4%;
  }

  .hero__footer {
    display: grid;
    min-height: auto;
    margin-top: 42px;
    padding-block: 28px 35px;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .hero__footer > a {
    justify-self: start;
  }

  .proof-bar__inner {
    grid-template-columns: 1fr;
  }

  .proof-bar__inner > div,
  .proof-bar__inner > div:first-child,
  .proof-bar__inner > div:last-child {
    min-height: 92px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-bar__inner > div:last-child {
    border-bottom: 0;
  }

  .section-heading--split {
    margin-bottom: 38px;
    gap: 26px;
  }

  .section-heading h2,
  .process h2,
  .third-sector h2,
  .about h2,
  .principles h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(42px, 10.5vw, 58px);
    line-height: 1.02;
  }

  .practice-jump {
    margin-right: 0;
    padding-right: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .practice-jump::-webkit-scrollbar {
    display: none;
  }

  .practice-jump a {
    white-space: nowrap;
  }

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

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

  .practice-card--wide {
    grid-column: auto;
  }

  .practice-card--wide__copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .practice-note {
    grid-template-columns: auto 1fr;
  }

  .practice-note a {
    grid-column: 2;
  }

  .process__steps li {
    min-height: 0;
    grid-template-columns: 52px 1fr;
  }

  .third-sector__grid {
    gap: 60px;
  }

  .third-sector__catalog article {
    grid-template-columns: 42px 1fr;
  }

  .about__media {
    display: block;
    width: min(100%, 440px);
    max-width: 440px;
  }

  .about__signature {
    padding: 22px 14px 0;
  }

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

  .about__values > div,
  .about__values > div:first-child,
  .about__values > div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about__values > div:last-child {
    border-bottom: 0;
  }

  .education li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .education li span {
    text-align: left;
  }

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

  .principles__intro,
  .principle,
  .principle:last-child {
    min-height: auto;
    padding: 35px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle > span {
    margin-bottom: 25px;
  }

  .faq__grid {
    gap: 55px;
  }

  .faq-item__answer p {
    padding-right: 10px;
  }

  .contact__grid {
    gap: 62px;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer__bottom p:nth-child(2) {
    text-align: left;
  }

  .desktop-whatsapp {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    padding: 6px;
    visibility: hidden;
    background: rgba(7, 17, 14, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
    grid-template-columns: auto 1fr;
    gap: 6px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 300ms ease, visibility 300ms, transform 400ms var(--ease);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 50px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-contact-bar a:first-child {
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
  }

  .mobile-contact-bar a:first-child svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .mobile-contact-bar a:last-child {
    color: var(--forest-950);
    background: var(--gold-light);
    border-radius: 11px;
  }

  body {
    padding-bottom: 76px;
  }

  .hero__monogram {
    right: 0;
  }
}

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

  .site-header__inner {
    width: var(--shell);
  }

  .brand__wordmark strong {
    font-size: 17px;
  }

  .brand__wordmark small {
    max-width: 195px;
    overflow: hidden;
    font-size: 6px;
    text-overflow: ellipsis;
  }

  .menu-button {
    width: 41px;
    height: 41px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.7vw, 57px);
    letter-spacing: -0.04em;
  }

  .hero__lead {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
    flex: none;
  }

  .hero__assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .portrait-stage {
    width: 100%;
    padding: 13px 0 0 13px;
  }

  .portrait-stage__image {
    border-radius: 72px 18px 72px 18px;
  }

  .portrait-stage__card--top {
    top: -100px;
    right: 0;
    width: 166px;
    padding: 13px 14px;
  }

  .portrait-stage__card--top strong {
    font-size: 18px;
  }

  .portrait-stage__card--bottom {
    right: 5%;
    bottom: -24px;
    width: 220px;
  }

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

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

  .section-heading h2,
  .process h2,
  .third-sector h2,
  .about h2,
  .principles h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(39px, 12.2vw, 52px);
  }

  .practice-card {
    padding: 28px 24px;
  }

  .practice-card h3 {
    font-size: 36px;
  }

  .practice-note {
    grid-template-columns: 1fr;
  }

  .practice-note a {
    grid-column: 1;
  }

  .process__steps li {
    padding-block: 34px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .third-sector__catalog article {
    padding-block: 25px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

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

  .about__photo {
    padding: 11px;
    border-radius: 20px 65px 20px 65px;
  }

  .about__photo img {
    border-radius: 13px 56px 13px 56px;
  }

  .education {
    padding: 22px 19px;
  }

  .education__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .faq-item button {
    padding-block: 23px;
  }

  .faq-item button > span {
    font-size: 23px;
  }

  .faq-item button i {
    width: 30px;
    height: 30px;
  }

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

  .contact__actions .button {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer__back {
    grid-row: auto;
    justify-self: start;
  }

  .site-footer__top > p {
    grid-column: 1;
    grid-row: auto;
  }

  .mobile-contact-bar {
    grid-template-columns: 58px 1fr;
  }

  .mobile-contact-bar a:first-child {
    padding: 0;
    font-size: 0;
  }

  .mobile-contact-bar a:first-child svg {
    width: 19px;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .menu-overlay,
  .desktop-whatsapp,
  .mobile-contact-bar,
  .hero__footer,
  .hero__actions,
  .practice-jump,
  .card-link,
  .contact__actions,
  .site-footer__back {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .process,
  .third-sector,
  .principles,
  .contact,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 40px;
  }

  .practice-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
