/* ── 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: #e47b2f;
  --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%; }

/* ── 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.18em;
  font-size: 12px;
  font-weight: 800;
}
.footer-nav {
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ── 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.18em;
  font-size: 12px;
  font-weight: 800;
}
.nav-cta,
.button-primary { background: var(--accent); color: var(--white); }
.button-secondary { border: 1px solid var(--line); }

/* ── Eyebrow ── */
.eyebrow {
  margin: 0 0 18px;
  color: #bf9d7a;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
}

/* ── 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) {
  .header-row,
  .footer-row,
  .site-nav,
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .button {
    width: 100%;
  }
}
