:root {
  --sage-50: #f3f6f1;
  --sage-100: #e7ede3;
  --sage-200: #d4dfce;
  --sage-300: #b8c9b1;
  --sage-400: #96ad8e;
  --sage-500: #758f6f;
  --sage-600: #60785b;
  --green-700: #476458;
  --green-800: #35584b;
  --green-900: #243f36;
  --blush-50: #fdf8f7;
  --blush-100: #f6e9e7;
  --blush-200: #ebd5d2;
  --warm-white: #fdfbf7;
  --paper: #fffefa;
  --warm-gray-100: #f1efeb;
  --warm-gray-300: #d7d2ca;
  --warm-gray-500: #847e75;
  --warm-gray-600: #69645d;
  --warm-gray-700: #514d47;
  --text: #2c4038;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(47, 72, 62, 0.07);
  --shadow-md: 0 22px 60px rgba(47, 72, 62, 0.11);
  --shadow-lg: 0 30px 80px rgba(47, 72, 62, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 88px;
  --transition: 220ms ease;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--warm-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 5vw, 4.65rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

::selection {
  color: var(--green-900);
  background: var(--blush-200);
}

:focus-visible {
  outline: 3px solid #b56673;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--green-900);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--sage-200);
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--warm-gray-600);
  font-size: 1.05rem;
}

.section-heading-centered {
  max-width: 790px;
  margin: 0 auto clamp(2.7rem, 6vw, 4.5rem);
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.55rem;
  border: 1px solid var(--green-800);
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 10px 24px rgba(53, 88, 75, 0.16);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  border-color: var(--green-900);
  background: var(--green-900);
  box-shadow: 0 14px 28px rgba(36, 63, 54, 0.2);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--green-800);
  border-color: var(--sage-300);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
  border-color: var(--green-800);
  background: var(--green-800);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green-800);
  font-weight: 600;
  line-height: 1.4;
}

.text-link span {
  font-size: 1.3rem;
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(71, 100, 88, 0.1);
  background: rgba(253, 251, 247, 0.96);
  box-shadow: 0 8px 30px rgba(44, 64, 56, 0.07);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.15;
}

.brand-mark {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex: 0 0 50px;
  border: 1px solid rgba(117, 143, 111, 0.24);
  border-radius: 50%;
  background: #f7f7f4;
}

.brand-mark img {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 78px;
  max-width: none;
  height: 52px;
  object-fit: cover;
  object-position: 50% 24%;
  transform: translateX(-50%) scale(1.25);
}

.header-brand .brand-mark {
  width: 52px;
  height: 52px;
  overflow: hidden;
  flex-basis: 52px;
  border: 1px solid rgba(117, 143, 111, 0.2);
  border-radius: 50%;
  background: var(--warm-white);
}

.header-brand .brand-mark img {
  top: -5px;
  left: 50%;
  width: 123px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transform: translateX(-50%);
}

.brand-copy {
  display: grid;
  gap: 0.25rem;
}

.brand-copy strong {
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-copy span {
  color: var(--warm-gray-600);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 1.3rem;
}

.nav-list {
  gap: clamp(0.7rem, 1.25vw, 1.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  padding-block: 0.4rem;
  color: var(--warm-gray-700);
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-list a:hover,
.nav-list a[aria-current="true"] {
  color: var(--green-800);
}

.nav-list a:hover::after,
.nav-list a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  white-space: nowrap;
}

.menu-toggle,
.nav-backdrop {
  display: none;
}

/* Hero */
.hero {
  min-height: min(900px, 100svh);
  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 7rem));
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(246, 233, 231, 0.88), transparent 30%),
    linear-gradient(135deg, var(--warm-white) 0%, #f7f7f1 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 85px;
  content: "";
  background: linear-gradient(to bottom right, transparent 49%, var(--paper) 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}

.hero-role {
  margin-bottom: 1.55rem;
  color: var(--green-700);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-description {
  max-width: 680px;
  margin-bottom: 2rem;
  color: var(--warm-gray-600);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  color: var(--warm-gray-600);
  font-size: 0.86rem;
  font-weight: 500;
}

.hero-note svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sage-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 19%;
  right: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(117, 143, 111, 0.14);
}

.hero-orb-two {
  bottom: 6%;
  left: -120px;
  width: 270px;
  height: 270px;
  background: rgba(231, 237, 227, 0.35);
}

.portrait-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 450px);
  margin-inline: auto;
}

.portrait-decoration {
  position: absolute;
  top: -25px;
  right: -38px;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(117, 143, 111, 0.28);
  border-radius: 50%;
}

.portrait-placeholder {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.5);
  border-radius: 220px 220px 30px 30px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.32), transparent 50%),
    linear-gradient(145deg, var(--sage-200), #a9bca2 48%, #80997b 100%);
  box-shadow: var(--shadow-lg);
}

.portrait-placeholder::before {
  position: absolute;
  right: 14%;
  bottom: 22%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.portrait-placeholder::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(to top, rgba(36, 63, 54, 0.5), transparent);
}

.portrait-photo::before,
.portrait-photo::after {
  content: none;
}

.portrait-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.portrait-initials {
  position: absolute;
  z-index: 2;
  top: 41%;
  left: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.portrait-leaf {
  position: absolute;
  top: 7%;
  right: 6%;
  width: 34%;
  height: auto;
  fill: none;
  opacity: 0.4;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.portrait-caption {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.3rem;
  color: var(--white);
}

.portrait-caption span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.portrait-caption small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-badge {
  position: absolute;
  z-index: 5;
  bottom: 50px;
  left: -42px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(117, 143, 111, 0.16);
  border-radius: var(--radius-pill);
  color: var(--green-800);
  background: rgba(255, 254, 250, 0.94);
  box-shadow: var(--shadow-md);
  font-size: 0.77rem;
  font-weight: 600;
  white-space: nowrap;
}

.portrait-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage-500);
  box-shadow: 0 0 0 5px var(--sage-100);
}

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

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3.5rem, 8vw, 8rem);
}

.about .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.quote-card {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.6rem 1.7rem 1.5rem 2rem;
  overflow: hidden;
  border-left: 3px solid var(--sage-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--sage-50);
}

.quote-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--green-700);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}

.quote-mark {
  position: absolute;
  top: -23px;
  right: 15px;
  color: rgba(117, 143, 111, 0.12);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.about-copy > p {
  margin-bottom: 1.35rem;
  color: var(--warm-gray-600);
}

.about-copy .lead {
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.45;
}

.values-list {
  display: grid;
  margin: 2.6rem 0 0;
  padding: 0;
  border-top: 1px solid var(--sage-200);
  list-style: none;
}

.values-list li {
  display: grid;
  align-items: start;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--sage-200);
  grid-template-columns: 46px 1fr;
  gap: 0.75rem;
}

.values-list li > span {
  color: var(--sage-500);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.values-list li > .value-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(117, 143, 111, 0.16);
  border-radius: 50%;
  background: var(--sage-100);
  letter-spacing: normal;
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.value-icon svg,
.area-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.values-list li:hover .value-icon {
  color: var(--sage-600);
  border-color: rgba(117, 143, 111, 0.28);
  background: var(--sage-200);
  transform: scale(1.06);
}

.values-list div {
  display: grid;
  gap: 0.15rem;
}

.values-list strong {
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.3;
}

.values-list small {
  color: var(--warm-gray-600);
  font-size: 0.86rem;
}

/* Areas */
.interventions {
  background: var(--sage-50);
}

.cards-grid {
  display: grid;
}

.area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.area-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 290px;
  align-items: flex-start;
  padding: 2.2rem 1.9rem;
  overflow: hidden;
  border: 1px solid rgba(117, 143, 111, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 250, 0.82);
  flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.area-card::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(117, 143, 111, 0.14);
  border-radius: 50%;
  content: "";
  transition: transform 450ms ease;
}

.area-card:hover {
  z-index: 1;
  border-color: var(--sage-400);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.area-card:hover::after {
  transform: scale(1.3);
}

.area-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 2rem;
  place-items: center;
  flex: 0 0 46px;
  border: 1px solid rgba(117, 143, 111, 0.16);
  border-radius: 50%;
  color: var(--sage-600);
  background: var(--sage-100);
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.area-icon svg {
  width: 24px;
  height: 24px;
}

.area-card:hover .area-icon {
  color: var(--green-700);
  border-color: rgba(117, 143, 111, 0.3);
  background: var(--sage-200);
  transform: scale(1.07);
}

.area-card h3 {
  font-size: 1.5rem;
}

.area-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--warm-gray-600);
  flex-grow: 1;
  font-size: 0.89rem;
  line-height: 1.7;
}

/* Audiences */
.audiences {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.4rem;
}

.audience-card {
  position: relative;
  display: flex;
  height: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--warm-gray-100);
  border-radius: var(--radius-lg);
  background: var(--blush-50);
  flex-direction: column;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:nth-child(1) {
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 80px;
}

.audience-card:nth-child(3) {
  border-radius: var(--radius-lg) var(--radius-lg) 80px var(--radius-lg);
}

.audience-card.featured {
  color: rgba(255, 255, 255, 0.82);
  border-color: var(--green-800);
  background: var(--green-800);
  box-shadow: var(--shadow-md);
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.audience-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  place-items: center;
  flex: 0 0 68px;
  border: 1px solid rgba(117, 143, 111, 0.16);
  border-radius: 50%;
  color: var(--sage-600);
  background: var(--sage-100);
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.audience-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.audience-card.featured .audience-icon {
  color: var(--sage-100);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.audience-card:hover .audience-icon {
  color: var(--green-700);
  border-color: rgba(117, 143, 111, 0.3);
  background: var(--sage-200);
  transform: scale(1.06);
}

.audience-card.featured:hover .audience-icon {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
}

.audience-card.featured h3 {
  color: var(--white);
}

.audience-card p {
  margin: 0;
  color: var(--warm-gray-600);
  flex-grow: 1;
  font-size: 0.93rem;
}

.audience-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

/* Process */
.process {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 90%, rgba(246, 233, 231, 0.65), transparent 25%),
    var(--sage-50);
}

.process-intro {
  display: grid;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.process-intro .section-heading {
  max-width: 680px;
}

.online-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-pill);
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.79rem;
  font-weight: 600;
  white-space: nowrap;
}

.online-pill svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-steps {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 26px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: var(--sage-300);
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-rows: 54px 1fr;
}

.process-steps li:not(:last-child) {
  padding-right: 2rem;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 8px solid var(--sage-50);
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-600);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}

.process-steps li > div {
  padding-top: 1.5rem;
}

.process-steps h3 {
  margin-bottom: 0.65rem;
  font-size: 1.5rem;
}

.process-steps p {
  margin: 0;
  color: var(--warm-gray-600);
  font-size: 0.87rem;
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--sage-200);
  border-bottom: 1px solid var(--sage-200);
}

.process-cta p {
  margin: 0;
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Experience */
.experience {
  background: var(--paper);
}

.experience-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3.5rem, 8vw, 8rem);
}

.experience-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.experience-signature {
  margin-top: 3rem;
  color: var(--sage-400);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-style: italic;
  opacity: 0.75;
  transform: rotate(-4deg);
  transform-origin: left center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 2.4rem;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 20px;
  left: 7px;
  width: 1px;
  content: "";
  background: var(--sage-300);
}

.timeline li {
  position: relative;
  padding: 0 0 2.7rem 1.1rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 8px;
  left: -2.4rem;
  width: 15px;
  height: 15px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--sage-500);
  box-shadow: 0 0 0 1px var(--sage-400);
}

.timeline-date {
  margin-bottom: 0.35rem;
  color: var(--sage-600);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
  line-height: 1.25;
}

.timeline li > p:last-child {
  margin: 0;
  color: var(--warm-gray-600);
  font-size: 0.9rem;
}

/* FAQ */
.faq-section {
  background: var(--blush-50);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-intro .text-link {
  margin-top: 1rem;
}

.accordion {
  border-top: 1px solid var(--warm-gray-300);
}

.accordion details {
  border-bottom: 1px solid var(--warm-gray-300);
}

.accordion summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  color: var(--green-900);
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::marker {
  display: none;
}

.accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--sage-300);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--green-700);
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity var(--transition);
}

.accordion details[open] .accordion-icon {
  background: var(--sage-100);
  transform: rotate(180deg);
}

.accordion details[open] .accordion-icon::after {
  opacity: 0;
}

.accordion-content {
  padding: 0 3.2rem 1.45rem 0;
}

.accordion-content p {
  margin: 0;
  color: var(--warm-gray-600);
  font-size: 0.93rem;
}

/* Contact */
.contact {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 8% 4%, rgba(150, 173, 142, 0.16), transparent 28%),
    var(--green-900);
}

.contact::before {
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(3.5rem, 8vw, 7rem);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.6rem;
  font-style: normal;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list > a {
  transition: color var(--transition);
}

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

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--sage-200);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-list a > span:last-child,
.contact-list div > span:last-child {
  display: grid;
  overflow-wrap: anywhere;
}

.contact-list small {
  margin-bottom: 0.15rem;
  color: var(--sage-300);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form-wrap {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: calc(var(--radius-lg) - 10px);
  color: var(--text);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 1.8rem;
}

.form-heading p {
  margin-bottom: 0.25rem;
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.form-heading span {
  color: var(--warm-gray-600);
  font-size: 0.78rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field label {
  color: var(--green-900);
  font-size: 0.8rem;
  font-weight: 600;
}

.form-field label span {
  color: var(--warm-gray-500);
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--warm-gray-300);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: #fff;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input,
.form-field select {
  min-height: 49px;
  padding: 0.6rem 0.8rem;
}

.form-field select {
  cursor: pointer;
}

.form-field select:invalid {
  color: var(--warm-gray-500);
}

.form-field select option {
  color: var(--text);
}

.form-field textarea {
  min-height: 125px;
  padding: 0.8rem;
  line-height: 1.55;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--sage-400);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(117, 143, 111, 0.14);
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid {
  border-color: #9c5360;
}

.form-field small {
  color: var(--warm-gray-600);
  font-size: 0.72rem;
  line-height: 1.5;
}

.checkbox-field {
  display: grid;
  align-items: start;
  margin: 0.4rem 0 1.3rem;
  grid-template-columns: 21px 1fr;
  gap: 0.65rem;
}

.checkbox-field input {
  width: 19px;
  height: 19px;
  margin: 0.17rem 0 0;
  accent-color: var(--green-800);
}

.checkbox-field label {
  color: var(--warm-gray-600);
  font-size: 0.77rem;
  line-height: 1.6;
}

.checkbox-field a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  display: none;
  color: #8c4653;
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-error[data-fs-active]:not(:empty) {
  display: block;
}

.checkbox-error {
  grid-column: 2;
}

.form-error-general[data-fs-active]:not(:empty) {
  margin: 0 0 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(140, 70, 83, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(140, 70, 83, 0.06);
}

[data-fs-field][aria-invalid="true"] {
  border-color: #9c5360;
}

[data-fs-submit-btn]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.response-time {
  margin: 0.75rem 0 0;
  color: var(--warm-gray-500);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.contact-success {
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: calc(var(--radius-lg) - 10px);
  color: var(--warm-gray-600);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  text-align: center;
}

.contact-success[hidden] {
  display: none;
}

.contact-form-wrap .contact-success[data-fs-active] {
  display: flex;
}

.contact-success-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid var(--sage-200);
  border-radius: 50%;
  color: var(--sage-600);
  background: var(--sage-100);
}

.contact-success-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.contact-success h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.contact-success p {
  max-width: 480px;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.contact-success-lead {
  color: var(--green-800);
  font-weight: 600;
}

.contact-success .contact-success-closing {
  margin: 0.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sage-200);
  color: var(--green-700);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
}

/* Footer */
.site-footer {
  color: var(--warm-gray-600);
  background: #f3f1ec;
}

.footer-grid {
  display: grid;
  padding-block: clamp(3.7rem, 7vw, 5.5rem);
  grid-template-columns: 1.15fr 1.2fr 0.8fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.brand-footer {
  margin-bottom: 1.2rem;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  font-size: 0.86rem;
}

.footer-info h2,
.footer-contacts h2 {
  margin-bottom: 1rem;
  color: var(--green-900);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-info p,
.footer-contacts a {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.79rem;
  line-height: 1.6;
}

.footer-contacts a {
  overflow-wrap: anywhere;
  transition: color var(--transition);
}

.footer-contacts a:hover {
  color: var(--green-800);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--warm-gray-300);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-bottom a {
  transition: color var(--transition);
}

.footer-bottom a:hover,
.footer-bottom a[aria-current="page"] {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legal pages */
.legal-page {
  background: var(--sage-50);
}

.legal-header-inner {
  max-width: var(--container);
}

.legal-hero {
  padding: calc(var(--header-height) + 5.5rem) 0 4rem;
  background:
    radial-gradient(circle at 85% 25%, rgba(246, 233, 231, 0.85), transparent 25%),
    linear-gradient(145deg, var(--warm-white), var(--sage-50));
  text-align: center;
}

.legal-hero-inner {
  max-width: 760px;
}

.legal-hero .eyebrow {
  justify-content: center;
}

.legal-hero h1 {
  margin-bottom: 0.8rem;
}

.legal-hero > p,
.legal-hero-inner > p:not(.eyebrow) {
  color: var(--warm-gray-600);
}

.legal-updated {
  margin-top: 1.4rem;
  font-size: 0.78rem;
}

.legal-content {
  padding-top: 4rem;
}

.legal-layout {
  display: grid;
  align-items: start;
  max-width: 1080px;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 3rem;
}

.legal-index {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: grid;
  gap: 0.7rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 250, 0.7);
}

.legal-index p {
  margin-bottom: 0.2rem;
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-index a {
  color: var(--warm-gray-600);
  font-size: 0.8rem;
  line-height: 1.4;
  transition: color var(--transition), transform var(--transition);
}

.legal-index a:hover {
  color: var(--green-800);
  transform: translateX(3px);
}

.legal-card {
  min-width: 0;
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(117, 143, 111, 0.14);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-card section {
  padding-block: 1.9rem;
  border-bottom: 1px solid var(--warm-gray-100);
}

.legal-card section:first-of-type {
  padding-top: 2.5rem;
}

.legal-card section:last-of-type {
  border-bottom: 0;
}

.legal-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
}

.legal-card h3 {
  margin: 1.35rem 0 0.45rem;
  color: var(--green-900);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-card p,
.legal-card li {
  color: var(--warm-gray-600);
  font-size: 0.92rem;
}

.legal-card p {
  margin-bottom: 0.9rem;
}

.legal-card ul {
  padding-left: 1.25rem;
}

.legal-card a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-card code {
  padding: 0.1em 0.32em;
  border-radius: 0.3rem;
  background: var(--sage-50);
  color: var(--green-900);
  font-size: 0.86em;
  overflow-wrap: anywhere;
}

.legal-table-wrap {
  max-width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-sm);
  background: var(--paper);
  scrollbar-width: thin;
}

.legal-table-wrap:focus-visible {
  outline: 3px solid var(--sage-300);
  outline-offset: 3px;
}

.legal-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  text-align: left;
}

.legal-table-cookie {
  min-width: 1220px;
}

.legal-table th,
.legal-table td {
  padding: 0.8rem 0.85rem;
  border-right: 1px solid var(--sage-200);
  border-bottom: 1px solid var(--sage-200);
  vertical-align: top;
  color: var(--warm-gray-600);
  font-size: 0.75rem;
  line-height: 1.55;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  background: var(--sage-100);
  color: var(--green-900);
  font-weight: 600;
}

.legal-table tbody tr:nth-child(even) {
  background: rgba(239, 244, 237, 0.38);
}

.legal-notice {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-md);
  background: var(--sage-50);
}

.legal-notice strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--green-900);
}

.legal-notice p {
  margin: 0;
  font-size: 0.83rem;
}

.legal-disclaimer {
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--blush-200);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--blush-50);
}

.legal-disclaimer p {
  margin: 0;
  font-size: 0.78rem;
}

.cookie-summary {
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-sm);
}

.cookie-summary-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.cookie-summary-row + .cookie-summary-row {
  border-top: 1px solid var(--sage-200);
}

.cookie-summary-row span {
  padding: 0.75rem 0.9rem;
  color: var(--warm-gray-600);
  font-size: 0.78rem;
}

.cookie-summary-row span + span {
  border-left: 1px solid var(--sage-200);
}

.cookie-summary-head {
  background: var(--sage-100);
}

.cookie-summary-head span {
  color: var(--green-900);
  font-weight: 600;
}

.legal-footer .footer-bottom {
  min-height: 78px;
  border-top: 0;
}

/* Motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

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

  .header-brand .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .header-brand .brand-mark img {
    top: -4.5px;
    width: 114px;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy span {
    font-size: 0.61rem;
  }

  .main-nav {
    gap: 0.9rem;
  }

  .nav-list {
    gap: 0.7rem;
  }

  .nav-list a {
    font-size: 0.69rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 3.5rem;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  }

  .portrait-placeholder {
    min-height: 500px;
  }

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

  .area-card {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 12px 10px;
    border: 1px solid var(--sage-200);
    border-radius: 50%;
    background: var(--paper);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 1.5px;
    margin: auto;
    background: var(--green-900);
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 390px);
    height: 100dvh;
    align-items: stretch;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    background: var(--paper);
    box-shadow: -20px 0 50px rgba(36, 63, 54, 0.14);
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 300ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--warm-gray-100);
  }

  .nav-list a {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 0.7rem 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.22rem;
    font-weight: 600;
  }

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

  .main-nav .nav-cta {
    display: inline-flex;
    margin-top: auto;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 999;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(36, 63, 54, 0.28);
    cursor: default;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.75fr);
    gap: 2.2rem;
  }

  .portrait-placeholder {
    min-height: 430px;
    border-width: 7px;
  }

  .portrait-badge {
    bottom: 35px;
    left: -20px;
    padding: 0.75rem 0.9rem;
    font-size: 0.7rem;
  }

  .about-grid,
  .experience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about .section-heading,
  .experience-intro,
  .faq-intro {
    position: static;
  }

  .quote-card {
    max-width: 560px;
  }

  .experience .section-heading {
    max-width: 700px;
  }

  .experience-signature {
    display: none;
  }

  .faq-intro {
    max-width: 670px;
  }

  .contact-grid {
    align-items: start;
    grid-template-columns: minmax(0, 0.72fr) minmax(400px, 1.28fr);
    gap: 2.5rem;
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 5rem;
  }

  .hero::after {
    height: 45px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .portrait-stage {
    width: min(88%, 430px);
  }

  .portrait-placeholder {
    min-height: 480px;
  }

  .portrait-badge {
    left: -32px;
  }

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

  .audience-card {
    max-width: 600px;
    margin-inline: auto;
  }

  .process-intro {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .online-pill {
    justify-self: start;
    white-space: normal;
  }

  .process-steps {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 26px;
    width: 1px;
    height: auto;
  }

  .process-steps li,
  .process-steps li:not(:last-child) {
    min-height: 180px;
    padding: 0 0 2.5rem;
    grid-template-columns: 54px 1fr;
    grid-template-rows: 1fr;
    gap: 1.4rem;
  }

  .process-steps li:last-child {
    min-height: 130px;
  }

  .process-steps li > div {
    padding-top: 0.45rem;
  }

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

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

  .contact-copy {
    max-width: 620px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 0.9rem 1rem;
    gap: 1rem;
    scrollbar-width: thin;
  }

  .legal-index p {
    display: none;
  }

  .legal-index a {
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    gap: 0.55rem;
  }

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

  .header-brand .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .header-brand .brand-mark img {
    top: -4.25px;
    width: 109px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.56rem;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .main-nav {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

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

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

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

  .portrait-stage {
    width: min(94%, 380px);
  }

  .portrait-placeholder {
    min-height: 410px;
    border-radius: 190px 190px 25px 25px;
  }

  .portrait-caption {
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
  }

  .portrait-caption span {
    font-size: 1.4rem;
  }

  .portrait-badge {
    bottom: 27px;
    left: -10px;
  }

  .about-grid {
    gap: 2.3rem;
  }

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

  .area-card {
    min-height: 250px;
    padding: 1.9rem 1.65rem;
  }

  .area-icon {
    margin-bottom: 1.7rem;
  }

  .audience-card,
  .audience-card:nth-child(1),
  .audience-card:nth-child(3) {
    border-radius: var(--radius-md);
  }

  .process-steps li,
  .process-steps li:not(:last-child) {
    gap: 1rem;
  }

  .process-cta {
    padding-inline: 0;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline li {
    padding-left: 0.7rem;
  }

  .timeline-dot {
    left: -2rem;
  }

  .accordion summary {
    min-height: 74px;
    font-size: 1.22rem;
  }

  .accordion-content {
    padding-right: 0;
  }

  .contact-grid {
    gap: 2.3rem;
  }

  .contact-form-wrap {
    padding: 0.6rem;
    border-radius: var(--radius-md);
  }

  .contact-form,
  .contact-success {
    padding: 1.35rem;
    border-radius: calc(var(--radius-md) - 5px);
  }

  .contact-success {
    min-height: 440px;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .legal-header-inner .button {
    min-height: 40px;
    padding: 0.55rem 0.8rem;
    font-size: 0.72rem;
  }

  .legal-header-inner .brand-copy span {
    display: none;
  }

  .legal-hero {
    padding-top: calc(var(--header-height) + 4rem);
  }

  .legal-card {
    border-radius: var(--radius-md);
  }

  .cookie-summary-row {
    grid-template-columns: 1fr;
  }

  .cookie-summary-row span + span {
    border-top: 1px solid var(--sage-200);
    border-left: 0;
  }

  .cookie-summary-head {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .header-brand .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .header-brand .brand-mark img {
    top: -4px;
    width: 104px;
  }

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

  .portrait-badge {
    display: none;
  }

  .contact-list > a,
  .contact-list > div {
    align-items: flex-start;
  }
}

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

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

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

@media print {
  .site-header,
  .site-footer,
  .legal-index,
  .skip-link {
    display: none !important;
  }

  body,
  .legal-page {
    color: #000;
    background: #fff;
  }

  .legal-hero {
    padding: 2rem 0;
    background: #fff;
  }

  .legal-layout {
    display: block;
  }

  .legal-card {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
