:root {
  --forest-deep: #35402f;
  --forest: #5e684c;
  --moss: #788064;
  --sage: #aab09c;
  --sand: #ddd2c0;
  --cream: #f5f0e8;
  --paper: #faf7f1;
  --coffee: #4e382f;
  --gold: #b99a62;
  --gold-light: #d8c49c;
  --ink: #30342a;
  --line: rgba(53, 64, 47, 0.18);
  --display: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--forest-deep);
  font-family: var(--sans);
  margin: 0;
  max-width: 100%;
}

body.menu-is-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  background: var(--paper);
  color: var(--forest);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  align-items: center;
  color: var(--forest-deep);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 1.25rem clamp(1rem, 3.8vw, 4.5rem);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.95);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.8rem;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  width: max-content;
}

.brand-logo {
  flex: 0 0 auto;
  height: 3rem;
  object-fit: contain;
  width: 3rem;
}

.brand-copy {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 0.9;
}

.brand-copy small,
.footer-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 0.42rem;
  text-transform: uppercase;
}

nav {
  display: flex;
  font-size: 0.85rem;
  font-weight: 500;
  gap: clamp(1.2rem, 2.4vw, 2.7rem);
  letter-spacing: 0.04em;
}

nav a {
  position: relative;
}

nav a::after {
  background: var(--gold);
  bottom: -0.45rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  width: 100%;
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  border: 1px solid rgba(53, 64, 47, 0.48);
  border-radius: 99rem;
  display: flex;
  font-size: 0.82rem;
  font-weight: 500;
  gap: 0.85rem;
  justify-self: end;
  padding: 0.68rem 0.8rem 0.68rem 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.header-cta span {
  background: var(--forest-deep);
  border-radius: 50%;
  color: var(--cream);
  display: grid;
  height: 1.75rem;
  place-items: center;
  width: 1.75rem;
}

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

.mobile-menu {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(185, 154, 98, 0.14), transparent 19rem),
    var(--cream);
  color: var(--forest-deep);
  display: grid;
  grid-template-columns: 52% 48%;
  grid-template-rows: minmax(0, 1fr);
  height: 100svh;
  min-height: 47rem;
  overflow: hidden;
  position: relative;
}

.hero-copy {
  align-self: center;
  padding: 8rem clamp(1.5rem, 5vw, 6rem) 6rem;
  position: relative;
  z-index: 3;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 0.45rem;
  width: 0.45rem;
}

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

h1,
h2,
h3,
blockquote {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  font-size: clamp(4.8rem, 8.2vw, 9.7rem);
  letter-spacing: -0.065em;
  line-height: 0.78;
  margin: clamp(2.2rem, 5vh, 4.4rem) 0 2.5rem;
  max-width: 7.6ch;
}

h1 span {
  color: var(--gold);
  display: block;
  font-style: italic;
  padding-left: 0.35em;
}

.hero-intro {
  color: rgba(53, 64, 47, 0.75);
  font-size: clamp(0.92rem, 1.1vw, 1.12rem);
  line-height: 1.75;
  max-width: 34rem;
}

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

.button {
  align-items: center;
  border-radius: 99rem;
  display: flex;
  font-size: 0.95rem;
  font-weight: 500;
  justify-content: space-between;
  padding: 1rem 1.05rem 1rem 1.6rem;
  transition: transform 0.3s var(--ease), background 0.3s ease;
  width: min(100%, 21.5rem);
}

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

.button span {
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  height: 2.5rem;
  place-items: center;
  width: 2.5rem;
}

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

.text-link,
.line-link {
  border-bottom: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 500;
  padding-bottom: 0.28rem;
}

.hero-visual {
  height: calc(100% - 8rem);
  margin: 6.5rem 1rem 1.5rem -1.5rem;
  position: relative;
  z-index: 2;
}

.hero-photo {
  border-radius: 42% 1.1rem 1.1rem 1.1rem / 18% 1.1rem 1.1rem 1.1rem;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-photo::after {
  background: linear-gradient(90deg, rgba(53, 64, 47, 0.12), transparent 25%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  width: 100%;
}

.hero-seal {
  animation: seal-float 5s var(--ease) infinite alternate;
  aspect-ratio: 1;
  background: rgba(53, 64, 47, 0.92);
  border: 1px solid rgba(245, 240, 232, 0.32);
  border-radius: 50%;
  bottom: 4.8rem;
  left: -2.3rem;
  position: absolute;
  width: clamp(7.8rem, 10vw, 10.5rem);
  z-index: 4;
}

.seal-ring {
  animation: spin 20s linear infinite;
  color: var(--cream);
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.seal-ring text {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-seal > span {
  align-items: center;
  display: flex;
  height: 54%;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54%;
}

.hero-seal > span img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-caption {
  bottom: 4.8rem;
  color: var(--forest-deep);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin: 0;
  position: absolute;
  right: 2rem;
  text-align: right;
  text-transform: uppercase;
}

.hero-caption strong {
  color: var(--forest);
  font-weight: 600;
}

.hero-ribbon {
  background: var(--sand);
  bottom: 0;
  color: var(--forest);
  grid-column: 1 / -1;
  left: 0;
  overflow: hidden;
  padding: 0.72rem 0;
  position: absolute;
  right: 0;
  z-index: 7;
}

.hero-ribbon div {
  animation: ribbon 26s linear infinite;
  display: flex;
  font-size: 0.58rem;
  gap: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
}

.hero-ribbon i {
  color: var(--gold);
  font-style: normal;
}

.hero-orbit {
  border: 1px solid rgba(94, 104, 76, 0.16);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.orbit-one {
  animation: orbit 22s linear infinite;
  height: 32rem;
  left: -17rem;
  top: -14rem;
  width: 32rem;
}

.orbit-two {
  bottom: -22rem;
  height: 38rem;
  left: 23%;
  width: 38rem;
}

.essence {
  display: grid;
  gap: clamp(3rem, 7vw, 10rem);
  grid-template-columns: 8rem 1fr;
  padding: clamp(7rem, 12vw, 11rem) clamp(1.4rem, 7vw, 8rem);
}

.section-index {
  align-content: start;
  color: var(--moss);
  display: grid;
  font-size: 0.58rem;
  gap: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index span:first-child {
  color: var(--gold);
  font-family: var(--display);
  font-size: 3.2rem;
  letter-spacing: 0;
}

.essence h2 {
  font-size: clamp(3.5rem, 7vw, 7.6rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 1.7rem 0 4rem;
  max-width: 11ch;
}

.essence h2 em,
.about h2 em,
.closing h2 em {
  color: var(--gold);
  display: block;
  font-weight: 400;
}

.essence-text {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: min(14vw, 13rem);
  max-width: 56rem;
}

.essence-text p,
.about-copy > p,
.method-intro,
.journey-list p {
  color: rgba(53, 64, 47, 0.76);
  line-height: 1.8;
}

.method {
  background: var(--sand);
  color: var(--forest-deep);
  padding: clamp(6rem, 10vw, 9rem) clamp(1.25rem, 5vw, 6rem);
}

.method-heading {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.4fr 0.6fr;
}

.method h2 {
  font-size: clamp(3.7rem, 7vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin: 1.7rem 0 0;
  max-width: 10ch;
}

.method-intro {
  color: rgba(53, 64, 47, 0.74);
  margin: 0 0 0.5rem;
}

.method-panels {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 5rem;
}

.method-card {
  aspect-ratio: 0.88;
  border: 1px solid rgba(53, 64, 47, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.4rem, 2.8vw, 2.7rem);
  position: relative;
  transition: transform 0.5s var(--ease), background 0.4s ease;
}

.method-card::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  bottom: -40%;
  content: "";
  height: 68%;
  opacity: 0.1;
  position: absolute;
  right: -20%;
  width: 80%;
}

.method-card:hover {
  transform: translateY(-0.7rem);
}

.card-listen {
  background: var(--paper);
}

.card-understand {
  background: var(--sage);
  color: var(--forest-deep);
}

.card-build {
  background: var(--gold-light);
  color: var(--forest-deep);
}

.card-number {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.card-icon {
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  font-family: var(--display);
  font-size: 2.2rem;
  height: 4.4rem;
  margin: auto 0 2rem;
  place-items: center;
  width: 4.4rem;
}

.method-card h3 {
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.method-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
  max-width: 20rem;
  opacity: 0.78;
}

.about {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 56rem;
  padding: clamp(1rem, 2vw, 2rem);
}

.about-photo {
  border-radius: 1rem 44% 44% 1rem / 1rem 15% 15% 1rem;
  min-height: 48rem;
  overflow: hidden;
  position: relative;
}

.about-photo::after {
  background: linear-gradient(180deg, transparent 60%, rgba(53, 64, 47, 0.52));
  content: "";
  inset: 0;
  position: absolute;
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  width: 100%;
}

.about-photo > span {
  bottom: 2rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  left: 2rem;
  position: absolute;
  z-index: 2;
}

.about-copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.about h2 {
  font-size: clamp(3.4rem, 5.6vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 1.5rem 0 3rem;
  max-width: 9ch;
}

.about-copy > p {
  max-width: 36rem;
}

.line-link {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  max-width: 15.5rem;
}

.statement {
  align-items: center;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 47rem;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) 1.5rem;
  position: relative;
  text-align: center;
}

.statement-eyebrow {
  color: var(--cream);
  justify-content: center;
  position: relative;
  z-index: 2;
}

blockquote {
  font-size: clamp(3.8rem, 7.8vw, 8.2rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 2.5rem auto 0;
  max-width: 11ch;
  position: relative;
  z-index: 3;
}

blockquote em {
  color: var(--gold-light);
  font-weight: 400;
}

.statement-mark {
  color: rgba(245, 240, 232, 0.05);
  font-family: var(--display);
  font-size: clamp(18rem, 42vw, 42rem);
  line-height: 0.8;
  position: absolute;
  right: -5vw;
  top: 5%;
}

.journey {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(7rem, 11vw, 11rem) clamp(1.4rem, 7vw, 8rem);
}

.journey h2 {
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 1.5rem 0;
  max-width: 7ch;
}

.journey-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.journey-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 3rem 1fr;
  padding: 2rem 0;
}

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

.journey-list > li > span {
  color: var(--gold);
  font-size: 0.68rem;
}

.journey-list h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.6rem;
}

.journey-list p {
  margin: 0;
  max-width: 28rem;
}

.closing {
  background: var(--cream);
  color: var(--forest-deep);
  display: flex;
  flex-direction: column;
  min-height: 78svh;
  overflow: hidden;
  padding: 7rem 1.5rem;
  place-content: center;
  position: relative;
  text-align: center;
}

.closing > *:not(.closing-lines) {
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  font-size: clamp(3.4rem, 5.6vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.82;
  margin-block: 2rem;
}

.closing > p:not(.eyebrow) {
  color: rgba(53, 64, 47, 0.7);
  line-height: 1.7;
  max-width: 33rem;
}

.button-gold {
  background: var(--forest-deep);
  color: var(--cream);
  margin-top: 2rem;
}

.closing-lines {
  border: 1px solid rgba(94, 104, 76, 0.18);
  border-radius: 50%;
  height: 57rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 57rem;
}

.closing-lines::before,
.closing-lines::after {
  border: 1px solid rgba(94, 104, 76, 0.12);
  border-radius: inherit;
  content: "";
  position: absolute;
}

.closing-lines::before {
  inset: 5rem;
}

.closing-lines::after {
  inset: 10rem;
}

footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  color: var(--cream);
  font-size: 0.82rem;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.4rem, 5vw, 5rem) 2rem;
}

footer.footer-compact {
  padding-top: 2rem;
}

.footer-contact {
  align-items: start;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
  display: grid;
  gap: clamp(2.5rem, 7vw, 8rem);
  grid-template-columns: 0.55fr 2.45fr;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.footer-contact h2 {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.footer-contact address {
  display: grid;
  font-style: normal;
  gap: clamp(2rem, 4vw, 5rem);
  grid-template-columns: 1.1fr 0.75fr 1.35fr;
  min-width: 0;
}

.contact-item {
  display: block;
  min-width: 0;
}

.contact-item span {
  color: rgba(245, 240, 232, 0.5);
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.contact-item p,
.contact-item strong {
  color: var(--cream);
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

a.contact-item strong {
  border-bottom: 1px solid rgba(245, 240, 232, 0.38);
  padding-bottom: 0.2rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

a.contact-item:hover strong {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding-top: 2rem;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1rem;
  width: max-content;
}

.footer-bottom > p {
  color: rgba(245, 240, 232, 0.56);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-self: end;
}

.floating-cta {
  align-items: center;
  background: var(--gold);
  border-radius: 99rem;
  bottom: 1rem;
  box-shadow: 0 0.7rem 2rem rgba(53, 64, 47, 0.25);
  color: var(--forest-deep);
  display: none;
  font-size: 0.72rem;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  position: fixed;
  right: 1rem;
  z-index: 25;
}

.load {
  animation: load-up 1s var(--ease) both;
}

.load-1 {
  animation-delay: 0.08s;
}

.load-2 {
  animation-delay: 0.18s;
}

.load-3 {
  animation-delay: 0.32s;
}

.load-4 {
  animation-delay: 0.46s;
}

.load-photo {
  animation: photo-in 1.5s var(--ease) 0.12s both;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.82s var(--ease), transform 0.82s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes load-up {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
}

@keyframes photo-in {
  from {
    opacity: 0;
    transform: translateX(3rem) scale(1.025);
  }
}

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

@keyframes seal-float {
  from {
    transform: translateY(-0.5rem);
  }
  to {
    transform: translateY(0.6rem);
  }
}

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

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    gap: 0.55rem;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .menu-toggle {
    align-items: center;
    border: 1px solid rgba(53, 64, 47, 0.42);
    border-radius: 99rem;
    color: var(--forest-deep);
    cursor: pointer;
    display: flex;
    font-size: 0.64rem;
    gap: 0.65rem;
    list-style: none;
    min-height: 2.75rem;
    padding: 0.55rem 0.8rem;
    position: relative;
    z-index: 3;
  }

  .menu-toggle::-webkit-details-marker {
    display: none;
  }

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

  .menu-toggle-icon {
    display: grid;
    gap: 0.28rem;
    width: 1rem;
  }

  .menu-toggle-icon i {
    background: currentColor;
    display: block;
    height: 1px;
    transform-origin: center;
    transition: transform 0.3s var(--ease);
    width: 100%;
  }

  .mobile-menu[open] .menu-toggle-icon i:first-child {
    transform: translateY(0.14rem) rotate(45deg);
  }

  .mobile-menu[open] .menu-toggle-icon i:last-child {
    transform: translateY(-0.14rem) rotate(-45deg);
  }

  .mobile-menu[open] .menu-toggle {
    background: var(--cream);
    border-color: var(--gold-light);
  }

  .site-header:has(.mobile-menu[open]) {
    background: rgba(250, 247, 241, 0.98);
    box-shadow: 0 1px 0 var(--line);
  }

  .mobile-nav {
    animation: mobile-menu-in 0.48s var(--ease) both;
    background:
      radial-gradient(circle at 92% 10%, rgba(185, 154, 98, 0.18), transparent 18rem),
      var(--forest-deep);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 0;
    inset: 0;
    min-height: 100svh;
    overflow-y: auto;
    padding: 7.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
    position: fixed;
    z-index: 2;
  }

  .mobile-menu:not([open]) > .mobile-nav {
    display: none;
  }

  .mobile-nav > p {
    color: var(--gold-light);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
  }

  .mobile-nav > a {
    align-items: center;
    border-bottom: 1px solid rgba(245, 240, 232, 0.16);
    display: grid;
    font-family: var(--display);
    font-size: clamp(2.35rem, 8vw, 4rem);
    gap: 0.75rem;
    grid-template-columns: 2rem minmax(0, 1fr);
    letter-spacing: -0.04em;
    line-height: 1;
    padding: clamp(0.8rem, 2.3vh, 1.35rem) 0.2rem;
  }

  .mobile-nav > a::after {
    display: none;
  }

  .mobile-nav > a > span {
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .mobile-nav > a[aria-current="page"] {
    color: var(--gold-light);
  }

  .mobile-nav > a:hover,
  .mobile-nav > a:focus-visible {
    color: var(--gold-light);
  }

  .mobile-nav > .mobile-nav-cta {
    border: 1px solid rgba(216, 196, 156, 0.58);
    border-radius: 99rem;
    font-family: var(--sans);
    font-size: clamp(0.76rem, 2.5vw, 0.9rem);
    letter-spacing: 0;
    margin-top: auto;
    padding: 1rem 1.1rem;
  }

  .hero {
    display: block;
    height: auto;
    min-height: 0;
    padding: 0.8rem 0 2.8rem;
  }

  .hero-copy {
    min-height: 61svh;
    padding: 7.5rem 1.3rem 3.4rem;
  }

  h1 {
    font-size: clamp(4.4rem, 16.5vw, 8rem);
  }

  .hero-visual {
    height: 72svh;
    margin: 0 0.8rem 0.8rem;
    min-height: 34rem;
  }

  .hero-photo {
    border-radius: 6rem 1rem 6rem 1rem;
  }

  .hero-photo img {
    object-position: 55% 45%;
  }

  .hero-seal {
    bottom: 2rem;
    left: 0.7rem;
  }

  .hero-caption {
    bottom: 2rem;
    right: 1rem;
  }

  .hero-ribbon {
    bottom: 0;
  }

  .load-photo {
    animation-name: photo-in-mobile;
  }

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

  .section-index {
    display: none;
  }

  .essence-text {
    margin-left: 0;
  }

  .method-heading {
    grid-template-columns: 1fr;
  }

  .method-intro {
    max-width: 34rem;
  }

  .method-panels {
    grid-template-columns: 1fr;
  }

  .method-card {
    aspect-ratio: auto;
    min-height: 26rem;
  }

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

  .about-photo {
    border-radius: 1rem 1rem 6rem 1rem;
    min-height: 68svh;
  }

  .about-copy {
    padding-inline: 1rem;
  }

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

  .statement-photo {
    height: 35rem;
    max-width: 30rem;
    width: 78vw;
  }

  blockquote {
    margin-left: 0;
  }

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

@keyframes photo-in-mobile {
  from {
    opacity: 0;
    transform: translateY(2rem) scale(1.02);
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 0.85rem;
  }

  .brand-logo {
    height: 2.55rem;
    width: 2.55rem;
  }

  .brand-copy {
    font-size: 1.15rem;
  }

  .brand-copy small {
    font-size: 0.46rem;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .back-link {
    font-size: 0.6rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    padding-inline: 0.85rem;
  }

  .hero-copy {
    min-height: 60svh;
  }

  h1 {
    margin-block: 2rem;
  }

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

  .hero-visual {
    height: 66svh;
    min-height: 31rem;
  }

  .hero-photo {
    border-radius: 4.2rem 0.8rem 4.2rem 0.8rem;
  }

  .hero-seal {
    width: 7.1rem;
  }

  .hero-caption {
    font-size: 0.48rem;
  }

  .essence h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .essence-text {
    grid-template-columns: 1fr;
  }

  .method {
    padding-inline: 1rem;
  }

  .method h2,
  .about h2,
  .journey h2 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .method-card {
    min-height: 23rem;
  }

  .about {
    padding: 0.7rem;
  }

  .about-photo {
    min-height: 36rem;
  }

  .about-photo img {
    object-position: 50% center;
  }

  .about-photo > span {
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .about-copy {
    padding-block: 5rem;
  }

  .statement {
    padding-inline: 1.2rem;
  }

  .statement-photo {
    height: 29rem;
    width: 88vw;
  }

  blockquote {
    font-size: clamp(3rem, 13.5vw, 4.7rem);
  }

  .journey-list li {
    gap: 1rem;
  }

  .closing {
    min-height: 76svh;
  }

  .closing h2 {
    font-size: clamp(4rem, 18vw, 6.8rem);
  }

  .closing-lines {
    height: 33rem;
    width: 33rem;
  }

  footer {
    padding-bottom: 5rem;
  }

  .footer-contact,
  .footer-contact address,
  .footer-bottom {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .footer-contact address {
    gap: 2.2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    padding-top: 2rem;
  }

  .footer-bottom > p,
  .footer-links {
    justify-self: start;
    margin: 0;
  }

  .floating-cta {
    display: flex;
  }
}

@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;
  }

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

/* Conteúdo aprovado — versão multipágina */

nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.home-page .hero-title-long {
  font-size: clamp(3.4rem, min(5.6vw, 9vh), 5.4rem);
  line-height: 0.91;
  max-width: 10.5ch;
}

.home-page .hero-title-long span {
  font-size: 0.96em;
  margin-top: 0.14em;
  padding-left: 0;
}

.paths {
  padding: clamp(6rem, 10vw, 9rem) clamp(1.4rem, 7vw, 8rem);
}

.paths-heading {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 7vw, 8rem);
  grid-template-columns: 1.35fr 0.65fr;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.paths-heading h2,
.editorial-copy h2,
.profile-copy h2,
.principles-heading h2,
.process-heading h2,
.services-heading h2,
.contact-panel h2,
.wellbeing-hero h1 {
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.paths-heading h2 {
  margin: 1.5rem 0 0;
  max-width: 10ch;
}

.paths-heading > p,
.services-heading > p,
.process-heading > p,
.contact-panel-copy > p,
.reflection-grid article > p:last-child {
  color: rgba(53, 64, 47, 0.74);
  line-height: 1.75;
  margin: 0;
}

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

.path-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
  grid-template-columns: 3.5rem 1fr 3rem;
  padding: clamp(1.6rem, 3vw, 2.8rem) clamp(0.2rem, 1.5vw, 1.5rem);
  transition: background 0.35s ease, padding 0.35s var(--ease);
}

.path-item:hover {
  background: var(--cream);
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}

.path-number {
  color: var(--gold);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.path-copy {
  display: grid;
  gap: 0.55rem;
}

.path-copy strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.path-copy small {
  color: rgba(53, 64, 47, 0.66);
  font-size: 0.82rem;
  line-height: 1.6;
}

.path-arrow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 2.8rem;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
  width: 2.8rem;
}

.path-item:hover .path-arrow {
  background: var(--forest-deep);
  color: var(--cream);
  transform: rotate(45deg);
}

.home-about {
  min-height: 0;
  padding: clamp(1rem, 2vw, 2rem);
}

.home-about .about-photo {
  min-height: clamp(36rem, 52vw, 46rem);
}

.home-about .about-copy {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.compact-statement {
  min-height: clamp(34rem, 70svh, 43rem);
}

.compact-statement blockquote {
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  max-width: 13ch;
}

.compact-closing {
  min-height: 68svh;
}

.inner-page .site-header:not(.is-scrolled) {
  background: rgba(250, 247, 241, 0.84);
  box-shadow: 0 1px 0 rgba(53, 64, 47, 0.08);
}

.page-hero {
  background: var(--cream);
  display: grid;
  gap: 1rem;
  grid-template-columns: 56% 44%;
  min-height: 48rem;
  padding: 7.4rem 1rem 1rem;
}

.page-hero-copy {
  align-self: center;
  min-width: 0;
  padding: 0 clamp(3rem, 6vw, 7rem) clamp(3rem, 6vw, 7rem);
}

.back-link {
  border-bottom: 1px solid var(--line);
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: 0.55rem;
  width: max-content;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 5.6vw, 5.4rem);
  line-height: 0.88;
  margin: 1.7rem 0 2.4rem;
  max-width: 9ch;
}

.wellbeing-hero h1 {
  max-width: 13ch;
}

.page-hero h1 em,
.page-next h2 em,
.wellbeing-hero h1 em,
.wellbeing-quote blockquote em {
  color: var(--gold);
  display: block;
  font-weight: 400;
}

.page-lead {
  color: rgba(53, 64, 47, 0.75);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.8;
  max-width: 37rem;
}

.page-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.2rem;
}

.page-jumps a {
  border: 1px solid var(--line);
  border-radius: 99rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.72rem 1.1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-jumps a:hover {
  background: var(--forest-deep);
  color: var(--cream);
}

.page-hero-photo {
  border-radius: 42% 1.1rem 1.1rem 1.1rem / 18% 1.1rem 1.1rem 1.1rem;
  min-width: 0;
  min-height: 36rem;
  overflow: hidden;
}

.page-hero-reverse .page-hero-photo {
  align-self: center;
  height: 58rem;
  min-height: 58rem;
}

.page-hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  width: 100%;
}

.services-hero .page-hero-photo img {
  object-position: 50% center;
}

.editorial-section {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: 8rem 1fr;
  padding: clamp(7rem, 11vw, 11rem) clamp(1.4rem, 7vw, 8rem);
}

.editorial-index {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  padding-top: 0.35rem;
  text-transform: uppercase;
}

.editorial-copy {
  max-width: 64rem;
}

.editorial-copy h2,
.profile-copy h2,
.principles-heading h2,
.process-heading h2,
.services-heading h2,
.contact-panel h2 {
  margin: 1.5rem 0 2.5rem;
}

.lead-paragraph {
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.25;
  max-width: 27ch;
}

.text-columns {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3.5rem;
}

.text-columns p,
.profile-copy > p,
.fit-column > p,
.process-list p,
.services-list li {
  color: rgba(53, 64, 47, 0.74);
  line-height: 1.8;
}

.profile-section {
  background: var(--sand);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(1rem, 2vw, 2rem);
}

.profile-photo {
  border-radius: 1rem 42% 42% 1rem / 1rem 14% 14% 1rem;
  max-height: 53rem;
  min-height: 44rem;
  overflow: hidden;
}

.profile-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  width: 100%;
}

.profile-copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.principles-section {
  background: var(--forest-deep);
  color: var(--cream);
  padding: clamp(7rem, 10vw, 10rem) clamp(1.4rem, 6vw, 7rem);
}

.principles-heading {
  max-width: 58rem;
}

.principles-list {
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 5rem;
}

.principles-list article {
  border-right: 1px solid rgba(245, 240, 232, 0.2);
  min-height: 18rem;
  padding: 2.2rem clamp(1.5rem, 3vw, 3.5rem);
}

.principles-list article:last-child {
  border-right: 0;
}

.principles-list span,
.services-list > article > span,
.process-list > li > span,
.reflection-grid article > span {
  color: var(--gold-light);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
}

.principles-list h3,
.services-list h3,
.process-list h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 4rem 0 1.2rem;
}

.principles-list p {
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.7;
}

.page-next {
  align-items: center;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 65svh;
  padding: 7rem 1.5rem;
  text-align: center;
}

.page-next .eyebrow {
  justify-content: center;
}

.page-next h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
  margin: 2rem auto 2.8rem;
  max-width: 16ch;
}

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

.fit-column {
  min-height: 42rem;
  padding: clamp(5rem, 8vw, 9rem) clamp(1.5rem, 6vw, 7rem);
}

.fit-positive {
  background: var(--sand);
}

.fit-neutral {
  background: var(--forest);
  color: var(--cream);
}

.fit-column h2 {
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 1.5rem 0 2.5rem;
}

.fit-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-column li {
  border-top: 1px solid var(--line);
  line-height: 1.6;
  padding: 1.1rem 0 1.1rem 1.5rem;
  position: relative;
}

.fit-column li::before {
  color: var(--gold);
  content: "◆";
  font-size: 0.5rem;
  left: 0;
  position: absolute;
  top: 1.45rem;
}

.fit-neutral .eyebrow,
.fit-neutral > p {
  color: rgba(245, 240, 232, 0.76);
}

.process-section {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(7rem, 11vw, 11rem) clamp(1.4rem, 7vw, 8rem);
}

.process-heading > p:last-child {
  color: rgba(53, 64, 47, 0.7);
  line-height: 1.75;
  max-width: 31rem;
}

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

.process-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 3rem 1fr;
  padding: 2.2rem 0;
}

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

.process-list > li > span,
.services-list > article > span,
.reflection-grid article > span {
  color: var(--gold);
}

.process-list h3 {
  margin: 0 0 0.75rem;
}

.process-list p {
  margin: 0;
}

.process-on-sand {
  background: var(--sand);
}

.services-section {
  padding: clamp(7rem, 11vw, 11rem) clamp(1.4rem, 7vw, 8rem);
}

.services-heading {
  display: grid;
  gap: 2rem clamp(3rem, 8vw, 9rem);
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 5rem;
}

.services-heading .eyebrow {
  grid-column: 1 / -1;
}

.services-heading h2,
.services-heading > p {
  margin: 0;
}

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

.services-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: 4rem 1fr;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
}

.services-list h3 {
  margin: 0 0 1.5rem;
}

.services-list ul {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-panel {
  background: var(--forest-deep);
  color: var(--cream);
  display: grid;
  gap: clamp(4rem, 10vw, 12rem);
  grid-template-columns: 1.15fr 0.85fr;
  padding: clamp(7rem, 10vw, 10rem) clamp(1.4rem, 7vw, 8rem);
}

.contact-panel-copy > p {
  color: rgba(245, 240, 232, 0.7);
  max-width: 34rem;
}

.contact-panel-copy .button {
  background: var(--gold);
  color: var(--forest-deep);
}

.contact-panel-details {
  border-top: 1px solid rgba(245, 240, 232, 0.18);
  display: grid;
  font-style: normal;
}

.contact-panel-details a {
  border-bottom: 1px solid rgba(245, 240, 232, 0.18);
  display: grid;
  gap: 0.65rem;
  padding: 1.8rem 0;
}

.contact-panel-details span,
.contact-panel-details small {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel-details strong {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.wellbeing-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(185, 154, 98, 0.18), transparent 22rem),
    var(--cream);
}

.reflection-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(1rem, 2vw, 2rem);
}

.reflection-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 30rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.reflection-grid article:nth-child(2),
.reflection-grid article:nth-child(3) {
  background: var(--sand);
}

.reflection-grid .eyebrow {
  margin-top: 5rem;
}

.reflection-grid h2 {
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 1.5rem 0 2rem;
  max-width: 10ch;
}

.wellbeing-quote {
  align-items: center;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 42rem;
  padding: 7rem 1.5rem;
  text-align: center;
}

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

.wellbeing-quote blockquote {
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  max-width: 12ch;
}

.footer-links {
  flex-wrap: wrap;
}

@media (min-width: 1600px) {
  .home-page .hero-title-long {
    max-width: 13ch;
  }

  .home-page .hero-copy {
    padding-bottom: 5rem;
  }

  .home-page .hero-actions {
    margin-top: 1rem;
  }
}

@media (min-width: 1600px) and (max-height: 920px) {
  .home-page .hero-copy {
    padding-bottom: 3.5rem;
    padding-top: 5.5rem;
  }

  .home-page .hero-title-long {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }

  .home-page .hero-intro {
    line-height: 1.6;
    max-width: 40rem;
  }

  .home-page .hero-actions {
    margin-top: 0.75rem;
  }
}

@media (max-width: 980px) {
  .home-page .hero-title-long {
    font-size: clamp(3.7rem, 10vw, 6rem);
    max-width: 12ch;
  }

  .home-page .hero-copy {
    min-height: 0;
    padding-bottom: 5rem;
  }

  .paths-heading,
  .page-hero,
  .editorial-section,
  .profile-section,
  .process-section,
  .services-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 7rem;
  }

  .page-hero-copy {
    padding: 3rem 1.2rem 4rem;
  }

  .page-hero h1 {
    max-width: 11ch;
  }

  .page-hero-photo {
    border-radius: 6rem 1rem 6rem 1rem;
    min-height: 65svh;
  }

  .page-hero-reverse .page-hero-photo {
    min-height: 46svh;
  }

  .editorial-section {
    gap: 2rem;
  }

  .profile-photo {
    border-radius: 1rem 1rem 6rem 1rem;
    min-height: 62svh;
  }

  .profile-copy {
    padding-inline: 1rem;
  }

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

  .principles-list article {
    border-bottom: 1px solid rgba(245, 240, 232, 0.2);
    border-right: 0;
    min-height: 0;
  }

  .principles-list h3 {
    margin-top: 2.5rem;
  }

  .fit-section {
    grid-template-columns: 1fr;
  }

  .fit-column {
    min-height: 0;
  }

  .services-heading .eyebrow {
    grid-column: auto;
  }

  .services-heading h2,
  .services-heading > p {
    margin-top: 0;
  }

  .contact-panel-details {
    margin-top: 1rem;
  }
}

@media (max-width: 560px) {
  .home-page .hero-title-long {
    font-size: clamp(3.2rem, 13.8vw, 4.3rem);
    line-height: 0.93;
  }

  .paths {
    padding-inline: 1rem;
  }

  .paths-heading h2,
  .editorial-copy h2,
  .profile-copy h2,
  .principles-heading h2,
  .process-heading h2,
  .services-heading h2,
  .contact-panel h2,
  .wellbeing-hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.4rem);
  }

  .path-item {
    align-items: start;
    grid-template-columns: 2rem 1fr;
  }

  .path-arrow {
    display: none;
  }

  .path-copy strong {
    font-size: 2.15rem;
  }

  .home-about .about-photo {
    min-height: 34rem;
  }

  .compact-statement blockquote,
  .wellbeing-quote blockquote {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .page-hero {
    padding-inline: 0.7rem;
  }

  .page-hero-copy {
    padding-inline: 0.6rem;
  }

  .page-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .services-hero h1 {
    font-size: clamp(2.65rem, 12.6vw, 4.2rem);
  }

  .page-next {
    min-height: 0;
    padding: 5.5rem 1.25rem;
    width: 100%;
  }

  .page-next h2 {
    font-size: clamp(2.85rem, 12.4vw, 4.2rem);
    letter-spacing: -0.045em;
    line-height: 0.92;
    margin: 1.75rem auto 2.4rem;
    max-width: 100%;
    width: min(10ch, 100%);
  }

  .page-next .button {
    width: min(100%, 18.5rem);
  }

  .page-hero-photo {
    border-radius: 4.2rem 0.8rem 4.2rem 0.8rem;
    min-height: 34rem;
  }

  .page-hero-reverse .page-hero-photo {
    min-height: 25rem;
  }

  .text-columns,
  .reflection-grid {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    min-height: 35rem;
  }

  .principles-section,
  .process-section,
  .services-section,
  .contact-panel {
    padding-inline: 1rem;
  }

  .services-list article {
    gap: 1rem;
    grid-template-columns: 2rem 1fr;
  }

  .services-list h3,
  .process-list h3 {
    font-size: 2.35rem;
  }

  .process-list li {
    gap: 1rem;
  }

  .wellbeing-hero {
    min-height: 43rem;
    padding-inline: 1rem;
  }

  .reflection-grid {
    padding: 0.7rem;
  }

  .reflection-grid article {
    min-height: 25rem;
    padding: 2rem 1.5rem;
  }

  .reflection-grid .eyebrow {
    margin-top: 3rem;
  }

  .footer-links {
    row-gap: 0.8rem;
  }
}
