@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f6f2eb;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --ink: #0d0e10;
  --ink-soft: #4d4f55;
  --gold: #c49a51;
  --gold-strong: #a87830;
  --gold-soft: rgba(196, 154, 81, 0.16);
  --forest: #15322d;
  --line: rgba(13, 14, 16, 0.09);
  --shadow: 0 30px 90px rgba(17, 17, 20, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 154, 81, 0.15), transparent 24%),
    radial-gradient(circle at top right, rgba(21, 50, 45, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, #f6f2eb 46%, #f2ede5 100%);
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.shell {
  width: min(1220px, calc(100% - 32px));
}

.topbar {
  border-bottom: 1px solid rgba(13, 14, 16, 0.06);
  background: rgba(251, 248, 241, 0.82);
  backdrop-filter: blur(20px);
}

.topbar-inner {
  min-height: 82px;
}

.brand {
  gap: 5px;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
}

.brand span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand small {
  color: rgba(13, 14, 16, 0.52);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.nav {
  gap: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: var(--forest);
}

.nav-cta {
  padding: 14px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fffaf2 !important;
}

.mobile-toggle {
  border-radius: 999px;
  border-color: rgba(13, 14, 16, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(13, 14, 16, 0.08);
}

.button.primary,
.button.black {
  color: #fffdf8;
  background: var(--ink);
  border-color: var(--ink);
}

.button.gold {
  color: #151312;
  background: linear-gradient(135deg, #ddb775 0%, #c49446 100%);
  border-color: rgba(196, 154, 81, 0.5);
  box-shadow: 0 16px 36px rgba(196, 154, 81, 0.22);
}

.button.light,
.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 14, 16, 0.12);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero {
  min-height: 0;
  display: block;
  padding: 34px 0 16px;
  overflow: hidden;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: center;
}

.hero-media {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
}

.hero-media-frame {
  position: relative;
  z-index: 2;
  width: min(88%, 560px);
  height: 720px;
  margin: 0 auto 0 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ddd3c5;
  box-shadow: var(--shadow);
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(12, 16, 14, 0.08) 0%, rgba(12, 16, 14, 0) 34%, rgba(12, 16, 14, 0.32) 100%),
    linear-gradient(0deg, rgba(12, 16, 14, 0.18) 0%, rgba(12, 16, 14, 0) 38%);
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  inset: 56px 0 0 56px;
  border-radius: var(--radius-xl);
  background: var(--ink);
}

.hero-outline {
  position: absolute;
  inset: 26px 38px 38px 22px;
  border: 1px solid rgba(196, 154, 81, 0.36);
  border-radius: calc(var(--radius-xl) + 2px);
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-video {
  z-index: 2;
}

.hero-fallback {
  z-index: 1;
  filter: saturate(0.92) contrast(1.02);
}

.floating-proof {
  position: absolute;
  right: 8px;
  bottom: 48px;
  z-index: 3;
  width: min(300px, 100%);
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(13, 14, 16, 0.06);
  box-shadow: var(--shadow);
}

.floating-proof strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.floating-proof p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 14px;
}

.hero::after {
  display: none;
}

.hero-content {
  width: auto;
  margin: 0;
  padding: 34px 0;
  color: var(--ink);
  text-align: left;
}

.hero-content h1 {
  max-width: 9.5ch;
  font-size: clamp(52px, 8.3vw, 110px);
  line-height: 0.9;
}

.hero-content .accent {
  color: var(--forest);
}

.hero-content .goldline {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 3px solid var(--gold);
}

.lede {
  max-width: 58ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.84;
}

.hero-actions {
  justify-content: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  margin-top: 12px;
  border-top: 0;
  background: transparent;
  color: var(--ink);
}

.hero-strip .shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(13, 14, 16, 0.08);
}

.hero-stat {
  padding: 28px 24px;
  border-left: 0;
  background: rgba(255, 253, 248, 0.92);
}

.hero-stat strong {
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-stat span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

section {
  scroll-margin-top: 96px;
}

.section {
  padding: 88px 0 0;
}

.band {
  border: 0;
  background: transparent;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin-bottom: 36px;
}

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

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.84;
}

h2 {
  font-size: clamp(38px, 5.3vw, 70px);
  line-height: 0.96;
}

h3 {
  font-size: 38px;
  line-height: 1;
}

.about-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.portrait-stack {
  display: grid;
  grid-template-columns: 0.82fr 0.58fr;
  gap: 16px;
  align-items: end;
}

.portrait-stack img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.portrait-stack img:last-child {
  transform: translateY(34px);
}

.copy h2 {
  max-width: 10ch;
}

.copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.quote {
  margin-top: 28px;
  padding: 28px 30px;
  border-left: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(13, 14, 16, 0.08);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.12;
}

.home-photo-feature {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 26px;
  align-items: stretch;
}

.home-photo-feature img {
  min-height: 560px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-photo-copy {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(17, 19, 23, 0.98), rgba(15, 25, 23, 0.98));
  box-shadow: var(--shadow);
  color: #fffbf4;
}

.home-photo-copy::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(196, 154, 81, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.home-photo-copy > * {
  position: relative;
  z-index: 1;
}

.home-photo-copy .eyebrow {
  color: #e3bf7d;
}

.home-photo-copy h2 {
  max-width: 10ch;
}

.home-photo-copy p:not(.eyebrow) {
  color: rgba(255, 251, 244, 0.74);
  font-size: 17px;
  line-height: 1.82;
}

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

.path-card,
.service-card,
.journey-card,
.form-card,
.footer-grid,
.modal-panel {
  border-radius: var(--radius-lg);
}

.path-card,
.service-card,
.journey-card {
  border: 1px solid rgba(13, 14, 16, 0.08);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(196, 154, 81, 0.15) 100%);
}

.path-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.path-card h3 {
  margin-top: 68px;
  max-width: 10ch;
}

.path-card p,
.service-card p,
.journey-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.82;
}

.path-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.path-card.dark {
  background: linear-gradient(180deg, #131517 0%, #0e1012 100%);
  color: #fffbf4;
}

.path-card.dark p {
  color: rgba(255, 251, 244, 0.74);
}

.path-card.dark .button.primary {
  color: #fffbf4;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 251, 244, 0.22);
}

.service-grid {
  gap: 18px;
}

.service-card {
  overflow: hidden;
}

.service-card img {
  border-radius: 28px 28px 0 0;
}

.service-body {
  padding: 26px;
}

.service-card.featured {
  background: linear-gradient(180deg, #141618 0%, #0f1113 100%);
  color: #fffbf4;
  border-color: rgba(196, 154, 81, 0.28);
  box-shadow: 0 24px 64px rgba(13, 14, 16, 0.18);
}

.service-meta {
  gap: 8px;
}

.pill {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(196, 154, 81, 0.18);
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card.featured .pill {
  background: rgba(255, 251, 244, 0.08);
  border-color: rgba(255, 251, 244, 0.14);
  color: #f0c981;
}

.service-card.featured p,
.service-card.featured .duration,
.service-card.featured .deposit-note {
  color: rgba(255, 251, 244, 0.74);
}

.price-row {
  padding-top: 18px;
  border-top: 1px solid rgba(13, 14, 16, 0.08);
}

.service-card.featured .price-row {
  border-top-color: rgba(255, 251, 244, 0.12);
}

.price {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

.duration {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deposit-note {
  font-size: 14px;
  line-height: 1.6;
}

.service-card.featured .button.primary {
  color: #151312;
  background: linear-gradient(135deg, #ddb775 0%, #c49446 100%);
  border-color: rgba(196, 154, 81, 0.48);
}

.retreat-feature {
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.retreat-card,
.retreat-panel {
  border-radius: 0;
}

.retreat-card {
  background: transparent;
  border: 0;
}

.retreat-card img {
  min-height: 620px;
}

.retreat-panel {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  background: linear-gradient(160deg, rgba(17, 19, 23, 0.98), rgba(15, 25, 23, 0.98));
}

.retreat-panel::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(196, 154, 81, 0.22);
  border-radius: 26px;
  pointer-events: none;
}

.retreat-panel > * {
  position: relative;
  z-index: 1;
}

.retreat-panel .eyebrow {
  color: #e3bf7d;
}

.retreat-panel h3 {
  max-width: 8ch;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
}

.retreat-panel p {
  color: rgba(255, 251, 244, 0.74);
  font-size: 17px;
  line-height: 1.82;
}

.retreat-panel ul {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.retreat-panel li {
  padding-top: 16px;
  border-bottom: 0;
  border-top: 1px solid rgba(255, 251, 244, 0.12);
  color: rgba(255, 251, 244, 0.76);
  line-height: 1.72;
}

.journey-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
}

.journey-sticky {
  top: 112px;
  padding: 36px;
  border-radius: 30px;
  border: 1px solid rgba(13, 14, 16, 0.08);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.journey-sticky h2 {
  max-width: 8ch;
}

.journey-sticky .copy {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
}

.journey-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
}

.gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery img {
  height: 240px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery img:nth-child(1) {
  grid-column: span 4;
  height: 260px;
}

.gallery img:nth-child(2) {
  grid-column: span 3;
}

.gallery img:nth-child(3) {
  grid-column: span 5;
  height: 260px;
}

.gallery img:nth-child(4) {
  grid-column: span 5;
}

.gallery img:nth-child(5) {
  grid-column: span 3;
}

.gallery img:nth-child(6) {
  grid-column: span 4;
}

.intake {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 26px;
}

.booking-copy {
  position: sticky;
  top: 112px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(17, 19, 23, 0.98), rgba(15, 25, 23, 0.98));
  box-shadow: var(--shadow);
  color: #fffbf4;
}

.booking-copy::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(196, 154, 81, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.booking-copy > * {
  position: relative;
  z-index: 1;
}

.booking-copy .eyebrow {
  color: #e3bf7d;
}

.included li {
  padding-top: 16px;
  border-bottom: 0;
  border-top: 1px solid rgba(255, 251, 244, 0.12);
  color: rgba(255, 251, 244, 0.76);
  line-height: 1.72;
}

.form-card {
  padding: 30px;
  border: 1px solid rgba(13, 14, 16, 0.08);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow);
}

.form-grid {
  gap: 16px;
}

label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

input,
select,
textarea {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(13, 14, 16, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(196, 154, 81, 0.72);
  box-shadow: 0 0 0 4px rgba(196, 154, 81, 0.14);
}

.payment-choice {
  gap: 12px;
}

.choice-card {
  min-height: 92px;
  align-content: start;
  gap: 6px;
  padding: 18px 18px 18px 48px;
  border-radius: 22px;
  border: 1px solid rgba(13, 14, 16, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-soft);
}

.choice-card input {
  left: 18px;
  top: 22px;
}

.choice-card strong {
  color: var(--ink);
  font-size: 15px;
}

.choice-card span {
  font-size: 13px;
  line-height: 1.5;
}

.choice-card:has(input:checked) {
  border-color: rgba(196, 154, 81, 0.6);
  box-shadow: 0 0 0 4px rgba(196, 154, 81, 0.14);
}

.form-note {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.status {
  border-radius: 16px;
  border-color: rgba(196, 154, 81, 0.18);
  background: rgba(196, 154, 81, 0.1);
  color: var(--ink);
}

.success {
  border-color: rgba(21, 50, 45, 0.18);
  background: rgba(21, 50, 45, 0.1);
}

.footer {
  padding: 90px 0 54px;
  border-top: 0;
  background: transparent;
  color: var(--ink);
}

.footer-grid {
  padding: 34px;
  border: 1px solid rgba(13, 14, 16, 0.08);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.footer h2 {
  max-width: 10ch;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.96;
}

.footer p,
.footer a {
  color: var(--ink-soft);
  line-height: 1.78;
}

.footer-links {
  gap: 14px;
  align-content: start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-actions {
  width: 100%;
}

.modal {
  background: rgba(13, 14, 16, 0.56);
  backdrop-filter: blur(18px);
}

.modal-panel {
  border: 1px solid rgba(13, 14, 16, 0.08);
  background: var(--paper);
}

.modal-head {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(13, 14, 16, 0.08);
}

.modal-title {
  font-size: 42px;
  line-height: 0.95;
}

.close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border-color: rgba(13, 14, 16, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.modal-body {
  padding: 28px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .home-photo-feature,
  .retreat-feature,
  .journey-layout,
  .intake,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-media-frame {
    width: min(84%, 520px);
    height: 620px;
  }

  .journey-sticky,
  .booking-copy {
    position: static;
  }
}

@media (max-width: 920px) {
  .nav {
    inset: 82px 0 auto 0;
    padding: 8px 18px 18px;
    border-bottom: 1px solid rgba(13, 14, 16, 0.08);
    background: rgba(255, 253, 248, 0.98);
  }

  .nav a {
    border-top: 1px solid rgba(13, 14, 16, 0.08);
  }

  .hero-strip .shell,
  .path-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: auto;
    height: 220px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 22px, 1220px);
  }

  .topbar-inner {
    min-height: 0;
    padding: 16px 0;
  }

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

  .hero {
    padding-top: 20px;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-panel {
    inset: 38px 0 0 30px;
  }

  .hero-outline {
    inset: 18px 22px 22px 12px;
  }

  .hero-media-frame {
    width: 88%;
    height: 520px;
  }

  .floating-proof {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px 0 0 auto;
  }

  .hero-content {
    padding: 12px 0 0;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(44px, 13vw, 66px);
    line-height: 0.96;
  }

  .section {
    padding-top: 72px;
  }

  .hero-strip .shell,
  .path-grid,
  .service-grid,
  .form-grid,
  .payment-choice,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .portrait-stack {
    grid-template-columns: 1fr;
  }

  .portrait-stack img:last-child {
    transform: none;
  }

  .home-photo-copy,
  .booking-copy,
  .retreat-panel,
  .form-card,
  .footer-grid,
  .modal-head,
  .modal-body {
    padding: 24px;
  }

  .home-photo-copy::before,
  .booking-copy::before,
  .retreat-panel::before {
    inset: 18px;
  }

  .retreat-card img {
    min-height: 320px;
  }

  .footer-links,
  .footer-actions {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}
