/* =========================================================
   Sarah Shube · Clinician & Practice Branding
   Warm editorial design system
   ========================================================= */

:root {
  /* palette pulled from Sarah's portrait (green door, rust scarf, deep blue, cream) */
  --bg:           #F2EDE3;    /* warm cream */
  --bg-deep:      #E8E1D2;    /* sand */
  --ink:          #1D1A14;    /* near-black warm */
  --ink-soft:     #3A352B;
  --paper:        #FBF8F1;
  --rule:         #C9BFA8;

  --rust:         #A85A3D;    /* primary accent, clay/rust */
  --rust-deep:    #7E3F26;
  --moss:         #3A4F40;    /* deep botanical */
  --moss-deep:    #243228;
  --indigo:       #2A2E55;    /* from her scarf */
  --brass:        #A88B5C;

  --serif:  "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --max:    1240px;
  --max-narrow: 880px;
  --pad:    clamp(20px, 4vw, 56px);
  --gap-y:  clamp(80px, 12vw, 160px);

  --radius: 2px;
  --shadow-soft: 0 30px 60px -30px rgba(29,26,20,.25);
  --shadow-card: 0 24px 48px -24px rgba(29,26,20,.18);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--rust); }

/* =====================  TYPOGRAPHY  ===================== */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  max-width: 22ch;
  font-variation-settings: "opsz" 144;
}
.display em {
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content:"";
  width: 28px; height: 1px;
  background: var(--rust);
}
.eyebrow--light { color: rgba(251,248,241,.85); }
.eyebrow--light::before { background: var(--bg); }

/* =====================  LAYOUT  ===================== */
.section { padding: var(--gap-y) var(--pad); position: relative; }
.section__inner { max-width: var(--max); margin: 0 auto; }

/* =====================  NAV  ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  color: var(--paper);
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0));
  transition: background .35s var(--ease), color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(242,237,227,.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  color: var(--ink);
  border-bottom: 1px solid rgba(29,26,20,.08);
}
.nav__mark {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .01em;
}
.nav__mark-mono {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: .12em;
}
.nav__mark-word { font-size: 18px; }
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 13.5px;
  letter-spacing: .04em;
}
.nav__links a { opacity: .9; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  border: 1px solid currentColor;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: .12em;
  font-size: 11.5px;
  text-transform: uppercase;
}
.nav__cta:hover { background: var(--rust); border-color: var(--rust); color: var(--paper) !important; }
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero__video,
.hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__veil {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,12,8,.45) 0%, rgba(15,12,8,.15) 35%, rgba(15,12,8,.75) 100%);
}
.hero__content {
  padding: 0 var(--pad) clamp(80px, 12vw, 140px);
  max-width: 980px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 18px 0 28px;
  font-variation-settings: "opsz" 144;
}
.hero__title em { font-style: italic; color: #F2D5BC; font-weight: 400; }
.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  max-width: 60ch;
  color: rgba(251,248,241,.92);
  margin: 0 0 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px; right: var(--pad);
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(251,248,241,.7);
}
.hero__scroll-line {
  display: inline-block;
  width: 1px; height: 40px;
  background: rgba(251,248,241,.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content:"";
  position: absolute; top: -50%; left: 0;
  width: 100%; height: 60%;
  background: var(--paper);
  animation: scrollDot 2.4s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); }
  60%  { transform: translateY(120%); }
  100% { transform: translateY(220%); }
}

/* =====================  BUTTONS  ===================== */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: var(--sans);
}
.btn--primary {
  background: var(--rust);
  color: var(--paper);
  border-color: var(--rust);
}
.btn--primary:hover { background: var(--rust-deep); border-color: var(--rust-deep); color: var(--paper); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251,248,241,.5);
}
.btn--ghost:hover { background: rgba(251,248,241,.1); color: var(--paper); border-color: var(--paper); }

/* =====================  EDITORIAL BANNERS  ===================== */
.banner {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 78vh, 880px);
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  display: grid;
  align-items: center;
}
.banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.03);
  transition: transform 1.4s var(--ease);
}
.banner.is-visible .banner__image { transform: scale(1); }
.banner__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.banner__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--pad);
  display: grid;
}
.banner__content {
  max-width: 480px;
}
.banner__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -.022em;
  margin: 14px 0 22px;
  font-variation-settings: "opsz" 144;
}
.banner__title em {
  font-style: italic;
  color: #E5BD93;
  font-weight: 400;
}
.banner__line {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(251,248,241,.9);
  margin: 0;
  max-width: 42ch;
}

.banner--right .banner__inner { justify-items: end; }
.banner--right .banner__veil {
  background: linear-gradient(to left, rgba(15,12,8,.78) 0%, rgba(15,12,8,.5) 38%, rgba(15,12,8,.12) 78%, rgba(15,12,8,0) 100%);
}

.banner--left .banner__inner { justify-items: start; }
.banner--left .banner__veil {
  background: linear-gradient(to right, rgba(15,12,8,.78) 0%, rgba(15,12,8,.5) 38%, rgba(15,12,8,.12) 78%, rgba(15,12,8,0) 100%);
}

@media (max-width: 720px) {
  .banner { min-height: 70vh; }
  .banner--right .banner__veil,
  .banner--left .banner__veil {
    background: linear-gradient(180deg, rgba(15,12,8,.3) 0%, rgba(15,12,8,.75) 100%);
  }
  .banner--right .banner__inner,
  .banner--left .banner__inner { justify-items: start; }
  .banner__title { font-size: clamp(32px, 7vw, 44px); }
}

/* =====================  APPROACH  ===================== */
.approach { background: var(--bg); }
.approach__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.approach__card {
  background: var(--bg);
  padding: 40px 28px;
}
.approach__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--moss-deep);
}
.approach__card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* =====================  ABOUT  ===================== */
.about {
  background: var(--paper);
  padding: var(--gap-y) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.about__media img { width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__media:hover img { transform: scale(1.03); }
.about__caption {
  position: absolute;
  left: 20px; bottom: 18px;
  background: rgba(29,26,20,.7);
  color: var(--paper);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.about__copy p { font-size: 17px; line-height: 1.75; margin: 0 0 18px; color: var(--ink-soft); }
.about__copy p em { color: var(--moss-deep); font-style: italic; }
.about__pillars {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--rule);
}
.about__pillars li {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  display: flex;
  gap: 22px;
  font-size: 15.5px;
  color: var(--ink);
}
.about__pillars li span {
  font-family: var(--serif);
  color: var(--rust);
  font-style: italic;
  min-width: 30px;
}

/* =====================  SERVICES  ===================== */
.services { background: var(--bg); }
.tier {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 56px);
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 60px);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tier:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -28px rgba(29,26,20,.28); }
@media (max-width: 820px) { .tier { grid-template-columns: 1fr; } }

.tier__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}
.tier__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.tier__for { color: var(--ink-soft); font-size: 15px; margin: 0 0 24px; max-width: 40ch; line-height: 1.6; }
.tier__price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--moss-deep);
  margin: 0;
}
.tier__price-note {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-top: 6px;
  max-width: 36ch;
  line-height: 1.5;
}
.tier__intro {
  grid-column: 1 / -1;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 70ch;
  margin: 0 0 8px;
}
.tier__subhead {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  margin: 24px 0 12px;
  color: var(--moss-deep);
}
.tier__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tier__list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid rgba(29,26,20,.08);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.tier__list li:last-child { border-bottom: 0; }
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 14px; height: 1px;
  background: var(--rust);
}
.tier__solves {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px dashed var(--rule);
  font-size: 14.5px;
  color: var(--ink-soft);
  font-style: italic;
}
.tier__solves em { color: var(--rust); font-style: normal; font-weight: 500; letter-spacing: .03em; margin-right: 6px; }

/* =====================  OFFICES  ===================== */
.offices { background: var(--moss-deep); color: var(--paper); }
.offices .eyebrow { color: rgba(251,248,241,.7); }
.offices .eyebrow::before { background: #C9A47A; }
.offices .display { color: var(--paper); }
.offices .display em { color: #E1B68C; }
.offices .lede {
  max-width: 60ch;
  color: rgba(251,248,241,.82);
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0 0 60px;
}

.offices__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}
@media (max-width: 900px) { .offices__grid { grid-template-columns: 1fr; } }

.office {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  isolation: isolate;
  min-height: 460px;
  display: grid;
  align-items: end;
}
.office img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.5s var(--ease), filter .5s var(--ease);
}
.office::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 30%, rgba(0,0,0,.78) 100%);
  z-index: 1;
}
.office:hover img { transform: scale(1.04); }
.office figcaption {
  position: relative;
  z-index: 2;
  padding: 28px 32px 30px;
  color: var(--paper);
}
.office__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #E1B68C;
  margin-bottom: 12px;
}
.office h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 8px;
  max-width: 22ch;
}
.office p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(251,248,241,.85);
  max-width: 42ch;
}
.office--feature {
  grid-row: span 2;
  min-height: 680px;
}
.office--feature h3 { font-size: 32px; max-width: 18ch; }

/* =====================  ADD-ONS  ===================== */
.addons { background: var(--bg-deep); }
.addons__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.addons__table th,
.addons__table td {
  text-align: left;
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  font-size: 15.5px;
}
.addons__table th {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
}
.addons__table td:last-child {
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss-deep);
  font-size: 17px;
  text-align: right;
}
.addons__table tr:last-child td { border-bottom: 0; }

/* =====================  BUNDLES  ===================== */
.bundles { background: var(--bg); }
.bundle {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 44px);
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .bundle { grid-template-columns: 1fr; } }
.bundle__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--ink);
}
.bundle__desc { margin: 0; color: var(--ink-soft); font-size: 15px; }
.bundle__list { list-style: none; padding: 0; margin: 0; }
.bundle__list li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--moss-deep);
  padding: 6px 0;
}
.bundle__list li strong { font-style: normal; color: var(--ink); font-weight: 500; margin-right: 8px; }
.bundle__list li em { font-style: normal; font-family: var(--sans); font-size: 13px; color: var(--rust); margin-left: 8px; letter-spacing: .04em; }

.payment {
  margin-top: 64px;
  padding: 36px;
  border-left: 2px solid var(--rust);
  background: var(--bg-deep);
  max-width: 70ch;
}
.payment p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }

/* =====================  WHY  ===================== */
.why {
  background: var(--moss-deep);
  color: var(--paper);
  padding: clamp(100px,14vw,180px) var(--pad);
  text-align: center;
}
.why__inner { max-width: 900px; margin: 0 auto; }
.why__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 0 0 32px;
  font-variation-settings: "opsz" 144;
}
.why__body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(251,248,241,.85);
  max-width: 60ch;
  margin: 0 auto;
}

/* =====================  INQUIRE  ===================== */
.inquire { background: var(--paper); }
.inquire__inner { max-width: 880px; margin: 0 auto; }
.inquire__lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 48px;
  line-height: 1.7;
}
.inquire__form {
  display: grid;
  gap: 24px;
}
.inquire__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .inquire__row { grid-template-columns: 1fr; } }

.inquire__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.inquire__form input,
.inquire__form select,
.inquire__form textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  letter-spacing: 0;
  text-transform: none;
}
.inquire__form input:focus,
.inquire__form select:focus,
.inquire__form textarea:focus {
  border-color: var(--rust);
  background: var(--paper);
}
.inquire__form button {
  justify-self: start;
  margin-top: 8px;
}
.inquire__thanks {
  border-top: 1px solid var(--rule);
  padding-top: 36px;
  text-align: center;
}
.inquire__thanks h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  margin: 0 0 12px;
  color: var(--moss-deep);
}
.inquire__thanks p { color: var(--ink-soft); }

/* =====================  FOOTER  ===================== */
.foot {
  background: var(--ink);
  color: rgba(251,248,241,.7);
  padding: 64px var(--pad);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.foot__mark {
  font-family: var(--serif);
  color: var(--paper);
  font-size: 22px;
  margin: 0;
}
.foot__line { margin: 0; font-size: 13.5px; letter-spacing: .04em; }
.foot__legal { margin: 0; font-size: 12px; opacity: .55; }

/* =====================  ENTER ANIMATIONS  ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
