:root {
  --bg: oklch(97% 0.004 240);
  --bg-dark: oklch(16% 0.008 250);
  --card-light: oklch(93% 0.006 240);
  --card-dark: oklch(18% 0.008 250);
  --ink: oklch(20% 0.01 240);
  --muted: oklch(42% 0.01 240);
  --muted-soft: oklch(50% 0.01 240);
  --muted-on-dark: oklch(70% 0.01 240);
  --line: oklch(90% 0.005 240);
  --line-soft: oklch(88% 0.005 240);
  --accent: oklch(55% 0.1 250);
  --accent-strong: oklch(30% 0.09 250);
  --success: oklch(75% 0.05 150);
  --error: oklch(50% 0.15 30);
  --radius: 4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: oklch(65% 0.1 250);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-soft);
}

/* ---------- Landing: profile hero ---------- */

.profile-hero {
  background: var(--bg-dark);
  color: white;
  padding: 28px 24px 72px;
}

.profile-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
}

.profile-nav a {
  color: oklch(85% 0.005 240);
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 64px;
}

.avatar-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0 4px;
}

.profile-handle {
  font-size: 15px;
  color: var(--muted-on-dark);
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: monospace;
}

.social-btn:hover {
  color: var(--ink);
  opacity: 0.85;
}

/* Signup form */

.subscribe-form {
  display: flex;
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}

.subscribe-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 999px;
  color: var(--ink);
  min-width: 0;
}

.subscribe-input:first-of-type {
  border-right: 1px solid var(--line-soft);
}

.subscribe-btn {
  background: var(--ink);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.subscribe-btn:hover {
  opacity: 0.85;
}

.form-note {
  min-height: 16px;
  font-size: 13px;
  color: var(--muted-on-dark);
  margin: 12px 0 0;
  text-align: center;
}

.form-note.error { color: oklch(75% 0.12 30); }
.form-note.success { color: var(--success); }

/* Tagline */

.tagline-section {
  padding: 64px 24px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.tagline-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.tagline-heading {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.15;
}

.tagline-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* Pillars */

.pillars-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar-card {
  display: block;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--card-light);
  color: var(--ink);
}

.pillar-card--dark {
  background: var(--card-dark);
  color: white;
}

.pillar-card--dark .pillar-desc {
  color: oklch(78% 0.01 240);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: oklch(75% 0.02 240);
}

.pillar-card--dark .pillar-icon {
  background: oklch(35% 0.05 250);
}

.pillar-title {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pillar-arrow {
  font-size: 18px;
  margin-top: 16px;
}

/* ---------- Shared footer ---------- */

.site-footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-fine {
  font-size: 13px;
  color: var(--muted-soft);
}

/* ---------- Booking page ---------- */

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.booking-home-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.booking-hours {
  font-size: 13px;
  color: var(--muted-soft);
}

.booking-main {
  flex: 1;
  padding: 20px 24px 60px;
}

.booking-container {
  max-width: 760px;
  margin: 0 auto;
}

.booking-container--narrow {
  max-width: 440px;
  margin: 20px auto 0;
}

.booking-container--summary {
  max-width: 520px;
  margin: 60px auto 0;
}

.payment-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-card {
  max-width: 420px;
  width: 100%;
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 40px;
  box-sizing: border-box;
}

.payment-card-title,
.payment-card-subtitle {
  text-align: center;
}

.payment-card-subtitle {
  line-height: 1.5;
}

.payment-card .booking-error {
  text-align: center;
  margin-bottom: 16px;
}

.booking-title {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 8px;
}

.booking-title--sm {
  font-size: 28px;
}

.booking-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 40px;
}

.booking-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.option-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.option-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.option-btn {
  padding: 16px 12px;
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--line-soft);
  background: white;
  font-family: inherit;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
}

.option-btn:hover {
  border-color: var(--accent-strong);
}

.option-btn.is-selected {
  border: 2px solid var(--accent-strong);
  background: oklch(94% 0.03 250);
}

.option-btn-sub {
  font-size: 13px;
  color: var(--muted-soft);
  font-weight: 400;
  margin-top: 6px;
}

.date-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 36px;
}

.date-btn {
  padding: 16px 12px;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--line-soft);
  background: white;
  font-family: inherit;
  color: inherit;
  min-width: 64px;
  flex: 0 0 auto;
}

.date-btn:hover {
  border-color: var(--accent-strong);
}

.date-btn.is-selected {
  border: 2px solid var(--accent-strong);
  background: oklch(94% 0.03 250);
}

.date-btn:disabled,
.date-btn.is-full {
  cursor: not-allowed;
  opacity: 0.4;
  background: var(--card-light);
}

.date-btn:disabled:hover {
  border-color: var(--line-soft);
}

.date-weekday {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}

.date-num {
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.date-month {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 2px;
}

.time-btn {
  padding: 16px 12px;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--line-soft);
  background: white;
  font-family: inherit;
  color: inherit;
  font-size: 15px;
}

.time-btn:hover {
  border-color: var(--accent-strong);
}

.time-btn.is-selected {
  border: 2px solid var(--accent-strong);
  background: oklch(94% 0.03 250);
}

.time-btn:disabled,
.time-btn.is-booked {
  cursor: not-allowed;
  opacity: 0.4;
  background: var(--card-light);
  text-decoration: line-through;
}

.time-btn:disabled:hover {
  border-color: var(--line-soft);
}

.details-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-input {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  width: 100%;
}

.booking-textarea {
  resize: vertical;
}

.booking-error {
  font-size: 14px;
  color: var(--error);
  margin: 0;
}

.booking-btn {
  width: 100%;
  background: var(--accent-strong);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.booking-btn:hover {
  opacity: 0.9;
}

.booking-back-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--muted-soft);
  font-size: 14px;
  text-align: center;
  margin-top: 18px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.amount-due {
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  background: white;
}

.amount-due-label {
  font-size: 14px;
  color: var(--muted);
}

.amount-due-value {
  font-size: 20px;
  font-weight: 700;
}

.confirm-head {
  text-align: center;
  margin-bottom: 32px;
}

.confirm-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}

.summary-card {
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 24px;
  background: white;
  margin-bottom: 28px;
}

.summary-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 5px 0;
}

.summary-row span {
  color: var(--muted-soft);
}

.summary-row--total {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
}

.summary-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.booking-outline-btn {
  border: 1px solid oklch(80% 0.01 240);
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.booking-outline-btn:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.booking-back-home {
  display: block;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted-soft);
  text-align: center;
}

/* ---------- Contact page ---------- */

.contact-hero {
  background: var(--bg-dark);
  color: white;
  padding: 28px 24px 56px;
}

.contact-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
}

.contact-brand {
  color: oklch(85% 0.005 240);
}

.contact-nav-links {
  display: flex;
  gap: 28px;
}

.contact-nav-links a {
  color: oklch(85% 0.005 240);
}

.contact-nav-links a.is-current {
  color: white;
}

.contact-hero-text {
  text-align: center;
  padding-top: 48px;
}

.contact-hero-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-hero-sub {
  font-size: 16px;
  color: oklch(70% 0.01 240);
  margin: 0;
}

.contact-card-wrap {
  max-width: 520px;
  margin: -32px auto 64px;
  padding: 0 24px;
}

.contact-form {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.contact-form[hidden] {
  display: none;
}

.contact-name-email-row {
  display: flex;
  gap: 12px;
}

.contact-name-email-row .booking-input {
  flex: 1;
  min-width: 0;
}

.contact-sent {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  box-sizing: border-box;
}

.contact-sent-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-sent-note {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.social-row--outline {
  justify-content: center;
  margin-top: 24px;
}

.social-btn--outline {
  border: 1px solid var(--line-soft);
}

/* ---------- Press kit ---------- */

.press-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
  flex: 1;
}

.press-body h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.press-body p {
  color: var(--muted);
  line-height: 1.6;
}

.press-body ul {
  line-height: 1.9;
  padding-left: 20px;
  color: var(--muted);
}

.press-header {
  padding: 28px 48px;
}

.press-mark {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
  .profile-hero {
    padding: 24px 16px 56px;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 16px;
  }

  .subscribe-input:first-of-type {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .booking-header {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .option-grid--3 {
    grid-template-columns: 1fr;
  }

  .details-row {
    grid-template-columns: 1fr;
  }

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

  .payment-card {
    padding: 28px 20px;
  }

  .contact-name-email-row {
    flex-direction: column;
  }

  .contact-form,
  .contact-sent {
    padding: 24px 20px;
  }
}
