/* ── Skip to content ── */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-to-content:focus {
  left: 0;
}

/* ── Focus styles ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── CSS Variables ── */
:root {
  --bg: #f6f2eb;
  --bg-alt: #eee7dd;
  --ink: #132b4a;
  --ink-soft: #5d6b79;
  --panel: #1d436e;
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(19, 43, 74, 0.12);
  --accent: #b85a12;
  --white: #fffdf8;
  --container: 1180px;
}

/* ── Reset ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { text-wrap: pretty; }

/* ── Container ── */
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

/* ── Site Header ── */
.site-header,
.site-footer { padding: 40px 0; }
.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img,
.footer-brand img { width: 168px; }

/* ── Navigation ── */
.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}
.site-nav a,
.footer-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}
.site-nav a:hover,
.footer-nav a:hover {
  color: var(--accent);
}
.footer-nav {
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ── Active nav state ── */
.site-nav a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.32em;
}
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  text-decoration: none;
}
.footer-nav a[aria-current="page"] {
  color: var(--ink);
}

/* ── Buttons ── */
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 28px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}
.nav-cta,
.button-primary { background: var(--accent); color: var(--white); }
.button-secondary { border: 1px solid var(--line); }
.nav-cta:hover,
.button-primary:hover {
  background: #a85414;
}

/* ── Eyebrow ── */
.eyebrow {
  margin: 0 0 18px;
  color: #86633f;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

/* ── Headings ── */
h1,
h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 400;
}

/* ── Footer ── */
.site-footer { background: var(--bg-alt); }

/* ── Responsive: Tablet ── */
@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .site-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-cta {
    min-height: 42px;
    padding: 12px 20px;
  }
  .button {
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
  }
  h1, h2 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.02;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}
