/* ═══════════════════════════════════════════════════════════
   BASE: variables, reset, typography
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink:       #0f0f0e;
  --paper:     #f8f6f1;
  --cream:     #ede9e0;
  --accent:    #1a3a5c;
  --gold:      #c09a5a;
  --muted:     #8a8278;
  --rule:      rgba(15, 15, 14, .10);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;

  --max: 1100px;
  --gap: clamp(3rem, 6vw, 6rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* utility */
.container {
  width: min(var(--max), 100% - 3rem);
  margin-inline: auto;
}

.label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

section { padding: var(--gap) 0; }

.section-header { margin-bottom: 3.5rem; }

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-top: .75rem;
}

.section-header p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 60ch;
}

/* buttons */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: .9rem 2.2rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: .9rem 2.2rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-decoration: none;
  border: 1px solid rgba(15, 15, 14, .2);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block;
}

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