:root {
  --bg-dark: #241a22;
  --bg-darker: #180f16;
  --bg-panel: #2e2129;
  --gold: #c9a15a;
  --gold-soft: #e4c989;
  --rose: #c98a7d;
  --sage: #8a9a7c;
  --ivory: #f3ede6;
  --ivory-dim: #cfc0b8;
  --line: rgba(243, 237, 230, 0.14);
  --line-strong: rgba(243, 237, 230, 0.24);
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-darker);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

/* Film-grain overlay — cheap, no image asset, sits above the gradients so
   the whole page reads a touch less flat/digital. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 15, 22, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--ivory);
  font-weight: 500;
}

.wordmark em {
  font-style: normal;
  color: var(--gold-soft);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a:not(.btn) {
  text-decoration: none;
  color: var(--ivory-dim);
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav__links a:not(.btn):hover {
  color: var(--ivory);
}

@media (max-width: 600px) {
  .nav__links a:not(.btn) {
    display: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #241a10;
}

.btn--primary:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ivory);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.26), rgba(201, 161, 90, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  text-align: center;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid var(--line-strong);
  padding: 7px 16px;
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 8px var(--gold-soft);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.08;
  margin: 22px 0 0;
  max-width: 15ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-soft);
}

.hero p.lede {
  max-width: 46ch;
  margin: 0 auto;
  color: var(--ivory-dim);
  font-size: 17px;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Mosaic (365-day callback) ---------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 5px;
  width: min(760px, 100%);
}

.mosaic i {
  display: block;
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  opacity: 0;
  animation: mosaic-in 0.5s ease forwards;
}

.mosaic i.lit {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  box-shadow: 0 0 10px rgba(201, 161, 90, 0.45);
}

.mosaic i.lit--rose {
  background: linear-gradient(135deg, var(--rose), #a96659);
  box-shadow: 0 0 10px rgba(201, 138, 125, 0.4);
}

@keyframes mosaic-in {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .mosaic {
    grid-template-columns: repeat(12, 1fr);
  }
}

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Sections ---------- */

section {
  padding: 88px 0;
}

.section__head {
  text-align: center;
  max-width: 44ch;
  margin: 0 auto 48px;
}

.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 12px;
}

.section__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
  line-height: 1.2;
}

.section__head p {
  color: var(--ivory-dim);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 14px 0 0;
}

/* ---------- Feature grid ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.feature {
  background: var(--bg-dark);
  padding: 32px 28px;
}

.feature__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 18px;
}

.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 8px;
}

.feature p {
  color: var(--ivory-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Occasions ---------- */

.occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--ivory-dim);
}

.chip--accent {
  border-color: rgba(201, 161, 90, 0.5);
  color: var(--gold-soft);
}

/* ---------- Contact / CTA band ---------- */

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(201, 161, 90, 0.08), transparent 60%);
}

.cta-band__inner {
  text-align: center;
  max-width: 42ch;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 36px);
  margin: 0 0 14px;
}

.cta-band p {
  color: var(--ivory-dim);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 30px;
}

/* ---------- Footer ---------- */

footer {
  padding: 40px 24px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory-dim);
  font-size: 13px;
}

.footer__inner a {
  text-decoration: none;
  color: var(--ivory-dim);
  transition: color 0.2s ease;
}

.footer__inner a:hover {
  color: var(--gold-soft);
}
