@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --ink: #17352d;
  --forest: #0f4b3c;
  --leaf: #76a373;
  --mint: #dceade;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --coral: #ee7b60;
  --gold: #d8b15d;
  --line: rgba(23, 53, 45, .16);
  --muted: #61736d;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -80px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}
.skip:focus { top: 12px; }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
}
.site-header .wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.1;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-10deg);
  font-family: var(--serif);
  font-size: 18px;
}
.logo-text { font-size: 12px; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta { padding: 10px 17px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; }
.nav-cta:hover { background: white; color: var(--forest); }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 74% 38%, rgba(232, 166, 93, .42), transparent 27%),
    radial-gradient(circle at 20% 82%, rgba(109, 163, 130, .38), transparent 30%),
    linear-gradient(130deg, #0d3c33 0%, #1a5b48 53%, #082f2a 100%);
}
.hero:before, .hero:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
}
.hero:before { width: 580px; height: 580px; right: -170px; top: -170px; }
.hero:after { width: 360px; height: 360px; left: -170px; bottom: -210px; }
.hero .wrap {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 64px;
  padding-top: 108px;
  padding-bottom: 64px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f2bd90; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 i, h2 i { color: #f2bd90; font-weight: 600; }
.hero-lede { max-width: 600px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 51px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #d8644d; }
.button.ghost { border-color: rgba(255,255,255,.45); background: transparent; }
.button.ghost:hover { background: white; color: var(--forest); }
.button.light { background: white; color: var(--forest); }
.button.light:hover { background: var(--cream); }
.hero-note { margin-top: 17px; color: rgba(255,255,255,.58); font-size: 12px; }

.hero-art { position: relative; min-height: 490px; }
.art-glow {
  position: absolute;
  inset: 8% 0 0 10%;
  background: radial-gradient(circle, rgba(255,210,139,.35), transparent 61%);
  filter: blur(8px);
}
.cover-meditation {
  position: absolute;
  z-index: 2;
  width: 90%;
  right: 8%;
  top: 9%;
  filter: drop-shadow(0 25px 32px rgba(0,0,0,.35));
  transform: rotate(-4deg);
}
.cover-miami {
  position: absolute;
  z-index: 3;
  width: 42%;
  right: 0;
  bottom: 2%;
  border: 5px solid rgba(255,255,255,.88);
  box-shadow: 0 25px 45px rgba(0,0,0,.38);
  transform: rotate(7deg);
}
.art-seal {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 6%;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.15;
  transform: rotate(-8deg);
  box-shadow: 0 13px 30px rgba(0,0,0,.22);
}

.proof { background: var(--cream); border-bottom: 1px solid var(--line); }
.proof .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 25px 24px; border-left: 1px solid var(--line); }
.proof-item:last-child { border-right: 1px solid var(--line); }
.proof-item b { display: block; font-family: var(--serif); font-size: 26px; line-height: 1.15; }
.proof-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.proof-note { grid-column: 1 / -1; margin: 0; padding: 12px 24px 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; text-align: center; }

.section { padding: 108px 0; }
.section-head { max-width: 740px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 61px);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.section-lede { color: var(--muted); font-size: 18px; }

.members { background: white; }
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.member-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 22px;
  color: white;
  text-decoration: none;
  isolation: isolate;
}
.member-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(7,31,27,.96) 3%, rgba(7,31,27,.42) 60%, rgba(7,31,27,.1));
}
.member-card.medmag { background: #345b51; }
.member-card.miami { background: #dc6f52; }
.member-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.member-card.medmag .member-image { object-fit: contain; padding: 60px 35px 150px; background: linear-gradient(145deg,#416c62,#173e36); }
.member-card:hover .member-image { transform: scale(1.035); }
.member-copy { position: absolute; left: 34px; right: 34px; bottom: 30px; }
.member-label { display: block; margin-bottom: 8px; color: #f6bd91; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.member-copy h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 33px; line-height: 1.1; }
.member-copy p { margin-bottom: 15px; color: rgba(255,255,255,.75); }
.member-link { font-size: 13px; font-weight: 700; }

.allowances { background: var(--forest); color: white; }
.allowances .eyebrow { color: #f2bd90; }
.allowances .section-lede { color: rgba(255,255,255,.68); }
.allowance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.allowance-card { padding: 32px; border: 1px solid rgba(255,255,255,.19); border-radius: 18px; background: rgba(255,255,255,.055); }
.allowance-card.featured { background: var(--cream); color: var(--ink); }
.allowance-card .number { color: #efad7e; font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.allowance-card h3 { margin: 16px 0 8px; font-family: var(--serif); font-size: 29px; }
.allowance-card p { color: rgba(255,255,255,.63); font-size: 14px; }
.allowance-card.featured p { color: var(--muted); }
.allowance-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
.allowance-card li { padding: 9px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: 13px; }
.allowance-card.featured li { border-color: var(--line); }
.allowance-note { max-width: 760px; margin: 28px auto 0; color: rgba(255,255,255,.62); font-size: 13px; text-align: center; }

.process { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-card { position: relative; padding: 33px 28px 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); counter-increment: step; }
.process-card:last-child { border-right: 1px solid var(--line); }
.process-card:before { content: "0" counter(step); display: block; margin-bottom: 55px; color: var(--coral); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.process-card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 24px; line-height: 1.15; }
.process-card p { color: var(--muted); font-size: 13px; }

.fit { background: white; }
.fit-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.category-grid { display: grid; grid-template-columns: 1fr 1fr; }
.category-grid span { padding: 17px 12px; border-top: 1px solid var(--line); color: var(--forest); font-size: 14px; font-weight: 600; }
.category-grid span:nth-child(odd) { padding-left: 0; }
.expansion-note { margin-top: 24px; padding: 20px 22px; border-left: 3px solid var(--coral); background: var(--cream); color: var(--muted); font-size: 13px; }

.cta { position: relative; overflow: hidden; padding: 110px 0; background: var(--coral); color: white; text-align: center; }
.cta:before { content: ""; position: absolute; width: 420px; height: 420px; left: -180px; top: -240px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.cta .wrap { position: relative; max-width: 850px; }
.cta .eyebrow { color: #522b22; }
.cta h2 { font-size: clamp(44px, 5vw, 68px); }
.cta p:not(.eyebrow) { max-width: 650px; margin: 0 auto 28px; color: rgba(255,255,255,.8); font-size: 18px; }

footer { padding: 44px 0; background: #082f29; color: rgba(255,255,255,.7); }
footer .wrap { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; }
footer .logo { color: white; }
footer p { margin: 0; font-size: 12px; }
footer nav { display: flex; gap: 22px; }
footer nav a { font-size: 12px; text-decoration: none; }
footer a:hover { color: white; }

@media (max-width: 900px) {
  .main-nav a:not(.nav-cta) { display: none; }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { position: relative; z-index: 4; }
  .hero-art { min-height: 410px; }
  .cover-meditation { width: 69%; left: 12%; }
  .cover-miami { width: 32%; right: 14%; }
  .art-seal { left: 7%; }
  .proof .wrap { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 1px solid var(--line); }
  .proof-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .allowance-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:nth-child(n+3) { border-top: 0; border-bottom: 1px solid var(--line); }
  .process-card:nth-child(2) { border-right: 1px solid var(--line); }
  .fit-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 650px) {
  .wrap { width: min(100% - 30px, 1160px); }
  .site-header .wrap { min-height: 72px; }
  .logo-text { max-width: 130px; }
  .hero .wrap { min-height: auto; gap: 25px; padding-top: 120px; padding-bottom: 45px; }
  .hero-lede { font-size: 17px; }
  .hero-art { min-height: 320px; }
  .cover-meditation { width: 88%; left: 2%; }
  .cover-miami { width: 36%; right: 5%; }
  .art-seal { width: 96px; height: 96px; left: 0; font-size: 14px; }
  .proof .wrap { width: 100%; }
  .proof-item { padding: 19px 18px; }
  .proof-item b { font-size: 21px; }
  .section { padding: 76px 0; }
  .member-grid { grid-template-columns: 1fr; }
  .member-card { min-height: 480px; }
  .member-copy { left: 24px; right: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card, .process-card:nth-child(n+3) { border: 1px solid var(--line); border-bottom: 0; }
  .process-card:last-child { border-bottom: 1px solid var(--line); }
  .process-card:before { margin-bottom: 22px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid span { padding-left: 0; }
  footer .wrap { grid-template-columns: 1fr; gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition: none !important; }
}
