/* Deborah & Jesse — #AdjeiToRemember — shared design tokens */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Pinyon+Script&display=swap');

:root {
  /* Palette — soft sage + antique gold on warm ivory */
  --cream: oklch(0.975 0.012 92);
  --cream-deep: oklch(0.955 0.014 90);
  --ivory: oklch(0.99 0.008 92);
  --sage: oklch(0.72 0.045 148);
  --sage-deep: oklch(0.48 0.045 148);
  /* Softened per client request — lifted lightness, lowered chroma, away from forest green */
  --sage-ink: oklch(0.42 0.03 148);
  --gold: oklch(0.72 0.11 78);
  --gold-deep: oklch(0.58 0.11 72);
  --gold-shine: oklch(0.86 0.09 88);
  --ink: oklch(0.28 0.015 90);
  --ink-soft: oklch(0.42 0.015 90);

  /* Type — romantic script accents + a highly readable serif for body copy */
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --script: 'Pinyon Script', 'Snell Roundhand', cursive;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }

.script { font-family: var(--script); font-weight: 400; }
.serif  { font-family: var(--serif); }

.hashtag {
  font-family: var(--script);
  color: var(--gold-deep);
  letter-spacing: 0.01em;
}

/* Soft divider */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--sage-deep);
}
.rule::before, .rule::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Corner florals — shared across gated screens */
.corner {
  position: absolute;
  width: 340px;
  height: 340px;
  background-image: url('/static/assets/gardenia-corner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at var(--mx, 25%) var(--my, 25%), #000 40%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 90% at var(--mx, 25%) var(--my, 25%), #000 40%, transparent 78%);
}
.corner.tl { top: -20px; left: -20px; --mx: 25%; --my: 25%; }
.corner.br { bottom: -20px; right: -20px; --mx: 75%; --my: 75%; transform: scaleX(-1) scaleY(-1); }
@media (max-width: 720px) { .corner { width: 200px; height: 200px; } }

/* Squared, editorial button (no pill buttons) */
.btn {
  font-family: var(--serif);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--sage-ink);
  background: transparent;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover {
  background: var(--sage-ink);
  color: var(--ivory);
  border-color: var(--sage-ink);
}
.btn .arrow { font-style: normal; letter-spacing: 0; }

.btn-primary {
  background: var(--sage-ink);
  color: var(--ivory);
  border-color: var(--sage-ink);
}
.btn-primary:hover {
  background: transparent;
  color: var(--sage-ink);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
