:root {
  --deep: #102827;
  --ink: #172322;
  --muted: #65706b;
  --shell: #f7f3ec;
  --paper: #fffaf1;
  --aqua: #9dd8ce;
  --teal: #2f7472;
  --reef: #1f5965;
  --palm: #546f47;
  --gold: #c9a24b;
  --clay: #b56f4b;
  --line: rgba(23, 35, 34, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--shell);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.wrap {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.nav__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav__links a {
  text-decoration: none;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--solid {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.section {
  padding: 96px 0;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.section__head h2 {
  font-size: clamp(42px, 7vw, 86px);
}

.section__head p {
  color: var(--muted);
  font-size: 18px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: white;
  background: var(--deep);
}

.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(9, 28, 27, 0.82));
}

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

.service span {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service h3 {
  font-size: 34px;
}

.service p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.16;
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-band {
  padding: 70px 0;
  text-align: center;
}

.booking-band h2 {
  font-size: clamp(40px, 7vw, 84px);
}

.booking-band p {
  margin: 20px auto 28px;
  max-width: 620px;
  color: var(--muted);
}

.footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

/* Harbor Editorial */
.harbor {
  background: #fbf7ee;
}

.harbor .nav {
  background: rgba(251, 247, 238, 0.82);
  color: var(--deep);
}

.harbor .hero {
  min-height: 610px;
  padding: 54px 0 58px;
  display: grid;
  align-items: end;
  background: linear-gradient(180deg, rgba(251, 247, 238, 0.86), rgba(251, 247, 238, 0.98)), url("/design/alternates/assets/tex/linen.jpg") center / cover;
}

.harbor .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.harbor .hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 7vw, 88px);
}

.harbor .hero__copy p {
  max-width: 560px;
  margin: 18px 0 24px;
  font-size: 20px;
  color: var(--muted);
}

.harbor .hero__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.harbor .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.harbor .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.harbor .stat {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.harbor .stat:last-child {
  border-right: 0;
}

.harbor .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.harbor .stat span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Courtyard Sanctuary */
.courtyard {
  --ink: #15251f;
  --muted: #607167;
  background: #f7f3ec;
}

.courtyard .nav {
  background: rgba(247, 243, 236, 0.82);
}

.courtyard .hero {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: center;
  color: white;
  background: var(--deep);
}

.courtyard .hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.courtyard .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 42, 35, 0.9), rgba(11, 42, 35, 0.42) 55%, rgba(11, 42, 35, 0.18));
}

.courtyard .hero__copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto 0 max(20px, calc((100vw - 1180px) / 2));
}

.courtyard .hero h1 {
  max-width: 690px;
  font-size: clamp(50px, 8vw, 98px);
}

.courtyard .hero p {
  max-width: 540px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.courtyard .arrival {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.courtyard .arrival__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.courtyard .arrival__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courtyard .arrival__copy h2 {
  font-size: clamp(44px, 7vw, 86px);
}

.courtyard .arrival__copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.courtyard .ritual-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.courtyard .ritual-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.courtyard .ritual-list span {
  color: var(--muted);
}

/* Energy Meridian */
.energy {
  --ink: #eef8f3;
  --muted: #b8c8c0;
  --line: rgba(238, 248, 243, 0.16);
  color: var(--ink);
  background: #071d21;
}

.energy .nav {
  background: rgba(7, 29, 33, 0.78);
  border-bottom-color: rgba(157, 216, 206, 0.16);
}

.energy .btn--solid {
  background: var(--aqua);
  color: #062024;
  border-color: var(--aqua);
}

.energy .hero {
  min-height: 670px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 78% 22%, rgba(157, 216, 206, 0.3), transparent 28%), radial-gradient(circle at 20% 78%, rgba(201, 162, 75, 0.18), transparent 32%), #071d21;
}

.energy .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/design/alternates/assets/tex/water.jpg") center / cover;
  opacity: 0.18;
}

.energy .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
}

.energy .hero h1 {
  max-width: 780px;
  font-size: clamp(50px, 8vw, 98px);
}

.energy .hero p {
  max-width: 560px;
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 20px;
}

.energy .orbital {
  aspect-ratio: 1 / 1;
  position: relative;
  border: 1px solid rgba(157, 216, 206, 0.34);
  border-radius: 50%;
}

.energy .orbital::before,
.energy .orbital::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 162, 75, 0.38);
  border-radius: 50%;
}

.energy .orbital::before {
  inset: 48px;
}

.energy .orbital::after {
  inset: 104px;
  background: url("/design/alternates/assets/img/chakra.jpg") center / cover;
  box-shadow: 0 0 80px rgba(157, 216, 206, 0.25);
}

.energy .service {
  background: #0b2a2f;
}

.energy .booking-band {
  background: linear-gradient(135deg, rgba(157, 216, 206, 0.12), rgba(201, 162, 75, 0.1));
}

.energy .quote {
  border-color: rgba(157, 216, 206, 0.18);
}

@media (max-width: 860px) {
  .nav__inner {
    min-height: 68px;
  }

  .nav__links {
    display: none;
  }

  .section,
  .booking-band {
    padding: 68px 0;
  }

  .section__head,
  .harbor .hero__grid,
  .courtyard .arrival,
  .energy .hero__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .harbor .hero,
  .courtyard .hero,
  .energy .hero {
    min-height: auto;
    padding: 86px 0 72px;
  }

  .harbor .hero__image {
    aspect-ratio: 16 / 10;
  }

  .harbor .stats,
  .service-strip,
  .quote-row {
    grid-template-columns: 1fr;
  }

  .harbor .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .energy .orbital {
    width: min(360px, 90vw);
    margin: 0 auto;
  }
}
