/* ============================================================
   ALPHA PROPERTY — Design System
   Navy heritage + warm gold luxury accent
   Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (from build brief) */
  --navy:        #153E74;   /* primary — kept brand equity */
  --navy-light:  #1B4F96;   /* hover / lighter variant */
  --navy-deep:   #0E2C54;   /* dark sections */
  --gold:        #C9A96E;   /* luxury accent */
  --gold-soft:   #E2CFA3;   /* light gold for fills */
  --paper:       #F5F0E8;   /* warm white background */
  --surface:     #FFFEFA;   /* card backgrounds */
  --ink:         #1A1A18;   /* near-black text */
  --stone:       #6B6860;   /* muted secondary text */
  --line:        #E3DCCF;   /* hairline borders */

  /* Type scale (fluid) */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.95rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.33rem, 1.2rem + 0.6vw, 1.7rem);
  --step-2:  clamp(1.77rem, 1.5rem + 1.2vw, 2.6rem);
  --step-3:  clamp(2.4rem, 1.9rem + 2.4vw, 4rem);
  --step-4:  clamp(3rem, 2.1rem + 4.5vw, 6rem);

  /* Spacing & layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --shadow-sm: 0 2px 8px rgba(21, 62, 116, 0.06);
  --shadow-md: 0 14px 40px rgba(21, 62, 116, 0.12);
  --shadow-lg: 0 30px 70px rgba(14, 44, 84, 0.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lede { font-size: var(--step-1); color: var(--stone); line-height: 1.55; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.center { text-align: center; }
.section-head { max-width: 60ch; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }

/* Dark section */
.section--dark { background: var(--navy-deep); color: var(--paper); position: relative; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lede { color: rgba(245,240,232,0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,169,110,0.4); background: var(--gold-soft); }
.btn--ghost { border: 1px solid currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(14,44,84,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

/* Trust bar */
.trust-bar {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-height: 40px; overflow: hidden;
  transition: max-height 0.38s var(--ease), opacity 0.3s;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 0;
}
.trust-bar__est {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-family: 'DM Sans', sans-serif;
}
.trust-bar__phone {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 500; font-family: 'DM Sans', sans-serif;
  text-decoration: none; transition: color 0.25s;
}
.trust-bar__phone:hover { color: #fff; }
.trust-bar__phone svg { width: 13px; height: 13px; flex-shrink: 0; }
.is-scrolled .trust-bar { max-height: 0; opacity: 0; pointer-events: none; }
@media (max-width: 560px) { .trust-bar__est { display: none; } }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 0; transition: padding 0.38s var(--ease); }
.is-scrolled .nav { padding: 0.65rem 0; }

/* Logo — real image always, both transparent and scrolled navy states */
.nav__logo {
  display: flex; align-items: center; gap: 0.7rem; text-decoration: none;
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: #fff;
}
.nav__logo-img {
  height: 38px; width: auto; display: block;
  filter: drop-shadow(0 1px 10px rgba(0,0,0,0.3));
}
.nav__logo-text { display: none; }
.nav__logo .mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--navy-deep);
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
}
.nav__links { display: flex; gap: 1.9rem; align-items: center; }
.nav__links a { font-size: var(--step--1); font-weight: 500; color: rgba(255,255,255,0.9); position: relative; transition: color 0.3s; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.is-scrolled .nav__links a { color: rgba(255,255,255,0.9); }
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: currentColor; color: #fff; transition: 0.3s; }
.is-scrolled .nav__toggle span { background: #fff; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: var(--gutter);
    background: var(--surface); padding: 1.5rem 2rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); gap: 1.2rem;
  }
  .nav__links.is-open a { color: var(--ink); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
/* 2.5D parallax stage — gives the tilt real perspective depth. */
.hero__media { position: absolute; inset: 0; z-index: -2; perspective: 1200px; overflow: hidden; }
/* Gradient scrim for text legibility, painted above the tilting image. */
.hero__media::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(14,44,84,0.35) 0%, rgba(14,44,84,0.15) 40%, rgba(14,44,84,0.85) 100%); }
/* The layer we tilt + drift. CSS vars are written from JS (cursor) and scroll.
   Oversized + inset negatives so the edges never show during the tilt. */
.hero__parallax {
  position: absolute; inset: -8%; width: 116%; height: 116%;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--tiltX, 0deg))
    rotateY(var(--tiltY, 0deg))
    translate3d(var(--shiftX, 0px), calc(var(--shiftY, 0px) + var(--scrollY, 0px)), 0)
    scale(1.06);
  will-change: transform;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* Slow Ken Burns drift layered under the parallax tilt. */
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) {
  .hero__parallax { transform: scale(1.04); transition: none; }
  .hero__img { animation: none; }
}
.hero__inner { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; padding-bottom: clamp(3rem, 8vh, 7rem); padding-top: 8rem; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero .eyebrow { color: var(--gold-soft); }
.hero__sub { max-width: 52ch; font-size: var(--step-1); color: rgba(255,255,255,0.88); margin-top: 1.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll span { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: scrolldrop 2s infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Search bar (soft conversion) ---------- */
.search-bar {
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0.5rem;
  background: var(--surface); padding: 0.7rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); margin-top: 2.4rem; max-width: 760px;
}
.search-bar label { display: flex; flex-direction: column; padding: 0.5rem 0.9rem; text-align: left; }
.search-bar label span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); font-weight: 600; }
.search-bar select, .search-bar input { border: none; background: none; font: inherit; color: var(--ink); font-size: var(--step--1); padding-top: 2px; outline: none; }
.search-bar .btn { justify-content: center; border-radius: var(--radius); }
@media (max-width: 640px) { .search-bar { grid-template-columns: 1fr 1fr; } .search-bar .btn { grid-column: 1 / -1; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats { background: var(--navy); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat__num { font-family: 'Cormorant Garamond', serif; font-size: var(--step-3); color: var(--gold); font-weight: 600; line-height: 1; display: inline-block; font-variant-numeric: tabular-nums lining-nums; font-feature-settings: "tnum" 1, "lnum" 1; }
.stat__label { font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.6rem; }
@media (max-width: 640px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; } }

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .prop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .prop-grid { grid-template-columns: 1fr; } }
.prop-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid var(--line);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prop-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.prop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.prop-card:hover .prop-card__media img { transform: scale(1.07); }
.prop-card__tag { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--navy-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 100px; }
.prop-card__price { position: absolute; bottom: 1rem; right: 1rem; background: rgba(14,44,84,0.9); color: #fff; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 100px; font-size: var(--step--1); backdrop-filter: blur(6px); }
.prop-card__body { padding: 1.3rem 1.4rem 1.5rem; }
.prop-card__loc { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.prop-card__title { font-size: var(--step-1); color: var(--navy); margin: 0.3rem 0 0.9rem; }
.prop-card__meta { display: flex; gap: 1.2rem; color: var(--stone); font-size: var(--step--1); border-top: 1px solid var(--line); padding-top: 0.9rem; }
.prop-card__meta span { display: flex; align-items: center; gap: 0.35rem; }

/* ============================================================
   FEATURE / SERVICES
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 800px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); padding: 2.2rem 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature__icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(201,169,110,0.16); color: var(--navy); display: grid; place-items: center; margin-bottom: 1.2rem; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.feature p { color: var(--stone); font-size: var(--step--1); }

/* ============================================================
   SPLIT / IMAGE + TEXT (parallax)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; aspect-ratio: 5/6; }
.split__media img { width: 100%; height: 110%; object-fit: cover; }
.split__list { margin-top: 1.6rem; display: grid; gap: 1rem; }
.split__list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.split__list svg { flex: none; width: 22px; height: 22px; color: var(--gold); margin-top: 3px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 850px) { .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.testi { background: var(--surface); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--line); position: relative; }
.testi__quote { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; line-height: 0; color: var(--gold-soft); position: absolute; top: 1.6rem; right: 1.4rem; }
.testi p { font-size: var(--step-0); color: var(--ink); margin-bottom: 1.4rem; }
.testi__who { display: flex; align-items: center; gap: 0.8rem; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
.testi__name { font-weight: 600; font-size: var(--step--1); }
.testi__from { font-size: 0.8rem; color: var(--stone); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.8rem; font-size: 0.9rem; }

/* ============================================================
   GOLDEN VISA BANNER
   ============================================================ */
.gv-banner { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); }
.gv-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(201,169,110,0.35), transparent 55%); }
.gv-banner__inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 760px) { .gv-banner__inner { grid-template-columns: 1fr; } }
.gv-banner h2 { color: #fff; }
.gv-banner .eyebrow { display: block; margin-bottom: 1rem; }
.gv-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,169,110,0.18); color: var(--gold-soft); padding: 0.4rem 1rem; border-radius: 100px; font-size: var(--step--1); font-weight: 600; margin-bottom: 1.4rem; }

/* ============================================================
   AREA TEASER
   ============================================================ */
.area-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 1rem; }
.area { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.area img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.area:hover img { transform: scale(1.08); }
.area::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(14,44,84,0.85)); }
.area__label { position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 1; color: #fff; }
.area__label strong { font-family: 'Cormorant Garamond', serif; font-size: var(--step-1); display: block; }
.area__label span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); }
.area--lg { grid-row: span 2; }
@media (max-width: 760px) { .area-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); } .area--lg { grid-row: span 1; grid-column: span 2; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(245,240,232,0.75); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3.5rem; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .nav__logo { color: #fff; margin-bottom: 1rem; }
.footer h4 { color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer a { display: block; padding: 0.3rem 0; transition: color 0.3s; }
.footer a:hover { color: var(--gold-soft); }
.footer__hours { display: block; padding: 0.3rem 0; color: rgba(245,240,232,0.55); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.6rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer__bottom a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.25s; }
.footer__bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ============================================================
   SCROLL ANIMATION BASE STATES (JS adds .is-in)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { position: relative; padding: 11rem 0 4rem; background: var(--navy-deep); color: #fff; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(201,169,110,0.25), transparent 60%); }
.page-hero__inner { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(245,240,232,0.8); max-width: 56ch; margin-top: 1rem; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 1.2rem; color: var(--ink); }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.8rem; }

/* ============================================================
   ACCESSIBILITY — keyboard focus + skip link
   ============================================================ */
/* Visible focus ring for keyboard users on every interactive element.
   :focus-visible keeps mouse clicks clean while showing keyboard focus. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
/* Restore a focus indicator on the search-bar fields (they reset outline). */
.search-bar select:focus-visible,
.search-bar input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
/* On dark/navy surfaces a soft halo reads better than gold-on-navy alone. */
.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--gold-soft, #E4D2AC);
}

/* Skip-to-content link — hidden until focused, then pinned top-left. */
.skip-link {
  position: absolute; top: 0; left: 0; z-index: 1000;
  background: var(--navy-deep); color: #fff;
  padding: 0.7rem 1.2rem; border-radius: 0 0 8px 0;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transform: translateY(-130%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }
