/* ════════════════════════════════════
   CANTIQUE — THEME CSS
   Fonts: Cormorant Garamond + DM Sans
   Palette: Warm cream, deep burgundy, gold
════════════════════════════════════ */

:root {
  --bg: #FAF6F0;
  --fg: #2A1A1A;
  --accent: #7B1E3D;
  --gold: #C9A84C;
  --muted: #8B7355;
  --surface: #F0E8DE;
  --border: #D4C4B0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 24px 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: var(--border);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
}

.hero__deliver {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

/* Album Art */
.album-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
}

.album-art__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.album-art__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #8B2545 0%, #5E1429 40%, #3A0D1A 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.4),
    0 24px 60px rgba(90,20,40,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
}

.album-art__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(0,0,0,0.04) 12px,
    rgba(0,0,0,0.04) 13px
  );
}

.album-art__cross {
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 1;
}

.album-art__cross svg rect { filter: drop-shadow(0 0 8px rgba(201,168,76,0.5)); }

.album-art__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 180px; height: 180px; }
.ring-2 { width: 260px; height: 260px; border-color: rgba(201,168,76,0.12); }
.ring-3 { width: 340px; height: 340px; border-color: rgba(201,168,76,0.06); }

.album-art__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.album-art__occasion {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 1;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 48px;
  background: var(--accent);
}

.manifesto__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: #FAF6F0;
  line-height: 1.4;
  margin-bottom: 32px;
}

.manifesto__body {
  font-size: 1rem;
  color: rgba(250,246,240,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  background: var(--surface);
}

.process__heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 64px;
  text-align: center;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  padding: 0 32px;
}

.step--divider {
  position: relative;
}

.step--divider::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step__body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── OCCASIONS ── */
.occasions {
  padding: 100px 48px;
  background: var(--bg);
}

.occasions__heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin-bottom: 56px;
}

.occasions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.occasion-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.occasion-card:hover {
  border-color: var(--gold);
}

.occasion-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.occasion-card__icon svg {
  width: 100%;
  height: 100%;
}

.occasion-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.occasion-card__body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--accent);
}

.closing__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing__overline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--bg);
  line-height: 1.2;
  margin-bottom: 32px;
}

.closing__body {
  font-size: 1rem;
  color: rgba(250,246,240,0.72);
  line-height: 1.8;
  margin-bottom: 48px;
}

.closing__closing p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--border);
  max-width: 480px;
  line-height: 1.6;
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }

  .hero {
    padding: 60px 24px 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__headline { font-size: 2.4rem; }
  .hero__sub { max-width: 100%; }

  .album-art { max-width: 280px; margin: 0 auto; }

  .manifesto, .process, .occasions, .closing { padding: 60px 24px; }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step--divider::before { display: none; }
  .step { padding: 0; }
  .step__number { font-size: 2.4rem; }

  .occasions__grid { grid-template-columns: 1fr; }

  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero__meta { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero__deliver { border-left: none; padding-left: 0; }
}
