@font-face {
  font-family: "Grift";
  src: url("assets/fonts/Grift-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grift";
  src: url("assets/fonts/Grift-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grift";
  src: url("assets/fonts/Grift-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grift";
  src: url("assets/fonts/Grift-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grift";
  src: url("assets/fonts/Grift-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grift";
  src: url("assets/fonts/Grift-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050706;
  --charcoal: #121815;
  --charcoal-soft: #1b211d;
  --ivory: #f2eee4;
  --ivory-light: #fbf7ee;
  --gold: #c79b45;
  --gold-deep: #946f22;
  --sage: #9dae89;
  --taupe: #d2c0a9;
  --blush: #e4572e;
  --ink: #111111;
  --muted: #4a4a4a;
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --serif: "Grift", "Arial Narrow", sans-serif;
  --sans: "Grift", "Helvetica Neue", Arial, sans-serif;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--black);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

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

.container {
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 118px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 900px;
  color: #ffffff;
  font-size: 5.25rem;
}

h2 {
  font-size: 3.35rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: #d3b775;
}

.btn-secondary {
  border-color: rgba(198, 164, 93, 0.72);
  background: rgba(5, 5, 5, 0.08);
  color: #ffffff;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(198, 164, 93, 0.14);
}

.btn-outline-dark {
  border-color: var(--gold-deep);
  background: transparent;
  color: var(--black);
}

.btn-outline-dark:hover {
  background: rgba(198, 164, 93, 0.16);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.58), rgba(5, 7, 6, 0));
  color: #ffffff;
  backdrop-filter: none;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(198, 164, 93, 0.22);
  background: rgba(5, 7, 6, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  width: min(100% - 48px, 1280px);
  min-height: 96px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.site-header .brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-self: center;
  column-gap: 12px;
  row-gap: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(198, 164, 93, 0.7);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

.site-header .brand-mark {
  grid-row: 1 / span 2;
}

.brand-name {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav a,
.nav-link-button {
  transition: color 170ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible {
  color: var(--gold);
}

.nav-link-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link-button svg {
  width: 14px;
  height: 14px;
}

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

.services-menu {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  display: grid;
  width: 660px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 18px;
  border: 1px solid rgba(198, 164, 93, 0.24);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.services-menu::before {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
  content: "";
}

.services-menu a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-transform: none;
}

.services-menu a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.services-menu a:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.services-menu a:hover {
  background: rgba(198, 164, 93, 0.08);
}

.services-menu span {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.services-menu small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  justify-self: end;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.1);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 170ms ease,
    transform 170ms ease;
}

.nav-cta:hover {
  border-color: var(--gold);
  background: rgba(199, 155, 69, 0.18);
  transform: translateY(-1px);
}

.menu-toggle {
  display: inline-flex;
  width: auto;
  height: 46px;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(199, 155, 69, 0.82);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.drawer-close {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(198, 164, 93, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.menu-toggle svg,
.drawer-close svg {
  width: 19px;
  height: 19px;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  overflow: hidden;
  background: var(--black);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-drawer::before,
.mobile-drawer::after {
  position: absolute;
  inset: 0;
  content: "";
}

.mobile-drawer::before {
  background:
    url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=2200&q=86")
      center / cover no-repeat;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.02);
}

.mobile-drawer::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.95)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.94));
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  padding: 34px 48px 42px;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.drawer-top .brand {
  opacity: 0.48;
}

.drawer-nav {
  position: relative;
  display: grid;
  align-self: center;
  justify-items: center;
  gap: 24px;
  margin: 0 auto;
  border-top: 0;
  text-align: center;
}

.drawer-nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.1);
  content: "CONNECT";
  font-family: var(--serif);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.drawer-nav > a,
.drawer-accordion {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.55vw, 2.85rem);
  font-weight: 500;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 170ms ease,
    opacity 170ms ease,
    transform 170ms ease;
}

.drawer-nav > a:hover,
.drawer-accordion:hover,
.drawer-nav > a:focus-visible,
.drawer-accordion:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
}

.drawer-accordion svg {
  width: 22px;
  height: 22px;
  margin-left: 12px;
  color: var(--gold);
  transition: transform 170ms ease;
}

.drawer-accordion.is-open svg {
  transform: rotate(180deg);
}

.drawer-panel {
  display: none;
  justify-items: center;
  padding: 2px 0 8px;
  border-bottom: 0;
}

.drawer-panel.is-open {
  display: grid;
  gap: 9px;
}

.drawer-panel a {
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-close {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
}

.drawer-close svg {
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.76);
  stroke-width: 1.25;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin: 14px auto 0;
  padding: 0 28px;
  border: 1px solid rgba(199, 155, 69, 0.68);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding: 155px 0 44px;
  overflow: hidden;
  background: var(--black);
  color: #ffffff;
}

.hero-media,
.hero-overlay,
.final-cta-media {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=2200&q=86")
      center / cover no-repeat;
  filter: saturate(0.92) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1220px;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.hero-wordmark {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 9.2rem;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.hero-wordmark,
.hero-content h1,
.hero-copy,
.hero-actions,
.hero-signals div,
.service-card,
.membership-card,
.journal-item,
.copy-block,
.section-heading,
.editorial-figure,
.wide-image,
.about-image,
.image-collage img,
.testimonial-card,
.network-list span,
.drawer-nav > a,
.drawer-accordion,
.drawer-panel a,
.drawer-cta {
  will-change: transform, opacity;
}

.hero-content h1 {
  max-width: 920px;
  font-size: 2.55rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-signals {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: end;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-signals div {
  display: grid;
  gap: 9px;
  min-height: 98px;
  align-content: center;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-signals div:last-child {
  border-right: 0;
}

.hero-signals span {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.hero-signals strong {
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 56px;
}

.copy-block {
  display: grid;
  gap: 24px;
}

.copy-block p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-intro .copy-block {
  grid-column: 1 / span 6;
}

.split-intro .editorial-figure {
  grid-column: 8 / span 5;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    var(--ivory);
}

.question-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.question-list p {
  position: relative;
  max-width: 620px;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 600;
}

.question-list p::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--gold-deep);
  content: "";
}

.editorial-figure,
.about-image,
.wide-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-card {
  aspect-ratio: 4 / 5;
}

.portrait-card img,
.wide-image img,
.about-image img {
  filter: grayscale(0.18) saturate(0.78);
}

.portrait-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.promise-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    linear-gradient(90deg, rgba(199, 155, 69, 0.13), transparent 32%, rgba(15, 75, 51, 0.24)),
    var(--black);
  color: #ffffff;
}

.promise-section::before,
.promise-section::after {
  position: absolute;
  left: 50%;
  width: min(100% - 64px, 1220px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 93, 0.42), transparent);
  content: "";
  transform: translateX(-50%);
}

.promise-section::before {
  top: 38px;
}

.promise-section::after {
  bottom: 38px;
}

.promise-inner {
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.promise-inner h2 {
  max-width: 920px;
  color: #ffffff;
}

.promise-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.signature {
  margin-top: 12px;
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.services-section {
  background: var(--ivory-light);
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 20px;
  margin-bottom: 58px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  min-height: 290px;
  align-content: start;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  border-color: rgba(198, 164, 93, 0.7);
  background: #ffffff;
  transform: translateY(-4px);
}

.service-card > svg {
  width: 28px;
  height: 28px;
  color: var(--gold-deep);
  stroke-width: 1.6;
}

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

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card a svg {
  width: 15px;
  height: 15px;
}

.dark-editorial {
  padding: 128px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--charcoal);
  color: #ffffff;
}

.split-dark .wide-image {
  grid-column: 1 / span 6;
  aspect-ratio: 1 / 1;
}

.split-dark .dark-copy {
  display: grid;
  grid-column: 8 / span 5;
  gap: 25px;
}

.dark-copy h2 {
  color: #ffffff;
}

.dark-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.experiences-section {
  background: var(--ivory);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 62px;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.experience-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(154, 122, 50, 0.32);
  border-radius: 999px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.image-collage {
  display: grid;
  min-height: 620px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: repeat(8, 1fr);
  gap: 18px;
}

.image-collage img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(0.82) contrast(1.02);
}

.collage-large {
  grid-column: 1 / span 5;
  grid-row: 1 / span 5;
}

.collage-tall {
  grid-column: 6 / span 3;
  grid-row: 2 / span 6;
}

.collage-small {
  grid-column: 2 / span 4;
  grid-row: 6 / span 3;
}

.testimonial-section {
  padding: 112px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    var(--sage);
  color: var(--ink);
}

.testimonial-inner {
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.testimonial-inner h2 {
  max-width: 680px;
}

.testimonial-card {
  display: grid;
  max-width: 880px;
  gap: 28px;
  margin: 10px 0 0;
}

.testimonial-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.16;
}

.testimonial-card figcaption {
  display: grid;
  gap: 3px;
}

.testimonial-card strong {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-card span {
  color: rgba(17, 17, 17, 0.64);
  font-size: 14px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.44);
  border-radius: 50%;
  background: transparent;
}

.testimonial-dots button.is-active {
  border-color: var(--black);
  background: var(--black);
}

.memberships-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--black);
  color: #ffffff;
}

.memberships-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.memberships-section .section-heading h2 {
  color: #ffffff;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.membership-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(198, 164, 93, 0.22);
  border-radius: 8px;
  background: var(--charcoal);
  color: #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.membership-card:hover {
  border-color: rgba(198, 164, 93, 0.78);
  transform: translateY(-4px);
}

.membership-card.featured {
  border-color: rgba(198, 164, 93, 0.9);
  background:
    linear-gradient(155deg, rgba(198, 164, 93, 0.98), rgba(216, 199, 181, 0.88)),
    var(--gold);
  color: var(--black);
}

.membership-card.featured .plan-label,
.membership-card.featured p,
.membership-card.featured li {
  color: rgba(5, 5, 5, 0.74);
}

.membership-card.featured .btn-primary {
  background: var(--black);
  color: #ffffff;
}

.plan-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-card h3 {
  max-width: 300px;
  font-size: 1.9rem;
}

.membership-card p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}

.membership-card ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 10px;
  padding: 0;
  list-style: none;
}

.membership-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.membership-card li svg {
  width: 17px;
  min-width: 17px;
  height: 17px;
  margin-top: 3px;
  color: currentColor;
}

.membership-card .btn {
  width: 100%;
  margin-top: auto;
}

.network-section {
  padding: 96px 0;
  background: var(--charcoal);
  color: #ffffff;
}

.network-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 56px;
}

.network-inner h2 {
  color: #ffffff;
  font-size: 2.75rem;
}

.network-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(198, 164, 93, 0.34);
  border-left: 1px solid rgba(198, 164, 93, 0.22);
}

.network-list span {
  min-height: 82px;
  padding: 22px;
  border-right: 1px solid rgba(198, 164, 93, 0.22);
  border-bottom: 1px solid rgba(198, 164, 93, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
}

.about-section {
  background: var(--taupe);
}

.split-about .copy-block {
  grid-column: 1 / span 6;
}

.split-about .about-image {
  grid-column: 8 / span 5;
  aspect-ratio: 4 / 5;
}

.about-image img {
  filter: grayscale(0.72) saturate(0.68) contrast(1.04);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--black);
  color: #ffffff;
}

.final-cta-media {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=2200&q=84")
      center / cover no-repeat;
  filter: saturate(0.88) contrast(1.08);
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72));
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1220px;
  gap: 24px;
}

.final-cta-content h2 {
  max-width: 790px;
  color: #ffffff;
}

.final-cta-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.journal-section {
  background: var(--ivory-light);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.journal-item {
  display: grid;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.journal-item img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  filter: saturate(0.82);
}

.journal-item span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-item strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.12;
}

.contact-section {
  padding: 124px 0;
  background: var(--black);
  color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 70px;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-copy h2 {
  max-width: 640px;
  color: #ffffff;
}

.contact-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 30px;
  border: 1px solid rgba(198, 164, 93, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 122px;
  padding: 13px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  color: var(--taupe);
  font-size: 14px;
}

.faq-section {
  padding: 104px 0;
  background: var(--ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 64px;
}

.faq-list {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.faq-list details {
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
}

.faq-list p {
  max-width: 680px;
  margin-top: 13px;
  color: var(--muted);
}

.site-footer {
  padding: 68px 0 26px;
  background: var(--black);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid p {
  max-width: 300px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(198, 164, 93, 0.32);
  border-radius: 50%;
  color: var(--gold);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }

  .nav-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

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

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

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

@media (max-width: 960px) {
  .container {
    width: min(100% - 44px, var(--container));
  }

  .section {
    padding: 88px 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

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

  .mobile-drawer {
    display: grid;
  }

  .nav-shell {
    width: min(100% - 36px, 1280px);
    min-height: 86px;
  }

  .hero {
    min-height: auto;
    padding: 148px 0 34px;
  }

  .hero-wordmark {
    font-size: 6.5rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 70px;
  }

  .hero-signals div:nth-child(2) {
    border-right: 0;
  }

  .hero-signals div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .split,
  .experience-layout,
  .network-inner,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split-intro .copy-block,
  .split-intro .editorial-figure,
  .split-dark .wide-image,
  .split-dark .dark-copy,
  .split-about .copy-block,
  .split-about .about-image {
    grid-column: auto;
  }

  .split-dark .wide-image {
    aspect-ratio: 16 / 10;
  }

  .experience-layout,
  .contact-layout,
  .faq-layout,
  .network-inner {
    gap: 40px;
  }

  .image-collage {
    min-height: 560px;
  }

  .membership-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .membership-card {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

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

  .section,
  .dark-editorial,
  .testimonial-section,
  .contact-section,
  .faq-section {
    padding: 72px 0;
  }

  .promise-section,
  .final-cta {
    padding: 88px 0;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-wordmark {
    font-size: 4.25rem;
  }

  .hero-content h1 {
    font-size: 1.65rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 46px;
    padding: 0;
    border-radius: 50%;
  }

  .menu-toggle span {
    display: none;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-signals {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .hero-signals div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
  }

  .hero-signals div:last-child {
    border-bottom: 0;
  }

  .hero-signals strong {
    font-size: 0.82rem;
  }

  .drawer-inner {
    padding: 24px 20px 28px;
  }

  .drawer-nav {
    gap: 18px;
    margin: 0 auto;
  }

  .drawer-nav::before {
    font-size: 5.8rem;
  }

  .drawer-nav > a,
  .drawer-accordion {
    min-height: 0;
    font-size: 1.35rem;
  }

  .drawer-panel {
    padding: 0 0 4px;
  }

  .drawer-close {
    top: 18px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .drawer-close svg {
    width: 32px;
    height: 32px;
  }

  .drawer-cta {
    width: 100%;
    max-width: 320px;
    margin-top: 22px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .split {
    gap: 34px;
  }

  .portrait-card,
  .split-about .about-image {
    aspect-ratio: 4 / 4.7;
  }

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

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .image-collage {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .collage-large,
  .collage-tall,
  .collage-small {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .testimonial-card blockquote {
    font-size: 2rem;
  }

  .membership-card {
    padding: 26px;
  }

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

  .network-list span {
    min-height: 68px;
  }

  .contact-form {
    padding: 22px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
