:root {
  --paper: oklch(0.975 0.012 70);
  --paper-soft: oklch(0.951 0.016 68);
  --paper-card: oklch(0.965 0.013 70);
  --ink: oklch(0.245 0.018 50);
  --ink-soft: oklch(0.4 0.016 50);
  --ink-muted: oklch(0.48 0.014 50);
  --accent: oklch(0.485 0.095 42);
  --accent-dark: oklch(0.38 0.08 40);
  --line: oklch(0.885 0.016 65);
  --line-soft: oklch(0.91 0.014 66);
  --night: oklch(0.285 0.032 44);
  --radius: 8px;
  --container: min(1180px, calc(100% - clamp(28px, 6vw, 88px)));
  --column-gap: clamp(32px, 5vw, 64px);
  --card-gap: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: oklch(0.975 0.012 70 / 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 24px;
  padding: 14px 0;
}

.wordmark {
  color: var(--ink);
  font-family: Lora, Georgia, serif;
  font-size: 21px;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  font-size: 14.5px;
  letter-spacing: 0.01em;
}

.site-nav a {
  color: oklch(0.36 0.016 50);
  text-decoration: none;
}

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

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.course-highlight {
  border-bottom: 1px solid oklch(0.38 0.03 45);
  background: var(--night);
  color: oklch(0.94 0.012 70);
}

.course-highlight__inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(250px, 0.9fr) auto;
  align-items: center;
  gap: 24px clamp(28px, 4vw, 56px);
  padding: clamp(24px, 3vw, 34px) 0;
}

.course-highlight__heading,
.course-highlight__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.course-highlight .eyebrow {
  color: oklch(0.78 0.07 50);
}

.course-highlight__title {
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.2;
}

.course-highlight__tagline {
  margin-top: 4px;
  color: oklch(0.84 0.018 65);
  font-family: Lora, Georgia, serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
}

.course-highlight__details {
  color: oklch(0.82 0.014 65);
  font-size: 15px;
  line-height: 1.5;
}

.course-highlight__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.course-highlight__actions .button {
  white-space: nowrap;
}

.course-highlight__link {
  color: oklch(0.9 0.014 65);
  font-weight: 500;
  white-space: nowrap;
}

.course-highlight__link:hover {
  color: white;
}

.hero {
  padding: clamp(48px, 8vw, 104px) 0 clamp(40px, 6vw, 72px);
}

.soft-section {
  border-block: 1px solid var(--line);
  background: var(--paper-soft);
}

.dark-section {
  background: var(--night);
  color: oklch(0.94 0.012 70);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--column-gap);
  align-items: start;
}

.hero .split,
.about-grid {
  align-items: center;
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.stack--wide {
  gap: clamp(20px, 2.5vw, 28px);
}

.eyebrow,
.date {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.date {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.dark-section .eyebrow {
  color: oklch(0.78 0.07 50);
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.15rem, 4.8vw, 3.6rem);
}

h2 {
  max-width: 20ch;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}

h4 {
  font-size: 1.2rem;
}

.lead {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.body-copy {
  max-width: 52ch;
  color: var(--ink-soft);
}

.muted-copy {
  max-width: 52ch;
  color: oklch(0.45 0.014 50);
}

.dark-section .body-copy {
  color: oklch(0.86 0.014 65);
}

.dark-section .muted-copy {
  color: oklch(0.78 0.014 65);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.button {
  display: inline-block;
  min-height: 52px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--accent);
  color: oklch(0.98 0.008 70);
}

.button--primary:hover {
  background: var(--accent-dark);
  color: white;
}

.button--outline {
  border-color: oklch(0.6 0.03 50);
  color: oklch(0.3 0.018 50);
}

.button--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button--light {
  background: oklch(0.94 0.012 70);
  color: oklch(0.26 0.03 44);
}

.button--light:hover {
  background: white;
  color: var(--night);
}

.hero-facts,
.fine-print {
  color: oklch(0.52 0.014 50);
  font-size: 14px;
}

.site-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.site-photo--hero {
  aspect-ratio: 1;
  object-position: center;
}

.site-photo--events {
  aspect-ratio: 16 / 10;
  object-position: center 32%;
}

.site-photo--massage {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.site-photo--private {
  aspect-ratio: 16 / 10;
  border-color: oklch(0.42 0.035 45);
  object-position: center;
}

.site-photo--portrait {
  aspect-ratio: 4 / 5;
  object-position: 34% center;
}

.facts {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
}

.fact-row:last-child {
  border-bottom: 0;
}

.fact-label {
  color: var(--ink-muted);
  font-size: 15px;
}

.fact-value {
  text-align: right;
}

.fact-value--stacked {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.course-days {
  margin-top: clamp(44px, 6vw, 80px);
}

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr));
  gap: 14px;
}

.course-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px 26px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--paper);
}

.course-card p {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--column-gap);
  margin-top: clamp(44px, 6vw, 80px);
}

.lined-list li {
  padding: 13px 0;
  border-bottom: 1px solid oklch(0.895 0.016 66);
  color: var(--ink-soft);
}

.lined-list li:last-child {
  border-bottom: 0;
}

.apply-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: clamp(32px, 4vw, 48px);
}

.apply-row p {
  max-width: 40ch;
  color: var(--ink-muted);
  font-size: 15px;
}

.events-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.events-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--column-gap);
}

.events-showcase > .site-photo {
  height: 100%;
  aspect-ratio: auto;
  grid-column: 2;
  grid-row: 1;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-column: 1;
  grid-row: 1;
  gap: var(--card-gap);
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-card);
}

.event-card a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 14px;
  font-weight: 500;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.chip {
  padding: 7px 14px;
  border: 1px solid oklch(0.44 0.035 45);
  border-radius: 999px;
  color: oklch(0.88 0.014 65);
  font-size: 14.5px;
}

.dark-section .facts {
  border-color: oklch(0.42 0.035 45);
  background: transparent;
}

.dark-section .fact-row {
  align-items: baseline;
  padding: 20px 22px;
  border-color: oklch(0.38 0.03 45);
}

.price {
  color: oklch(0.96 0.01 70);
  font-family: Lora, Georgia, serif;
  font-size: 1.5rem;
}

.service-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-aside .facts {
  width: 100%;
  align-self: stretch;
}

.faq-section {
  margin-top: clamp(44px, 6vw, 80px);
}

.faq-section > h3 {
  margin-bottom: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--column-gap);
}

details {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.faq-column:last-child details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font-family: Lora, Georgia, serif;
  font-size: 1.1rem;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  color: var(--accent);
}

.faq-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-bottom: 5px;
  margin-inline-end: 10px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}

details[open] .faq-icon {
  margin-bottom: -3px;
  transform: rotate(-135deg);
}

details p {
  max-width: 56ch;
  margin-top: 10px;
  color: oklch(0.42 0.016 50);
}

.newsletter-inner {
  display: flex;
  max-width: 620px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-inline: auto;
  text-align: center;
}

.newsletter-form-wrap {
  width: 100%;
  min-height: 64px;
  margin-top: 8px;
}

.newsletter-form {
  width: 100%;
}

.newsletter-form .formkit-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.newsletter-form .formkit-field {
  min-width: 0;
}

.newsletter-form .formkit-input {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid oklch(0.82 0.02 65);
  border-radius: var(--radius);
  background: oklch(0.985 0.008 70);
}

.newsletter-form .formkit-input:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.newsletter-form .formkit-submit {
  border: 0;
  cursor: pointer;
}

.newsletter-form .formkit-alert {
  grid-column: 1 / -1;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid oklch(0.78 0.06 35);
  border-radius: var(--radius);
  color: oklch(0.38 0.09 35);
  list-style: none;
  text-align: left;
}

.newsletter-form .formkit-alert:empty {
  display: none;
}

.newsletter-form .formkit-powered-by-convertkit-container {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}

.newsletter-form .formkit-powered-by-convertkit {
  color: var(--ink-muted);
  text-decoration: none;
}

.newsletter-form .formkit-powered-by-convertkit:hover {
  color: var(--accent);
  text-decoration: underline;
}

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

.contact-section {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form label span {
  color: var(--ink-soft);
  font-size: 14.5px;
}

.contact-form input,
.contact-form textarea {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid oklch(0.855 0.018 65);
  border-radius: var(--radius);
  background: oklch(0.985 0.008 70);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.honeypot {
  display: none;
}

.site-footer {
  background: var(--night);
  color: oklch(0.82 0.014 65);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px 40px;
  padding: clamp(36px, 5vw, 56px) 0;
  font-size: 15px;
}

.footer-wordmark {
  color: oklch(0.95 0.01 70);
  font-family: Lora, Georgia, serif;
  font-size: 19px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  color: oklch(0.82 0.014 65);
}

.site-footer a:hover {
  color: oklch(0.96 0.01 70);
}

@media (max-width: 820px) {
  .course-highlight__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split,
  .detail-grid,
  .faq-grid,
  .events-showcase {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-rows: none;
    grid-column: auto;
    grid-row: auto;
  }

  .events-showcase > .site-photo {
    height: auto;
    aspect-ratio: 16 / 10;
    grid-column: auto;
    grid-row: auto;
  }

  .faq-column + .faq-column details:first-child {
    border-top: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }

  .header-inner {
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    gap: 2px 16px;
    overflow-x: visible;
  }

  .hero .split {
    gap: 36px;
  }

  .hero .lead {
    font-size: inherit;
  }

  .fact-row {
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.6rem, 7.6vw, 2.1rem);
  }

  .button-row,
  .button-row .button,
  .apply-row .button,
  .course-highlight__actions .button {
    width: 100%;
  }

  .course-highlight__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .course-highlight__link {
    align-self: flex-start;
  }

  .newsletter-form .formkit-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form .formkit-submit {
    width: 100%;
  }

  .fact-row {
    flex-direction: column;
    gap: 3px;
  }

  .fact-value {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .faq-icon {
    transition: none;
  }
}
