:root {
  --green: #379884;
  --green-accessible: #286d60;
  --green-deep: #214f47;
  --green-dark: #163f38;
  --green-soft: #94b8ac;
  --sage: #dfe9e3;
  --cream: #f3e9dd;
  --cream-light: #faf5ee;
  --beige: #d7bea0;
  --beige-soft: #eaddcd;
  --terracotta: #b77860;
  --ink: #263b36;
  --ink-soft: #556660;
  --line: rgba(38, 59, 54, 0.16);
  --white: #fff;
  --font-display: "Gilda Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 88px;
  --page-pad: clamp(24px, 5.8vw, 92px);
  --section-y: clamp(92px, 11vw, 168px);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--green-deep);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-user-select: none;
  user-select: none;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

p, h1, h2, h3, dl, dd {
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
}

h1 em, h2 em {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--cream);
  background: var(--green-deep);
  border-radius: 999px;
  transition: top 220ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

.section-pad {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-accessible);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #bcd3c9;
}

.statement .eyebrow {
  color: #bcd3c9;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  transition: color 450ms var(--ease), background-color 450ms var(--ease), border-color 450ms var(--ease), transform 450ms var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 450ms var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.whatsapp-symbol {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("assets/images/whatsapp.svg") center / contain no-repeat;
  mask: url("assets/images/whatsapp.svg") center / contain no-repeat;
}

.instagram-symbol {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("assets/images/instagram.svg") center / contain no-repeat;
  mask: url("assets/images/instagram.svg") center / contain no-repeat;
}

.button-primary {
  color: var(--cream-light);
  background: var(--green-deep);
}

.button-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.button-light {
  color: var(--green-dark);
  background: var(--beige-soft);
}

.button-light:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
}

.button-cream {
  color: var(--green-dark);
  background: var(--cream-light);
}

.button-cream:hover {
  background: var(--beige-soft);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--ink);
  transition: background-color 500ms var(--ease), box-shadow 500ms var(--ease), color 500ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 245, 238, 0.9);
  box-shadow: 0 1px 0 rgba(38, 59, 54, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 36px;
  padding: 0 var(--page-pad);
}

.brand {
  position: relative;
  z-index: 102;
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  justify-self: start;
  line-height: 1.2;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.brand-name {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.45vw, 23px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-role {
  margin-top: 5px;
  color: var(--green-deep);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  min-width: 44px;
  justify-content: center;
  padding-right: 4px;
  padding-left: 4px;
}

.desktop-nav a::after,
.header-cta::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 450ms var(--ease);
}

.desktop-nav a:hover::after,
.header-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  color: var(--green-deep);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  padding: calc(var(--header-height) + 58px) var(--page-pad) 74px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 15%, rgba(215, 190, 160, 0.46), transparent 30%),
    radial-gradient(circle at 80% 42%, rgba(255, 255, 255, 0.58), transparent 27%),
    linear-gradient(115deg, #fbf6ef 0%, var(--cream) 52%, #e9dac8 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 800px;
  padding-bottom: 30px;
}

.hero h1 {
  max-width: 10.2ch;
  margin-top: 26px;
  font-size: clamp(52px, 6.7vw, 108px);
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 590px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.28vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 30px;
  margin-top: 42px;
}

.text-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 600;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 450ms var(--ease);
  transform-origin: left;
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(52px, 8vh, 90px);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
}

.hero-signature::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--green-soft);
}

.hero-signature span {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  justify-self: end;
  padding: 18px 18px 44px 0;
}

.hero-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 48% 48% 26px 26px;
  background: var(--beige);
  box-shadow: 0 32px 80px rgba(33, 79, 71, 0.14);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 64%, rgba(22, 63, 56, 0.25));
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
  transition: transform 1300ms var(--ease);
}

.hero-visual:hover .hero-frame img {
  transform: scale(1.018);
}

.hero-credential {
  position: absolute;
  top: 54px;
  left: -72px;
  z-index: 4;
  width: 210px;
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  border: 1px solid rgba(38, 59, 54, 0.12);
  border-radius: 4px;
  background: rgba(250, 245, 238, 0.96);
  box-shadow: 0 22px 50px rgba(33, 79, 71, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-credential span,
.hero-credential small {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-credential span {
  color: var(--green-accessible);
  font-size: 8px;
}

.hero-credential strong {
  margin-top: 11px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
}

.hero-credential small {
  margin-top: 14px;
  padding-top: 12px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 7px;
}

.hero-inset {
  position: absolute;
  bottom: 0;
  left: -58px;
  z-index: 5;
  width: 150px;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--cream-light);
  border-radius: 46% 46% 8px 8px;
  background: var(--beige-soft);
  box-shadow: 0 24px 55px rgba(33, 79, 71, 0.2);
}

.hero-inset picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.photo-note {
  position: absolute;
  z-index: 2;
  color: var(--cream-light);
  background: rgba(22, 47, 42, 0.72);
  border-radius: 2px;
  padding: 5px 7px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.photo-note-top {
  top: 27%;
  right: 12px;
  writing-mode: vertical-rl;
}

.photo-note-bottom {
  right: 28px;
  bottom: 26px;
  text-align: right;
}

.hero-line {
  position: absolute;
  top: -28px;
  right: -20px;
  z-index: -1;
  width: 210px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1;
  opacity: 0.58;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(55, 152, 132, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 13%;
  left: -16vw;
  width: 42vw;
  height: 42vw;
}

.hero-orbit-two {
  right: -20vw;
  bottom: -32vw;
  width: 54vw;
  height: 54vw;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: var(--page-pad);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(38, 59, 54, 0.18);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--green);
  animation: scroll-line 2.2s var(--ease) infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(200%); }
}

.statement {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 180px;
  gap: clamp(34px, 5vw, 90px);
  align-items: center;
  padding: var(--section-y) var(--page-pad);
  overflow: hidden;
  color: var(--cream-light);
  background: var(--green-deep);
}

.statement::before {
  position: absolute;
  top: -40%;
  right: 4%;
  width: 50vw;
  height: 50vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.section-index {
  align-self: start;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-display);
  font-size: 34px;
}

.statement-inner {
  max-width: 1040px;
}

.statement h2 {
  margin-top: 30px;
  font-size: clamp(38px, 4.8vw, 72px);
  letter-spacing: -0.035em;
}

.statement h2 em {
  color: var(--beige);
}

.statement-copy {
  max-width: 710px;
  margin-top: 35px;
  color: rgba(247, 242, 233, 0.74);
  font-size: clamp(15px, 1.2vw, 18px);
}

.statement-mark {
  position: relative;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 242, 233, 0.22);
  border-radius: 50%;
}

.statement-mark svg {
  width: 84px;
  fill: none;
  stroke: var(--beige);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.about {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--cream-light);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.about-visual {
  position: relative;
  max-width: 570px;
}

.about-photo-wrap {
  position: relative;
  width: 86%;
  aspect-ratio: 2 / 3;
  margin-left: auto;
  overflow: hidden;
  border-radius: 48% 48% 8px 8px;
  background: var(--beige-soft);
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.about-photo-caption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: var(--cream-light);
  background: rgba(22, 47, 42, 0.72);
  border-radius: 2px;
  padding: 5px 7px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-card {
  position: absolute;
  bottom: 42px;
  left: 0;
  width: min(220px, 48%);
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--cream-light);
  background: var(--green-deep);
  box-shadow: 0 24px 60px rgba(33, 79, 71, 0.2);
}

.about-card span {
  margin-bottom: 20px;
  color: #bcd3c9;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-card strong {
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.35;
}

.about-copy {
  max-width: 760px;
}

.about h2,
.section-heading h2,
.inclusion h2,
.office h2,
.faq h2 {
  margin-top: 24px;
  font-size: clamp(42px, 5.2vw, 76px);
  letter-spacing: -0.04em;
}

.about-copy > div p {
  max-width: 610px;
  margin-top: 30px;
  color: var(--ink-soft);
}

.about-copy > div p + p {
  margin-top: 18px;
}

.about-facts {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  grid-template-columns: minmax(140px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts dt {
  color: var(--green-accessible);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts dd {
  font-size: 14px;
  line-height: 1.5;
}

.about-philosophy {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
  margin-top: clamp(90px, 10vw, 150px);
  padding-top: clamp(65px, 7vw, 100px);
  border-top: 1px solid var(--line);
}

.philosophy-intro h3 {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(38px, 4.5vw, 66px);
  letter-spacing: -0.035em;
}

.philosophy-intro h3 em {
  color: var(--green);
  font-style: italic;
}

.philosophy-intro > p:last-child {
  max-width: 520px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-card {
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.quote-card-featured {
  color: var(--cream-light);
  background: var(--green-deep);
}

.quote-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 220px;
  background: var(--beige-soft);
}

.quote-card > span {
  color: var(--green-accessible);
  font-family: var(--font-display);
  font-size: 18px;
}

.quote-card-featured > span {
  color: #bcd3c9;
}

.quote-card p {
  margin-top: 42px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.6vw, 39px);
  line-height: 1.17;
}

.services {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--sage);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.section-heading h2 {
  max-width: 840px;
}

.section-heading > p {
  padding-bottom: 8px;
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(55px, 7vw, 90px);
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.2vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(38, 59, 54, 0.12);
  border-radius: 50% 50% 22px 22px;
  background: rgba(250, 245, 238, 0.82);
  transition: color 600ms var(--ease), background-color 600ms var(--ease), transform 600ms var(--ease), border-radius 600ms var(--ease);
}

.service-card:hover {
  color: var(--cream-light);
  border-radius: 22px;
  background: var(--green-deep);
  transform: translateY(-8px);
}

.service-card-featured {
  background: var(--cream-light);
}

.card-number {
  position: absolute;
  top: 38px;
  right: 40px;
  color: var(--green-accessible);
  font-family: var(--font-display);
  font-size: 22px;
}

.service-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-top: 26px;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--sage);
  transition: color 600ms var(--ease), background-color 600ms var(--ease);
}

.service-card:hover .service-icon {
  color: var(--cream-light);
  background: rgba(255, 255, 255, 0.11);
}

.service-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.service-card h3 {
  margin-top: auto;
  padding-top: 35px;
  font-size: clamp(29px, 2.5vw, 38px);
}

.service-card p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  transition: color 600ms var(--ease);
}

.service-card:hover p {
  color: rgba(247, 242, 233, 0.72);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(44px, 6vw, 74px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.section-cta p {
  max-width: 620px;
  color: var(--ink-soft);
}

.portrait-story {
  position: relative;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow: hidden;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 82% 8%, rgba(148, 184, 172, 0.18), transparent 28%),
    var(--green-dark);
}

.portrait-story::before {
  position: absolute;
  top: -24vw;
  right: -13vw;
  width: 54vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(250, 245, 238, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.portrait-story-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.portrait-story-heading h2 {
  max-width: 900px;
  margin-top: 26px;
  font-size: clamp(44px, 5.4vw, 82px);
  letter-spacing: -0.045em;
}

.portrait-story-heading > p {
  max-width: 520px;
  padding-bottom: 8px;
  color: rgba(250, 245, 238, 0.68);
}

.portrait-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(300px, 24vw, 470px));
  gap: 16px;
  margin-top: clamp(60px, 8vw, 110px);
}

.portrait-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--green-deep);
}

.portrait-tile::after {
  position: absolute;
  inset: 58% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(14, 42, 37, 0.68));
  pointer-events: none;
}

.portrait-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease), filter 800ms var(--ease);
}

.portrait-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portrait-tile:hover img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.portrait-tile figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  color: var(--cream-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-tile-tall {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  border-radius: 48% 48% 12px 12px;
}

.portrait-tile-tall img {
  object-position: 58% 6%;
}

.portrait-tile-wide {
  grid-column: 4 / 10;
  grid-row: 1;
  border-radius: 12px 120px 12px 12px;
}

.portrait-tile-wide img {
  object-position: 50% 26%;
}

.portrait-tile-square {
  grid-column: 10 / 13;
  grid-row: 1;
  border-radius: 12px 12px 48% 48%;
}

.portrait-tile-square img {
  object-position: 50% 40%;
}

.portrait-tile-seated {
  grid-column: 4 / 8;
  grid-row: 2;
  border-radius: 120px 12px 12px;
}

.portrait-tile-seated img {
  object-position: 50% 38%;
}

@media (min-width: 901px) {
  .portrait-tile-wide img,
  .portrait-tile-seated img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: none;
    transform: none;
  }

  .portrait-tile-wide:hover img,
  .portrait-tile-seated:hover img {
    filter: saturate(1.03);
    transform: scale(1.012);
  }
}

.portrait-story-note {
  grid-column: 8 / 13;
  grid-row: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 68px);
  border: 1px solid rgba(250, 245, 238, 0.12);
  border-radius: 12px;
  background: rgba(250, 245, 238, 0.06);
}

.portrait-story-note > span {
  color: #bcd3c9;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-story-note blockquote {
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.16;
}

.portrait-story-note .button {
  align-self: flex-start;
  margin-top: 40px;
}

.approach {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  overflow: hidden;
  color: var(--cream-light);
  background: var(--green-dark);
}

.approach-orbit {
  position: absolute;
  top: -30vw;
  left: -12vw;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(247, 242, 233, 0.08);
  border-radius: 50%;
}

.approach-orbit::before,
.approach-orbit::after {
  position: absolute;
  border: 1px solid rgba(247, 242, 233, 0.07);
  border-radius: 50%;
  content: "";
}

.approach-orbit::before { inset: 14%; }
.approach-orbit::after { inset: 28%; }

.approach-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.approach-photo-mobile {
  display: none;
}

.therapy-name,
.therapy-statement {
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.approach-name {
  max-width: 14ch;
  margin-top: 28px;
  font-size: clamp(52px, 5.4vw, 86px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.approach-name em,
.approach-statement em {
  color: var(--beige);
  font-style: italic;
}

.approach-statement {
  max-width: 880px;
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid rgba(247, 242, 233, 0.16);
  font-size: clamp(38px, 4.15vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.approach-text {
  max-width: 670px;
  margin-top: 34px;
  color: rgba(247, 242, 233, 0.72);
}

.approach-text p + p {
  margin-top: 18px;
}

.approach .button {
  margin-top: 42px;
}

.approach-steps {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  border-left: 1px solid rgba(247, 242, 233, 0.13);
  list-style: none;
  margin: 0;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(247, 242, 233, 0.13);
}

.approach-steps li:first-child {
  border-top: 1px solid rgba(247, 242, 233, 0.13);
}

.approach-steps > li > span {
  color: var(--green-soft);
  font-family: var(--font-display);
  font-size: 19px;
}

.approach-steps h3 {
  font-size: clamp(28px, 2.5vw, 38px);
}

.approach-steps p {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(247, 242, 233, 0.66);
  font-size: 14px;
}

.schema-therapy {
  position: relative;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 9%, rgba(55, 152, 132, 0.13), transparent 25%),
    linear-gradient(135deg, var(--cream) 0%, var(--beige-soft) 100%);
}

.schema-therapy::before {
  position: absolute;
  top: 10%;
  right: -13vw;
  width: 38vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(55, 152, 132, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5vw rgba(250, 245, 238, 0.22), inset 0 0 0 calc(5vw + 1px) rgba(55, 152, 132, 0.1);
  pointer-events: none;
}

.schema-heading {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.schema-name {
  max-width: 11ch;
  margin-top: 24px;
  font-size: clamp(52px, 5.6vw, 88px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.schema-statement {
  max-width: 890px;
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
  font-size: clamp(38px, 4.25vw, 66px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.schema-statement em {
  color: var(--green);
  font-style: italic;
}

.schema-lead {
  max-width: 620px;
  margin-bottom: clamp(28px, 3.2vw, 48px);
  padding-left: 24px;
  border-left: 1px solid rgba(55, 152, 132, 0.55);
  color: var(--ink-soft);
}

.schema-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: stretch;
  margin-top: clamp(65px, 8vw, 110px);
}

.schema-definition {
  padding: clamp(34px, 4.5vw, 64px);
  color: var(--cream-light);
  border-radius: 28px;
  background: var(--green-deep);
  box-shadow: 0 28px 70px rgba(33, 79, 71, 0.14);
}

.schema-pillars-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.schema-kicker {
  margin-bottom: 34px;
  color: #bcd3c9;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.schema-definition > p:not(.schema-kicker) {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.35;
}

.schema-definition > p + p {
  margin-top: 26px;
}

.schema-pillars {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.schema-pillars li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  padding: clamp(28px, 3vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.schema-pillars li > span {
  color: var(--green-accessible);
  font-family: var(--font-display);
  font-size: 19px;
}

.schema-pillars h3 {
  font-size: clamp(29px, 3vw, 42px);
}

.schema-pillars p {
  max-width: 600px;
  margin-top: 12px;
  color: var(--ink-soft);
}

.schema-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin: clamp(70px, 9vw, 130px) 0 0;
  padding-top: clamp(42px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.schema-summary span {
  color: var(--green-accessible);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schema-summary p {
  max-width: 1050px;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.18;
}

.schema-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 44px;
}

.schema-action p {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 14px;
}

.support {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(560px, 1.12fr);
  min-height: 980px;
  background: var(--cream-light);
}

.support-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: var(--cream-light);
  background: var(--green-deep);
}

.support-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 1500ms var(--ease), filter 900ms var(--ease);
}

.support-visual:hover > img {
  transform: scale(1.018);
  filter: saturate(0.92) contrast(1.03);
}

.support-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 49, 43, 0.12) 15%, rgba(16, 49, 43, 0.84) 100%),
    linear-gradient(90deg, rgba(16, 49, 43, 0.48), transparent 70%);
  pointer-events: none;
}

.support-visual-copy {
  position: absolute;
  right: clamp(28px, 4vw, 66px);
  bottom: clamp(46px, 7vw, 94px);
  left: clamp(28px, 4vw, 66px);
  z-index: 2;
  max-width: 620px;
}

.support-visual-copy blockquote {
  max-width: none;
  margin: 32px 0 42px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.15vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.support-visual-copy > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 19px;
}

.support-visual-copy small {
  color: rgba(250, 245, 238, 0.7);
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.support-line {
  position: absolute;
  top: 5%;
  right: -80px;
  z-index: 1;
  width: 300px;
  fill: none;
  opacity: 0.4;
  stroke: var(--cream-light);
  stroke-width: 1;
  pointer-events: none;
}

.support-content {
  align-self: center;
  padding-top: clamp(82px, 8vw, 120px);
  padding-bottom: clamp(82px, 8vw, 120px);
}

.support-content h2 {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(46px, 5.1vw, 76px);
  letter-spacing: -0.04em;
}

.support-lead {
  max-width: 700px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.support-accordion {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 46px;
  border-top: 0;
}

.support-accordion .accordion-item {
  overflow: hidden;
  color: var(--cream-light);
  border: 0;
  border-radius: 7px;
  background: var(--green-deep);
  box-shadow: 0 10px 28px rgba(33, 79, 71, 0.08);
}

.support-accordion button {
  min-height: 68px;
  padding: 16px 20px;
}

.support-accordion button > span:first-child {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
}

.support-accordion .accordion-icon {
  border-color: rgba(250, 245, 238, 0.42);
}

.support-accordion .accordion-icon::before,
.support-accordion .accordion-icon::after {
  background: var(--cream-light);
}

.support-accordion .accordion-panel p {
  max-width: 720px;
  padding: 0 66px 22px 20px;
  color: rgba(250, 245, 238, 0.76);
}

.support-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: 34px;
}

.support-action p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 13px;
}

.support-action .button {
  white-space: nowrap;
}

/* Compact support section with a two-image environment carousel. */
.support {
  grid-template-columns: minmax(0, 700px) minmax(0, 780px);
  gap: clamp(50px, 5.5vw, 88px);
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(72px, 6vw, 96px) var(--page-pad);
}

.support-gallery {
  position: relative;
  min-width: 0;
  height: clamp(590px, 46vw, 680px);
  padding: 10px 10px 8px;
  overflow: hidden;
  border: 1px solid rgba(33, 79, 71, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(33, 79, 71, 0.12);
}

.environment-viewport {
  height: calc(100% - 54px);
  overflow: hidden;
  border-radius: 20px;
  background: var(--green-deep);
}

.environment-track {
  height: 100%;
  display: flex;
  transition: transform 720ms var(--ease);
  will-change: transform;
}

.environment-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.environment-card {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--green-deep);
}

.environment-card:first-child {
  border-radius: 18px 4px 4px 18px;
}

.environment-card:last-child {
  border-radius: 4px 18px 18px 4px;
}

.environment-card::after {
  position: absolute;
  inset: 48% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(14, 48, 42, 0.72));
  pointer-events: none;
}

.environment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 1000ms var(--ease), filter 600ms ease;
}

.environment-card-wide img {
  object-position: 58% 46%;
}

.environment-card-landscape img {
  object-position: 52% 50%;
}

.support-gallery:hover .environment-slide[aria-hidden="false"] img {
  transform: scale(1.015);
  filter: saturate(0.98) contrast(1.02);
}

.environment-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--cream-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.environment-controls {
  height: 54px;
  display: grid;
  grid-template-columns: 44px auto minmax(0, 1fr) 44px;
  gap: 9px;
  align-items: center;
  padding: 5px 2px 0;
}

.environment-arrow,
.environment-dots button {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--green-deep);
  background: transparent;
  cursor: pointer;
}

.environment-arrow {
  border-radius: 50%;
  transition: color 250ms ease, background 250ms ease;
}

.environment-arrow:hover,
.environment-arrow:focus-visible {
  color: var(--cream-light);
  background: var(--green-deep);
}

.environment-arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.environment-status {
  display: flex;
  gap: 5px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 15px;
}

.environment-dots {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.environment-dots button {
  position: relative;
}

.environment-dots button::before {
  width: 22px;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: rgba(33, 79, 71, 0.22);
  transition: width 300ms var(--ease), background 300ms ease;
}

.environment-dots button.is-active::before {
  width: 34px;
  background: var(--green-deep);
}

.support-content {
  min-width: 0;
  padding: 0;
}

.support-content h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(42px, 4.2vw, 62px);
}

.support-lead {
  max-width: 650px;
  margin-top: 20px;
  font-size: 14px;
}

.support-accordion {
  gap: 7px;
  margin-top: 28px;
}

.support-accordion .accordion-item {
  border-radius: 10px;
}

.support-accordion button {
  min-height: 56px;
  padding: 13px 24px;
}

.support-accordion button > span:first-child {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.25;
}

.support-accordion .accordion-panel p {
  padding: 0 62px 18px 24px;
  font-size: 13px;
}

.support-action {
  margin-top: 24px;
}

.support-action p {
  font-size: 12px;
}

.inclusion {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--beige-soft);
}

.inclusion h2 {
  max-width: 850px;
}

.inclusion-copy {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 8px;
  color: var(--ink-soft);
}

.inclusion-copy-text .text-link {
  margin-top: 22px;
  color: var(--green-deep);
}

.inclusion-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 79, 71, 0.22);
  border-radius: 50%;
}

.inclusion-mark svg {
  width: 58px;
  fill: none;
  stroke: var(--green-deep);
  stroke-width: 1;
}

.office {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--cream-light);
}

.office-copy {
  max-width: 650px;
}

.office h2 {
  max-width: 630px;
}

.office-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 30px;
  color: var(--ink-soft);
}

.office-mode {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.office-mode > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--sage);
}

.office-mode svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.office-mode strong {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
}

.office-mode p {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 13px;
}

.office-cta {
  margin-top: 34px;
}

.office-gallery {
  position: relative;
  min-height: 690px;
}

.office-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 86%;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 12px 12px;
  background: var(--beige-soft);
}

.office-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 33%;
}

.office-inset {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 46%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 12px solid var(--cream-light);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(38, 59, 54, 0.14);
}

.office-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.office-caption {
  position: absolute;
  right: -12px;
  bottom: 3%;
  color: var(--green-deep);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: top right;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 10vw, 160px);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--sage);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.accordion {
  align-self: center;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  font-family: var(--font-body);
}

.accordion button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.accordion button > span:first-child {
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.25;
}

.accordion-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(33, 79, 71, 0.25);
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--green-deep);
  transform: translate(-50%, -50%);
  transition: transform 350ms var(--ease);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion button[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 620px;
  padding: 0 54px 26px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.support .support-accordion button {
  min-height: 56px;
  padding: 13px 24px;
}

.support .support-accordion button > span:first-child {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.25;
}

.support .support-accordion .accordion-panel p {
  max-width: 720px;
  padding: 0 62px 18px 24px;
  color: rgba(250, 245, 238, 0.76);
  font-size: 13px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(560px, 0.95fr);
  gap: clamp(52px, 5vw, 110px);
  align-items: center;
  padding: var(--section-y) var(--page-pad);
  overflow: hidden;
  color: var(--cream-light);
  background: var(--green-deep);
}

.contact::before {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  content: "";
  border: 1px solid rgba(247, 242, 233, 0.08);
  border-radius: 50%;
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.contact-location {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 11vw, 220px);
  gap: clamp(28px, 3vw, 60px);
  align-items: center;
  min-width: 0;
}

.contact-map {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 233, 0.24);
  border-radius: 28px;
  background: rgba(247, 242, 233, 0.08);
  box-shadow: 0 28px 70px rgba(7, 34, 29, 0.22);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 31vw, 540px);
  border: 0;
  background: var(--cream-light);
}

.contact-map-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 24px;
}

.contact-map-footer > div {
  min-width: 0;
}

.contact-map-footer span {
  display: block;
  color: rgba(247, 242, 233, 0.68);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-map-footer address {
  margin-top: 8px;
  color: var(--cream-light);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.25vw, 22px);
  font-style: normal;
  line-height: 1.32;
}

.contact-map-footer a {
  min-width: 110px;
  min-height: 44px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 14px;
  color: var(--cream-light);
  border: 1px solid rgba(247, 242, 233, 0.38);
  border-radius: 999px;
  transition: color 250ms ease, background-color 250ms ease, border-color 250ms ease;
}

.contact-map-footer a:hover,
.contact-map-footer a:focus-visible {
  color: var(--green-deep);
  border-color: var(--cream-light);
  background: var(--cream-light);
}

.contact-map-footer a span {
  color: inherit;
  white-space: nowrap;
}

.contact-map-footer a svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact h2 {
  margin-top: 28px;
  font-size: clamp(46px, 6vw, 92px);
  letter-spacing: -0.045em;
}

.contact h2 em {
  color: var(--beige);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(247, 242, 233, 0.72);
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 40px;
}

.contact-instagram {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(250, 245, 238, 0.78);
  border-bottom: 1px solid rgba(250, 245, 238, 0.38);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 300ms ease, border-color 300ms ease;
}

.contact-instagram:hover {
  color: var(--cream-light);
  border-color: var(--cream-light);
}

.button-contact-secondary {
  color: var(--cream-light);
  border: 1px solid rgba(250, 245, 238, 0.5);
  background: transparent;
}

.button-contact-secondary:hover,
.button-contact-secondary:focus-visible {
  color: var(--green-deep);
  border-color: var(--cream-light);
  background: var(--cream-light);
}

.contact-seal {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-self: end;
}

.contact-seal svg {
  width: 100%;
  overflow: visible;
}

.contact-seal text {
  fill: rgba(247, 242, 233, 0.72);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.seal-monogram {
  fill: none;
  stroke: var(--beige);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.seal-accent {
  fill: var(--terracotta);
}

.site-footer {
  padding: 60px var(--page-pad) 30px;
  color: var(--cream-light);
  background: var(--green-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(120px, 1fr);
  gap: 50px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247, 242, 233, 0.13);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}

.footer-brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  margin-top: 7px;
  color: rgba(247, 242, 233, 0.6);
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-top nav {
  display: flex;
  gap: 28px;
}

.footer-top nav a,
.footer-socials a,
.footer-bottom {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-top nav a,
.footer-socials a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(247, 242, 233, 0.72);
  transition: color 300ms ease;
}

.footer-top nav a {
  min-width: 44px;
  justify-content: center;
  padding-right: 5px;
  padding-left: 5px;
}

.footer-top nav a:hover,
.footer-socials a:hover {
  color: var(--cream-light);
}

.footer-socials {
  justify-self: end;
  display: flex;
  gap: 22px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(20px, 2.2vw, 38px);
  bottom: clamp(20px, 2.2vw, 38px);
  z-index: 120;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: visible;
  color: var(--cream-light);
  border: 1px solid rgba(250, 245, 238, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.32), transparent 23%),
    radial-gradient(circle at 66% 78%, #176e52, #229c68 48%, #37bd7b 100%);
  box-shadow:
    0 20px 50px rgba(22, 63, 56, 0.34),
    0 0 0 7px rgba(250, 245, 238, 0.72),
    inset -7px -9px 16px rgba(10, 65, 45, 0.2);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

.whatsapp-float > .whatsapp-symbol {
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.14));
}

.whatsapp-float-highlight {
  position: absolute;
  top: 11px;
  left: 17px;
  width: 17px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  filter: blur(2px);
  transform: rotate(-28deg);
  pointer-events: none;
}

.whatsapp-float-label {
  position: absolute;
  right: calc(100% + 17px);
  min-width: max-content;
  padding: 10px 14px;
  color: var(--cream-light);
  border-radius: 999px;
  background: var(--green-deep);
  box-shadow: 0 14px 30px rgba(22, 63, 56, 0.18);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 300ms ease, transform 300ms var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow:
    0 25px 58px rgba(22, 63, 56, 0.42),
    0 0 0 9px rgba(250, 245, 238, 0.82),
    inset -7px -9px 16px rgba(10, 65, 45, 0.2);
  transform: translateY(-5px) rotate(-2deg);
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: rgba(247, 242, 233, 0.68);
}

.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(247, 242, 233, 0.72);
}

.reveal,
.reveal-image {
  transition: opacity 760ms var(--ease), transform 760ms var(--ease), clip-path 1000ms var(--ease);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal-image {
  opacity: 0;
  clip-path: inset(0 0 100% 0 round 24px);
  transform: translateY(14px);
}

.js .reveal.is-visible,
.js .reveal-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-image.is-visible {
  clip-path: inset(0 0 0 0 round 0);
}

.js .hero-visual.is-visible {
  clip-path: inset(-120px);
}

[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }

@media (min-width: 1800px) {
  .hero {
    grid-template-columns: minmax(620px, 0.95fr) minmax(520px, 1.05fr);
    gap: clamp(70px, 6vw, 150px);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
  }

  .hero-inset {
    top: 50%;
    bottom: auto;
    left: clamp(-700px, -26vw, -440px);
    width: clamp(340px, 19vw, 500px);
    aspect-ratio: 960 / 1041;
    border-width: 10px;
    border-radius: 45% 45% 12px 12px;
    box-shadow: 0 34px 80px rgba(33, 79, 71, 0.2);
    transform: translateY(-42%);
  }

  .js .hero-visual.is-visible {
    clip-path: inset(-800px);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    grid-template-columns: minmax(200px, 1fr) auto auto;
    gap: 24px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(52px, 7vw, 82px);
  }

  .statement {
    grid-template-columns: 55px minmax(0, 1fr) 120px;
  }

  .statement-mark {
    width: 120px;
  }

  .about-layout,
  .office,
  .faq {
    gap: 70px;
  }

  .about-photo-wrap {
    width: 88%;
  }

  .service-card {
    min-height: 410px;
    padding: 34px;
  }

  .approach {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .approach-copy,
  .approach-steps {
    padding-right: 52px;
    padding-left: 52px;
  }

  .schema-heading,
  .schema-content {
    gap: 60px;
  }

  .office-gallery {
    min-height: 580px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-location {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .contact-map iframe {
    height: 430px;
  }

  .footer-top {
    grid-template-columns: minmax(230px, 1fr) auto;
  }

  .footer-instagram {
    display: none;
  }

  .footer-socials {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --section-y: 96px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--green-deep);
    background: rgba(55, 152, 132, 0.1);
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 450ms var(--ease);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) var(--page-pad) 40px;
    color: var(--cream-light);
    background: var(--green-deep);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 600ms var(--ease), visibility 600ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    min-height: 66px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(247, 242, 233, 0.14);
    font-family: var(--font-display);
    font-size: clamp(32px, 7vw, 52px);
  }

  .mobile-menu nav .mobile-menu-cta {
    min-height: 52px;
    align-self: flex-start;
    margin-top: 36px;
    padding: 0 22px;
    border: 1px solid rgba(247, 242, 233, 0.34);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 11px;
  }

  .mobile-menu > p {
    margin-top: auto;
    color: rgba(247, 242, 233, 0.55);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  body.menu-open .site-header {
    color: var(--cream-light);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.menu-open .brand-role,
  body.menu-open .menu-button {
    color: var(--cream-light);
  }

  body.menu-open .menu-button {
    background: rgba(247, 242, 233, 0.1);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 100px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > * {
    position: relative;
    z-index: 2;
  }

  .hero .eyebrow {
    order: 2;
    margin-top: 36px;
  }

  .hero h1 {
    order: 3;
    max-width: 11ch;
    margin-top: 26px;
    font-size: clamp(58px, 10vw, 88px);
  }

  .hero-lead {
    order: 4;
  }

  .hero-actions {
    order: 5;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    height: clamp(280px, 44vw, 360px);
    justify-self: stretch;
    padding: 0;
  }

  .hero-frame {
    width: 78%;
    height: 100%;
    margin-left: auto;
    aspect-ratio: auto;
    border-radius: 160px 24px 24px 160px;
  }

  .hero-frame img {
    object-position: 68% 38%;
  }

  .hero-credential,
  .photo-note {
    display: none;
  }

  .hero-inset {
    top: 32px;
    bottom: auto;
    left: 0;
    width: 35%;
    height: calc(100% - 16px);
    aspect-ratio: auto;
    border-radius: 24px 120px 24px 24px;
  }

  .hero-inset img {
    object-position: 36% 48%;
  }

  .hero-signature {
    order: 6;
    margin-top: 50px;
  }

  .scroll-cue {
    display: none;
  }

  .statement {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .statement-mark {
    display: none;
  }

  .about-layout,
  .section-heading,
  .portrait-story-heading,
  .schema-heading,
  .schema-content,
  .support,
  .inclusion,
  .office,
  .faq {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 75px;
  }

  .about-visual {
    width: min(100%, 620px);
    order: 2;
    margin: 0 auto;
  }

  .about-copy {
    order: 1;
  }

  .about-philosophy {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .philosophy-intro {
    max-width: 680px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: 340px;
    border-radius: 180px 180px 20px 20px;
  }

  .portrait-story-heading > p {
    max-width: 680px;
  }

  .portrait-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 350px);
  }

  .portrait-tile-tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .portrait-tile-wide {
    grid-column: 2;
    grid-row: 1;
    border-radius: 12px 90px 12px 12px;
  }

  .portrait-tile-square {
    grid-column: 2;
    grid-row: 2;
  }

  .portrait-tile-seated {
    grid-column: 1;
    grid-row: 3;
  }

  .portrait-story-note {
    grid-column: 2;
    grid-row: 3;
  }

  .approach {
    grid-template-columns: 1fr;
  }

  .approach-steps {
    border-top: 1px solid rgba(247, 242, 233, 0.13);
    border-left: 0;
    padding-top: 40px;
  }

  .schema-lead {
    max-width: 680px;
  }

  .schema-content {
    gap: 34px;
  }

  .schema-definition {
    max-width: 760px;
  }

  .schema-action {
    justify-content: flex-start;
  }

  .support {
    min-height: 0;
  }

  .support-visual {
    min-height: 700px;
  }

  .support-visual > img {
    object-position: 50% 43%;
  }

  .support-content {
    width: 100%;
  }

  .support-content h2 {
    max-width: 760px;
  }

  .support {
    gap: 54px;
  }

  .support-gallery {
    width: min(100%, 700px);
    height: 600px;
    justify-self: center;
  }

  .inclusion-copy {
    max-width: 660px;
  }

  .office {
    gap: 75px;
  }

  .office-gallery {
    width: min(100%, 680px);
    min-height: 720px;
    margin: 0 auto;
  }

  .office-main {
    top: auto;
    right: 0;
    bottom: 0;
    width: 62%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .office-inset {
    top: 0;
    bottom: auto;
    width: 52%;
    aspect-ratio: 4 / 5;
  }

  .office-inset img {
    object-position: 50% 42%;
  }

  .faq {
    gap: 50px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-seal {
    width: 180px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top nav {
    flex-wrap: wrap;
    gap: 4px 24px;
  }

  .footer-socials {
    display: flex;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: clamp(20px, 6.2vw, 32px);
    --section-y: 82px;
  }

  body {
    font-size: 15px;
  }

  .brand-name {
    max-width: 210px;
    font-size: clamp(14px, 3.7vw, 16px);
  }

  .brand-role {
    font-size: 7px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    gap: 0;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 78px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > * {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    height: clamp(220px, 68vw, 265px);
    justify-self: stretch;
    padding: 0;
  }

  .hero .eyebrow {
    order: 2;
    max-width: 270px;
    margin-top: 26px;
  }

  .hero h1 {
    order: 3;
    max-width: 9.7ch;
    margin-top: 20px;
    font-size: clamp(46px, 13vw, 64px);
    line-height: 1.01;
  }

  .hero-lead {
    order: 4;
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    order: 5;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: auto;
  }

  .hero-signature {
    order: 6;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 5px 12px;
    margin-top: 34px;
    font-size: 16px;
  }

  .hero-signature::before {
    width: 30px;
    grid-row: 1 / 3;
    align-self: center;
  }

  .hero-signature span {
    grid-column: 2;
    font-size: 7px;
  }

  .hero-frame {
    display: none;
  }

  .hero-credential {
    display: none;
  }

  .hero-inset {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-width: 6px;
    border-radius: 132px 132px 20px 20px;
  }

  .hero-inset img {
    object-position: 50% 48%;
  }

  .photo-note {
    display: none;
  }

  .approach-photo-mobile {
    position: relative;
    z-index: 1;
    display: block;
    aspect-ratio: 4 / 5;
    margin: -22px var(--page-pad) 18px;
    overflow: hidden;
    border: 6px solid rgba(247, 242, 233, 0.09);
    border-radius: 150px 150px 20px 20px;
    box-shadow: 0 28px 60px rgba(5, 25, 21, 0.24);
  }

  .approach-photo-mobile::after {
    position: absolute;
    inset: 58% 0 0;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(14, 42, 36, 0.7));
    pointer-events: none;
  }

  .approach-photo-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% 42%;
  }

  .approach-photo-mobile figcaption {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 1;
    color: var(--cream-light);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-menu nav a {
    min-height: 54px;
    font-size: clamp(24px, 7.5vw, 31px);
  }

  .mobile-menu nav .mobile-menu-cta {
    min-height: 48px;
    margin-top: 24px;
    font-size: 10px;
  }

  .photo-note-top {
    right: 7px;
  }

  .hero-line {
    top: -18px;
    right: -8px;
    width: 132px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-index {
    font-size: 24px;
  }

  .statement h2,
  .about h2,
  .section-heading h2,
  .portrait-story-heading h2,
  .schema-heading h2,
  .support-content h2,
  .inclusion h2,
  .office h2,
  .faq h2 {
    font-size: clamp(39px, 11.2vw, 56px);
    line-height: 1.03;
  }

  .statement h2 {
    margin-top: 23px;
  }

  .statement-copy {
    margin-top: 26px;
  }

  .about-layout {
    gap: 58px;
  }

  .about-visual {
    padding-bottom: 70px;
  }

  .about-photo-wrap {
    width: 92%;
  }

  .about-card {
    bottom: 10px;
    width: 54%;
    padding: 22px;
  }

  .about-facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-philosophy {
    gap: 38px;
    margin-top: 80px;
    padding-top: 60px;
  }

  .philosophy-intro h3 {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .quote-card:nth-child(3) {
    grid-column: auto;
    min-height: 220px;
  }

  .quote-card p {
    font-size: clamp(27px, 8.4vw, 36px);
  }

  .section-heading {
    gap: 28px;
  }

  .service-grid {
    margin-top: 45px;
  }

  .section-cta,
  .schema-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .service-card {
    min-height: 350px;
    padding: 30px;
    border-radius: 150px 150px 18px 18px;
  }

  .card-number {
    top: 34px;
    right: 30px;
  }

  .portrait-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 8px;
    margin-top: 46px;
  }

  .portrait-tile-tall,
  .portrait-tile-square {
    grid-row: 1;
    aspect-ratio: 3 / 4;
  }

  .portrait-tile-tall {
    grid-column: 1;
    border-radius: 80px 80px 8px 8px;
  }

  .portrait-tile-square {
    grid-column: 2;
    border-radius: 8px 8px 80px 80px;
  }

  .portrait-tile-wide {
    grid-column: 1 / 3;
    grid-row: 2;
    aspect-ratio: 16 / 10;
    border-radius: 8px 80px 8px 8px;
  }

  .portrait-tile-seated {
    grid-column: 1 / 3;
    grid-row: 3;
    aspect-ratio: 16 / 10;
    border-radius: 80px 8px 8px;
  }

  .portrait-story-note {
    grid-column: 1 / 3;
    grid-row: 4;
    min-height: 320px;
    padding: 30px 24px;
  }

  .portrait-story-note .button {
    align-self: stretch;
  }

  .portrait-tile figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 7px;
  }

  .approach-copy,
  .approach-steps {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .approach h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .approach-steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
  }

  .schema-therapy::before {
    top: 4%;
    right: -35vw;
    width: 90vw;
  }

  .schema-heading,
  .schema-content {
    gap: 34px;
  }

  .schema-content {
    margin-top: 54px;
  }

  .schema-definition {
    padding: 30px 26px;
    border-radius: 20px;
  }

  .schema-definition > p:not(.schema-kicker) {
    font-size: clamp(23px, 7.5vw, 31px);
  }

  .schema-pillars li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .schema-summary {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 70px;
  }

  .schema-summary p {
    font-size: clamp(30px, 9.6vw, 42px);
  }

  .support-visual {
    min-height: 520px;
  }

  .support-visual-copy blockquote {
    margin: 24px 0 30px;
    font-size: clamp(33px, 9vw, 40px);
  }

  .support-line {
    right: -100px;
    width: 240px;
  }

  .support-content {
    padding-top: 74px;
    padding-bottom: 78px;
  }

  .support-lead {
    margin-top: 24px;
  }

  .support-accordion {
    margin-top: 36px;
  }

  .support-accordion button {
    min-height: 68px;
    padding: 14px 16px;
  }

  .support-accordion .accordion-panel p {
    padding: 0 54px 20px 16px;
  }

  .support-action {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .support {
    gap: 42px;
    padding: 62px var(--page-pad);
  }

  .support-gallery {
    height: 470px;
    padding: 7px 7px 5px;
    border-radius: 22px;
  }

  .environment-viewport {
    height: calc(100% - 50px);
    border-radius: 16px;
  }

  .environment-slide {
    gap: 6px;
  }

  .environment-card:first-child {
    border-radius: 13px 3px 3px 13px;
  }

  .environment-card:last-child {
    border-radius: 3px 13px 13px 3px;
  }

  .environment-card figcaption {
    right: 10px;
    bottom: 11px;
    left: 10px;
    font-size: 6.5px;
    line-height: 1.35;
  }

  .environment-controls {
    height: 50px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0;
    padding: 3px 64px 0 0;
  }

  .environment-status {
    display: flex;
    justify-self: center;
  }

  .environment-dots {
    display: none;
  }

  .support-content {
    padding: 0;
  }

  .support-content h2 {
    margin-top: 16px;
  }

  .support-lead {
    margin-top: 18px;
  }

  .support-accordion {
    margin-top: 26px;
  }

  .support-accordion button {
    min-height: 56px;
    padding: 12px 18px;
  }

  .support-accordion .accordion-panel p {
    padding: 0 54px 17px 18px;
  }

  .inclusion {
    gap: 40px;
  }

  .inclusion-copy {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 20px;
  }

  .inclusion-mark {
    width: 62px;
    height: 62px;
  }

  .inclusion-mark svg {
    width: 40px;
  }

  .inclusion-copy-text .text-link {
    font-size: 11px;
  }

  .office-gallery {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
  }

  .office-main {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    align-self: end;
    border-radius: 48% 48% 12px 12px;
  }

  .office-inset {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 3 / 4;
    align-self: start;
    border-width: 6px;
  }

  .office-caption {
    display: none;
  }

  .accordion button {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 14px;
  }

  .accordion-panel p {
    padding-right: 0;
  }

  .support .support-accordion button {
    min-height: 56px;
    padding: 12px 18px;
  }

  .support .support-accordion .accordion-panel p {
    padding: 0 54px 17px 18px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact h2 {
    font-size: clamp(44px, 12.4vw, 64px);
  }

  .contact-seal {
    width: 155px;
    justify-self: start;
    margin-top: 25px;
  }

  .contact-location {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-map iframe {
    height: 320px;
  }

  .contact-map-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 72px 20px 20px;
  }

  .contact-map-footer a {
    width: 100%;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-instagram {
    align-self: flex-start;
  }

  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    box-shadow:
      0 16px 38px rgba(22, 63, 56, 0.32),
      0 0 0 5px rgba(250, 245, 238, 0.76),
      inset -5px -7px 12px rgba(10, 65, 45, 0.2);
  }

  .whatsapp-float > .whatsapp-symbol {
    width: 25px;
    height: 25px;
  }

  .whatsapp-float-highlight {
    top: 8px;
    left: 13px;
    width: 13px;
    height: 8px;
  }

  .whatsapp-float-label {
    display: none;
  }

  .footer-top nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    line-height: 1.7;
  }
}

@media (max-width: 350px) {
  .header-inner {
    gap: 10px;
  }

  .brand-name {
    max-width: 178px;
    font-size: 13px;
  }

  .brand-role {
    letter-spacing: 0.12em;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .about-card {
    width: 62%;
  }

  .office-gallery {
    min-height: 0;
  }
}

@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;
    transition-delay: 0ms !important;
  }

  .js .reveal,
  .js .reveal-image {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
