/* Muse Her. — Shared stylesheet
   Tokens locked 21-22 Jul: Bordeaux + Chartreuse + Amethyst, on white. Clay minor use only.
   Type: Syne (display) / Inter (body) */

:root {
  --white: #FFFFFF;
  --bordeaux: #45110C;
  --bordeaux-soft: #6B3A33; /* secondary text, still high contrast on white */
  --chartreuse: #D4E600;
  --chartreuse-ink: #3A3D00; /* text-on-chartreuse */
  --amethyst: #7B4B94;
  --clay: #B08470;
  --border: #EDE7E4;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--bordeaux);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Nav ---------- */
.nav {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 20;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  color: var(--bordeaux);
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--bordeaux);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  border-bottom-color: var(--chartreuse);
}

.nav__cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  background: var(--bordeaux);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s ease;
}

.nav__cta:hover { background: #5c1810; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 16px 30px;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: var(--bordeaux);
  color: var(--white);
}
.btn--primary:hover { background: #5c1810; }

.btn--on-dark {
  background: var(--chartreuse);
  color: var(--bordeaux);
}
.btn--on-dark:hover { transform: translateY(-1px); }

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

/* ---------- Eyebrow / tags ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amethyst);
  font-weight: 700;
  margin-bottom: 18px;
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amethyst);
  font-weight: 700;
  border-bottom: 2px solid var(--amethyst);
  padding-bottom: 4px;
  margin-bottom: 22px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 100px 0;
}

.hero--sub { padding: 84px 0 64px 0; }

.hero--inverted {
  background: var(--bordeaux);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  margin: 0 0 26px 0;
  max-width: 780px;
}

.hero h1 mark {
  background: var(--chartreuse);
  color: var(--bordeaux);
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero p.lede {
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  color: var(--bordeaux-soft);
  margin: 0 0 36px 0;
}

.hero--inverted .eyebrow { color: var(--white); opacity: 0.85; }
.hero--inverted h1 { color: var(--white); }
.hero--inverted p.lede { color: var(--white); }

/* ---------- Sections ---------- */
.section {
  padding: 76px 0;
}

.section--bordered { border-top: 1px solid var(--border); }

.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  margin: 0 0 20px 0;
  max-width: 620px;
}

.section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--bordeaux-soft);
  max-width: 600px;
  margin: 0 0 18px 0;
}

.section p:last-child { margin-bottom: 0; }

.section__link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--bordeaux);
  border-bottom: 2px solid var(--chartreuse);
  padding-bottom: 2px;
}

/* ---------- Ache spectrum — display cards (Home) ---------- */
.ache-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.ache-card {
  padding: 0;
}

.ache-card__bar {
  height: 4px;
  margin-bottom: 18px;
}
.ache-card:nth-child(1) .ache-card__bar { background: var(--clay); }
.ache-card:nth-child(2) .ache-card__bar { background: var(--amethyst); }
.ache-card:nth-child(3) .ache-card__bar { background: var(--chartreuse); }

.ache-card h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.ache-card p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--bordeaux);
  margin: 0;
}

/* ---------- Ache spectrum — interactive picker (Join Waitlist) ---------- */
.ache-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 48px 0;
  list-style: none;
  padding: 0;
}

.ache-option { position: relative; }

.ache-option input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.ache-option label {
  display: block;
  border: 2px solid var(--border);
  border-radius: 3px;
  padding: 26px 22px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  height: 100%;
}

.ache-option label .ache-option__stage {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amethyst);
  display: block;
  margin-bottom: 10px;
}

.ache-option label .ache-option__quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
}

.ache-option input:checked + label {
  border-color: var(--bordeaux);
  background: #FBF9F6;
}

.ache-option input:checked + label .ache-option__stage {
  color: var(--bordeaux);
}

.ache-option input:focus-visible + label {
  outline: 3px solid var(--amethyst);
  outline-offset: 2px;
}

.ache-option label::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  margin-top: 16px;
}

.ache-option input:checked + label::after {
  background: var(--chartreuse);
  border-color: var(--bordeaux);
}

/* ---------- Quarters grid (About the Retreat) ---------- */
.quarters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-top: 40px;
}

.quarter-card__num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--clay);
  font-weight: 700;
  margin-bottom: 10px;
}

.quarter-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 10px 0;
}

.quarter-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bordeaux-soft);
  margin: 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bordeaux);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px 0;
}

.cta-banner p {
  font-size: 16px;
  color: #f0d9d3;
  max-width: 480px;
  margin: 0 auto 34px auto;
  line-height: 1.7;
}

/* ---------- Form (Join Waitlist) ---------- */
.form-block {
  max-width: 460px;
}

.form__row { margin-bottom: 20px; }

.form__row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form__row input[type="text"],
.form__row input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 2px solid var(--border);
  border-radius: 2px;
  color: var(--bordeaux);
  background: var(--white);
}

.form__row input:focus-visible {
  outline: none;
  border-color: var(--amethyst);
}

.form__legal {
  font-size: 12px;
  color: var(--bordeaux-soft);
  margin-top: 16px;
  line-height: 1.6;
}

/* honeypot — must stay hidden */
.hp-field {
  position: absolute;
  left: -5000px;
}

/* ---------- Split sections — colour blocks + photography ---------- */
.split-section {
  padding: 70px 0;
}

.split-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-section--reverse .split-section__inner {
  direction: rtl;
}
.split-section--reverse .split-section__inner > * {
  direction: ltr;
}

.split-section__media {
  padding: 28px;
  border-radius: 2px;
}

.split-section__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}

.split-section--amethyst { background: #F7F2F9; }
.split-section--amethyst .split-section__media { background: #EBDCF0; }

.split-section--clay { background: #FBF3EF; }
.split-section--clay .split-section__media { background: #F0DED4; }

.split-section--bordeaux-tint { background: #FBF0EE; }
.split-section--bordeaux-tint .split-section__media { background: #F0D9D3; }

.split-section--white { background: var(--white); }
.split-section--white .split-section__media { background: #F7F2F9; }

@media (max-width: 760px) {
  .split-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split-section--reverse .split-section__inner { direction: ltr; }
  .split-section__media img { aspect-ratio: 4 / 3; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bordeaux);
  color: #e8cfc9;
  padding: 40px 0;
  margin-top: 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--chartreuse);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links a { text-decoration: none; color: #e8cfc9; }
.footer__links a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .hero { padding: 80px 0 60px 0; }
  .ache-grid, .ache-picker, .quarters-grid { grid-template-columns: 1fr; }
  .nav__links { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
