:root {
  --ivory: #f4efe5;
  --paper: #fbf8f1;
  --ink: #171312;
  --muted: #71675d;
  --sage: #a7b79e;
  --mineral: #4a604f;
  --aubergine: #24151f;
  --aubergine-2: #3a2233;
  --brass: #b99358;
  --line: rgba(23, 19, 18, 0.16);
  --glass: rgba(251, 248, 241, 0.76);
  --shadow: 0 24px 70px rgba(36, 21, 31, 0.18);
  --radius: 7px;
  --sans: "Inter", "Aptos", "Segoe UI", system-ui, sans-serif;
  --serif: "Iowan Old Style", "Cormorant Garamond", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(167, 183, 158, 0.22), transparent 36rem),
    linear-gradient(180deg, var(--ivory), var(--paper) 48%, #efe6d8);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 16px 18px;
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header[data-elevated="true"],
.site-header.open {
  color: var(--ink);
  background: rgba(244, 239, 229, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.open {
  min-height: 100svh;
  align-items: flex-start;
}

.site-header.open .brand {
  position: relative;
  z-index: 22;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: invert(1);
  transition: filter 180ms ease;
}

.site-header[data-elevated="true"] .brand-mark,
.site-header.open .brand-mark {
  filter: none;
}

.nav-toggle {
  position: relative;
  z-index: 22;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.open .nav-toggle span:nth-child(2) {
  transform: translateY(3px) rotate(42deg);
}

.site-header.open .nav-toggle span:nth-child(3) {
  transform: translateY(-3px) rotate(-42deg);
}

.site-nav {
  position: absolute;
  inset: 0;
  z-index: 21;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 92px 18px 34px;
  background: var(--ivory);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.site-header.open .site-nav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-nav a {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 13vw, 4.4rem);
  line-height: 0.96;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--aubergine);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 19, 18, 0.1), rgba(23, 19, 18, 0.72) 72%),
    radial-gradient(circle at 70% 25%, rgba(185, 147, 88, 0.22), transparent 34%);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 54% 46%;
  filter: saturate(0.86) contrast(1.06);
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  padding: 108px 18px 78px;
  color: var(--paper);
}

.availability {
  width: min(230px, 74vw);
  margin: 0 0 12px auto;
  padding-left: 18px;
  border-left: 1px solid rgba(251, 248, 241, 0.46);
  color: rgba(251, 248, 241, 0.78);
  font-size: 0.74rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 8ch;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 22vw, 7.8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 24rem;
  color: rgba(251, 248, 241, 0.86);
  font-size: clamp(1.07rem, 5vw, 1.32rem);
  line-height: 1.35;
}

.button {
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary,
.submit {
  color: var(--aubergine);
  background: var(--paper);
  border-color: var(--paper);
}

.hero-line {
  position: absolute;
  right: 18px;
  bottom: 0;
  z-index: 2;
  width: 1px;
  height: 34vh;
  background: linear-gradient(transparent, rgba(251, 248, 241, 0.62));
}

.manifesto {
  display: grid;
  gap: 18px;
  padding: 38px 18px;
  border-bottom: 1px solid var(--line);
}

.manifesto p {
  font-family: var(--serif);
  font-size: clamp(2.05rem, 10vw, 4rem);
  line-height: 0.98;
}

.manifesto span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

section:not(.hero) {
  scroll-margin-top: 92px;
}

.services,
.standards,
.discretion,
.booking {
  padding: 68px 18px;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head span,
.booking-intro span {
  color: var(--mineral);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h2 {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 14vw, 6.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.service-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 -18px 22px;
  padding: 0 18px 4px;
}

.service-tab {
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.46);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  white-space: normal;
  cursor: pointer;
}

.service-tab.active {
  color: var(--paper);
  background: var(--aubergine);
  border-color: var(--aubergine);
}

.service-panel {
  position: relative;
  padding: 26px 0 0;
  border-top: 1px solid var(--ink);
}

.service-number {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 5.2rem;
  line-height: 0.8;
}

h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.service-panel > p:not(.service-number) {
  max-width: 33rem;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.service-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.standards {
  display: grid;
  gap: 34px;
  background: var(--aubergine);
  color: var(--paper);
}

.image-slice {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-slice img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 82% 50%;
}

.standards .section-head span,
.standards h2 {
  color: var(--paper);
}

.rule-list {
  display: grid;
  border-top: 1px solid rgba(251, 248, 241, 0.24);
}

.rule-list p {
  padding: 18px 0;
  border-bottom: 1px solid rgba(251, 248, 241, 0.18);
  color: rgba(251, 248, 241, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

.rule-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.discretion {
  background:
    linear-gradient(90deg, rgba(185, 147, 88, 0.12), transparent 56%),
    var(--paper);
}

.privacy-image {
  height: clamp(210px, 62vw, 360px);
  margin: -28px 0 38px;
  overflow: hidden;
  border-radius: var(--radius);
}

.privacy-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.privacy-grid {
  display: grid;
  gap: 10px;
}

.privacy-grid label {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.privacy-grid input {
  appearance: none;
  width: 21px;
  height: 21px;
  margin: 0;
  border: 1px solid var(--mineral);
  border-radius: 50%;
  background: radial-gradient(circle, var(--mineral) 0 42%, transparent 46%);
}

.booking {
  display: grid;
  gap: 30px;
  background: var(--ink);
  color: var(--paper);
}

.booking-intro {
  display: grid;
  gap: 18px;
}

.booking-intro h2 {
  max-width: 9ch;
}

.booking-intro p {
  color: rgba(251, 248, 241, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label > span {
  color: rgba(251, 248, 241, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(251, 248, 241, 0.36);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  padding: 13px 0;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--brass);
}

.booking-form select option {
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
}

.submit {
  margin-top: 12px;
  width: 100%;
  color: var(--ink);
}

.form-status {
  min-height: 24px;
  color: var(--sage);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer {
  display: grid;
  gap: 18px;
  padding: 30px 18px 92px;
  background: var(--ink);
  color: rgba(251, 248, 241, 0.72);
  border-top: 1px solid rgba(251, 248, 241, 0.12);
}

.footer p {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 19;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--aubergine), var(--aubergine-2));
  box-shadow: 0 16px 42px rgba(23, 19, 18, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(88px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: slow-drift 18s ease-in-out infinite alternate;
  }

  @keyframes slow-drift {
    from {
      transform: scale(1.05) translateX(-1.4%);
    }
    to {
      transform: scale(1.09) translateX(1.4%);
    }
  }
}

@media (min-width: 760px) {
  .site-header {
    padding: 20px 32px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-header.open {
    min-height: 70px;
    align-items: center;
  }

  .site-nav a {
    padding: 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 32rem);
    align-items: end;
    gap: 30px;
    padding: 132px 32px 58px;
  }

  .availability {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 8vh;
  }

  h1 {
    grid-column: 1 / 3;
    max-width: 11ch;
    font-size: clamp(5.6rem, 9.6vw, 12rem);
  }

  .hero-lede,
  .hero .button {
    grid-column: 2;
  }

  .hero-line {
    right: 32px;
  }

  .manifesto,
  .services,
  .standards,
  .discretion,
  .booking,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .manifesto {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .services {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 44px;
  }

  .services .section-head {
    position: sticky;
    top: 110px;
    align-self: start;
  }

  .service-selector,
  .service-panel {
    grid-column: 2;
  }

  .service-selector {
    margin: 0 0 22px;
    padding-left: 0;
    padding-right: 0;
  }

  .standards {
    grid-template-columns: minmax(18rem, 0.74fr) 1fr;
    align-items: center;
    gap: 58px;
  }

  .discretion {
    display: grid;
    grid-template-columns: 0.48fr 0.58fr 1fr;
    gap: 60px;
  }

  .privacy-image {
    height: 100%;
    min-height: 460px;
    margin: 0;
  }

  .privacy-grid {
    align-self: end;
  }

  .booking {
    grid-template-columns: 0.78fr 1fr;
    gap: 64px;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form label:has(textarea),
  .submit,
  .form-status {
    grid-column: 1 / -1;
  }

  .footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-bottom: 34px;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1180px) {
  .site-header,
  .hero-content,
  .manifesto,
  .services,
  .standards,
  .discretion,
  .booking,
  .footer {
    padding-left: clamp(48px, 6vw, 92px);
    padding-right: clamp(48px, 6vw, 92px);
  }

  .hero-line {
    right: clamp(48px, 6vw, 92px);
  }
}

@media (min-width: 760px) and (max-height: 760px) {
  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 28px;
  }

  .availability {
    margin-bottom: 3vh;
  }

  h1 {
    font-size: clamp(5.2rem, 8.4vw, 9rem);
  }

  .hero-lede {
    font-size: 1.05rem;
  }
}
