:root {
  --gold:        #C9A84C;
  --gold-light:  #E8CA7A;
  --gold-dim:    #8B6914;
  --cream:       #FAF7F2;
  --warm-white:  #F5F0E8;
  --ink:         #1A1610;
  --ink-soft:    #3D3428;
  --ink-muted:   #7A6E5F;
  --border:      rgba(201,168,76,0.25);
}

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

html { cursor: none; }

body {
  font-family: 'Tenor Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ─────────────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
#cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: width .25s cubic-bezier(.4,0,.2,1),
              height .25s cubic-bezier(.4,0,.2,1),
              opacity .3s;
}
body.hovering #cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--gold-light);
}

/* ── Noise overlay ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ── Layout ────────────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* ── Header ────────────────────────────────────────── */
header {
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.header-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 2rem;
}

.header-tag {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  gap: 3.5rem;
}

.emblem {
  position: relative;
  width: 90px;
  height: 90px;
  opacity: 0;
  animation: fadeUp .9s .1s forwards;
}
.emblem svg { width: 100%; height: 100%; }

.quote-block {
  max-width: 640px;
  opacity: 0;
  animation: fadeUp .9s .25s forwards;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: .01em;
}
.quote-text em {
  font-style: italic;
  color: var(--gold-dim);
}

.quote-author {
  margin-top: 1.25rem;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Divider ───────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────── */
.cta-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .9s .55s forwards;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 2rem;
  font-family: 'Tenor Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  cursor: none;
  transition: color .25s, background .25s, border-color .25s;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn:hover::after { transform: scaleX(1); }
.btn > * { position: relative; z-index: 1; }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover { color: var(--ink); border-color: var(--gold); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-secondary::after { background: var(--ink); }
.btn-secondary:hover { color: var(--cream); }

.btn-icon {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────────── */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.footer-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 640px) {
  header { padding: 1.75rem 1.5rem; }
  .header-rule { display: none; }
  .header-tag { display: none; }
  .hero { padding: 4rem 1.5rem; gap: 2.5rem; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .btn { padding: .8rem 1.5rem; font-size: .72rem; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}