@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/cormorant-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/cormorant-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/cormorant-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/cormorant-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #15241f;
  --ink-soft: #41514b;
  --forest: #17352e;
  --forest-2: #20453b;
  --forest-3: #2c5549;
  --sage: #8f9e8a;
  --sage-soft: #c7cfbf;
  --ivory: #f5f1e9;
  --ivory-2: #ece6dc;
  --cream: #ded3c4;
  --white: #fffdf9;
  --clay: #aa6f5e;
  --line: rgba(21, 36, 31, 0.16);
  --line-light: rgba(255, 253, 249, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --container: min(88vw, 1380px);
  --header-h: 96px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --shadow-soft: 0 26px 80px rgba(23, 53, 46, 0.13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--ivory);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.loading {
  overflow: hidden;
}

::selection {
  background: var(--forest);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ivory-2);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--ivory-2);
  border-radius: 999px;
  background: var(--forest-3);
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
}

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

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

p {
  text-wrap: pretty;
}

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

.section {
  position: relative;
  padding-block: clamp(6.5rem, 10vw, 10.5rem);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  border-radius: 4px;
  background: var(--forest);
  color: var(--white);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

.page-loader {
  position: fixed;
  z-index: 9999;
  display: grid;
  inset: 0;
  place-items: center;
  background: var(--forest);
  color: var(--white);
  transition:
    clip-path 1s var(--ease-out) 0.15s,
    visibility 0s 1.2s;
  clip-path: inset(0 0 0 0);
}

.is-loaded .page-loader {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

.loader-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.08em;
}

.loader-mark i {
  display: block;
  width: 1px;
  height: 4.8rem;
  margin-inline: 1rem 1.25rem;
  transform: rotate(24deg) scaleY(0);
  transform-origin: top;
  background: var(--sage);
  animation: loader-divider 0.8s var(--ease-out) forwards;
}

.loader-mark span {
  opacity: 0;
  transform: translateY(12px);
  animation: loader-letter 0.7s var(--ease-out) 0.15s forwards;
}

.loader-mark span:last-child {
  animation-delay: 0.27s;
}

.loader-line {
  position: absolute;
  right: 10vw;
  bottom: 10vh;
  left: 10vw;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line i {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--sage-soft);
  animation: loader-progress 1s var(--ease-smooth) forwards;
}

@keyframes loader-divider {
  to { transform: rotate(24deg) scaleY(1); }
}

@keyframes loader-letter {
  to { opacity: 1; transform: none; }
}

@keyframes loader-progress {
  to { transform: translateX(0); }
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clay);
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding-inline: 3.5vw;
  color: var(--forest);
  transition:
    height 0.45s var(--ease-out),
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.45s var(--ease-out);
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(245, 241, 233, 0.88);
  box-shadow: 0 1px 0 rgba(21, 36, 31, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.8rem;
  width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-type strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-type small {
  margin-top: 0.38rem;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 2.3vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 0.45s var(--ease-out);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.85rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.header-cta:hover {
  background: var(--forest);
  color: var(--white);
}

.header-cta svg,
.button svg,
.text-link svg,
.line-link svg,
.blog-link svg,
.contact-card svg,
.back-top svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 900;
  visibility: hidden;
  inset: 0;
  overflow: auto;
  background: var(--forest);
  color: var(--white);
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.75s var(--ease-out),
    visibility 0s 0.75s;
}

.mobile-menu.is-open {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition:
    clip-path 0.75s var(--ease-out),
    visibility 0s;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 8.5rem 7vw 3rem;
}

.mobile-menu-inner > p {
  margin-bottom: 1.5rem;
  color: var(--sage-soft);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-menu nav {
  border-top: 1px solid var(--line-light);
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1.3rem;
  padding-block: 0.68rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 8vw, 4rem);
  line-height: 1;
}

.mobile-menu nav span {
  color: var(--sage-soft);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.mobile-menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: auto;
  padding-top: 2.5rem;
  color: var(--sage-soft);
  font-size: 0.75rem;
}

.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 58px;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button-primary {
  background: var(--forest);
  color: var(--white);
}

.button-primary:hover {
  background: var(--forest-3);
  transform: translateY(-2px);
}

.button-outline {
  border-color: var(--forest);
  background: transparent;
}

.button-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--forest);
}

.button-light:hover {
  background: var(--sage-soft);
  transform: translateY(-2px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-title {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.35vw, 6.3rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.display-title em {
  color: var(--clay);
  font-weight: 500;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(2.5rem, 5vw, 5.5rem);
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  font-size: 0.55rem;
}

.section-index p {
  margin: 0;
}

.section-index-light {
  color: var(--sage-soft);
}

.section-index-light span {
  border-color: var(--line-light);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-summary {
  max-width: 31rem;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.9;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #ded5c8;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -4;
  inset: -5% 0;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-wash {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 29, 26, 0.02) 0%, rgba(242, 235, 225, 0.03) 47%, rgba(242, 235, 225, 0.68) 60%, rgba(242, 235, 225, 0.96) 100%),
    linear-gradient(0deg, rgba(21, 36, 31, 0.14) 0%, transparent 29%);
}

.hero-grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: clamp(3vw, 4.25vw, 6vw);
  width: min(39vw, 560px);
  transform: translateY(-45%);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 1.8rem;
  color: var(--forest);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-kicker i {
  font-style: normal;
}

.hero h1 {
  margin-bottom: 1.7rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(4rem, 5.75vw, 7.2rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.055em;
}

.hero-line {
  display: block;
  padding-bottom: 0.08em;
  overflow: hidden;
}

.hero-line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.1s var(--ease-out);
}

.is-loaded .hero-line > span {
  transform: translateY(0);
}

.hero-line:nth-child(2) > span {
  transition-delay: 0.1s;
}

.hero-line:nth-child(3) > span {
  transition-delay: 0.2s;
}

.hero-line-serif {
  color: var(--clay);
  font-style: italic;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 2.1rem;
  color: #344a42;
  font-size: clamp(0.87rem, 1vw, 1rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid rgba(21, 36, 31, 0.35);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.text-link svg {
  width: 18px;
  transition: transform 0.35s var(--ease-out);
}

.text-link:hover svg {
  transform: translateX(5px);
}

[data-hero-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s ease 0.5s,
    transform 0.8s var(--ease-out) 0.5s;
}

.is-loaded [data-hero-reveal] {
  opacity: 1;
  transform: none;
}

.hero-copy[data-hero-reveal] {
  transition-delay: 0.62s;
}

.hero-actions[data-hero-reveal] {
  transition-delay: 0.73s;
}

.hero-side-label {
  position: absolute;
  top: 50%;
  left: 2.1vw;
  color: rgba(21, 36, 31, 0.55);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.scroll-cue {
  position: absolute;
  bottom: 2.4rem;
  left: 3.4vw;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 72px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  width: 100%;
  height: 42%;
  background: var(--white);
  content: "";
  animation: scroll-cue 2s var(--ease-smooth) infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(-110%); }
  55%, 100% { transform: translateY(250%); }
}

.hero-facts {
  position: absolute;
  right: 4vw;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--forest);
}

.hero-facts > i {
  width: 1px;
  height: 33px;
  background: rgba(21, 36, 31, 0.22);
}

.hero-facts div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
}

.hero-facts span {
  margin-top: 0.32rem;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ivory);
  color: var(--forest);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding-block: 1rem;
  animation: marquee 42s linear infinite;
  will-change: transform;
}

.marquee span {
  padding-inline: 1.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.marquee i {
  color: var(--clay);
  font-size: 0.55rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.manifesto {
  min-height: 760px;
  overflow: hidden;
  background: var(--ivory);
}

.manifesto .container {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 4vw;
}

.manifesto-copy {
  position: relative;
  z-index: 1;
  max-width: 1030px;
}

.manifesto-copy .display-title {
  font-size: clamp(3.4rem, 5.25vw, 6.2rem);
  line-height: 1.02;
}

.manifesto-note {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.4rem;
  max-width: 520px;
  margin-top: 3.5rem;
  margin-left: auto;
}

.manifesto-note .line-mark {
  height: 1px;
  margin-top: 0.8rem;
  background: var(--clay);
}

.manifesto-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.9;
}

.manifesto-line {
  position: absolute;
  right: -5%;
  bottom: 6%;
  left: -5%;
  width: 110%;
  height: 62%;
  overflow: visible;
  pointer-events: none;
}

.manifesto-line .flow-path {
  fill: none;
  stroke: rgba(170, 111, 94, 0.35);
  stroke-width: 1.4;
  stroke-dasharray: var(--flow-length, 2000);
  stroke-dashoffset: calc(var(--flow-length, 2000) * (1 - var(--flow-progress, 0)));
}

.manifesto-line .flow-dot {
  fill: var(--clay);
  offset-path: path("M-20 145C180 45 278 270 462 210s230-142 405-34 265 166 456 38");
  offset-distance: calc(var(--flow-progress, 0) * 100%);
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(21, 36, 31, 0.06);
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.about-visual {
  position: relative;
}

.image-frame {
  position: relative;
  width: min(100%, 650px);
  margin-left: auto;
  padding: 1rem 1rem 0 0;
}

.image-frame::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 65%;
  height: 68%;
  border: 1px solid var(--clay);
  content: "";
}

.image-frame picture {
  display: block;
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: url("../images/about-profile-v2-640.webp") center / cover no-repeat;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}

.about-visual:hover .image-frame img {
  transform: scale(1.025);
}

.image-frame-line {
  position: absolute;
  z-index: 2;
  right: -1.35rem;
  bottom: 8%;
  width: 82px;
  height: 1px;
  background: var(--clay);
}

.about-seal {
  position: absolute;
  z-index: 3;
  right: -2.6rem;
  bottom: 5%;
  display: grid;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 15px 45px rgba(21, 36, 31, 0.15);
  place-items: center;
}

.about-seal svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: seal-spin 24s linear infinite;
}

.about-seal text {
  fill: var(--forest);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.about-seal span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.55rem;
}

@keyframes seal-spin {
  to { transform: rotate(360deg); }
}

.about-content {
  max-width: 610px;
}

.about-content .section-index {
  margin-bottom: 3rem;
}

.about-content h2 {
  margin-bottom: 1.8rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6.7rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.about-content > p {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.about-content .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.4;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-block: 2.3rem;
  padding-block: 1.7rem;
  border-block: 1px solid var(--line);
}

.about-values span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--clay);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-values p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.7;
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.line-link > span {
  display: grid;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.line-link:hover > span {
  transform: translateX(4px);
  background: var(--forest);
  color: var(--white);
}

.therapy-intro {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.therapy-intro::after {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(255, 255, 255, 0.018),
    0 0 0 14vw rgba(255, 255, 255, 0.012);
  content: "";
}

.therapy-intro .section-index {
  position: relative;
  z-index: 1;
}

.therapy-head {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.therapy-head .eyebrow {
  color: var(--sage-soft);
}

.therapy-head .display-title em {
  color: #c9ad9d;
}

.therapy-copy {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  max-width: 830px;
  margin-top: 3rem;
  margin-left: auto;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.86rem;
}

.therapy-principles {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(4.5rem, 8vw, 8rem);
  border-top: 1px solid var(--line-light);
}

.therapy-principles article {
  min-height: 270px;
  padding: 2rem 2.5rem 1rem;
  border-right: 1px solid var(--line-light);
}

.therapy-principles article:first-child {
  border-left: 1px solid var(--line-light);
}

.therapy-principles span {
  color: var(--sage-soft);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.therapy-principles h3 {
  margin: 4.5rem 0 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.therapy-principles p {
  margin: 0;
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.77rem;
}

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

.areas-list {
  border-top: 1px solid var(--line);
  perspective: 1200px;
}

.area-row {
  display: grid;
  position: relative;
  grid-template-columns: 0.1fr 0.65fr 0.8fr 50px;
  align-items: start;
  gap: 2.5vw;
  min-height: 235px;
  padding-block: 2.7rem;
  border-bottom: 1px solid var(--line);
  transform-style: preserve-3d;
  transition:
    background 0.45s ease,
    padding 0.45s var(--ease-out),
    transform 0.2s ease;
}

.area-row::before {
  position: absolute;
  z-index: -1;
  inset: 0 -2rem;
  transform: scaleY(0);
  background: var(--white);
  content: "";
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}

.area-row:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.area-row:hover {
  padding-inline: 1rem;
}

.area-no {
  color: var(--clay);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.area-row > div > p {
  margin-bottom: 1.4rem;
  color: var(--clay);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.area-row h3 {
  max-width: 440px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.area-row ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  list-style: none;
}

.area-row li {
  position: relative;
  padding-left: 1rem;
}

.area-row li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.area-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.area-arrow svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.area-row:hover .area-arrow {
  transform: rotate(-35deg);
  background: var(--forest);
  color: var(--white);
}

.formats {
  padding-top: 0;
  background: var(--ivory);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.format-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(255, 253, 249, 0.34);
  transition:
    transform 0.55s var(--ease-out),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.format-card:last-child {
  border-right: 1px solid var(--line);
}

.format-card:hover {
  z-index: 2;
  transform: translateY(-12px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.format-card > span {
  align-self: flex-end;
  color: var(--clay);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
}

.format-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-top: 4.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.format-icon svg {
  width: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.format-card h3 {
  margin: auto 0 1.2rem;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1;
}

.format-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.format-card-dark {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.format-card-dark:hover {
  background: var(--forest-2);
}

.format-card-dark > span {
  color: var(--sage-soft);
}

.format-card-dark .format-icon {
  border-color: var(--line-light);
}

.format-card-dark p {
  color: rgba(255, 253, 249, 0.65);
}

.format-card-dark a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.3rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.format-card-dark a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.05fr;
  align-items: start;
  gap: clamp(5rem, 10vw, 12rem);
}

.process-sticky {
  position: sticky;
  top: 120px;
}

.process-sticky > p:not(.eyebrow) {
  max-width: 520px;
  margin: 2.2rem 0 2rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.process-sticky .button {
  margin-top: 0.7rem;
}

.process-steps {
  position: relative;
  padding-left: 7rem;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 82px;
  height: 100%;
  overflow: visible;
}

.process-line path {
  fill: none;
  stroke: var(--clay);
  stroke-width: 1.2;
  stroke-dasharray: var(--process-length, 1000);
  stroke-dashoffset: calc(var(--process-length, 1000) * (1 - var(--process-progress, 0)));
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  min-height: 260px;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-step:first-of-type {
  border-top: 1px solid var(--line);
}

.process-number {
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--clay);
  font-size: 0.58rem;
  place-items: center;
}

.process-step > div > p:first-child {
  margin-bottom: 0.7rem;
  color: var(--clay);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 1.15rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.process-step > div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.assessments {
  background: var(--ivory-2);
}

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

.assessment-panel {
  border-bottom: 1px solid var(--line);
}

.assessment-panel summary {
  display: grid;
  grid-template-columns: 0.1fr 1fr 52px;
  align-items: center;
  gap: 2rem;
  min-height: 145px;
  cursor: pointer;
  list-style: none;
}

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

.assessment-panel summary > span {
  color: var(--clay);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.assessment-panel summary small {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assessment-panel summary h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
}

.assessment-panel summary > i,
.faq summary i {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.assessment-panel summary > i::before,
.assessment-panel summary > i::after,
.faq summary i::before,
.faq summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: currentColor;
  content: "";
  transition: transform 0.35s var(--ease-out);
}

.assessment-panel summary > i::after,
.faq summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.assessment-panel[open] summary > i::after,
.faq details[open] summary i::after {
  transform: translate(-50%, -50%);
}

.assessment-content {
  padding: 0 5% 3rem 12%;
}

.assessment-content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assessment-content li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.assessment-content li::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.assessment-content p {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.assessment-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 770px;
  margin: 2.3rem 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.assessment-disclaimer svg {
  flex: 0 0 auto;
  width: 18px;
  margin-top: 0.15rem;
  fill: none;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.education {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.education::before {
  position: absolute;
  top: -10vw;
  left: -12vw;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  box-shadow:
    0 0 0 6vw rgba(255, 255, 255, 0.016),
    0 0 0 12vw rgba(255, 255, 255, 0.012);
  content: "";
}

.education-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  align-items: start;
  gap: clamp(5rem, 10vw, 12rem);
}

.education-heading {
  position: sticky;
  top: 120px;
}

.education-heading .eyebrow {
  color: var(--sage-soft);
}

.education-heading .display-title em {
  color: #c9ad9d;
}

.education-heading > p:last-child {
  max-width: 520px;
  margin-top: 2.3rem;
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.84rem;
}

.timeline {
  position: relative;
  padding-left: 5rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 1px;
  background: var(--line-light);
}

.timeline-line i {
  display: block;
  width: 100%;
  height: calc(var(--timeline-progress, 0) * 100%);
  background: #c9ad9d;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  min-height: 185px;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line-light);
}

.timeline-item::before {
  position: absolute;
  top: 2.45rem;
  left: -4.35rem;
  width: 11px;
  height: 11px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: #c9ad9d;
  box-shadow: 0 0 0 1px #c9ad9d;
  content: "";
}

.timeline-item time {
  padding-top: 0.25rem;
  color: var(--sage-soft);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.timeline-item h3 {
  margin-bottom: 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
}

.timeline-item p,
.timeline-item span {
  display: block;
  margin: 0;
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.69rem;
}

.timeline-item span {
  margin-top: 0.25rem;
  color: rgba(255, 253, 249, 0.43);
}

.quote-section {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  background: var(--cream);
  place-items: center;
}

.quote-section .container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  text-align: center;
}

.quote-section .eyebrow {
  justify-content: center;
}

.quote-section blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.8vw, 6.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.quote-section blockquote em {
  color: var(--clay);
  font-weight: 500;
}

.quote-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.quote-orbit i {
  position: absolute;
  border: 1px solid rgba(21, 36, 31, 0.08);
  border-radius: 50%;
  inset: 0;
}

.quote-orbit i:nth-child(2) {
  inset: 11%;
}

.quote-orbit i:nth-child(3) {
  inset: 23%;
}

.blog {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blog-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--ivory);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.45s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.blog-art {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: var(--forest);
}

.blog-art > span {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.55rem;
  place-items: center;
}

.blog-art svg {
  width: 100%;
  height: 100%;
  transition: transform 1s var(--ease-out);
}

.blog-card:hover .blog-art svg {
  transform: scale(1.06);
}

.blog-art-anxiety {
  background: #9a8475;
}

.blog-art-anxiety path {
  fill: none;
  stroke: rgba(255, 253, 249, 0.72);
  stroke-width: 1.4;
}

.blog-art-anxiety path:nth-child(2) {
  stroke: rgba(255, 253, 249, 0.28);
}

.blog-art-anxiety circle {
  fill: var(--forest);
}

.blog-art-sleep {
  background: var(--forest);
}

.blog-art-sleep circle,
.blog-art-sleep path {
  fill: none;
  stroke: rgba(255, 253, 249, 0.75);
  stroke-width: 1.2;
}

.blog-art-sleep .moon-cut {
  fill: var(--forest);
  stroke: none;
}

.blog-art-sleep circle:not(:first-child):not(.moon-cut) {
  fill: #c9ad9d;
  stroke: none;
}

.blog-card-content {
  padding: clamp(1.8rem, 3vw, 3rem);
}

.blog-card-content > p {
  margin-bottom: 1rem;
  color: var(--clay);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h3 {
  min-height: 2.15em;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-link i {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.blog-card:hover .blog-link i {
  transform: translateX(4px);
  background: var(--forest);
  color: var(--white);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: start;
  gap: clamp(5rem, 10vw, 12rem);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:last-child {
  max-width: 500px;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 105px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  line-height: 1.2;
}

.faq-list details > p {
  max-width: 620px;
  margin: 0;
  padding: 0 5rem 2.2rem 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.contact {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.contact-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.contact-bg svg {
  width: 100%;
  height: 100%;
}

.contact-bg path {
  fill: none;
  stroke: rgba(255, 253, 249, 0.18);
  stroke-width: 1;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-heading {
  max-width: 1010px;
}

.contact-heading .eyebrow {
  color: var(--sage-soft);
}

.contact-heading h2 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8.2rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.contact-heading h2 em {
  color: #c9ad9d;
  font-weight: 500;
}

.contact-heading > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 253, 249, 0.65);
  font-size: 0.87rem;
}

.contact-heading .button {
  margin-top: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.8fr;
  gap: 0;
  margin-top: clamp(5rem, 8vw, 8rem);
  border-block: 1px solid var(--line-light);
}

.contact-card {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 210px;
  padding: 2rem;
  border-right: 1px solid var(--line-light);
  transition: background 0.4s ease;
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.contact-card > span {
  color: var(--sage-soft);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: auto;
  padding-right: 3rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

.contact-card i {
  position: absolute;
  right: 1.8rem;
  bottom: 1.8rem;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  place-items: center;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.contact-card:hover i {
  transform: translateX(4px);
  background: var(--white);
  color: var(--forest);
}

.urgent-note {
  max-width: 680px;
  margin: 2rem 0 0 auto;
  color: rgba(255, 253, 249, 0.47);
  font-size: 0.66rem;
  text-align: right;
}

.site-footer {
  background: #10251f;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-block: 5.5rem;
}

.brand-footer {
  align-self: start;
}

.brand-footer .brand-mark {
  width: 62px;
  height: 62px;
}

.brand-footer .brand-type strong {
  font-size: 2rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
}

.footer-nav span {
  margin-bottom: 1.4rem;
  color: var(--sage-soft);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a {
  width: max-content;
  margin-bottom: 0.65rem;
  color: rgba(255, 253, 249, 0.65);
  font-family: var(--serif);
  font-size: 1.3rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.55fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: 1.7rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 249, 0.42);
  font-size: 0.59rem;
}

.footer-bottom p {
  margin: 0;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 253, 249, 0.75);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 800;
  right: 1.6rem;
  bottom: 1.6rem;
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: #266d58;
  box-shadow: 0 10px 30px rgba(23, 53, 46, 0.3);
  color: var(--white);
  place-items: center;
  transition:
    transform 0.35s var(--ease-out),
    background 0.35s ease;
}

.whatsapp-float::before {
  position: absolute;
  border: 1px solid rgba(38, 109, 88, 0.5);
  border-radius: 50%;
  content: "";
  inset: -6px;
  animation: float-pulse 2.7s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  background: #1f8365;
}

.whatsapp-float svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

@keyframes float-pulse {
  0%, 45% { opacity: 0.55; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.35); }
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.85s ease,
    transform 1s var(--ease-out);
}

.js [data-reveal="image"] {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  transform: none;
  transition: clip-path 1.25s var(--ease-out);
}

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

.js [data-reveal="image"].is-visible {
  clip-path: inset(0 0 0 0);
}

/* Article and utility pages */
.subpage {
  background: var(--ivory);
}

.subpage .site-header {
  color: var(--forest);
}

.article-hero {
  position: relative;
  padding: calc(var(--header-h) + 7rem) 0 6rem;
  overflow: hidden;
  background: var(--cream);
}

.article-hero::after {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 50vw;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 36, 31, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(21, 36, 31, 0.025),
    0 0 0 14vw rgba(21, 36, 31, 0.018);
  content: "";
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-back svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transform: rotate(180deg);
}

.article-meta {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
  color: var(--clay);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 7.7vw, 9rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.article-deck {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.article-body {
  display: grid;
  grid-template-columns: 0.26fr minmax(0, 720px) 0.26fr;
  justify-content: center;
  gap: 5vw;
  padding-block: clamp(5rem, 9vw, 9rem);
}

.article-share {
  position: sticky;
  top: 120px;
  align-self: start;
}

.article-share > span,
.article-toc > span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--clay);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-share a {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.85rem;
  place-items: center;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.article-share a:hover {
  background: var(--forest);
  color: var(--white);
}

.article-content {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.62rem);
  line-height: 1.68;
}

.article-content > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--clay);
  font-size: 4.4em;
  line-height: 0.72;
}

.article-content h2 {
  margin: 4.2rem 0 1.5rem;
  color: var(--forest);
  font-size: clamp(2.7rem, 4.2vw, 4.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul {
  margin: 2rem 0;
  padding: 2rem 2.3rem;
  border-left: 2px solid var(--clay);
  background: var(--white);
  list-style: none;
}

.article-content li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.65;
}

.article-content li::before {
  position: absolute;
  top: 1.03rem;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.article-note {
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.7rem;
  line-height: 1.7;
}

.article-toc {
  position: sticky;
  top: 120px;
  align-self: start;
}

.article-toc a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.article-toc a:hover {
  color: var(--clay);
}

.article-next {
  padding-block: 5rem;
  background: var(--forest);
  color: var(--white);
}

.article-next a {
  display: grid;
  grid-template-columns: 0.2fr 1fr auto;
  align-items: center;
  gap: 3rem;
}

.article-next span {
  color: var(--sage-soft);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-next h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.article-next i {
  display: grid;
  width: 72px;
  height: 72px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  place-items: center;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.article-next i svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.article-next a:hover i {
  transform: translateX(8px);
  background: var(--white);
  color: var(--forest);
}

.utility-page {
  min-height: 70vh;
  padding: calc(var(--header-h) + 7rem) 0 7rem;
}

.utility-inner {
  max-width: 850px;
}

.utility-inner .eyebrow {
  margin-bottom: 1.5rem;
}

.utility-inner h1 {
  margin-bottom: 3rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
}

.utility-inner h2 {
  margin: 3rem 0 1rem;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
}

.utility-inner p,
.utility-inner li {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.error-page {
  display: grid;
  min-height: 100svh;
  padding: 7rem 5vw;
  background: var(--forest);
  color: var(--white);
  place-items: center;
  text-align: center;
}

.error-page span {
  display: block;
  color: var(--sage-soft);
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 0.7;
}

.error-page h1 {
  margin-block: 2rem 1rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
}

.error-page p {
  max-width: 560px;
  color: rgba(255, 253, 249, 0.62);
}

.error-page .button {
  margin-top: 1rem;
}

@media (max-width: 1180px) {
  :root {
    --container: min(91vw, 1180px);
  }

  .desktop-nav {
    gap: 1.2rem;
  }

  .desktop-nav a {
    font-size: 0.59rem;
  }

  .hero-content {
    right: 3.5vw;
    width: 41vw;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 5.9vw, 6rem);
  }

  .hero-facts {
    right: 3vw;
    gap: 1rem;
  }

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

  .format-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .format-card:nth-child(n+3) {
    border-top: 0;
  }

  .process-grid,
  .education-grid,
  .faq-grid {
    gap: 6vw;
  }

  .process-steps {
    padding-left: 5rem;
  }

  .article-body {
    grid-template-columns: 0.14fr minmax(0, 700px);
  }

  .article-toc {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 82px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 5vw;
  }

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

  .menu-toggle {
    display: block;
    position: relative;
    justify-self: end;
  }

  .site-header.menu-active {
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero-media {
    inset: 0 0 38%;
  }

  .hero-media img {
    height: 100%;
    object-position: 48% 30%;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, var(--ivory) 0%, rgba(245, 241, 233, 0.98) 36%, rgba(245, 241, 233, 0.12) 67%, rgba(245, 241, 233, 0.03) 100%);
  }

  .hero-content {
    top: auto;
    right: 6vw;
    bottom: 6.5rem;
    left: 6vw;
    width: auto;
    transform: none;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(4rem, 10vw, 6.5rem);
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-facts,
  .hero-side-label {
    display: none;
  }

  .scroll-cue {
    right: 3vw;
    bottom: 2rem;
    left: auto;
    color: var(--forest);
  }

  .scroll-cue i {
    background: rgba(21, 36, 31, 0.2);
  }

  .scroll-cue i::after {
    background: var(--forest);
  }

  .manifesto .container {
    display: block;
  }

  .manifesto .section-index {
    margin-bottom: 3rem;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 7vw;
  }

  .about-seal {
    right: -1.2rem;
    width: 95px;
    height: 95px;
  }

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

  .area-row {
    grid-template-columns: 0.1fr 1fr 46px;
  }

  .area-row ul {
    grid-column: 2 / 3;
    margin-top: 1.2rem;
  }

  .area-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .process-grid,
  .education-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .process-sticky,
  .education-heading,
  .faq-heading {
    position: static;
  }

  .education-heading {
    max-width: 780px;
  }

  .assessment-content ul {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-card:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-light);
  }

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

@media (max-width: 760px) {
  :root {
    --container: 89vw;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 6rem;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-type strong {
    font-size: 1.25rem;
  }

  .brand-type small {
    font-size: 0.48rem;
  }

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

  .menu-toggle span {
    left: 11px;
  }

  .hero {
    min-height: max(800px, 100svh);
  }

  .hero-media {
    inset: 0 0 46%;
  }

  .hero-media img {
    object-position: 48% 28%;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, var(--ivory) 0%, rgba(245, 241, 233, 0.98) 44%, rgba(245, 241, 233, 0.3) 60%, rgba(245, 241, 233, 0.02) 80%);
  }

  .hero-content {
    right: 5.5vw;
    bottom: 3.6rem;
    left: 5.5vw;
  }

  .hero-kicker {
    margin-bottom: 1rem;
    font-size: 0.54rem;
  }

  .hero h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(3.4rem, 15.2vw, 5.2rem);
    line-height: 0.81;
  }

  .hero-copy {
    max-width: 96%;
    margin-bottom: 1.3rem;
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 1.2rem;
  }

  .hero-actions .button {
    min-height: 52px;
    padding-inline: 1.25rem;
  }

  .text-link {
    font-size: 0.62rem;
  }

  .scroll-cue {
    display: none;
  }

  .display-title {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }

  .section-index {
    margin-bottom: 2.6rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .manifesto {
    min-height: 700px;
  }

  .manifesto-copy .display-title {
    font-size: clamp(3.05rem, 12vw, 4.6rem);
  }

  .manifesto-note {
    grid-template-columns: 42px 1fr;
    margin-top: 2.4rem;
  }

  .manifesto-line {
    bottom: 0;
    height: 45%;
  }

  .about::before {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .image-frame {
    width: 90%;
    margin: 0;
  }

  .about-seal {
    right: 2%;
    bottom: -2rem;
  }

  .about-content h2 {
    font-size: clamp(4rem, 17vw, 5.7rem);
  }

  .therapy-copy {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-left: 0;
  }

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

  .therapy-principles article,
  .therapy-principles article:first-child {
    min-height: auto;
    padding: 2rem 0 2.3rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .therapy-principles h3 {
    margin-top: 2.2rem;
  }

  .area-row {
    grid-template-columns: 35px 1fr 40px;
    gap: 1rem;
    min-height: 0;
  }

  .area-row::before {
    inset-inline: -0.6rem;
  }

  .area-row h3 {
    font-size: 2.2rem;
  }

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

  .area-arrow {
    width: 39px;
    height: 39px;
  }

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

  .format-card,
  .format-card:nth-child(2),
  .format-card:last-child {
    min-height: 390px;
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .format-card:last-child {
    border-bottom: 1px solid var(--forest);
  }

  .format-card:hover {
    transform: none;
  }

  .format-icon {
    margin-top: 2.5rem;
  }

  .process-steps {
    padding-left: 3rem;
  }

  .process-line {
    width: 40px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    min-height: 0;
    padding-block: 2.4rem;
  }

  .process-number {
    width: 45px;
    height: 45px;
  }

  .assessment-panel summary {
    grid-template-columns: 28px 1fr 42px;
    gap: 0.8rem;
    min-height: 122px;
  }

  .assessment-panel summary > i,
  .faq summary i {
    width: 40px;
    height: 40px;
  }

  .assessment-panel summary h3 {
    font-size: 1.65rem;
  }

  .assessment-content {
    padding: 0 0 2.5rem 2.4rem;
  }

  .assessment-content ul {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 2.6rem;
  }

  .timeline-line {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .timeline-item::before {
    left: -3rem;
  }

  .quote-section {
    min-height: 590px;
  }

  .quote-section blockquote {
    font-size: clamp(3.1rem, 13vw, 4.5rem);
  }

  .quote-orbit {
    width: 130vw;
  }

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

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

  .faq-list summary {
    min-height: 95px;
  }

  .faq-list details > p {
    padding-right: 1rem;
  }

  .contact-heading h2 {
    font-size: clamp(3.7rem, 15vw, 5.7rem);
  }

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

  .contact-card,
  .contact-card:last-child {
    grid-column: auto;
    min-height: 175px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .urgent-note {
    text-align: left;
  }

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

  .footer-nav {
    gap: 2rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .back-top {
    margin-top: 1rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }

  .article-hero {
    padding: 8rem 0 4rem;
  }

  .article-back {
    margin-bottom: 3.5rem;
  }

  .article-hero h1 {
    font-size: clamp(3.8rem, 15vw, 6.2rem);
  }

  .article-body {
    display: block;
    padding-inline: 5.5vw;
  }

  .article-share {
    display: flex;
    position: static;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 3rem;
  }

  .article-share > span {
    margin: 0 0.7rem 0 0;
  }

  .article-share a {
    margin: 0;
  }

  .article-content {
    font-size: 1.25rem;
  }

  .article-next a {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }

  .article-next span {
    grid-column: 1 / -1;
  }

  .article-next i {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

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

  .mobile-menu nav a {
    font-size: 2.15rem;
  }

  .mobile-menu-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

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

  .js [data-reveal],
  .js [data-reveal="image"] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero-media {
    transform: none !important;
  }
}
