/* Design tokens, reset and layout primitives shared by every section. */

:root {
  --ink: #151515;
  --paper: #f3efe6;
  --panel: #fffaf0;
  --sand: #e4dccd;
  --line: rgba(27, 27, 27, .14);
  --muted: #686157;
  --navy: #121922;
  --navy-2: #1b2633;
  --claret: #762832;
  --gold: #d0b779;
  --sage: #71806f;
  --blue: #7b92a4;
  --bento-gap: 14px;
  --header-gap: 24px;
  --tile-pad: clamp(28px, 3.2vw, 38px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
  font-family: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

dt {
  color: var(--claret);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

dd { margin: 0; }

.kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker em {
  font-style: normal;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .04em;
  opacity: .75;
}

.kicker::after {
  content: "";
  width: 56px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--claret), var(--gold), var(--blue));
}

section {
  position: relative;
  padding: 104px 0;
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.section-lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 24px, 1240px); }

  section { padding: 74px 0; }
  .section-head { gap: 14px; }
  .section-head h2 { font-size: 38px; }
  .section-lede { font-size: 16px; }
}
