/* ==========================================================================
   AKnght Trade Co. — site styles
   Single stylesheet. Edit colors in the :root block below.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --navy-900: #0b1626;
  --navy-800: #10203a;
  --navy-700: #172c4a;
  --navy-600: #223d61;

  --wood: #8b5e3c;
  --wood-light: #b07c4f;

  --brass: #c6a15b;
  --brass-bright: #e2c68d;
  --brass-deep: #9c7a3c;

  --cream: #f7f4ed;
  --paper: #fffdf8;

  --ink: #1b2129;
  --ink-soft: #414a55;
  --muted: #5f6a78;

  --line: #e3ddd0;
  --line-strong: #cdc4b2;

  /* Type */
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing + shape */
  --container: 1140px;
  --radius: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(11, 22, 38, 0.06),
               0 2px 8px rgba(11, 22, 38, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 22, 38, 0.08),
               0 12px 32px rgba(11, 22, 38, 0.07);

  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.35rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }

p { margin: 0 0 1.1em; max-width: 68ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--wood); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 600; color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--wood-light);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section--paper { background: var(--paper); border-block: 1px solid var(--line); }

.section--navy {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(198, 161, 91, 0.15), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #dbe3ee;
}
.section--navy h2,
.section--navy h3 { color: var(--paper); }
.section--navy a { color: var(--brass-bright); }
.section--navy a:hover { color: #fff; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--brass);
  color: var(--navy-900);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* Section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brass);
  flex: none;
}
.section--navy .eyebrow { color: var(--brass-bright); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.075rem; }
.section--navy .section-head p { color: #b9c6d8; }

.lead { font-size: clamp(1.075rem, 1.6vw, 1.2rem); color: var(--ink-soft); }

/* Stamped divider with a small centered diamond */
.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 2.5rem;
}
.rule::before,
.rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.rule span {
  width: 7px;
  height: 7px;
  background: var(--brass);
  transform: rotate(45deg);
  flex: none;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background-color 0.15s ease,
              border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brass);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--brass-bright);
  color: var(--navy-900);
}

.btn--outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy-800);
}
.btn--outline:hover {
  border-color: var(--navy-700);
  background: rgba(23, 44, 74, 0.04);
  color: var(--navy-900);
}

.section--navy .btn--outline {
  border-color: rgba(226, 198, 141, 0.45);
  color: var(--paper);
}
.section--navy .btn--outline:hover {
  border-color: var(--brass-bright);
  background: rgba(226, 198, 141, 0.1);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   5. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 22, 38, 0.97);
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--paper);
  flex: none;
}
.brand:hover { color: var(--brass-bright); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(226, 198, 141, 0.35);
  border-radius: var(--radius-sm);
  color: var(--paper);
  padding: 8px 12px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}
.nav-toggle:hover { border-color: var(--brass); }
.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
}
.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  color: #c3cfdf;
  font-size: 0.945rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.site-nav a:hover { color: var(--paper); background: rgba(255, 255, 255, 0.07); }
.site-nav a[aria-current="page"] {
  color: var(--brass-bright);
  background: rgba(198, 161, 91, 0.14);
}
.site-nav .btn { margin-left: 8px; padding: 10px 18px; font-size: 0.9rem; }
.site-nav .btn:hover { background: var(--brass-bright); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(198, 161, 91, 0.25);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav[data-open="true"] { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
  }
  .site-nav a { padding: 13px 12px; font-size: 1rem; }
  .site-nav li + li { border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .site-nav .btn { margin: 14px 0 0; justify-content: center; padding: 13px 18px; }
  .site-nav li:has(.btn) { border-top: 0; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 78% 12%, rgba(198, 161, 91, 0.2), transparent 62%),
    radial-gradient(700px 420px at 8% 92%, rgba(139, 94, 60, 0.28), transparent 65%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 68%);
  color: #dbe3ee;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

/* Faint compass watermark */
.hero__compass {
  position: absolute;
  top: 50%;
  right: -80px;
  translate: 0 -50%;
  width: 620px;
  opacity: 0.06;
  color: var(--brass-bright);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__compass { display: none; }
}

.hero h1 { color: var(--paper); }
.hero__sub {
  font-size: clamp(1.075rem, 1.7vw, 1.22rem);
  color: #b9c6d8;
  max-width: 52ch;
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 1.9rem 0 0;
  display: grid;
  gap: 11px;
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.97rem;
  color: #c3cfdf;
  margin: 0;
}
.hero__points svg { flex: none; margin-top: 3px; color: var(--brass); }

/* --------------------------------------------------------------------------
   7. Cards + grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 0.45em; }
.card p { color: var(--ink-soft); font-size: 0.985rem; }
.card ul { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 0; }

.card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  color: var(--brass-bright);
  margin-bottom: 1.1rem;
}

.section--navy .card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(226, 198, 141, 0.2);
  box-shadow: none;
}
.section--navy .card p,
.section--navy .card ul { color: #b9c6d8; }
.section--navy .card__icon {
  background: rgba(198, 161, 91, 0.16);
  color: var(--brass-bright);
}

/* Numbered step list */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  counter-reset: step;
}
.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  margin: 0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  color: var(--brass-deep);
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
}
.steps h3 { margin-bottom: 0.25em; }
.steps p { color: var(--ink-soft); font-size: 0.985rem; margin: 0; }

.section--navy .steps li::before {
  background: rgba(198, 161, 91, 0.12);
  color: var(--brass-bright);
}
.section--navy .steps p { color: #b9c6d8; }

/* Two-column feature block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--narrow { grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 900px) {
  .split, .split--narrow { grid-template-columns: 1fr; }
}

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 12px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  font-size: 0.99rem;
  color: var(--ink-soft);
}
.checklist svg { flex: none; margin-top: 4px; color: var(--brass-deep); }
.section--navy .checklist li { color: #c3cfdf; }
.section--navy .checklist svg { color: var(--brass); }

/* --------------------------------------------------------------------------
   8. Image placeholders (swap for real photos)
   -------------------------------------------------------------------------- */
.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  padding: 28px;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(139, 94, 60, 0.06) 0 14px,
      transparent 14px 28px
    ),
    linear-gradient(160deg, #1a3050, var(--navy-900));
  border: 1px dashed rgba(226, 198, 141, 0.4);
  color: #a9b8cc;
  overflow: hidden;
}
.placeholder svg { color: var(--brass); opacity: 0.85; margin-bottom: 14px; }
.placeholder__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 6px;
}
.placeholder__note { font-size: 0.87rem; line-height: 1.5; max-width: 34ch; margin: 0; }

.placeholder--wide { aspect-ratio: 16 / 10; }

/* Framed photo with a caption bar. Works on light and dark sections. */
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(226, 198, 141, 0.3);
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
}
.shot img { width: 100%; display: block; }
.shot figcaption {
  padding: 11px 16px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #a9b8cc;
  background: var(--navy-900);
  border-top: 1px solid rgba(226, 198, 141, 0.18);
}
.shot figcaption strong { color: var(--brass-bright); font-weight: 600; }

/* Inline "needs your input" flag for the owner */
.todo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fdf3d8;
  border: 1px solid #e8cf92;
  color: #6b5314;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   9. Forms
   -------------------------------------------------------------------------- */
.form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: var(--shadow-sm);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
}
.field .req { color: var(--wood); }
.field .hint { font-size: 0.82rem; color: var(--muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.99rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.22);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa3ae; }

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.form-footer .fineprint { font-size: 0.86rem; color: var(--muted); margin: 0; max-width: 42ch; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  border: 1px solid;
  display: none;
}
.form-status[data-state="working"] {
  display: block; background: #eef3fa; border-color: #c7d7ec; color: #24405f;
}
.form-status[data-state="ok"] {
  display: block; background: #edf7ef; border-color: #b9dcc0; color: #245f33;
}
.form-status[data-state="error"] {
  display: block; background: #fdf0ee; border-color: #eec4bd; color: #7a2f22;
}
.form-status[data-state="setup"] {
  display: block; background: #fdf3d8; border-color: #e8cf92; color: #6b5314;
}
.form-status a { color: inherit; font-weight: 600; }

/* Honeypot: hidden from people, visible to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   10. Contact tiles + FAQ
   -------------------------------------------------------------------------- */
.contact-tile {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-tile svg { flex: none; color: var(--brass-deep); margin-top: 3px; }
.contact-tile h3 { font-size: 1.02rem; margin-bottom: 0.2em; }
.contact-tile p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.contact-tile a { font-weight: 600; color: var(--navy-700); word-break: break-word; }

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--brass-deep);
  border-bottom: 2px solid var(--brass-deep);
  translate: 0 -70%;
  rotate: 45deg;
  transition: rotate 0.2s ease;
}
.faq details[open] summary::after { rotate: -135deg; translate: 0 -20%; }
.faq details > div { padding: 0 8px 20px 0; color: var(--ink-soft); font-size: 0.99rem; }

/* --------------------------------------------------------------------------
   11. Callout band
   -------------------------------------------------------------------------- */
.band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900) 70%);
  border-radius: var(--radius);
  padding: clamp(28px, 4.5vw, 46px);
  color: #c3cfdf;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid rgba(226, 198, 141, 0.22);
}
.band h2 { color: var(--paper); margin-bottom: 0.35em; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.band p { margin: 0; max-width: 46ch; font-size: 1rem; }
.band__text { flex: 1 1 380px; }
.band .btn-row { margin: 0; }

/* Notice box */
.notice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.notice h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.notice p { color: var(--ink-soft); font-size: 0.97rem; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: #97a6ba;
  padding-block: clamp(2.75rem, 5vw, 4rem) 2rem;
  font-size: 0.93rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
@media (max-width: 780px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

.site-footer h4 {
  color: var(--brass-bright);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer li { margin: 0; }
.site-footer a { color: #97a6ba; text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.site-footer p { font-size: 0.92rem; color: #8695a9; }

.site-footer__brand .brand { margin-bottom: 1rem; }

.site-footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: baseline;
}
.site-footer__bottom p { margin: 0; font-size: 0.85rem; color: #7e8da1; }
.disclaimer { max-width: 74ch; line-height: 1.55; }

/* --------------------------------------------------------------------------
   13. Page header (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
  background:
    radial-gradient(700px 320px at 82% 0%, rgba(198, 161, 91, 0.16), transparent 62%),
    linear-gradient(165deg, var(--navy-800), var(--navy-900));
  color: #b9c6d8;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.page-head h1 { color: var(--paper); margin-bottom: 0.35em; }
.page-head p { font-size: clamp(1.03rem, 1.6vw, 1.16rem); max-width: 60ch; margin: 0; }

.breadcrumb {
  font-size: 0.85rem;
  color: #8fa0b6;
  margin-bottom: 0.9rem;
}
.breadcrumb a { color: #8fa0b6; text-decoration: none; }
.breadcrumb a:hover { color: var(--brass-bright); text-decoration: underline; }

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; margin-inline: auto; }
.center p { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .btn-row, .hero__compass { display: none; }
  body { background: #fff; color: #000; }
}
