:root {
  --ink: #10202f;
  --ink-soft: #3c4a58;
  --muted: #6a7683;
  --paper: #fbfaf6;
  --card: #ffffff;
  --line: #e4e0d6;
  --accent: #b4532a;
  --accent-ink: #8e3f1e;
  --tint: #f3efe6;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1080px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  display: flex; flex-direction: column; min-height: 100vh;
}
main { flex: 1; }
a { color: var(--accent-ink); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 10; }
.skip:focus { left: 12px; top: 12px; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; flex-wrap: wrap; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; }
.logo svg { width: 30px; height: 30px; flex: none; }
.logo:hover { color: var(--ink); }
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a { color: var(--ink-soft); text-decoration: none; padding: 8px 14px; border-radius: 999px; font-size: 0.95rem; font-weight: 500; }
.nav a:hover { background: var(--tint); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--ink); color: #fff; }

/* Type */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin: 0 0 20px; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 18px; }
h3 { font-size: 1.2rem; margin: 0 0 8px; }
p { margin: 0 0 18px; }
.eyebrow { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); font-weight: 700; margin: 0 0 16px; }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 44em; }

/* Hero */
.hero { padding: 84px 0 72px; background:
  radial-gradient(900px 380px at 88% -10%, rgba(180,83,42,0.10), transparent 60%),
  var(--paper); border-bottom: 1px solid var(--line); }
.hero h1 { max-width: 14em; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-block; padding: 13px 24px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 1rem; border: 1.5px solid var(--ink); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--tint); color: var(--ink); }

/* Sections */
.section { padding: 68px 0; }
.section.alt { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.card p:last-child { margin-bottom: 0; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; }
.steps li::before { content: counter(step); display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 26px; }
.chips li { border: 1px solid var(--line); background: var(--card); border-radius: 999px; padding: 8px 16px; font-size: 0.95rem; font-weight: 500; }

/* Page header (inner pages) */
.page-head { padding: 64px 0 36px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 12px; }
.page-head .meta { color: var(--muted); margin: 0; font-size: 0.95rem; }
.page-body { padding: 44px 0 80px; }

/* Brands table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--card); margin: 28px 0; }
table { border-collapse: collapse; width: 100%; min-width: 520px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--tint); }
tbody tr:last-child td { border-bottom: 0; }
td.brand { font-weight: 700; font-family: var(--serif); font-size: 1.08rem; white-space: nowrap; }
td .dba { display: block; font-family: var(--sans); font-weight: 400; font-size: 0.82rem; color: var(--muted); white-space: normal; }
.notice { border-left: 4px solid var(--accent); background: var(--tint); padding: 20px 24px; border-radius: 0 12px 12px 0; }
.notice p:last-child { margin: 0; }

/* Contact */
address { font-style: normal; }
.contact-card { font-size: 1.08rem; }
.contact-card strong { font-family: var(--serif); font-size: 1.3rem; display: block; margin-bottom: 8px; }
.contact-card dl { margin: 16px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; }
.contact-card dt { color: var(--muted); }
.contact-card dd { margin: 0; }

/* Legal */
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal ul, .legal ol { padding-left: 1.3em; margin: 0 0 18px; }
.legal li { margin-bottom: 10px; }
.legal ol.terms > li { margin-bottom: 16px; padding-left: 4px; }

/* Footer */
.site-footer { background: var(--ink); color: #c5ced7; padding: 40px 0; font-size: 0.93rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.site-footer .row { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; margin-bottom: 10px; }
.site-footer p { margin: 0; }
.site-footer .addr { color: #93a0ad; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 48px 0; }
  .site-header .wrap { padding-top: 12px; padding-bottom: 12px; }
  .nav a { padding: 7px 11px; }
  table { min-width: 0; }
  thead { position: absolute; left: -9999px; }
  tbody tr { display: block; padding: 16px 18px; border-bottom: 1px solid var(--line); }
  tbody tr:last-child { border-bottom: 0; }
  tbody td { display: block; padding: 2px 0; border: 0; }
  td.brand { white-space: normal; margin-bottom: 6px; }
  .contact-card dl { grid-template-columns: 1fr; gap: 0; }
  .contact-card dt { margin-top: 10px; }
}
@media print { .site-header .nav, .actions { display: none; } body { background: #fff; } }
