


*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  margin: 0;
  line-height: inherit;
}
h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}
ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
button {
  cursor: pointer;
  text-transform: none;
}
a {
  color: inherit;
  text-decoration: none;
}
table {
  border-collapse: collapse;
}


:root {
  color-scheme: light;

  
  --bg-primary: #fffaf5;
  --bg-secondary: #fff7ed;
  --bg-tertiary: #ffedd5;
  --bg-deep: #431407;
  --surface: #ffffff;
  --accent: #ea580c;
  --accent-hover: #c2410c;
  --accent-soft: #fdba74;
  --text-primary: #431407;
  --text-secondary: #7c2d12;
  --text-muted: #b45309;
  --text-invert: #fff7ed;
  --line: rgba(124, 45, 18, 0.16);
  --line-strong: rgba(124, 45, 18, 0.32);

  
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;

  
  --space-3xs: clamp(0.25rem, 0.5vw, 0.375rem);
  --space-2xs: clamp(0.375rem, 0.8vw, 0.5rem);
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-s: clamp(0.75rem, 1.4vw, 1rem);
  --space-m: clamp(1rem, 2vw, 1.4rem);
  --space-l: clamp(1.4rem, 2.8vw, 2rem);
  --space-xl: clamp(2rem, 4.4vw, 3.2rem);
  --space-2xl: clamp(2.6rem, 6vw, 4.4rem);

  
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 14px rgba(67, 20, 7, 0.08);
  --shadow-lift: 0 18px 40px rgba(67, 20, 7, 0.14);
  --transition: 0.28s ease;
  --masthead-h: clamp(3.5rem, 7vw, 4.5rem);
  --fab-reserve: clamp(4.5rem, 9vw, 6rem);
  --shell: clamp(20rem, 92%, 75rem);
}


body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
  line-height: 1.8;
  position: relative;
  padding-top: var(--masthead-h);
  padding-bottom: var(--fab-reserve);
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
h4 {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
p {
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}
strong {
  font-weight: 700;
  color: var(--text-secondary);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
::selection {
  background: var(--accent-soft);
  color: var(--text-primary);
}


.u-tac { text-align: center; }
.u-tal { text-align: left; }
.u-flex { display: flex; }
.u-grid { display: grid; }
.u-wrap { flex-wrap: wrap; }
.u-mid { align-items: center; }
.u-between { justify-content: space-between; }
.u-col { flex-direction: column; }
.u-gapXs { gap: var(--space-2xs); }
.u-gapS { gap: var(--space-xs); }
.u-gapM { gap: var(--space-m); }
.u-gapL { gap: var(--space-l); }
.u-mb0 { margin-bottom: 0; }
.u-mbXs { margin-bottom: var(--space-2xs); }
.u-mbS { margin-bottom: var(--space-xs); }
.u-mbM { margin-bottom: var(--space-m); }
.u-mbL { margin-bottom: var(--space-l); }
.u-mtS { margin-top: var(--space-xs); }
.u-mtM { margin-top: var(--space-m); }
.u-mtL { margin-top: var(--space-l); }
.u-w100 { width: 100%; }
.u-maxProse { max-width: 42rem; }
.u-mxAuto { margin-left: auto; margin-right: auto; }
.u-pushRight { margin-left: auto; }
.u-fw4 { font-weight: 400; }
.u-fw7 { font-weight: 700; }
.u-fw9 { font-weight: 900; }
.u-fsS { font-size: clamp(0.8rem, 1.1vw, 0.9rem); }
.u-fsM { font-size: clamp(1rem, 1.4vw, 1.15rem); }
.u-fsL { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
.u-lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.65; }
.u-muted { color: var(--text-muted); }
.u-second { color: var(--text-secondary); }
.u-accent { color: var(--accent); }
.u-invert { color: var(--text-invert); }
.u-upper { text-transform: uppercase; }
.u-track { letter-spacing: 0.16em; }
.u-serif { font-family: var(--font-display); }
.u-rel { position: relative; }
.u-rounded { border-radius: var(--radius); }
.u-pill { border-radius: var(--radius-pill); }
.u-padS { padding: var(--space-xs); }
.u-padM { padding: var(--space-m); }
.u-padL { padding: var(--space-l); }
.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.u-block { display: block; }
.u-inline { display: inline-block; }
.u-noUnderline { text-decoration: none; }
.u-tight { line-height: 1.4; }
