/* ── Design tokens (Coming Soon page only) ── */
:root {
  
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--forest-deep);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── Main canvas ── */
.canvas {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}

/* Textured forest overlay */
.canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), var(--photo-fall) center / cover no-repeat;
  z-index: 0;
}

/* Decorative leaf-vein SVG watermark */
.canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='rgba(245,239,228,0.03)' stroke-width='1'%3E%3Ccircle cx='300' cy='300' r='250'/%3E%3Ccircle cx='300' cy='300' r='200'/%3E%3Ccircle cx='300' cy='300' r='150'/%3E%3Cpath d='M300 50 L300 550 M50 300 L550 300 M123 123 L477 477 M477 123 L123 477'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 600px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

/* ── Brand mark ── */
a.brand .light {
  color: var(--cream-soft);
}

/* ── Divider ornament ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.ornament svg { color: var(--gold); opacity: .8; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

/* ── Headline ── */
h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,239,228,.65);
  max-width: 480px;
  margin: 0 auto 48px;
}

/* ── Meta strip ── */
.meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,239,228,.1);
  font-size: 12.5px;
  color: rgba(245,239,228,.4);
  letter-spacing: .05em;
}
.meta-strip a {
  color: rgba(245,239,228,.45);
  text-decoration: none;
  transition: color .2s;
}
.meta-strip a:hover { color: var(--gold-light); }
.meta-strip .sep { opacity: .3; }