:root {
  --gold: #c9a96e;
  --gold2: #a68550;
  --cream: #faf5ee;
  --dark: #1c1410;
  --text: #3a2c1e;
  --muted: #7d6650;
  --white: #ffffff;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

.page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.card {
  background: var(--white);
  border: 1px solid rgba(166, 133, 80, .22);
  border-radius: 14px;
  box-shadow: 0 14px 50px rgba(28, 20, 16, .08);
  padding: clamp(28px, 5vw, 56px);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--dark);
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1;
  letter-spacing: .08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin: 34px 0 10px;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

a {
  color: inherit;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  align-items: center;
  background: var(--dark);
  border-radius: 4px;
  color: var(--white);
  display: inline-flex;
  font-size: .82rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .06em;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn--gold {
  background: var(--gold);
  color: #120d09;
}

.muted {
  color: var(--muted);
}
