:root {
  --ink: #0a0809;
  --ink-soft: #120d10;
  --charcoal: #171114;
  --graphite: #22181c;
  --plum: #1a1014;
  --oxblood: #6b1c2a;
  --burgundy: #8b2e3a;
  --wine: #4a1520;
  --rose: #a56a72;
  --gold: #c4a574;
  --gold-dim: #8d7350;
  --brass: #b08a52;
  --ivory: #f3ead8;
  --pearl: #e8dcc8;
  --parchment: #d7c9b4;
  --muted: #9a8b80;
  --line: rgba(196, 165, 116, 0.22);
  --line-strong: rgba(196, 165, 116, 0.4);
  --glass: rgba(18, 12, 14, 0.62);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --header-h: 4.5rem;
  --measure: 40rem;
  --wide: 72rem;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-style: italic;
}

p {
  margin: 0 0 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.2rem;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.45rem;
}

strong {
  font-weight: 600;
  color: var(--ivory);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  background: var(--ivory);
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - var(--gutter) * 2, var(--wide));
  margin-inline: auto;
}

.eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ornament {
  width: min(16rem, 70vw);
  height: 1.4rem;
  margin: 1.4rem 0;
  background: url("../images/ornament.svg") center / contain no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-primary {
  background: linear-gradient(180deg, #7a2433 0%, #4e1520 100%);
  border-color: rgba(196, 165, 116, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #8d2d3d 0%, #5a1924 100%);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--pearl);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--ivory);
}

.btn-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
::selection {
  background: rgba(139, 46, 58, 0.7);
  color: var(--ivory);
}