:root {
  --ink: #23201c;
  --ink-soft: #55504a;
  --cream: #faf6f0;
  --cream-deep: #f1eadd;
  --paper: #ffffff;
  --taupe: #ece3d6;
  --gold: #a9814f;
  --gold-deep: #8a6a3f;
  --gold-light: #cba876;
  --line: rgba(35, 32, 28, 0.12);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;

  --container: 1240px;
  --nav-h: 176px;

  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 900px) {
  :root {
    --nav-h: 104px;
  }
}

@media (max-width: 560px) {
  :root {
    --nav-h: 88px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 0.9vw + 0.5rem, 17px);
  line-height: 1.7;
  width: 100%;
}

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

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

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 3.2vw + 1.4rem, 4.6rem);
  line-height: 1.08;
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 1.6vw + 1.2rem, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.35rem, 0.6vw + 1rem, 1.7rem);
  line-height: 1.3;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

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

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

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.6);
}

.btn-outline-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.section {
  padding: clamp(64px, 9vw, 140px) 0;
}

.section-tight {
  padding: clamp(48px, 6vw, 96px) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

.cta-band {
  background: var(--gold-deep);
  color: var(--cream);
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(250, 246, 240, 0.9);
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}
