/* ============================================================
   AMS SCHOOL — Premium Design System
   ============================================================
   Sections:
   01. CSS Variables (brand palette)
   02. Base / Reset / Typography
   03. Layout utilities
   04. Buttons
   05. Header, announcement bar, navigation
   06. Mobile menu
   07. Hero slider (homepage)
   08. Page hero (inner pages) + breadcrumbs
   09. Section headers / eyebrow
   10. Cards & grids
   11. Trust band / Google reviews
   12. Steps, lists, note boxes
   13. Accordion (FAQ)
   14. Forms
   15. Tables
   16. Gallery (filter + grid)
   17. Testimonials
   18. Map preview
   19. CTA bands
   20. Footer
   21. Mobile bottom CTA bar
   22. Back to top
   23. Animations & reveal
   24. Accessibility (focus, skip-link, reduced motion)
   25. Responsive media queries
   ============================================================ */

/* ------------------------------------------------------------
   01. CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  /* Brand palette — change here to re-theme the whole site */
  --navy-950: #061626;
  --navy-900: #0c2038;
  --navy-800: #112c4d;
  --navy-700: #19406e;
  --navy-600: #1f5291;

  --gold-500: #c9a227;
  --gold-600: #a8821b;
  --gold-ink: #6f530d;
  --gold-100: #f6eccd;

  --ink: #16222e;
  --body: #33424f;
  --muted: #4b5b6a;

  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-soft-2: #ecf2f9;
  --line: #dbe3ec;
  --line-strong: #c3cdd9;

  --white: #ffffff;

  /* Typography */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Radii / shadows */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(12, 32, 56, 0.06), 0 4px 12px rgba(12, 32, 56, 0.06);
  --shadow-md: 0 6px 18px rgba(12, 32, 56, 0.1);
  --shadow-lg: 0 18px 44px rgba(12, 32, 56, 0.16);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s;
  --t-med: 0.35s;

  /* Spacing rhythm */
  --container-w: 1200px;
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* ------------------------------------------------------------
   02. BASE / RESET / TYPOGRAPHY
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

img { max-width: 100%; display: block; }

ul, ol { padding-left: 1.3rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

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

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

::selection { background: var(--gold-500); color: var(--navy-950); }

/* ------------------------------------------------------------
   03. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--soft-2 { background: var(--bg-soft-2); }
.section--navy { background: var(--navy-900); color: #e8eef6; }
.section--navy h2, .section--navy h3, .section--navy .since { color: var(--white); }
.section--navy a:not(.btn) { color: #d5e3f5; }

.grid-2 { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: clamp(1.1rem, 2.5vw, 1.75rem); grid-template-columns: 1fr; }

@media (min-width: 720px)   { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px)   { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 899px) {
  .hero-slider, .js-enabled .hero-slider { height: auto; min-height: max(560px, 62svh); }
  .hero-content { padding-block: clamp(3rem, 9svh, 4.5rem); }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); margin-bottom: 1rem; }
  .hero p.hero-lead { font-size: clamp(1rem, 3.6vw, 1.12rem); margin-bottom: 1.5rem; }
  .hero-kicker { font-size: 0.74rem; }
  .btn-row { gap: 0.7rem; }
}
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1150px)  { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.split {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; } }
.split--reverse > .split-media { order: 2; }
@media (min-width: 940px) { .split--reverse > .split-media { order: 1; } }
@media (min-width: 940px) { .split--reverse > .split-body { order: 2; } }

.split-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-media .frame-accent {
  position: relative;
}
.split-media .frame-accent::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 42%;
  height: 42%;
  border-radius: 16px;
  border: 3px solid var(--gold-500);
  z-index: -1;
}

.eyebrow-row { display: inline-flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow-line { height: 2px; width: 34px; background: var(--gold-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--gold-500); }
.section--navy .eyebrow-line { background: var(--gold-500); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--body); }
.section-head { max-width: 780px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow-row { justify-content: center; }

.center { text-align: center; }

/* ------------------------------------------------------------
   04. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.88rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}
.btn--primary:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-950);
  box-shadow: 0 8px 20px rgba(168, 130, 27, 0.35);
}

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.btn--navy:hover { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-800);
}
.btn--ghost:hover { background: var(--bg-soft-2); color: var(--navy-900); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.14); color: var(--white); border-color: var(--white); }

.btn--sm { padding: 0.62rem 1.1rem; font-size: 0.9rem; min-height: 42px; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; min-height: 54px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.btn-row--center { justify-content: center; }

/* ------------------------------------------------------------
   05. HEADER, ANNOUNCEMENT BAR, NAVIGATION
   ------------------------------------------------------------ */
.announce {
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announce-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  padding-block: 0.55rem;
}
.announce a {
  color: var(--gold-500);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.announce a:hover { color: #e0bd4f; text-decoration: underline; text-underline-offset: 3px; }
.announce .announce-pin { display: inline-flex; align-items: center; gap: 0.35rem; }
.announce svg { width: 15px; height: 15px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}
.brand-mark svg { width: 30px; height: 30px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.brand-name em { font-style: normal; color: var(--gold-600); }
.brand-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
}
.desktop-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.6rem 0.72rem;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
}
.desktop-nav a:hover { color: var(--navy-700); background: var(--bg-soft); }
.desktop-nav a[aria-current="page"] { color: var(--gold-ink); }
.desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.22rem;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-500);
}

/* Dropdown (Campus Life) — CSS-only, hover + focus accessible */
.nav-wrap > li { position: relative; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.42rem;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--shadow-lg);
  padding: 0.55rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
  z-index: 80;
}
.nav-wrap > li:hover .dropdown,
.nav-wrap > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { margin: 0; }
.dropdown a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.62rem 0.9rem;
  border-radius: 9px;
  white-space: normal;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--navy-700); }
.dropdown a[aria-current="page"] { color: var(--gold-ink); background: var(--bg-soft); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.header-cta .btn--sm { padding-inline: 1.15rem; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle .bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease), top var(--t-med) var(--ease);
}
.nav-toggle .bar:nth-child(1) { top: 15px; }
.nav-toggle .bar:nth-child(2) { top: 22.5px; }
.nav-toggle .bar:nth-child(3) { top: 30px; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { top: 22.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { top: 22.5px; transform: rotate(-45deg); }

/* ------------------------------------------------------------
   06. MOBILE MENU
   ------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--navy-950);
  color: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s;
  overflow: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.mobile-menu-top .brand-name { color: var(--white); }
.mobile-menu-top .brand-tag { color: var(--gold-500); }
.mobile-menu-close {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem clamp(1.1rem, 4vw, 2rem) 3.5rem;
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.mobile-menu ul li { margin: 0; }
.mobile-menu ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu ul a::after { content: "→"; color: var(--gold-500); font-weight: 700; }
.mobile-menu ul a:hover { color: var(--gold-500); }
.mobile-menu ul a[aria-current="page"] { color: var(--gold-500); }
.mobile-menu-meta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}
.mobile-menu .menu-contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #dfe9f5;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem;
}
.mobile-menu .menu-contact-row svg { width: 22px; height: 22px; color: var(--gold-500); flex-shrink: 0; }
.mobile-menu .menu-contact-row:hover { color: var(--gold-500); }
.mobile-menu .menu-rating {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-weight: 600;
}
.mobile-menu .menu-rating small { display: block; color: #c3d1e2; font-weight: 400; margin-top: 0.2rem; }

.mobile-menu-ctas {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem clamp(1.1rem, 4vw, 2rem) calc(1.1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #03101e;
}
.mobile-menu-ctas .btn { width: 100%; }

/* ------------------------------------------------------------
   07. HERO SLIDER (homepage)
   ------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
}
.js-enabled .hero-slider { height: clamp(720px, 88vh, 940px); }
.hero-slider {
  position: relative;
  height: clamp(700px, 88vh, 940px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-slide.is-active img { animation: hero-zoom 7s ease-out forwards; }
}
@keyframes hero-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 22, 38, 0.82) 0%,
    rgba(10, 30, 55, 0.62) 40%,
    rgba(12, 32, 56, 0.28) 74%,
    rgba(12, 32, 56, 0.12) 100%
  );
}
@media (min-width: 900px) {
  .hero-slide::after {
    background: linear-gradient(
      to right,
      rgba(6, 22, 38, 0.85) 0%,
      rgba(10, 30, 55, 0.68) 44%,
      rgba(12, 32, 56, 0.3) 78%,
      rgba(12, 32, 56, 0.14) 100%
    );
  }
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 11vh, 7rem);
}
.hero-content-inner { max-width: 640px; color: var(--white); }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(12, 32, 56, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.55);
  color: #f4d675;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero-kicker svg { width: 16px; height: 16px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5.4vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 18px rgba(6, 22, 38, 0.35);
}
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero p.hero-lead {
  color: #eef4fb;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 1.7rem;
}
.hero-slide .hero-content { display: none; }
.hero-slide.is-active .hero-content { display: flex; }

.hero-controls {
  position: absolute;
  inset-inline: 0;
  bottom: clamp(2.2rem, 5vh, 3.2rem);
  z-index: 3;
}
.hero-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero-arrows { display: flex; gap: 0.7rem; }
.hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(6, 22, 38, 0.6);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.hero-dots { display: flex; align-items: center; gap: 0.6rem; }
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), width var(--t-fast) var(--ease);
}
.hero-dot.is-active { background: var(--gold-500); border-color: var(--gold-500); width: 30px; border-radius: 9px; }
.hero-dot:hover { transform: scale(1.2); }
.hero-announce-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--gold-500);
  width: 0;
  z-index: 3;
}
.hero-scroll-hint {
  position: absolute;
  right: clamp(1.2rem, 4vw, 2.5rem);
  bottom: clamp(2.4rem, 5vh, 3.4rem);
  z-index: 3;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  writing-mode: vertical-rl;
  opacity: 1;
}
.hero-scroll-hint::after {
  content: "";
  width: 2px;
  height: 44px;
  background: var(--gold-500);
  align-self: center;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   08. PAGE HERO (inner pages) + BREADCRUMBS
   ------------------------------------------------------------ */
.page-hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 162, 39, 0.16), transparent 60%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--white);
  padding-block: clamp(3.4rem, 7vw, 5.2rem);
  border-bottom: 4px solid var(--gold-500);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 0.9rem;
}
.page-hero .hero-lead {
  color: #e7eef7;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  max-width: 720px;
}
.page-hero .eyebrow-row { margin-bottom: 1.1rem; }
.page-hero .eyebrow { color: var(--gold-500); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.25rem;
  color: #b9c9dc;
}
.breadcrumb a { color: #dce7f3; text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb span[aria-current="page"] { color: var(--gold-500); }
.breadcrumb svg { width: 14px; height: 14px; opacity: 1; color: #8aa0ba; }

/* ------------------------------------------------------------
   09. SECTION HEADERS / EYEBROW  (see 03 for base)
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   10. CARDS & GRIDS
   ------------------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-500);
  margin-bottom: 1.15rem;
  flex-shrink: 0;
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge--gold { background: var(--gold-100); color: var(--gold-ink); }

.card h3 { margin-bottom: 0.55rem; }
.card p { color: var(--body); margin-bottom: 0; }
.card .card-link {
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--navy-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card .card-link:hover { color: var(--gold-ink); }
.card .card-link::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.card .card-link:hover::after { transform: translateX(3px); }

.facility-card { background: var(--bg-soft); border-color: var(--line); }
.facility-card:hover { background: var(--white); }

/* Image cards */
.img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.img-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.img-card .img { overflow: hidden; }
.img-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.6s var(--ease); }
.img-card:hover img { transform: scale(1.05); }
.img-card .img-card-body { padding: 1.2rem 1.35rem 1.4rem; }
.img-card h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.img-card p { font-size: 0.96rem; }

/* ------------------------------------------------------------
   11. TRUST BAND / GOOGLE REVIEWS
   ------------------------------------------------------------ */
.trust-band {
  background: var(--navy-900);
  color: var(--white);
  border-top: 4px solid var(--gold-500);
}
.trust-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) { .trust-inner { grid-template-columns: auto 1fr auto; } }

.google-rating {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
}
.rating-score { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--white); }
.rating-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.stars { display: flex; gap: 0.14rem; line-height: 1; }
.stars svg { width: 20px; height: 20px; }
.stars .star-empty { color: #b7c3d2; }
.stars .star-full { color: var(--gold-500); }
.rating-meta strong { color: var(--white); font-weight: 700; }
.rating-meta span { color: #c9d6e6; font-size: 0.9rem; }

.trust-message { color: #e6edf6; font-size: clamp(1.1rem, 2.2vw, 1.35rem); font-weight: 600; line-height: 1.45; font-family: var(--font-head); }
.trust-message small { display: block; font-weight: 400; font-size: 0.95rem; color: #b9c9dc; margin-top: 0.35rem; font-family: var(--font-body); }

.google-attribution {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d3dfee;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  font-size: 0.92rem;
}
.google-attribution:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.google-attribution svg { width: 18px; height: 18px; }

/* Statistics counters — verified data only */
.stats-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  color: var(--navy-900);
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}
.stat-label { display: block; margin-top: 0.4rem; font-size: 0.92rem; color: var(--muted); font-weight: 600; }

/* ------------------------------------------------------------
   12. STEPS, LISTS, NOTE BOXES
   ------------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.5rem 1.5rem;
  counter-increment: step;
  box-shadow: var(--shadow-sm);
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -1.15rem;
  left: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold-500);
}
.step h3 { margin-bottom: 0.5rem; padding-top: 0.25rem; font-size: 1.08rem; }
.step p { font-size: 0.95rem; }
.step { margin-top: 1.15rem; }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.7rem;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
}
.section--navy .list-check li::before { background: rgba(201, 162, 39, 0.22); color: var(--gold-500); }

.note-box {
  border: 1.5px dashed var(--gold-600);
  background: var(--gold-100);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 500;
}
.note-box strong { color: var(--gold-ink); }

.badge-chip {
  display: inline-block;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.4);
}

/* ------------------------------------------------------------
   13. ACCORDION (FAQ)
   ------------------------------------------------------------ */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  border-radius: 8px;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { color: var(--gold-ink); }
.acc-item summary .acc-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-soft-2);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform var(--t-med) var(--ease), background-color var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.acc-item[open] summary .acc-icon { transform: rotate(45deg); background: var(--gold-500); color: var(--navy-950); }
.acc-content {
  padding: 0.1rem 0.4rem 1.4rem;
  color: var(--body);
  max-width: 70ch;
}
.acc-content p { margin-bottom: 0.75rem; }
.accordion--navy { border-top-color: rgba(255, 255, 255, 0.25); }
.accordion--navy .acc-item { border-bottom-color: rgba(255, 255, 255, 0.25); }
.accordion--navy .acc-item summary { color: var(--white); }
.accordion--navy .acc-item summary:hover { color: var(--gold-500); }
.accordion--navy .acc-item summary .acc-icon { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.accordion--navy .acc-content { color: #e3ebf5; }
.accordion--navy .acc-content a { color: var(--gold-500); }

/* ------------------------------------------------------------
   14. FORMS
   ------------------------------------------------------------ */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-label { font-weight: 700; font-size: 0.93rem; color: var(--ink); }
.form-label .req { color: #b3392f; }
.form-control {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.78rem 0.95rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  min-height: 50px;
}
.form-control::placeholder { color: #8596a6; opacity: 1; }
.form-control:focus-visible { border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(31, 82, 145, 0.18); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23112244' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.6rem; }

.form-hint { font-size: 0.86rem; color: var(--muted); }
.form-error { display: none; font-size: 0.87rem; font-weight: 600; color: #b3392f; margin-top: 0.15rem; }
.form-field.is-invalid .form-error { display: block; }
.form-field.is-invalid .form-control { border-color: #b3392f; }
.form-field.is-invalid .form-control:focus-visible { box-shadow: 0 0 0 3px rgba(179, 57, 47, 0.18); }

.checkbox { display: flex; gap: 0.7rem; align-items: flex-start; }
.checkbox input[type="checkbox"] { width: 20px; height: 20px; margin-top: 0.2rem; accent-color: var(--navy-900); flex-shrink: 0; cursor: pointer; }
.checkbox label { font-size: 0.92rem; color: var(--body); cursor: pointer; }
.checkbox label a { font-weight: 600; }

.form-success {
  display: none;
  border: 1px solid #3f7d4e;
  background: #e9f5ec;
  color: #1f4b2c;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  font-weight: 600;
}
.form-success.is-visible { display: block; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.2rem; color: var(--gold-ink); }

/* ------------------------------------------------------------
   15. TABLES
   ------------------------------------------------------------ */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 540px; }
th, td {
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.96rem;
}
th { background: var(--navy-900); color: var(--white); font-family: var(--font-head); font-weight: 700; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) td { background: var(--bg-soft); }

/* ------------------------------------------------------------
   16. GALLERY (filter + grid)
   ------------------------------------------------------------ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.2rem; }
.filter-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  min-height: 44px;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--navy-700); color: var(--navy-700); }
.filter-btn.is-active { background: var(--navy-900); border-color: var(--navy-900); color: var(--gold-500); }

.gallery-grid {
  columns: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px)  { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
  position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  .gallery-item { transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), opacity 0.3s var(--ease); }
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: auto; display: block; }
.gallery-item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
}
.gallery-item .gallery-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--navy-900);
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.gallery-empty { text-align: center; padding: 2rem; color: var(--muted); font-weight: 600; display: none; }

/* ------------------------------------------------------------
   17. TESTIMONIALS
   ------------------------------------------------------------ */
.tcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tcard .stars { margin-bottom: 0.1rem; }
.tcard blockquote { font-size: 1.02rem; line-height: 1.65; color: var(--body); }
.tcard blockquote::before { content: "“"; font-family: var(--font-head); font-size: 2.6rem; color: var(--gold-500); line-height: 0.6; display: block; margin-bottom: 0.4rem; }
.tcard-footer { border-top: 1px solid var(--line); padding-top: 0.9rem; display: flex; align-items: center; gap: 0.8rem; }
.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--font-head);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.tcard-name { font-weight: 700; color: var(--ink); }
.tcard-meta { font-size: 0.85rem; color: var(--muted); }
.tcard-source { margin-left: auto; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: #67809c; text-decoration: none; }
.tcard-source svg { width: 15px; height: 15px; }

/* ------------------------------------------------------------
   18. MAP PREVIEW
   ------------------------------------------------------------ */
.map-lazy {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft-2);
  min-height: 380px;
  display: grid;
  place-items: center;
}
.map-lazy .map-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-lazy .map-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.map-lazy .map-overlay .map-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.map-lazy .map-overlay .map-icon svg { width: 30px; height: 30px; }
.map-load-frame { width: 100%; }
.map-load-frame iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.map-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.7rem; display: flex; gap: 0.4rem; align-items: flex-start; }

/* Contact detail rows */
.contact-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-md); }
.contact-row + .contact-row { margin-top: 0.8rem; }
.contact-row .icon-badge { width: 48px; height: 48px; border-radius: 13px; margin-bottom: 0; }
.contact-row .icon-badge svg { width: 24px; height: 24px; }
.contact-row h3, .contact-row h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.contact-row p { margin: 0; font-size: 0.96rem; }
.contact-row a { font-weight: 700; }

/* ------------------------------------------------------------
   19. CTA BANDS
   ------------------------------------------------------------ */
.cta-band {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(201, 162, 39, 0.2), transparent 60%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p { color: #dce7f3; max-width: 640px; margin-inline: auto; margin-bottom: 1.8rem; font-size: 1.05rem; }
.cta-band .eyebrow { color: var(--gold-500); }

.contact-bar {
  background: var(--gold-500);
  color: var(--navy-950);
  padding-block: 1.1rem;
}
.contact-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.8rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.contact-bar a { color: var(--navy-950); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.contact-bar a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-bar svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------ */
.site-footer { background: var(--navy-950); color: #ccd8e6; }
.footer-top {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
  padding-block: clamp(3rem, 7vw, 4.5rem) 2.6rem;
}
@media (min-width: 700px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: var(--gold-500); }
.footer-brand p { margin-top: 1.1rem; font-size: 0.95rem; line-height: 1.7; color: #b6c5d6; max-width: 34ch; }
.footer-brand .google-attribution { margin-top: 1.2rem; border-color: rgba(255, 255, 255, 0.3); color: #dfe9f5; font-size: 0.84rem; padding: 0.6rem 1rem; }

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: #b9c9dc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.footer-links a:hover { color: var(--gold-500); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; line-height: 1.55; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact a { color: #d3dfee; font-weight: 600; text-decoration: none; }
.footer-contact a:hover { color: var(--gold-500); }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.6rem;
  font-size: 0.88rem;
  color: #9fb1c6;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-legal-links a { color: #c3d1e2; text-decoration: none; font-weight: 600; }
.footer-legal-links a:hover { color: var(--gold-500); }

/* ------------------------------------------------------------
   21. MOBILE BOTTOM CTA BAR
   ------------------------------------------------------------ */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--navy-950);
  border-top: 3px solid var(--gold-500);
  box-shadow: 0 -6px 20px rgba(6, 22, 38, 0.35);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0.3rem 0.5rem;
  color: #e6edf6;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 54px;
  min-width: 0;
  justify-content: center;
}
.mobile-bar a:last-child { border-right: 0; }
.mobile-bar a svg { width: 22px; height: 22px; color: var(--gold-500); }
.mobile-bar a.mobile-bar--cta { background: var(--gold-500); color: var(--navy-950); }
.mobile-bar a.mobile-bar--cta svg { color: var(--navy-950); }
.mobile-bar a:active { background: rgba(255, 255, 255, 0.12); }
.mobile-bar a.mobile-bar--cta:active { background: var(--gold-600); }

@media (min-width: 1024px) { .mobile-bar { display: none; } }
body.mobile-bar-present { padding-bottom: 60px; }
@media (min-width: 1024px) { body.mobile-bar-present { padding-bottom: 0; } }
@media (prefers-reduced-motion: no-preference) {
  .mobile-bar { animation: barRise 0.5s var(--ease) both; }
  @keyframes barRise { from { transform: translateY(100%); } to { transform: translateY(0); } }
}

/* ------------------------------------------------------------
   22. BACK TO TOP
   ------------------------------------------------------------ */
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 5rem;
  z-index: 54;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  background: var(--navy-900);
  color: var(--gold-500);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--navy-950); }
.back-to-top svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .back-to-top { bottom: 1.4rem; right: 1.4rem; } }

/* ------------------------------------------------------------
   23. ANIMATIONS & REVEAL
   ------------------------------------------------------------ */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: 0.08s; }
.js .reveal-d2 { transition-delay: 0.16s; }
.js .reveal-d3 { transition-delay: 0.24s; }

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

/* ------------------------------------------------------------
   24. ACCESSIBILITY
   ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--navy-950);
  color: var(--white);
  font-weight: 700;
  padding: 0.8rem 1.3rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   25. PROSE (legal / content pages)
   ------------------------------------------------------------ */
.prose { max-width: 840px; }
.prose h2 { margin: 2.2rem 0 0.9rem; }
.prose h3 { margin: 1.8rem 0 0.7rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.05rem; color: var(--body); }
.prose a { font-weight: 600; }

/* ------------------------------------------------------------
   26. RESPONSIVE / LAYOUT TWEAKS
   ------------------------------------------------------------ */
@media (min-width: 1024px) and (max-width: 1280px) {
  .desktop-nav ul { gap: 0.05rem; }
  .desktop-nav a { font-size: 0.85rem; padding: 0.5rem 0.5rem; }
  .header-cta { gap: 0.45rem; }
  .header-cta .btn--sm { padding-inline: 0.85rem; }
  .header-cta .btn--ghost { display: none; }
}

@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .header-cta .btn--ghost { display: none; }
  .header-cta { gap: 0.5rem; }
  .nav-toggle { display: block; }
  .header-inner { padding-block: 0.65rem; }
}

@media (min-width: 640px) {
  .hero-scroll-hint { display: none; }
}

@media (max-width: 1023px) {
  .hero-arrows { display: none; }
}

/* Keep body scroll locked when mobile menu / dialog open */
body.noscroll { overflow: hidden; }

/* ------------------------------------------------------------
   27. PAGE-SPECIFIC SUPPORT (reviews, forms, legal, sitemap)
   ------------------------------------------------------------ */
/* Gold frame accent applied directly to a media wrapper */
.split-media.frame-accent { position: relative; }
.split-media.frame-accent::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 42%;
  height: 42%;
  border-radius: 16px;
  border: 3px solid var(--gold-500);
  z-index: -1;
}

/* Required-field marker (works outside .form-label too) */
.req { color: #b3392f; font-weight: 700; }
.section--navy .req { color: #f4d675; }

/* Form submit row */
.form-actions { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-actions .btn { align-self: flex-start; }

/* Reviews rating banner */
.rating-banner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 760px) { .rating-banner { grid-template-columns: 1fr auto; } }
.rating-banner h2 { color: var(--white); margin-bottom: 0.4rem; }
.rating-banner .lead { color: #dce7f3; }
.rating-stars { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.rating-banner .stars svg { width: 26px; height: 26px; }

/* Testimonial card header */
.tcard-head { display: flex; align-items: center; gap: 0.8rem; }
.tcard-head h3 { font-size: 1rem; margin: 0; }
.tcard .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-500);
  font-family: var(--font-head); font-weight: 800;
  display: grid; place-items: center; font-size: 1rem; flex-shrink: 0;
}
.tcard .tmeta { font-size: 0.85rem; color: var(--muted); }
.tcard > p { font-size: 1.02rem; line-height: 1.65; color: var(--body); }

/* Sitemap list */
.sitemap-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .sitemap-list { grid-template-columns: 1fr 1fr; } }
.sitemap-list li { border-bottom: 1px solid var(--line); }
.sitemap-list a { display: block; padding: 0.7rem 0.2rem; font-weight: 600; }
.sitemap-list a:hover { color: var(--gold-ink); }
/* AMS mobile header alignment - appended override (wins by cascade) */
@media (max-width: 899px) {
  .site-header .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem 0.65rem;
  }
  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-header .header-cta {
    margin-left: auto;
    order: 1;
  }
  .site-header .nav-toggle {
    order: 2;
    margin-left: 0.35rem;
  }
  .site-header .header-inner > .nav-wrap {
    order: 3;
    flex-basis: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header * { transition: none !important; }
}
