:root {
  --ink: #07120c;
  --green-950: #08140d;
  --green-900: #0d1d12;
  --green-800: #14291a;
  --green-700: #263f25;
  --green-600: #314d2d;
  --mist: #f5f4ef;
  --paper: #fbfaf6;
  --line: rgba(20, 41, 26, .16);
  --line-dark: rgba(255, 255, 255, .16);
  --gold: #caa260;
  --gold-strong: #d6b572;
  --water: #82c5bf;
  --muted: #687164;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(3, 11, 7, .22);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", 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;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--green-900);
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem clamp(1rem, 4vw, 3.75rem);
  color: var(--white);
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 12, 7, .78), rgba(4, 12, 7, .04));
}

.site-header.is-scrolled {
  padding-block: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(8, 20, 13, .9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  min-width: 178px;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .45));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  font-size: .92rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-cta,
.button-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: #3a5a35;
}

.button-ghost {
  border-color: rgba(255, 255, 255, .62);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .14);
}

.button-on-light {
  color: var(--green-800);
  border-color: rgba(20, 41, 26, .22);
  background: transparent;
}

.button-wide {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .7rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  padding: .7rem .85rem;
  font-size: .86rem;
  font-weight: 800;
}

.nav-toggle__icon {
  display: grid;
  gap: 4px;
}

.nav-toggle__icon span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 8, .96) 0%, rgba(5, 14, 8, .66) 42%, rgba(5, 14, 8, .22) 68%, rgba(5, 14, 8, .72) 100%),
    linear-gradient(180deg, rgba(5, 14, 8, .16) 0%, rgba(5, 14, 8, .15) 54%, rgba(5, 14, 8, .96) 100%);
  pointer-events: none;
}

.hero-water {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .68;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0, rgba(255,255,255,.08) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
}

.hero-media {
  position: absolute;
  right: clamp(1rem, 6vw, 6rem);
  top: 15vh;
  width: min(46vw, 680px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .46);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 13, .02), rgba(8, 20, 13, .5));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  padding: 8rem 0 clamp(3rem, 8vh, 5rem);
}

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

.small-label,
.section-kicker {
  display: block;
  color: var(--gold-strong);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: .35rem 0 .7rem;
  font-family: var(--serif);
  font-size: 7.7rem;
  font-weight: 600;
  line-height: .82;
}

.hero p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.booking-card {
  align-self: end;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(9, 22, 14, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card__top,
.booking-card__price,
.price-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.booking-card__top strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.picker-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
  margin-top: .95rem;
}

.picker-option {
  min-height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  cursor: pointer;
}

.picker-option.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-950);
}

.booking-card__price {
  margin: 1.2rem 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.booking-card__price span,
.booking-card p {
  color: rgba(255, 255, 255, .68);
}

.booking-card__price strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.booking-card p {
  margin: .8rem 0 0;
  font-size: .88rem;
}

.intro-panel {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: -2.5rem auto 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(7, 18, 12, .18);
}

.intro-panel p {
  max-width: 790px;
  margin: 0;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 1.05;
}

.text-link {
  flex: 0 0 auto;
  color: var(--green-700);
  font-size: .9rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section h2,
.contact-section h2 {
  margin: .35rem 0 0;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 600;
  line-height: .96;
}

.section p {
  color: var(--muted);
}

.space-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.space-layout p {
  max-width: 510px;
  font-size: 1.08rem;
}

.media-stack {
  display: grid;
  grid-template-columns: .8fr 1fr;
  align-items: end;
  gap: 1rem;
}

.media-stack img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-stack img:first-child {
  aspect-ratio: 3 / 4;
}

.media-stack img:last-child {
  aspect-ratio: 4 / 3;
  min-height: 300px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-heading p {
  max-width: 540px;
}

.rituals-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--green-950);
  color: var(--white);
}

.rituals-section h2 {
  color: var(--white);
}

.rituals-section p {
  color: rgba(255, 255, 255, .7);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ritual-card {
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-800);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.ritual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 13, .04), rgba(8, 20, 13, .88));
}

.ritual-card > div {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
}

.ritual-card span {
  color: var(--gold);
  font-weight: 800;
}

.ritual-card h3 {
  margin: .3rem 0 .35rem;
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: .96;
}

.ritual-card .text-link {
  color: var(--white);
}

.ritual-card-featured {
  transform: translateY(-1.2rem);
}

.facilities-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--line);
}

.facility-item {
  min-height: 280px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--paper);
}

.facility-item span {
  color: var(--gold);
  font-weight: 800;
}

.facility-item h3 {
  margin: 2.8rem 0 .4rem;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.facility-item p {
  max-width: 220px;
  color: var(--muted);
}

.tariffs-section {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.tariffs-copy ul {
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.tariffs-copy li {
  position: relative;
  padding-left: 1.55rem;
  margin: .55rem 0;
  color: var(--green-800);
}

.tariffs-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65rem;
  width: .62rem;
  height: .32rem;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.price-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(7, 18, 12, .08);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

thead th {
  background: var(--green-900);
  color: var(--white);
}

tbody th {
  color: var(--green-900);
}

.price-cell strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.price-cell a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  min-height: 2rem;
  border: 1px solid rgba(20, 41, 26, .22);
  border-radius: 999px;
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.price-cell a:hover {
  background: var(--green-700);
  color: var(--white);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.practical-section {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--green-950);
  color: var(--white);
}

.practical-section h2 {
  color: var(--white);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 1.2rem;
  color: rgba(255, 255, 255, .7);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.contact-copy p {
  color: var(--muted);
}

.contact-copy a:not(.button) {
  color: var(--green-800);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.contact-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3.75rem);
  background: var(--green-950);
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
}

.site-footer img {
  width: 150px;
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
  text-decoration: none;
}

.salonized-booking {
  position: relative;
  z-index: 999;
}

iframe[src*="widget.salonized.com/button"] {
  right: 1rem !important;
  bottom: 1rem !important;
}

.noscript-message {
  padding: 1rem;
  margin: 0;
  background: var(--gold);
  color: var(--green-950);
  text-align: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 5.6rem;
    display: grid;
    gap: .4rem;
    padding: .85rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(8, 20, 13, .96);
    box-shadow: var(--shadow);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: .82rem .9rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-media {
    right: -12vw;
    top: 16vh;
    width: min(76vw, 620px);
    opacity: .68;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero h1 {
    font-size: 6.1rem;
  }

  .section h2,
  .contact-section h2 {
    font-size: 3.35rem;
  }

  .booking-card {
    max-width: 440px;
  }

  .space-layout,
  .tariffs-section,
  .practical-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .ritual-grid,
  .facilities-strip {
    grid-template-columns: 1fr 1fr;
  }

  .ritual-card-featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .brand {
    width: 142px;
    min-width: 142px;
  }

  .site-header {
    padding: .9rem 1rem;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 14, 8, .78) 0%, rgba(5, 14, 8, .54) 38%, rgba(5, 14, 8, .96) 100%),
      linear-gradient(90deg, rgba(5, 14, 8, .78), rgba(5, 14, 8, .32));
  }

  .hero-media {
    top: 11vh;
    right: -34vw;
    width: 102vw;
    height: 48vh;
    opacity: .55;
  }

  .hero-inner {
    width: min(100% - 1.2rem, 1180px);
    padding-top: 6rem;
    padding-bottom: 1.4rem;
  }

  .hero h1 {
    font-size: 4.15rem;
    line-height: .9;
  }

  .hero p {
    font-size: 1rem;
  }

  .booking-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: .2rem;
  }

  .booking-card__top strong {
    font-size: 1.25rem;
  }

  .booking-card__price strong {
    font-size: 1.65rem;
  }

  .intro-panel p {
    font-size: 1.78rem;
  }

  .section h2,
  .contact-section h2 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .intro-panel,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .booking-card {
    padding: .9rem;
  }

  .intro-panel {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .media-stack,
  .ritual-grid,
  .facilities-strip {
    grid-template-columns: 1fr;
  }

  .media-stack img,
  .media-stack img:last-child {
    min-height: 260px;
  }

  .ritual-card {
    min-height: 390px;
  }

  .facility-item {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
