/* ============================================================
   Design 15 — "VOID"
   Extreme luxury minimalism. Almost nothing on the page.
   Cormorant Garamond, pure white, maximum negative space.
   The restraint IS the design.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:     #FAFAF8;
  --ink:       #111111;
  --grey:      #999990;
  --grey-lt:   #D0D0CA;
  --teal:      #6FA7A3;
  --coral:     #DD6F56;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
}

/* ── Page shell ─────────────────────────────────────────── */

.page {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

/* ── Centred column ─────────────────────────────────────── */

.centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 520px;
  animation: appear 1.2s ease both;
}

@keyframes appear {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Logo ───────────────────────────────────────────────── */

.centre__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 2.5rem;
}

/* ── Rules ──────────────────────────────────────────────── */

.rule {
  border: none;
  border-top: 1px solid var(--grey-lt);
  width: 100%;
  margin: 2.25rem 0;
}

/* ── Eyebrow ────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

/* ── Heading ────────────────────────────────────────────── */

.heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.heading__line1,
.heading__line2 {
  display: block;
}

.heading__dot {
  color: var(--teal);
}

/* ── Body text ──────────────────────────────────────────── */

.body-text {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  line-height: 1.9;
  color: var(--grey);
  font-weight: 300;
  text-align: center;
}

/* ── Form ───────────────────────────────────────────────── */

.form {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.form__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 300;
}

.form__input {
  width: 100%;
  height: 44px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--grey-lt);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink);
  text-align: center;
  outline: none;
  transition: border-bottom-color 0.2s;
  padding: 0 0.5rem;
}

.form__input::placeholder { color: var(--grey-lt); }
.form__input:focus { border-bottom-color: var(--ink); }

.form__btn {
  width: 100%;
  height: 42px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.form__btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.form__btn:disabled { opacity: 0.45; cursor: default; }

.form__confirm {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--teal);
}
.form__confirm[hidden] { display: none; }

/* ── Footer ─────────────────────────────────────────────── */

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__nav a,
.footer__nav span,
.footer span {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--grey); }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 600px) {
  html, body { overflow-y: auto; height: auto; }
  .page { height: auto; min-height: 100dvh; padding: 3rem 1.5rem 6rem; }
  .heading { font-size: clamp(2.5rem, 12vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .centre { animation-duration: 0.01ms !important; }
}
