/* ======================================================================
   ZENMUNIS — colors & type tokens
   Dark luxury gold. Backgrounds always dark. Headlines italic serif.
   Labels spaced uppercase. Body editorial serif.
   ====================================================================== */

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

:root {
  /* ---------- Surfaces (always dark) ---------- */
  --black:        #050301;   /* page background */
  --dark:         #0e0904;   /* section backgrounds */
  --dark-2:       #160d05;   /* elevated surfaces */
  --dark-3:       #1e1208;   /* cards, containers */

  /* ---------- Gold accents ---------- */
  --gold:         #c9a84c;   /* primary accent, CTAs */
  --gold-light:   #e8c97a;   /* headlines, titles */
  --gold-deep:    #8a6420;   /* labels, borders */
  --gold-dim:     #3a2810;   /* subtle borders, dividers */
  --gold-faint:   #2a1e08;   /* hairline lines */

  /* ---------- Cream text ---------- */
  --cream:        #f0e8d8;   /* body text */
  --cream-muted:  #c8b898;   /* secondary text */
  --cream-dim:    #8a7a62;   /* tertiary text */

  /* ---------- Semantic foreground / background ---------- */
  --bg:           var(--black);
  --bg-section:   var(--dark);
  --bg-elevated:  var(--dark-2);
  --bg-card:      var(--dark-3);

  --fg:           var(--cream);
  --fg-muted:     var(--cream-muted);
  --fg-dim:       var(--cream-dim);
  --fg-display:   var(--gold-light);
  --fg-accent:    var(--gold);
  --fg-label:     var(--gold-deep);

  --border:       var(--gold-dim);
  --border-faint: var(--gold-faint);
  --border-strong:var(--gold-deep);

  /* ---------- Gradients ---------- */
  --grad-gold: linear-gradient(135deg, #e8c97a 0%, #c9a84c 50%, #8a6420 100%);
  --grad-gold-vert: linear-gradient(180deg, #e8c97a 0%, #c9a84c 100%);
  --grad-divider: linear-gradient(90deg, transparent 0%, var(--gold-deep) 50%, transparent 100%);
  --grad-page: radial-gradient(ellipse at 50% 30%, #160d05 0%, #050301 70%);

  /* ---------- Type families ---------- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "EB Garamond", Georgia, "Times New Roman", serif;
  --font-label:   "Tenor Sans", "Optima", "Trajan Pro", sans-serif;

  /* ---------- Type scale (fluid) ---------- */
  --fs-h1:   clamp(48px, 6vw, 88px);
  --fs-h2:   clamp(36px, 4.2vw, 60px);
  --fs-h3:   clamp(22px, 2.4vw, 32px);
  --fs-h4:   clamp(18px, 1.8vw, 22px);
  --fs-body: clamp(15px, 1.05vw, 17px);
  --fs-small:14px;
  --fs-label:0.68rem;
  --fs-btn:  0.7rem;
  --fs-quote:clamp(18px, 1.6vw, 28px);

  /* ---------- Letter spacing ---------- */
  --ls-label:  0.25em;
  --ls-button: 0.22em;
  --ls-display: 0.01em;
  --ls-tight: -0.01em;

  /* ---------- Line height ---------- */
  --lh-display: 1.1;
  --lh-heading: 1.2;
  --lh-body:    1.85;
  --lh-tight:   1.4;

  /* ---------- Spacing scale ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;     /* generous breathing room */

  /* ---------- Radii (sharp luxury, almost zero) ---------- */
  --radius-0: 0;
  --radius-1: 1px;
  --radius-2: 2px;       /* default container */
  --radius-pill: 999px;  /* discount badge */

  /* ---------- Borders ---------- */
  --bw-hair: 0.5px;
  --bw-1: 1px;

  /* ---------- Shadows / glows ---------- */
  --shadow-card: 0 1px 0 rgba(232, 201, 122, 0.04) inset,
                 0 24px 60px -30px rgba(0, 0, 0, 0.9);
  --shadow-lift: 0 1px 0 rgba(232, 201, 122, 0.08) inset,
                 0 36px 80px -30px rgba(0, 0, 0, 0.95);
  --glow-gold:  0 0 0 1px rgba(201, 168, 76, 0.4),
                0 0 24px -4px rgba(201, 168, 76, 0.25);
  --glow-aura:  0 0 80px -10px rgba(201, 168, 76, 0.18);

  /* ---------- Motion ---------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-quick: 220ms;
  --dur-base: 320ms;
  --dur-slow: 700ms;
}

/* ======================================================================
   BASE — element styles
   ====================================================================== */
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold-deep); color: var(--cream); }

h1, .h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: var(--lh-display);
  color: var(--fg-display);
  letter-spacing: var(--ls-display);
  margin: 0;
}
h2, .h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  color: var(--fg-display);
  letter-spacing: var(--ls-display);
  margin: 0;
}
h3, .h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: var(--lh-tight);
  color: var(--fg-display);
  margin: 0;
}
h4, .h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-h4);
  color: var(--fg-display);
  margin: 0;
}
p, .body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg);
  margin: 0 0 1em;
  text-wrap: pretty;
}
.body--muted { color: var(--fg-muted); }
.body--dim   { color: var(--fg-dim); }

.label {
  font-family: var(--font-label);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--fg-label);
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-quote);
  line-height: 1.4;
  color: var(--cream);
}

a { color: var(--cream-muted); text-decoration: none; transition: color var(--dur-base) var(--ease-out); }
a:hover { color: var(--gold-light); }

/* ---------- Divider with diamond ornament ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 120px;
  margin: var(--space-6) auto;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--grad-divider);
}
.divider__diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
