/* ============================================================
   Cape Nova Capital — Global Stylesheet
   Palette: Deep Navy #0B1F3A | Gold #C9A84C | Off-White #F5F5F0
   Accent: Warm Grey #8A9BB0 | Light BG: #F0EDE6
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1F3A;
  --navy-mid:    #132d52;
  --navy-light:  #1a3a6b;
  --gold:        #C9A84C;
  --gold-light:  #e0c06e;
  --gold-dark:   #a07c2e;
  --offwhite:    #F5F5F0;
  --bg-light:    #F0EDE6;
  --warm-grey:   #8A9BB0;
  --text-dark:   #1a1a2e;
  --text-mid:    #3d4f6e;
  --text-light:  #6b7a90;
  --white:       #ffffff;
  --border:      rgba(201,168,76,0.25);
  --shadow-sm:   0 2px 12px rgba(11,31,58,0.08);
  --shadow-md:   0 6px 30px rgba(11,31,58,0.14);
  --shadow-lg:   0 16px 60px rgba(11,31,58,0.20);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--offwhite);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-mid); line-height: 1.75; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.75;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p { color: rgba(255,255,255,0.75); }

.section--grey {
  background: var(--bg-light);
}

.section--gold-accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 3px solid var(--gold);
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }
.text-white  { color: var(--white) !important; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.625rem 1.375rem; font-size: 0.85rem; }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.navbar__logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--gold);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  width: 60%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 1px solid rgba(201,168,76,0.2);
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
}

.mobile-menu a:hover { color: var(--gold); padding-left: 0.5rem; }

.mobile-menu .mobile-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Hero (shared) ────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  overflow: hidden;
  padding-top: 100px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 80%, rgba(26,58,107,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero__breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 0.5rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; }

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 1.25rem 0;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.12);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201,168,76,0.25);
}

.card__icon svg { width: 26px; height: 26px; stroke: var(--gold); }

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group .required-star { color: #e05252; margin-left: 3px; }

.form-control {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 1.5px solid #dde1ea;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-control::placeholder { color: #b0b8c5; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A9BB0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-check label {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 400;
  cursor: pointer;
}

.form-check a { color: var(--gold); font-weight: 600; }

.form-hint {
  font-size: 0.775rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

.form-error {
  font-size: 0.775rem;
  color: #d94f4f;
  margin-top: 0.4rem;
  display: none;
}

.form-control.error { border-color: #d94f4f; }
.form-control.error + .form-error { display: block; }

.conditional-block { display: none; }
.conditional-block.visible { display: block; }

/* ── Alerts / Flash Messages ──────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-success { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ── Stats Block ──────────────────────────────────────────── */
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  border-top: 3px solid var(--gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer ul li { margin-bottom: 0.6rem; }

.footer ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer ul a:hover { color: var(--gold); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer__bottom a { color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: var(--transition); }
.footer__bottom a:hover { color: var(--gold); }

.footer__legal { display: flex; gap: 1.5rem; }

/* ── Scroll animations ────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"]  { transform: translateX(-28px); }
[data-animate="fade-right"] { transform: translateX(28px); }
[data-animate="fade-up"]    { transform: translateY(28px); }
[data-animate="zoom-in"]    { transform: scale(0.92); }

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-stagger].animated > * { opacity: 1; transform: none; }
[data-stagger].animated > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].animated > *:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].animated > *:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].animated > *:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].animated > *:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].animated > *:nth-child(6) { transition-delay: 0.55s; }

/* ── Progress bar ─────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.15s linear;
  width: 0%;
}

/* ── Back to top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--navy); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.breadcrumb .current { font-size: 0.8rem; color: var(--gold); font-weight: 600; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .navbar__nav,
  .navbar__actions .btn { display: none; }
  .navbar__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  :root { font-size: 15px; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { padding: 0.95rem 1.75rem; font-size: 0.95rem; }
  .container { padding: 0 1rem; }
  .back-to-top { bottom: 1rem; right: 1rem; }
}

/* ── Button loading state (shared — used on all form pages) ── */
.btn--loading {
  opacity: 0.8;
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
}

.btn--loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(11,31,58,0.25);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* For light-coloured buttons the spinner should be gold */
.btn-primary.btn--loading::after { border-top-color: var(--navy); }
.btn-navy.btn--loading::after    { border-top-color: var(--gold); border-color: rgba(201,168,76,0.25); }

@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ── Accordion (shared — used on home & other pages) ─────── */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}

.accordion-trigger:hover { color: var(--gold); }

.accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--warm-grey);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
  stroke: var(--gold);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  padding-bottom: 1.375rem;
  font-size: 0.925rem;
  line-height: 1.75;
}

/* ── Sticky secondary nav — accounts for fixed navbar ────── */
/* Overridden at breakpoints where navbar height reduces */
@media (max-width: 768px) {
  .services-nav-strip,
  .hiw-tabs-strip,
  .apply-tabs-strip {
    top: 62px;
  }
}

/* ── Selection colour ──────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--navy);
}

/* ── Focus visible (accessibility) ────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Skip to content link (accessibility) ─────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }
