:root {
  --black: #080806;
  --ink: #0d1012;
  --cream: #f7f0e4;
  --white: #f5f2ed;
  --gold: #c79a59;
  --gold-light: #e3bd7b;
  --sans: "Montserrat", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #111;
  background: #f3d59d;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.about-shell {
  min-width: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(150px, 215px) 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 10px clamp(24px, 3.5vw, 58px);
  border-bottom: 1px solid rgba(222, 181, 116, 0.14);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.94), rgba(7, 7, 7, 0.74));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(5, 5, 5, 0.94);
}

.brand {
  display: block;
  width: clamp(142px, 13vw, 210px);
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.5vw, 28px);
}

.nav-item {
  position: relative;
  padding: 12px 0;
  color: rgba(246, 242, 237, 0.68);
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

a.nav-item:hover,
a.nav-item:focus-visible,
.nav-item.is-active {
  color: #f2d69d;
}

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

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(201, 164, 111, 0.34);
  background: rgba(8, 7, 6, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 15px;
  color: rgba(244, 239, 231, 0.82);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--gold-light);
  background: rgba(201, 164, 111, 0.1);
}

.header-actions,
.social-links,
.login-link {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

.social-links {
  gap: 14px;
}

.social-links a {
  color: rgba(238, 230, 220, 0.72);
  font-size: 13px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.login-link {
  gap: 8px;
  color: rgba(238, 230, 220, 0.5);
  font-size: 11px;
}

.login-link svg {
  width: 18px;
  height: 18px;
}

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

main {
  overflow: hidden;
}

.section-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(10px, 1vw, 17px);
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gold-divider {
  width: clamp(70px, 7vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), #f2cd86, transparent);
}

.about-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: max(720px, 100svh);
  padding: 130px clamp(48px, 9vw, 150px) 72px;
  isolation: isolate;
  background:
    radial-gradient(circle at 13% 13%, rgba(169, 123, 70, 0.2), transparent 30%),
    linear-gradient(90deg, #12100d 0%, #090907 48%, #080806 100%);
}

.about-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 6, 0.2) 0%, rgba(8, 8, 6, 0.95) 48%, rgba(8, 8, 6, 0.08) 71%);
  content: "";
  pointer-events: none;
}

.about-hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  overflow: hidden;
}

.about-hero-visual picture,
.about-hero-visual img {
  width: 100%;
  height: 100%;
}

.about-hero-visual img {
  object-fit: cover;
  object-position: center top;
}

.hero-monogram {
  position: absolute;
  z-index: 0;
  top: 11%;
  left: 2.5%;
  color: rgba(185, 166, 138, 0.07);
  font-family: var(--serif);
  font-size: clamp(280px, 35vw, 560px);
  letter-spacing: -0.22em;
  line-height: 0.75;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(64vw, 880px);
}

.about-hero-content h1 {
  margin: clamp(42px, 5vw, 70px) 0 30px;
  font-family: var(--serif);
  font-size: clamp(64px, 6.4vw, 105px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.about-hero-content h1 span,
.about-hero-content h1 strong {
  display: block;
  font-weight: 400;
}

.about-hero-content h1 em,
.about-hero-content h1 strong {
  color: var(--gold);
  font-style: normal;
}

.hero-summary {
  max-width: 460px;
  margin: 38px 0 0;
  color: rgba(244, 240, 235, 0.86);
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.75;
}

.founder-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  min-height: 760px;
  border-block: 1px solid rgba(218, 174, 106, 0.55);
  background: linear-gradient(110deg, #090907, #13110e 50%, #090907);
}

.founder-photo {
  min-height: 100%;
  overflow: hidden;
}

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

.founder-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 7vw, 115px) clamp(60px, 9vw, 155px);
  overflow: hidden;
}

.founder-monogram {
  position: absolute;
  right: -2%;
  color: rgba(198, 170, 126, 0.07);
  font-family: var(--serif);
  font-size: clamp(270px, 31vw, 520px);
  letter-spacing: -0.22em;
  line-height: 0.72;
  writing-mode: vertical-rl;
}

.founder-copy > *:not(.founder-monogram) {
  position: relative;
  z-index: 1;
}

.founder-copy h2 {
  margin: 24px 0 32px;
  font-family: var(--serif);
  font-size: clamp(65px, 6.5vw, 106px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.78;
}

.founder-copy h2 em,
.founder-copy h2 span {
  display: block;
}

.founder-copy h2 em {
  color: var(--gold);
  font-style: normal;
}

.founder-role {
  margin: 38px 0 24px !important;
  color: var(--gold);
  font-size: clamp(11px, 1vw, 16px) !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-copy > p:not(.section-kicker, .founder-role) {
  max-width: 660px;
  margin: 0 0 23px;
  color: rgba(248, 244, 238, 0.88);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.65;
}

.approach-section {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 7vw, 125px) clamp(45px, 7vw, 120px) clamp(65px, 6vw, 105px);
  background:
    radial-gradient(ellipse at 86% -14%, rgba(181, 149, 105, 0.16), transparent 36%),
    radial-gradient(ellipse at 0% 35%, rgba(171, 126, 73, 0.08), transparent 28%),
    linear-gradient(135deg, #10100e, #080907 68%);
}

.approach-section::before {
  position: absolute;
  z-index: -1;
  top: -17%;
  right: -10%;
  width: 48%;
  height: 65%;
  background: linear-gradient(130deg, transparent 14%, rgba(223, 195, 151, 0.1) 44%, rgba(74, 58, 39, 0.12) 46%, transparent 70%);
  content: "";
  filter: blur(4px);
  transform: rotate(8deg);
}

.approach-intro {
  max-width: 920px;
  margin: 0 auto clamp(52px, 5vw, 80px);
  text-align: center;
}

.approach-intro h2 {
  margin: 32px 0 24px;
  font-family: var(--serif);
  font-size: clamp(55px, 5.8vw, 92px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.approach-intro h2 em {
  color: var(--gold);
  font-style: normal;
}

.approach-intro > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(216, 200, 178, 0.75);
  font-size: clamp(16px, 1.4vw, 23px);
  line-height: 1.55;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1420px;
  margin: 0 auto;
  border: 1px solid rgba(207, 161, 90, 0.55);
}

.approach-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 410px;
  padding: 50px 35px 42px;
  text-align: center;
}

.approach-card + .approach-card {
  border-left: 1px solid rgba(207, 161, 90, 0.55);
}

.approach-card > svg {
  width: 90px;
  height: 90px;
  color: #deb571;
  stroke-width: 1.1;
}

.card-divider {
  width: 80%;
  height: 1px;
  margin: 22px 0 25px;
  background: linear-gradient(90deg, transparent, rgba(230, 187, 111, 0.9), transparent);
  box-shadow: 0 0 8px rgba(232, 187, 106, 0.42);
}

.approach-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.1vw, 51px);
  font-weight: 400;
  line-height: 0.84;
}

.approach-card h3 em {
  display: block;
  color: #d8b176;
  font-weight: 400;
}

.approach-card p {
  max-width: 330px;
  margin: 23px auto 0;
  color: rgba(212, 196, 174, 0.72);
  font-size: clamp(13px, 1.12vw, 18px);
  line-height: 1.5;
}

.purpose-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(70px, 6vw, 105px) clamp(40px, 5vw, 80px);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.85), transparent 45%),
    #f6efe3;
}

.purpose-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 610px;
  justify-content: center;
  padding: 70px clamp(38px, 6vw, 100px);
  border-block: 1px solid rgba(179, 133, 69, 0.65);
  text-align: center;
}

.purpose-card:first-child {
  border-left: 1px solid rgba(179, 133, 69, 0.65);
}

.purpose-card:last-child {
  border-right: 1px solid rgba(179, 133, 69, 0.65);
}

.purpose-card + .purpose-card::before {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 0;
  width: 1px;
  background: var(--gold);
  content: "";
}

.purpose-card::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(179, 133, 69, 0.22);
  content: "";
  pointer-events: none;
}

.purpose-card .section-kicker {
  color: #ad8347;
}

.purpose-card h2 {
  margin: 34px 0 28px;
  font-family: var(--serif);
  font-size: clamp(70px, 7.5vw, 122px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.purpose-divider {
  width: 90px;
  height: 1px;
  margin-bottom: 36px;
  background: #b98948;
}

.purpose-card > p:last-child {
  max-width: 550px;
  margin: 0;
  font-size: clamp(16px, 1.45vw, 23px);
  letter-spacing: 0.03em;
  line-height: 1.85;
}

.consultation-section {
  position: relative;
  display: grid;
  min-height: max(700px, 53.4vw);
  max-height: 920px;
  color: var(--white);
  isolation: isolate;
  place-items: center;
}

.consultation-background,
.consultation-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.consultation-background img {
  object-fit: cover;
}

.consultation-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  content: "";
}

.consultation-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(88%, 1000px);
  text-align: center;
}

.consultation-content h2 {
  margin: 30px 0 22px;
  font-family: var(--serif);
  font-size: clamp(70px, 8.2vw, 132px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.consultation-content h2 span,
.consultation-content h2 em {
  display: block;
}

.consultation-content h2 em {
  color: var(--gold);
  font-style: normal;
}

.consultation-content .gold-divider {
  background: linear-gradient(90deg, transparent, #e5b96d, transparent);
}

.consultation-content > p:not(.section-kicker) {
  margin: 28px 0 30px;
  font-size: clamp(17px, 1.55vw, 25px);
}

.consultation-button {
  display: grid;
  width: min(100%, 560px);
  min-height: 92px;
  padding: 20px 30px;
  color: #15110b;
  background: linear-gradient(110deg, #bd9452, #f2d699 48%, #c79f60);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  font-size: clamp(13px, 1.35vw, 22px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms ease, filter 220ms ease;
  place-items: center;
}

.consultation-button:hover,
.consultation-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.consultation-content address {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  font-size: clamp(15px, 1.3vw, 22px);
  font-style: normal;
}

.consultation-content address svg {
  width: 28px;
  height: 28px;
  color: #e8bb6f;
  stroke-width: 1.6;
}

.site-footer {
  padding: clamp(72px, 7vw, 110px) clamp(30px, 6vw, 100px) 32px;
  border-top: 1px solid rgba(201, 164, 111, 0.32);
  background:
    radial-gradient(circle at 8% 2%, rgba(190, 137, 70, 0.18), transparent 28%),
    linear-gradient(145deg, #090806, #11100d 52%, #080706);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 1fr 0.85fr;
  gap: clamp(34px, 4vw, 70px);
  max-width: 1320px;
  margin: 0 auto;
}

.footer-brand img {
  width: min(100%, 245px);
}

.footer-brand p,
.footer-connect p {
  max-width: 320px;
  color: rgba(231, 224, 215, 0.62);
  line-height: 1.6;
}

.footer-brand p {
  font-family: var(--serif);
  font-size: 22px;
}

.footer-column h2 {
  margin: 4px 0 26px;
  color: #d2a766;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav span {
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  color: rgba(241, 235, 227, 0.72);
  font-family: var(--serif);
  font-size: 19px;
  text-decoration: none;
}

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

.footer-nav span[aria-disabled="true"] {
  color: rgba(241, 235, 227, 0.36);
}

.footer-visit address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(236, 229, 220, 0.7);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.footer-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 28px;
  padding: 15px 17px;
  border: 1px solid rgba(201, 164, 111, 0.65);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-book-link svg {
  width: 17px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 164, 111, 0.4);
  border-radius: 50%;
  color: #d8b171;
  text-decoration: none;
  place-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  margin: 70px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 164, 111, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: rgba(226, 219, 210, 0.45);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(132px, 175px) 1fr auto;
  }

  .primary-nav {
    gap: 14px;
  }

  .social-links,
  .login-link span {
    display: none;
  }

  .founder-copy {
    padding-inline: 7vw;
  }
}

@media (max-width: 899px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 9px 22px;
  }

  .site-header.is-scrolled {
    min-height: 68px;
  }

  .brand {
    width: 122px;
  }

  .primary-nav,
  .login-link {
    display: none;
  }

  .social-links {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    background: #ead8bb;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 110;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding: 95px 30px 40px;
    background: rgba(5, 5, 4, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    color: #e9d8bb;
    background: transparent;
    font-family: var(--serif);
    font-size: 40px;
  }

  .mobile-nav-item {
    color: rgba(242, 236, 226, 0.53);
    font-family: var(--serif);
    font-size: 26px;
    text-decoration: none;
  }

  .mobile-nav-item.is-active {
    color: #e6bd78;
  }

  .mobile-nav-group {
    width: min(100%, 300px);
  }

  .mobile-treatment-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
  }

  .mobile-treatment-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
    transition: transform 200ms ease;
  }

  body.treatment-menu-open .mobile-treatment-toggle svg {
    transform: rotate(180deg);
  }

  .mobile-subnav {
    max-height: 0;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease;
  }

  body.treatment-menu-open .mobile-subnav {
    max-height: 70px;
    padding-top: 13px;
    opacity: 1;
  }

  .mobile-subnav a {
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-socials {
    display: flex;
    gap: 22px;
    margin-top: 18px;
  }

  .mobile-socials a {
    color: #d8b171;
    font-size: 17px;
  }

  .founder-section {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .approach-card {
    padding-inline: 20px;
  }

  .purpose-card {
    padding-inline: 35px;
  }

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

@media (max-width: 699px) {
  .social-links {
    display: none;
  }

  .about-hero {
    display: flex;
    min-height: 0;
    padding: 0;
    flex-direction: column;
    background:
      radial-gradient(circle at 15% 70%, rgba(173, 125, 72, 0.18), transparent 32%),
      linear-gradient(180deg, #0d0c0a, #090907);
  }

  .about-hero::after {
    display: none;
  }

  .about-hero-visual {
    position: relative;
    width: 100%;
    height: min(122vw, 920px);
    margin-top: 82px;
  }

  .about-hero-visual img {
    object-position: center top;
  }

  .hero-monogram {
    display: none;
  }

  .about-hero-content {
    width: 100%;
    padding: clamp(30px, 8vw, 44px) 8.2vw 15vw;
  }

  .about-hero-content .section-kicker {
    font-size: clamp(10px, 3.2vw, 14px);
  }

  .about-hero-content h1 {
    margin: 30px 0 28px;
    font-size: clamp(55px, 14.5vw, 88px);
    line-height: 0.93;
  }

  .about-hero-content h1 span:nth-child(2) {
    white-space: nowrap;
  }

  .hero-summary {
    margin-top: 30px;
    font-size: clamp(16px, 4.1vw, 21px);
    line-height: 1.65;
  }

  .founder-section {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .founder-photo {
    width: 100%;
    min-height: 0;
  }

  .founder-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }

  .founder-copy {
    padding: 14vw 8vw 17vw;
  }

  .founder-copy h2 {
    margin: 28px 0 34px;
    font-size: clamp(70px, 19vw, 105px);
    line-height: 0.74;
  }

  .founder-copy .gold-divider {
    width: 54%;
  }

  .founder-role {
    margin-top: 34px !important;
    font-size: 11px !important;
  }

  .founder-copy > p:not(.section-kicker, .founder-role) {
    font-size: clamp(15px, 3.8vw, 19px);
    line-height: 1.75;
  }

  .founder-monogram {
    top: 10%;
    right: -8%;
    font-size: 62vw;
  }

  .approach-section {
    padding: 18vw 8vw 16vw;
  }

  .approach-intro {
    margin-bottom: 11vw;
  }

  .approach-intro h2 {
    margin: 27px 0 25px;
    font-size: clamp(47px, 12.4vw, 67px);
  }

  .approach-intro > p:last-child {
    font-size: clamp(15px, 3.9vw, 19px);
  }

  .approach-grid {
    display: flex;
    border: 0;
    flex-direction: column;
    gap: 16px;
  }

  .approach-card {
    min-height: 0;
    padding: 11vw 7vw 10vw;
    border: 1px solid rgba(207, 161, 90, 0.66);
    border-radius: 22px;
  }

  .approach-card + .approach-card {
    border-left: 1px solid rgba(207, 161, 90, 0.66);
  }

  .approach-card > svg {
    width: 84px;
    height: 84px;
  }

  .approach-card h3 {
    font-size: clamp(38px, 10.5vw, 52px);
  }

  .approach-card p {
    font-size: clamp(14px, 3.7vw, 18px);
  }

  .purpose-section {
    display: flex;
    padding: 9vw 4vw;
    flex-direction: column;
    gap: 9vw;
  }

  .purpose-card {
    min-height: 0;
    padding: 19vw 8vw;
    border: 1px solid rgba(179, 133, 69, 0.65);
  }

  .purpose-card:first-child,
  .purpose-card:last-child {
    border: 1px solid rgba(179, 133, 69, 0.65);
  }

  .purpose-card + .purpose-card::before {
    display: none;
  }

  .purpose-card h2 {
    margin: 10vw 0 8vw;
    font-size: clamp(69px, 18vw, 103px);
  }

  .purpose-card > p:last-child {
    font-size: clamp(16px, 4.2vw, 20px);
    line-height: 1.85;
  }

  .consultation-section {
    min-height: max(770px, 211vw);
    max-height: none;
    padding: 96px 6vw 70px;
  }

  .consultation-section::after {
    background: rgba(0, 0, 0, 0.56);
  }

  .consultation-background img {
    object-position: center;
  }

  .consultation-content {
    width: 100%;
  }

  .consultation-content .section-kicker {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.8;
  }

  .consultation-content h2 {
    margin: 34px 0 28px;
    font-size: clamp(65px, 17.5vw, 96px);
    line-height: 0.82;
  }

  .consultation-content > p:not(.section-kicker) {
    max-width: 330px;
    margin-block: 32px;
    font-size: clamp(16px, 4.4vw, 21px);
    line-height: 1.5;
  }

  .consultation-button {
    width: min(92%, 530px);
    min-height: 74px;
    padding: 18px 14px;
    font-size: clamp(12px, 3.5vw, 17px);
  }

  .consultation-content address {
    margin-top: 31px;
    font-size: clamp(14px, 3.8vw, 18px);
  }

  .consultation-content address svg {
    width: 25px;
    height: 25px;
  }

  .site-footer {
    padding: 72px 8vw 26px;
  }

  .footer-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-column h2,
  .footer-nav a,
  .footer-nav span {
    margin-inline: auto;
  }

  .footer-visit address {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 54px;
    text-align: center;
  }
}

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

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

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