:root {
  --forest: #173f38;
  --forest-2: #24574d;
  --eucalyptus: #628477;
  --sage: #b8c9bf;
  --mist: #eef3f0;
  --warm-white: #fcfcf9;
  --ink: #23302c;
  --ink-soft: #5b6964;
  --line: #d9e2dd;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23,63,56,.10);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Lora", Georgia, serif;
  color: var(--forest);
}

a { color: inherit; }
img { max-width: 100%; }
.container-xl { max-width: 1260px; }

.site-header {
  background: rgba(252,252,249,.96);
  border-bottom: 1px solid var(--line);
}

.brand-row {
  padding: 1.15rem 0 .9rem;
}

.brand-centered {
  display: block;
  width: 310px;
  max-width: 72vw;
  margin: 0 auto;
}

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

.main-navigation {
  border-top: 1px solid rgba(217,226,221,.75);
}

.nav-center {
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: .4rem;
}

.nav-link {
  padding: .8rem 1rem !important;
  color: var(--ink-soft);
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .035em;
}

.nav-link:hover,
.nav-link.active { color: var(--forest); }

.nav-booking {
  position: relative;
  color: var(--forest);
}

.nav-booking:after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .48rem;
  height: 1px;
  background: var(--forest);
}

.mobile-menu-button {
  display: none;
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--forest);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu-button:hover,
.mobile-menu-button:focus {
  border-color: var(--sage);
  background: var(--mist);
  outline: none;
}

.mobile-menu-icon {
  display: flex;
  width: 20px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-button[aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  border-radius: 999px;
  font-weight: 600;
}

.btn-brand {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.btn-brand:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--eucalyptus);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light { color: #bdd0c8; }
.eyebrow.justify-content-center:before { width: 22px; }

.hero {
  padding: clamp(3.5rem,7vw,7rem) 0 0;
}

.hero-copy {
  max-width: 930px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem,8vw,7rem);
  line-height: .94;
  letter-spacing: -.05em;
}

.hero-lead {
  max-width: 760px;
  margin-top: 1.6rem;
  color: var(--ink-soft);
  font-size: clamp(1rem,1.6vw,1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2rem;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--forest);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.text-cta i { transition: transform .18s ease; }
.text-cta:hover i { transform: translateX(4px); }

.hero-note {
  margin-top: 1.4rem;
  color: #75817d;
  font-size: .78rem;
}

.hero-image-stage {
  position: relative;
  margin-top: 3.2rem;
}

.hero-image-placeholder {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 0 0 6rem 0;
  background:
    radial-gradient(circle at 28% 25%, rgba(255,255,255,.82), transparent 24%),
    linear-gradient(120deg,#dce7e1 0%,#b7c9c0 48%,#78968a 100%);
}

.hero-image-placeholder:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(23,63,56,.24),transparent 45%);
}

.image-label {
  position: absolute;
  z-index: 2;
  left: 2rem;
  bottom: 2rem;
  max-width: 350px;
  padding: 1.1rem 1.2rem;
  background: rgba(252,252,249,.92);
  backdrop-filter: blur(10px);
}

.image-label span,
.portrait-placeholder span {
  display: block;
  color: var(--eucalyptus);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.image-label strong,
.portrait-placeholder strong {
  display: block;
  margin-top: .25rem;
  font-family: "Lora",serif;
  color: var(--forest);
  font-size: 1.15rem;
}

.image-label small,
.portrait-placeholder small {
  display: block;
  margin-top: .25rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero-floating-mark {
  position: absolute;
  right: 4rem;
  bottom: -44px;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.hero-floating-mark img { width: 50px; }

.section-space {
  padding: clamp(5rem,9vw,9rem) 0;
}

.editorial-intro {
  padding-top: clamp(7rem,11vw,11rem);
}

.intro-kicker {
  padding-top: .6rem;
}

.small-note {
  color: #87928e;
  font-size: .76rem;
}

.editorial-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.7rem,5vw,5.2rem);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.editorial-lead {
  max-width: 820px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.9;
}

.interest-bands {
  margin-top: clamp(3.5rem,6vw,6rem);
  border-top: 1px solid var(--line);
}

.interest-band {
  display: grid;
  grid-template-columns: 90px minmax(220px,360px) 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
}

.interest-number {
  color: var(--eucalyptus);
  font-family: "Lora",serif;
  font-size: 1.1rem;
}

.interest-band h3 {
  margin: 0;
  font-size: 1.7rem;
}

.interest-band p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.complementary-strip {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: var(--mist);
  border-left: 3px solid var(--eucalyptus);
}

.complementary-strip i {
  font-size: 1.5rem;
  color: var(--forest);
}

.complementary-strip strong {
  color: var(--forest);
}

.complementary-strip p {
  margin: .35rem 0 0;
  color: var(--ink-soft);
  font-size: .87rem;
  line-height: 1.7;
}

.treatment-flow {
  background: #f3f7f4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin: 0;
  font-size: clamp(2.6rem,4.8vw,4.8rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.section-intro {
  margin-top: 1.3rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.timeline {
  position: relative;
  margin-top: 2rem;
}

.timeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42px;
  width: 1px;
  background: var(--sage);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 2rem;
  padding: 1.5rem 0 2.3rem;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--sage);
  color: var(--forest);
  font-family: "Lora",serif;
}

.timeline-content {
  max-width: 780px;
  padding-top: .8rem;
}

.timeline-content h3 {
  font-size: 1.7rem;
}

.timeline-content p {
  margin: .45rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.about-signature {
  padding: clamp(5rem,8vw,8rem) 0;
  background: var(--warm-white);
}

.about-shell {
  overflow: hidden;
  background: var(--forest);
  border-radius: 0 5rem 0 5rem;
}

.about-photo {
  height: 100%;
  min-height: 620px;
  padding: 2rem 0 2rem 2rem;
}

.portrait-placeholder {
  position: relative;
  height: 100%;
  min-height: 560px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 0 0 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%,rgba(255,255,255,.75),transparent 25%),
    linear-gradient(140deg,#dbe6e0,#a9beb4 55%,#678579);
}

.about-copy {
  height: 100%;
  padding: clamp(3rem,6vw,6rem);
  color: #fff;
}

.about-copy h2 {
  color: #fff;
  font-size: clamp(2.5rem,4.5vw,4.7rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.about-lead {
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.training-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

.training-symbol {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.training-row p {
  margin: .3rem 0 0;
  color: rgba(255,255,255,.65);
  font-size: .86rem;
  line-height: 1.6;
}

.light-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.journal-layout {
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 2.5rem;
}

.journal-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 420px;
  border: 1px solid var(--line);
}

.journal-image {
  min-height: 420px;
  background:
    radial-gradient(circle at 30% 25%,rgba(255,255,255,.75),transparent 23%),
    linear-gradient(140deg,#c9d8d1,#769387);
}

.journal-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.journal-feature-copy > span,
.journal-list article > span {
  color: var(--eucalyptus);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.journal-feature h3 {
  margin-top: .55rem;
  font-size: 2rem;
}

.journal-feature p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.journal-feature a,
.journal-list a {
  margin-top: .5rem;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.journal-list {
  border-top: 1px solid var(--line);
}

.journal-list article {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.journal-list h3 {
  margin: .5rem 0 .8rem;
  font-size: 1.55rem;
}

.faq-section {
  background: var(--mist);
}

.faq-heading {
  max-width: 790px;
}

.faq-accordion {
  max-width: 920px;
  margin-top: 3rem;
}

.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #cfdcd5;
  background: transparent;
}

.faq-accordion .accordion-button {
  padding: 1.45rem 0;
  background: transparent;
  box-shadow: none;
  color: var(--forest);
  font-family: "Lora",serif;
  font-size: 1.2rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--forest);
}

.faq-accordion .accordion-body {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.booking-section {
  padding: clamp(5rem,8vw,8rem) 0;
  background: var(--forest);
}

.booking-inner {
  max-width: 830px;
  margin: 0 auto;
  color: #fff;
}

.booking-symbol {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.booking-symbol img { width: 40px; }

.booking-inner h2 {
  color: #fff;
  font-size: clamp(2.8rem,5vw,5rem);
  letter-spacing: -.04em;
}

.booking-inner p {
  margin: 1.3rem auto 0;
  max-width: 700px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: #102f2a;
  color: rgba(255,255,255,.68);
}

.footer-brand img {
  width: 310px;
  max-width: 82vw;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: .8rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.7rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.42);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social i {
  font-size: 1rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-nav a {
  color: rgba(255,255,255,.7);
  font-size: .76rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .7rem;
}

@media (min-width: 992px) {
  .show-lg { display: block !important; }
}

@media (max-width: 991.98px) {
  .brand-row {
    padding: .9rem 0;
  }

  .brand-centered {
    width: 250px;
  }

  .mobile-menu-button {
    display: flex;
  }

  .main-navigation {
    border-top: 0;
  }

  .navbar-collapse {
    border-top: 1px solid var(--line);
  }

  .nav-center {
    flex-direction: column;
    align-items: stretch;
    padding: .7rem 0 1.2rem;
  }

  .nav-link {
    text-align: center;
  }

  .nav-booking:after { display: none; }

  .hero-image-placeholder {
    min-height: 390px;
    border-radius: 0 0 3rem 0;
  }

  .interest-band {
    grid-template-columns: 60px 1fr;
  }

  .interest-band p {
    grid-column: 2;
  }

  .about-photo {
    padding: 1.5rem 1.5rem 0;
    min-height: auto;
  }

  .portrait-placeholder {
    min-height: 480px;
  }

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

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

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: clamp(3.1rem,15vw,4.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-floating-mark {
    right: 1.2rem;
  }

  .interest-band {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .interest-band p {
    grid-column: 1;
  }

  .timeline:before { left: 30px; }

  .timeline-item {
    grid-template-columns: 62px 1fr;
    gap: 1rem;
  }

  .timeline-dot {
    width: 60px;
    height: 60px;
  }

  .about-shell {
    border-radius: 0 2.5rem 0 2.5rem;
  }

  .portrait-placeholder {
    min-height: 390px;
    border-radius: 0 0 0 2rem;
  }

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

  .journal-image {
    min-height: 300px;
  }

  .booking-actions,
  .booking-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
