/* ==========================================================================
   Luxe Society Candy Co. - design system
   Dark mode, permanently. A near-black plum stage so the logo colors (hot
   pink, teal, sunshine yellow, orange, grape) glow like a candy shop at
   night. Playful but premium: generous whitespace, confident type,
   candy-shine details. Mobile-first. Colors, spacing and type live here.
   ========================================================================== */

/* Optional self-hosted display face. Drop a bold rounded display font into
   site/fonts/luxe-display.woff2 and it is picked up automatically; otherwise
   the stack falls through to clean rounded system faces. No novelty fonts. */
@font-face {
  font-family: "Luxe Display";
  src: url("/fonts/luxe-display.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core palette (logo-derived, brightened a touch to glow on black) */
  --black: #0d0d0d;
  --black-soft: #151513;
  --char: #1d1c19;
  --cherry-deep: #9e7d18;
  --cherry: #c9a227;
  --cherry-lit: #e1c35f;
  --cream: #ffffff;
  --cream-dim: #dedbd2;
  --cream-quiet: #98958d;
  --gold: #c9a227;
  --gold-lit: #e9cf78;
  --gold-deep: #9c7812;
  --pink: #c9a227;
  --pink-lit: #e9cf78;
  --teal: #c9a227;
  --teal-lit: #e9cf78;
  --grape: #a98218;
  --orange: #d1ad42;

  /* Semantic */
  --bg: var(--black);
  --surface: var(--black-soft);
  --surface-lift: var(--char);
  --ink: var(--cream);
  --ink-quiet: var(--cream-quiet);
  --line: rgba(201, 162, 39, 0.4);
  --line-soft: rgba(233, 207, 120, 0.14);

  /* Gradients */
  --gold-sheen: linear-gradient(
    110deg,
    #8f6b0d 0%,
    #c9a227 28%,
    #f1dc93 52%,
    #b98b13 76%,
    #d7b94e 100%
  );
  --cherry-wash: radial-gradient(
    120% 90% at 50% 0%,
    rgba(201, 162, 39, 0.15) 0%,
    rgba(201, 162, 39, 0.04) 42%,
    rgba(13, 13, 13, 0) 72%
  );

  /* Type: bold and rounded, never novelty */
  --display: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", Georgia, serif;
  --body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Inter, Arial, sans-serif;

  /* Rhythm */
  --shell: min(100% - 2.5rem, 68rem);
  --shell-tight: min(100% - 2.5rem, 46rem);
  --section-y: clamp(4rem, 11vw, 8.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --fast: 0.22s;
  --slow: 0.7s;

  color-scheme: dark;
}

/* --- Reset ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* --- Type ----------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5.2rem);
}
h2 {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
}
h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--cherry-lit);
  text-decoration-color: rgba(255, 106, 181, 0.4);
  text-underline-offset: 0.22em;
  transition: color var(--fast) var(--ease),
    text-decoration-color var(--fast) var(--ease);
}
a:hover {
  color: var(--teal-lit);
  text-decoration-color: var(--teal);
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.4rem;
}

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.62;
  color: var(--cream-dim);
}

.quiet {
  color: var(--ink-quiet);
  font-size: 0.85rem;
  line-height: 1.6;
}

.gold-text {
  background: var(--gold-sheen);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 9s linear infinite;
}

@keyframes sheen {
  to {
    background-position: 200% center;
  }
}

/* --- Layout --------------------------------------------------------------- */
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.shell-tight {
  width: var(--shell-tight);
  margin-inline: auto;
}

section {
  padding-block: var(--section-y);
  position: relative;
}

.rule {
  width: 3.5rem;
  height: 4px;
  border-radius: 999px;
  background: var(--gold-sheen);
  border: 0;
  margin: 0 0 1.75rem;
}
.rule.centered {
  margin-inline: auto;
}

.section-head {
  max-width: 34rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

/* --- Skip link ------------------------------------------------------------ */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--cherry);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
}

/* --- Focus ---------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Header --------------------------------------------------------------- */
.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding-block: 1.15rem;
  transition: background var(--slow) var(--ease),
    padding var(--slow) var(--ease), border-color var(--slow) var(--ease),
    box-shadow var(--slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead.is-stuck {
  background: rgba(12, 7, 18, 0.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(255, 47, 146, 0.45);
  padding-block: 0.7rem;
}
.masthead .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.wordmark:hover {
  color: var(--ink);
}
.wordmark .mark {
  width: 2rem;
  height: 2rem;
  flex: none;
}
.wordmark .name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--cherry-lit);
}
.wordmark .name small {
  display: block;
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--teal);
  margin-top: 0.34rem;
}

.masthead nav {
  display: none;
  gap: 2rem;
}
.masthead nav a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
}
.masthead nav a:hover {
  color: var(--cherry-lit);
}

@media (min-width: 62rem) {
  .masthead nav {
    display: flex;
  }
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold-sheen);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  min-height: 3.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  background-size: 200% auto;
  color: #1a0410;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-position var(--slow) var(--ease),
    transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
  box-shadow: 0 10px 30px -10px rgba(255, 47, 146, 0.55);
}
.btn:hover {
  background-position: right center;
  color: #1a0410;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(255, 47, 146, 0.7);
}
.btn:active {
  transform: translateY(0);
}
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Glossy sweep on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 40%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
}
.btn:hover::after {
  left: 120%;
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--cherry-lit);
  box-shadow: none;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-lit);
  background: rgba(31, 208, 210, 0.08);
  box-shadow: none;
}
.btn-ghost::after {
  display: none;
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-block: clamp(7rem, 18vw, 9rem) clamp(3.5rem, 9vw, 6rem);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cherry-wash);
  z-index: -2;
}

/* Neon sprinkle field so the black reads as a candy shop at night */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 12% 24%,
      rgba(255, 201, 51, 0.16) 0,
      transparent 22%
    ),
    radial-gradient(circle at 86% 14%, rgba(160, 108, 240, 0.16) 0, transparent 24%),
    radial-gradient(circle at 74% 78%, rgba(31, 208, 210, 0.13) 0, transparent 26%),
    radial-gradient(circle at 22% 82%, rgba(255, 79, 160, 0.12) 0, transparent 24%);
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 4.5rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  background: var(--gold-sheen);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 9s linear infinite;
}

.hero .lede {
  max-width: 33rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-art .halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 47, 146, 0.28) 0%,
    rgba(255, 201, 51, 0.14) 45%,
    transparent 70%
  );
  filter: blur(8px);
  animation: breathe 7s var(--ease) infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.hero-art figure {
  margin: 0;
  position: relative;
  width: min(100%, 26rem);
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

/* --- Countdown ------------------------------------------------------------ */
.countdown {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}
.countdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 30rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.clock li {
  background: linear-gradient(170deg, var(--char), var(--black-soft));
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.85rem 0.4rem 0.7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px -14px rgba(0, 0, 0, 0.8);
}
.clock li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gold-sheen);
  opacity: 0.9;
}
.clock .num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}
.clock .unit {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.clock.is-live .num {
  transition: opacity 0.3s var(--ease);
}

/* --- Signup form ---------------------------------------------------------- */
.join {
  background: linear-gradient(180deg, var(--black) 0%, #1a0d20 50%, var(--black) 100%);
  border-block: 1px solid var(--line);
}

.join-card {
  background: linear-gradient(170deg, var(--char), var(--black-soft));
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(255, 47, 146, 0.45);
}
.join-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--gold-sheen);
  background-size: 200% auto;
  animation: sheen 7s linear infinite;
}

.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.field .hint {
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--ink-quiet);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0.4rem;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.95rem 1.05rem;
  min-height: 3.25rem;
  background: rgba(12, 7, 18, 0.7);
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
}
input::placeholder,
textarea::placeholder {
  color: rgba(166, 135, 160, 0.7);
}
input:hover,
select:hover,
textarea:hover {
  border-color: rgba(253, 244, 251, 0.28);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--cherry);
  background: rgba(12, 7, 18, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 47, 146, 0.2);
}
input[aria-invalid="true"] {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 148, 64, 0.22);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-row {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 40rem) {
  .field-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.check input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  margin-top: 0.3rem;
  flex: none;
  accent-color: var(--cherry);
}
.check label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream-dim);
  line-height: 1.55;
  margin: 0;
}

/* Honeypot: visually gone, still reachable by bots parsing the DOM */
.pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.9rem;
  min-height: 1.2em;
}

.form-note {
  margin-top: 1rem;
}

/* Success state */
.join-done {
  text-align: center;
  padding: clamp(1rem, 4vw, 2rem) 0;
}
.join-done .seal {
  width: 4.5rem;
  margin: 0 auto 1.5rem;
  animation: seal-in 0.8s var(--ease) both;
}
@keyframes seal-in {
  from {
    opacity: 0;
    transform: scale(0.82) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.join-done h3 {
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  margin-bottom: 0.9rem;
}

/* --- Benefits ------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  gap: 1rem;
  background: transparent;
  border: 0;
}
@media (min-width: 44rem) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 68rem) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit {
  background: linear-gradient(170deg, var(--char), var(--black-soft));
  border: 2px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.4rem);
  transition: border-color var(--slow) var(--ease),
    transform var(--slow) var(--ease), box-shadow var(--slow) var(--ease);
}
.benefit:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -26px rgba(255, 47, 146, 0.5);
}
.benefit .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a0410;
  background: var(--gold-sheen);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  margin-bottom: 1.4rem;
}
.benefit h3 {
  margin-bottom: 0.7rem;
}
.benefit p {
  font-size: 0.92rem;
  color: var(--ink-quiet);
}

/* --- Products ------------------------------------------------------------- */
.products {
  background: var(--surface);
}

.product-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 46rem) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 68rem) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product {
  position: relative;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--char), var(--black-soft));
  transition: border-color var(--slow) var(--ease),
    transform var(--slow) var(--ease), box-shadow var(--slow) var(--ease);
}
.product:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -30px rgba(255, 47, 146, 0.55);
}
.product figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  /* Matches the dark stage inside the art symbols so the candy colors glow. */
  background: radial-gradient(circle at 50% 42%, #33143a, #0c0712);
}
.product figure > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.product:hover figure > * {
  transform: scale(1.045);
}
.product .body {
  padding: 1.5rem;
}
.product h3 {
  margin-bottom: 0.55rem;
}
.product .kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.product p {
  font-size: 0.92rem;
  color: var(--ink-quiet);
  margin: 0;
}
.product .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--cherry);
  border: 0;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(255, 47, 146, 0.7);
}

.locked-note {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* --- Social --------------------------------------------------------------- */
.social-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 46rem) {
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tile {
  position: relative;
  aspect-ratio: 1;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: radial-gradient(circle at 50% 40%, #33143a, #0c0712);
  transition: border-color var(--slow) var(--ease),
    box-shadow var(--slow) var(--ease);
}
.tile:hover {
  border-color: var(--teal);
  box-shadow: 0 18px 40px -24px rgba(31, 208, 210, 0.6);
}
.tile > svg {
  width: 100%;
  height: 100%;
  transition: transform 1s var(--ease);
}
.tile:hover > svg {
  transform: scale(1.06);
}
.tile figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(transparent, rgba(12, 7, 18, 0.92));
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--line-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-dim);
  transition: all var(--fast) var(--ease);
  background: transparent;
}
.social-links a:hover {
  border-color: var(--cherry);
  color: var(--cherry-lit);
  background: rgba(255, 47, 146, 0.08);
}
.social-links svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

/* --- FAQ / accordion ------------------------------------------------------ */
.faq-list {
  border-top: 2px solid var(--line-soft);
}
.faq-item {
  border-bottom: 2px solid var(--line-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.02rem, 2.4vw, 1.25rem);
  transition: color var(--fast) var(--ease);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--cherry-lit);
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 3px solid var(--cherry);
  border-bottom: 3px solid var(--cherry);
  border-radius: 1px;
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--fast) var(--ease);
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item .answer {
  padding: 0 0 1.5rem;
  color: var(--ink-quiet);
  max-width: 46rem;
  animation: fade-up 0.4s var(--ease) both;
}

/* --- Footer ----------------------------------------------------------------- */
.site-footer {
  border-top: 2px solid var(--line);
  padding-block: clamp(3rem, 7vw, 4.5rem) 7rem;
  background: linear-gradient(180deg, var(--black), #160a1c);
}
@media (min-width: 62rem) {
  .site-footer {
    padding-bottom: clamp(3rem, 7vw, 4.5rem);
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 52rem) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-grid h4 {
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.1rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-grid a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-grid a:hover {
  color: var(--cherry-lit);
}

.colophon {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.6rem;
  border-top: 2px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--ink-quiet);
}

/* --- Sticky mobile CTA ---------------------------------------------------- */
.sticky-join {
  position: fixed;
  inset: auto 0 0;
  z-index: 45;
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(12, 7, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}
.sticky-join.is-shown {
  transform: translateY(0);
}
.sticky-join .btn {
  width: 100%;
}
@media (min-width: 62rem) {
  .sticky-join {
    display: none;
  }
}

/* --- Entrance animations -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.09s;
}
.reveal.d2 {
  transition-delay: 0.18s;
}
.reveal.d3 {
  transition-delay: 0.27s;
}
.reveal.d4 {
  transition-delay: 0.36s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Shimmer used on candy shine details and the seal */
.shimmer {
  animation: shimmer 5.5s var(--ease) infinite;
}
@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Interior pages (FAQ, privacy, terms, contact) ------------------------ */
.page-head {
  padding-block: clamp(7.5rem, 16vw, 10rem) clamp(2rem, 5vw, 3rem);
  background: var(--cherry-wash), var(--black);
}
.prose {
  max-width: 44rem;
}
.prose h2 {
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  margin: 2.75rem 0 0.9rem;
}
.prose h3 {
  margin: 2rem 0 0.6rem;
}
.prose ul,
.prose ol {
  margin: 0 0 1.1em;
  padding-left: 1.2rem;
  color: var(--cream-dim);
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose p {
  color: var(--cream-dim);
}
.prose .updated {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ==========================================================================
   2026 boutique direction
   Matte black, quiet gold, editorial scale, and product color only in imagery.
   ========================================================================== */

.home {
  background: #0d0d0d;
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
}

.home .shell {
  width: min(100% - 2rem, 78rem);
}

.home section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.home h1,
.home h2,
.home h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.home h2 {
  font-size: clamp(2.75rem, 6.5vw, 5.4rem);
  line-height: 0.98;
}

.home h2 em,
.home .hero-luxe h1 em {
  color: var(--gold-lit);
  font-style: italic;
  font-weight: 400;
}

.home .eyebrow {
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.36em;
  margin-bottom: 1.4rem;
}

.home .rule {
  width: 3.25rem;
  height: 1px;
  border-radius: 0;
  background: var(--gold);
  margin-block: 2rem;
}

.home .masthead {
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0.84), transparent);
}

.home .masthead.is-stuck {
  background: rgba(13, 13, 13, 0.94);
  border-bottom-color: rgba(201, 162, 39, 0.34);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.home .masthead .shell {
  display: grid;
  grid-template-columns: 1fr auto;
}

.luxe-wordmark {
  color: var(--gold);
  gap: 0.8rem;
}

.luxe-wordmark:hover {
  color: var(--gold-lit);
}

.luxe-wordmark .mark {
  width: 2rem;
  height: 2.55rem;
  color: currentColor;
}

.luxe-wordmark .name {
  display: grid;
  justify-items: center;
  color: currentColor;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.luxe-wordmark .name small {
  color: currentColor;
  font-family: var(--body);
  font-size: 0.48rem;
  letter-spacing: 0.52em;
  margin-top: 0.48rem;
  padding-left: 0.5em;
}

.luxe-wordmark .name b {
  color: rgba(233, 207, 120, 0.74);
  font-family: var(--body);
  font-size: 0.39rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  margin-top: 0.36rem;
  text-transform: uppercase;
}

.home .masthead nav {
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.8rem);
}

.home .masthead nav a {
  color: #fff;
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  position: relative;
}

.home .masthead nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.5rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.home .masthead nav a:hover {
  color: var(--gold-lit);
}

.home .masthead nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
  color: #0d0d0d;
  background: var(--gold-sheen);
  padding: 0.7rem 1.15rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta:hover {
  color: #0d0d0d;
}

@media (min-width: 62rem) {
  .home .masthead .shell {
    grid-template-columns: 1fr auto 1fr;
  }

  .home .masthead nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    justify-self: end;
    align-items: center;
  }
}

.home .btn {
  min-height: 3.6rem;
  padding: 1rem 1.7rem;
  border-radius: 0;
  background: var(--gold-sheen);
  color: #0d0d0d;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.21em;
  box-shadow: 0 12px 34px rgba(201, 162, 39, 0.15);
}

.home .btn:hover {
  color: #0d0d0d;
  box-shadow: 0 15px 40px rgba(201, 162, 39, 0.26);
}

.home .btn-ghost {
  color: #fff;
  border: 1px solid rgba(233, 207, 120, 0.7);
  background: rgba(13, 13, 13, 0.25);
  box-shadow: none;
}

.home .btn-ghost:hover {
  color: var(--gold-lit);
  border-color: var(--gold-lit);
  background: rgba(201, 162, 39, 0.08);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.15);
}

.home .hero-luxe {
  min-height: 100svh;
  padding-block: 9rem 6rem;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-photo {
  background: #080808 url("/assets/luxe-candy-hero.jpg") 69% center / cover no-repeat;
  transform: scale(1.015);
  animation: hero-push 16s ease-out both;
}

@keyframes hero-push {
  from { transform: scale(1.06); }
  to { transform: scale(1.015); }
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 33%, rgba(5, 5, 5, 0.35) 58%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), transparent 30%);
}

.hero-inner {
  width: 100%;
}

.hero-copy {
  max-width: 44rem;
}

.home .hero-luxe h1 {
  font-size: clamp(3.4rem, 7.2vw, 6.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
}

.home .hero-luxe .lede {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.75;
  margin-top: 2rem;
}

.home .hero-cta {
  margin-top: 2.5rem;
}

.hero-sparkles i {
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  background: #fff3c8;
  box-shadow: 0 0 14px 4px rgba(233, 207, 120, 0.5);
  animation: twinkle 3.8s ease-in-out infinite;
}

.hero-sparkles i::before,
.hero-sparkles i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(233, 207, 120, 0.8);
  transform: translate(-50%, -50%);
}

.hero-sparkles i::before { width: 20px; height: 1px; }
.hero-sparkles i::after { width: 1px; height: 20px; }
.hero-sparkles i:nth-child(1) { left: 49%; top: 24%; }
.hero-sparkles i:nth-child(2) { left: 83%; top: 31%; animation-delay: 1.2s; }
.hero-sparkles i:nth-child(3) { left: 61%; top: 72%; animation-delay: 2.3s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.6) rotate(0); }
  50% { opacity: 1; transform: scale(1) rotate(45deg); }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(var(--gold), transparent);
}

.story-section {
  background: #11110f;
  overflow: hidden;
}

.story-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.story-monogram {
  min-height: 22rem;
  display: grid;
  place-items: center;
  position: relative;
}

.story-monogram::before,
.story-monogram::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 162, 39, 0.22);
  transform: rotate(45deg);
}

.story-monogram::before {
  width: min(70vw, 21rem);
  aspect-ratio: 1;
}

.story-monogram::after {
  width: min(53vw, 16rem);
  aspect-ratio: 1;
}

.story-monogram span {
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 9rem);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233, 207, 120, 0.72);
  letter-spacing: -0.12em;
  margin-left: -0.12em;
}

.story-monogram i {
  position: absolute;
  width: 5rem;
  height: 1px;
  background: var(--gold);
  transform: rotate(-45deg);
}

.story-copy {
  max-width: 39rem;
}

.story-copy .story-lede {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.55;
}

.story-copy > p:not(.eyebrow):not(.story-lede) {
  color: var(--cream-quiet);
  max-width: 34rem;
}

.text-link {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.4rem;
  color: var(--gold-lit);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover {
  color: #fff;
}

.text-link:hover span {
  transform: translateX(0.35rem);
}

@media (min-width: 52rem) {
  .story-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(4rem, 9vw, 9rem);
  }
}

.collection-section {
  background: #0d0d0d;
}

.home .section-head.centered {
  max-width: 45rem;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.home .section-head.centered > p:last-child {
  color: var(--cream-quiet);
  margin-top: 1.5rem;
}

.luxe-products {
  gap: clamp(1.25rem, 3vw, 2.2rem);
}

.home .product {
  border: 0;
  border-radius: 0;
  background: #151513;
  overflow: visible;
  box-shadow: none;
}

.home .product:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.home .product figure {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  background: #090909;
}

.home .product figure::after,
.editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(233, 207, 120, 0.12);
  pointer-events: none;
}

.home .product figure img {
  filter: saturate(0.9) contrast(1.03);
}

.home .product .body {
  padding: 1.6rem 0.25rem 0.25rem;
}

.home .product .kicker {
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.home .product h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin-bottom: 0.8rem;
}

.home .product p {
  color: var(--cream-quiet);
  line-height: 1.7;
}

.home .product .tag {
  top: 1rem;
  right: 1rem;
  border-radius: 0;
  background: rgba(13, 13, 13, 0.86);
  color: var(--gold-lit);
  border: 1px solid rgba(201, 162, 39, 0.6);
  box-shadow: none;
}

.home .locked-note {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 0.59rem;
  margin-top: 4rem;
}

.gallery-section {
  background: #151513;
}

.gallery-heading {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery-heading > p {
  color: var(--cream-quiet);
  max-width: 24rem;
}

.editorial-grid {
  display: grid;
  gap: 1rem;
}

.editorial {
  position: relative;
  min-height: 24rem;
  margin: 0;
  overflow: hidden;
  background: #080808;
}

.editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.editorial:hover img {
  transform: scale(1.035);
  filter: brightness(1.06);
}

.editorial figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 3rem 1.4rem 1.3rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.editorial figcaption span {
  color: var(--gold);
  margin-right: 0.75rem;
}

@media (min-width: 48rem) {
  .gallery-heading {
    grid-template-columns: 1fr auto;
  }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 21rem 21rem;
  }

  .editorial-tall {
    grid-row: 1 / 3;
  }

  .editorial-wide {
    min-height: 0;
  }

  .editorial-wide img {
    object-position: center 62%;
  }

  .editorial-grid > :last-child img {
    object-position: center 40%;
  }
}

.occasion-section {
  min-height: 44rem;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.occasion-image,
.occasion-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.occasion-image {
  background: #090909 url("/assets/luxe-candy-events.jpg") center / cover no-repeat;
}

.occasion-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.67) 48%, rgba(5, 5, 5, 0.16) 100%);
}

.occasion-card {
  max-width: 38rem;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(201, 162, 39, 0.32);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.occasion-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
  margin: 1.7rem 0 2rem;
}

.details-section {
  background: #0d0d0d;
}

.luxe-benefits {
  gap: 0;
  border-block: 1px solid rgba(201, 162, 39, 0.25);
}

.home .luxe-benefits .benefit {
  border: 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 0;
  background: transparent;
  padding: clamp(2.3rem, 5vw, 4rem);
  text-align: center;
  box-shadow: none;
}

.home .luxe-benefits .benefit:hover {
  background: rgba(201, 162, 39, 0.035);
  transform: none;
  box-shadow: none;
}

.home .luxe-benefits .benefit .num {
  width: auto;
  height: auto;
  margin: 0 0 1.7rem;
  border-radius: 0;
  background: none;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.home .luxe-benefits h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.home .luxe-benefits p {
  max-width: 20rem;
  margin-inline: auto;
}

@media (min-width: 44rem) {
  .home .luxe-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .home .luxe-benefits .benefit {
    border-bottom: 0;
    border-right: 1px solid rgba(201, 162, 39, 0.18);
  }

  .home .luxe-benefits .benefit:last-child {
    border-right: 0;
  }
}

.home .join-luxe {
  background:
    radial-gradient(circle at 12% 15%, rgba(201, 162, 39, 0.11), transparent 34%),
    #151513;
  border-block: 1px solid rgba(201, 162, 39, 0.24);
}

.join-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.join-intro {
  max-width: 34rem;
}

.join-intro > p:last-child {
  color: var(--cream-quiet);
  margin-top: 1.7rem;
}

.home .join-card {
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 0;
  background: rgba(13, 13, 13, 0.72);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.home .join-card::before {
  height: 1px;
}

.home .field label {
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.home .field .hint {
  color: var(--cream-quiet);
}

.home input[type="text"],
.home input[type="email"],
.home input[type="tel"] {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: #10100f;
}

.home input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.13);
}

.home .check input {
  accent-color: var(--gold);
}

.home .join-card .btn {
  width: 100%;
}

.home .join-seal {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-lit);
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  transform: rotate(45deg);
}

.home .join-seal::first-line {
  transform: rotate(-45deg);
}

@media (min-width: 56rem) {
  .join-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(4rem, 8vw, 8rem);
  }
}

.home .luxe-footer {
  background: #080808;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding-block: 4rem 2rem;
}

.footer-top {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-top > p {
  color: var(--cream-quiet);
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
}

.home .luxe-footer .footer-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.home .luxe-footer .footer-grid h4 {
  color: var(--gold);
}

.home .luxe-footer .footer-grid a {
  color: var(--cream-quiet);
}

.home .luxe-footer .footer-grid a:hover {
  color: #fff;
}

.home .luxe-footer .colophon {
  border-top-color: rgba(201, 162, 39, 0.15);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.home .luxe-footer .colophon a {
  color: inherit;
}

@media (min-width: 48rem) {
  .footer-top {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 46rem) {
  .home .hero-luxe {
    min-height: 47rem;
    align-items: end;
    padding-bottom: 6rem;
  }

  .hero-photo {
    background-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.76) 48%, rgba(5, 5, 5, 0.1) 85%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.55), transparent 75%);
  }

  .home .hero-luxe h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .home .hero-luxe .lede {
    line-height: 1.6;
  }

  .home .hero-cta {
    display: grid;
  }

  .home .hero-cta .btn {
    width: 100%;
  }

  .home .luxe-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home .luxe-footer .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    animation: none;
  }
}
