/* ============================================================
   Champagne Taste — site styles
   Deep plum ground, champagne gold accent, high-contrast serif.
   Retheme the whole site from the :root variables below.
   ============================================================ */

:root {
  /* Brand palette */
  --plum:      #16121f;   /* deepest plum — page ground, header, footer */
  --plum-2:    #1a1226;   /* second plum — alternating sections */
  --plum-3:    #221733;   /* raised surfaces: cards, inputs */
  --plum-line: rgba(246, 231, 176, .16);
  --gold:      #f6e7b0;   /* champagne gold — the accent, on dark only */
  --gold-deep: #c9a95f;   /* darker gold for rules, hovers, small print */

  --on-dark:     #f4efe6;
  --on-dark-dim: rgba(244, 239, 230, .66);

  --maxw: 1120px;
  --maxw-prose: 760px;
  --radius: 4px;
  /* Didot ships on macOS/iOS, Bodoni MT on Windows; Georgia covers the rest. */
  --font-serif: "Didot", "Bodoni MT", Georgia, "Times New Roman", serif;
  /* System sans only — no webfont request, so a page load contacts no third party. */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-dark);
  background: var(--plum);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--plum); }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--prose { max-width: var(--maxw-prose); }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 24px;
  top: 12px;
  z-index: 100;
  background: var(--gold);
  color: var(--plum);
  padding: 10px 18px;
  font-weight: 600;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;
  line-height: 1.08;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.25; }
h4 { font-size: 1.12rem; line-height: 1.35; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .68rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 20px;
}

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  color: var(--on-dark-dim);
  line-height: 1.75;
}

.gold { color: var(--gold); }
.italic { font-style: italic; }

/* A hairline rule with the star centred in it — the recurring section divider. */
.rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
}
.rule::before,
.rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--plum-line), transparent);
}
.rule__star { width: 18px; height: 18px; flex: none; opacity: .95; }
.rule--left::before { display: none; }
.rule--left { justify-content: flex-start; }
.rule--left::after { max-width: 120px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn--gold {
  background: var(--gold);
  color: var(--plum);
}
.btn--gold:hover { background: #fff3cf; transform: translateY(-1px); }
.btn--ghost {
  border-color: rgba(246, 231, 176, .38);
  color: var(--gold);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(246, 231, 176, .07); }
.btn--sm { padding: 11px 20px; font-size: .72rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(246, 231, 176, .35);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.tlink:hover { border-bottom-color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 18, 31, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--plum-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}
.nav__brand img { width: 190px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  transition: color .2s ease;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--gold); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px 4px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__brand img { width: 150px; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--plum-2);
    border-bottom: 1px solid var(--plum-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav__links.is-open { max-height: 420px; }
  .nav__links li { border-top: 1px solid var(--plum-line); }
  .nav__links a { display: block; padding: 16px 24px; }
  .nav__links .btn { margin: 14px 24px 18px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--plum);
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .58;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 22%, rgba(22, 18, 31, .12) 0%, rgba(22, 18, 31, .62) 55%, rgba(22, 18, 31, .95) 100%),
    linear-gradient(180deg, rgba(22, 18, 31, .55) 0%, transparent 30%, var(--plum) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 90px;
}
.hero__wordmark {
  width: min(560px, 82%);
  margin: 0 auto 28px;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, .6));
}
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  color: var(--gold);
  margin: 0 0 22px;
}
.hero__lead {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(244, 239, 230, .82);
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__note {
  margin-top: 26px;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section--alt { background: var(--plum-2); }
.section__head { text-align: center; margin-bottom: 56px; }
.section__head .lead { max-width: 620px; margin-inline: auto; }

/* ---------- Promise band (no ads / no lives / no energy) ---------- */
.promise {
  border-block: 1px solid var(--plum-line);
  background: var(--plum-2);
  padding: clamp(48px, 6vw, 72px) 0;
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--plum-line);
}
.promise__item {
  background: var(--plum-2);
  padding: 30px 26px;
  text-align: center;
}
.promise__no {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.promise__item p {
  font-size: .92rem;
  color: var(--on-dark-dim);
  margin: 0;
}
@media (max-width: 700px) {
  .promise__grid { grid-template-columns: 1fr; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}
@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
}

/* ---------- Feature rows ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.feature + .feature { margin-top: clamp(60px, 8vw, 104px); }
.feature--flip .feature__media { order: -1; }
.feature__media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--plum-line);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, .9);
}
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* ---------- Housing ladder ---------- */
/* Six steps in threes, then the Château across the full width. */
.ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .ladder { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ladder { grid-template-columns: 1fr; } }
.ladder__step {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--plum-line);
  aspect-ratio: 16 / 10;
}
.ladder__step img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.ladder__step:hover img { transform: scale(1.04); }
.ladder__step figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 56px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(22, 18, 31, .72) 42%, rgba(22, 18, 31, .96));
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--gold);
}
.ladder__step .ladder__n {
  font-family: var(--font-sans);
  display: block;
  font-size: .64rem;
  letter-spacing: .28em;
  color: var(--on-dark-dim);
  margin-bottom: 4px;
}
/* The Château gets the full-width finale slot. */
.ladder__step--final { grid-column: 1 / -1; aspect-ratio: 32 / 9; }
@media (max-width: 620px) {
  .ladder__step--final { aspect-ratio: 16 / 10; }
}

/* ---------- Collections strip ---------- */
.collections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}
.collections figure {
  margin: 0;
  padding: 18px 10px 14px;
  background: var(--plum-3);
  border: 1px solid var(--plum-line);
  border-radius: var(--radius);
  text-align: center;
}
.collections img { width: 74px; margin: 0 auto 10px; }
.collections figcaption {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}
.collections__more {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: var(--plum-3);
  border: 1px solid var(--plum-line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.card h3 { color: var(--gold); margin-bottom: 12px; }
.card p { color: var(--on-dark-dim); font-size: .95rem; }

/* ---------- Prose pages (support / privacy) ---------- */
.page-head {
  padding: clamp(56px, 7vw, 96px) 0 0;
  text-align: center;
}
.page-head h1 { margin-bottom: 14px; }
.page-head .lead { max-width: 620px; margin-inline: auto; }
.page-head__meta {
  margin-top: 18px;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.prose { padding: clamp(48px, 6vw, 76px) 0 clamp(70px, 9vw, 110px); }
.prose h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--gold);
  margin: 56px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--plum-line);
}
.prose h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 {
  font-size: 1.16rem;
  margin: 32px 0 10px;
  color: var(--on-dark);
}
.prose p, .prose li { color: rgba(244, 239, 230, .82); }
.prose a { color: var(--gold); border-bottom: 1px solid rgba(246, 231, 176, .35); }
.prose a:hover { border-bottom-color: var(--gold); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.1rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--gold-deep); }
.prose strong { color: var(--on-dark); font-weight: 600; }

/* Callout — the "what we don't collect" summary and support tips. */
.callout {
  background: var(--plum-3);
  border: 1px solid var(--plum-line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 0 0 32px;
}
.callout h3 { margin-top: 0; color: var(--gold); }
.callout ul { margin-bottom: 0; }

/* Table of contents on long pages */
.toc {
  background: var(--plum-3);
  border: 1px solid var(--plum-line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 44px;
}
.toc h2 {
  font-size: .7rem !important;
  font-family: var(--font-sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
  border: 0 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}
.toc ol {
  columns: 2;
  column-gap: 32px;
  margin: 0;
  padding-left: 18px;
}
.toc li { margin-bottom: .35rem; font-size: .92rem; }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* Support: question blocks */
.faq { margin-bottom: 8px; }
.faq__q {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--gold);
  margin: 36px 0 10px;
}

/* ---------- Contact form ---------- */
.form {
  background: var(--plum-3);
  border: 1px solid var(--plum-line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: .98rem;
  color: var(--on-dark);
  background: rgba(22, 18, 31, .7);
  border: 1px solid var(--plum-line);
  border-radius: var(--radius);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); outline: none; }
.field input[aria-invalid="true"] { border-color: #e07a7a; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23c9a95f' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field select option { background: var(--plum-2); color: var(--on-dark); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form__msg { font-size: .92rem; margin: 0; }
.form__msg--ok { color: var(--gold); }
.form__msg--err { color: #f0a3a3; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--plum-line);
  background: var(--plum);
  padding: 60px 0 40px;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__brand img { width: 210px; margin-bottom: 14px; }
.footer__brand p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-deep);
  margin: 0;
}
.footer__links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--gold); }
.footer__base {
  border-top: 1px solid var(--plum-line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(244, 239, 230, .45);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* An email address in the page header stays lowercase and clickable. */
.page-head__meta--mail { text-transform: none; letter-spacing: .06em; font-size: .9rem; }
.page-head__meta--mail a {
  color: var(--gold);
  border-bottom: 1px solid rgba(246, 231, 176, .35);
  padding-bottom: 2px;
}
.page-head__meta--mail a:hover { border-bottom-color: var(--gold); }
