/* ============================================================
   Luminary Home Care LLC — Global Stylesheet
   "Inspiring Care. Illuminating Lives."
   Palette: Navy #1F4E79 · Gold #C9A84C · White #FFFFFF · Soft Blue #D6E4F0
   Fonts: Playfair Display (headings) · Inter (body)
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  --navy: #1F4E79;
  --navy-deep: #163a5c;
  --navy-darker: #102b44;
  --gold: #C9A84C;
  --gold-light: #e0c878;
  --gold-deep: #a8862f;
  --white: #FFFFFF;
  --soft-blue: #D6E4F0;
  --soft-blue-tint: #eef4fb;
  --ink: #233140;
  --muted: #5b6b7a;
  --line: #e3e9f0;

  --shadow-sm: 0 2px 8px rgba(31, 78, 121, 0.06);
  --shadow-md: 0 12px 30px rgba(31, 78, 121, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 43, 68, 0.16);
  --shadow-gold: 0 14px 34px rgba(201, 168, 76, 0.28);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;

  --container: 1200px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- 2. Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1.1em; }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 10px 10px;
  z-index: 2000;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- 3. Layout Helpers ---------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--soft { background: var(--soft-blue-tint); }
.section--blue { background: var(--soft-blue); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #2a2207;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease);
  box-shadow: var(--shadow-gold);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(201, 168, 76, 0.42);
  background: var(--gold-light);
  color: #2a2207;
}
.btn:active { transform: translateY(-1px); }

.btn--navy {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  box-shadow: var(--shadow-md);
}
.btn--navy:hover { background: var(--navy-deep); color: #fff; box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}
.text-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.text-link:hover { color: var(--gold-deep); }
.text-link:hover svg { transform: translateX(5px); }

/* ---------- 5. Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    height 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  line-height: 1;
}
.logo__mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
}
.logo__mark svg { width: 40px; height: 40px; overflow: visible; }
.logo__rays { transform-origin: center; animation: spin 24s linear infinite; }
.logo__glow {
  position: absolute;
  inset: -6px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.45), transparent 65%);
  border-radius: 50%;
  animation: pulse 3.5s ease-in-out infinite;
  z-index: -1;
}
.logo__text { display: flex; flex-direction: column; }
.logo__name {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo__name b { color: var(--gold-deep); font-weight: 700; }
.logo__sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Nav menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__link {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  border-radius: 8px;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--navy); font-weight: 600; }
.nav__link.active::after { transform: scaleX(1); }

/* Items that live inside the menu only for the mobile drawer */
.nav__phone.in-menu,
.nav__menu .btn { display: none; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.nav__phone svg { width: 18px; height: 18px; color: var(--gold-deep); }
.nav__cta { padding: 12px 22px; font-size: 0.95rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span { top: 22px; }
.nav__toggle span::before { top: -8px; }
.nav__toggle span::after { top: 8px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background:
    linear-gradient(120deg, rgba(16, 43, 68, 0.92) 0%, rgba(31, 78, 121, 0.78) 45%, rgba(31, 78, 121, 0.42) 100%),
    var(--navy);
  background-size: cover;
  background-position: center;
}
.hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(16, 43, 68, 0.82) 0%, rgba(22, 58, 92, 0.55) 52%, rgba(31, 78, 121, 0.24) 100%),
    linear-gradient(to top, rgba(16, 43, 68, 0.55) 0%, rgba(16, 43, 68, 0) 42%);
}

/* animated gold light rays */
.hero__rays {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero__rays::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 70vw;
  height: 160%;
  background:
    conic-gradient(from 210deg at 80% 0%,
      transparent 0deg,
      rgba(201, 168, 76, 0.16) 8deg,
      transparent 16deg,
      rgba(201, 168, 76, 0.12) 24deg,
      transparent 34deg,
      rgba(224, 200, 120, 0.14) 44deg,
      transparent 54deg);
  filter: blur(2px);
  animation: rayShift 14s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
.hero__rays::after {
  content: "";
  position: absolute;
  top: -25%;
  right: 4%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(224, 200, 120, 0.42), rgba(201, 168, 76, 0.12) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes rayShift {
  0% { transform: rotate(-6deg) translateY(0); opacity: 0.8; }
  100% { transform: rotate(6deg) translateY(20px); opacity: 1; }
}

.hero__inner { max-width: 760px; position: relative; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.6rem;
}
.hero__badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(224, 200, 120, 0.7);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(224, 200, 120, 0.7); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(224, 200, 120, 0); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 .accent {
  display: block;
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll .mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  background: var(--gold-light);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ---------- 7. Trust Bar ---------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 26px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
  padding: 8px 12px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: var(--line);
}
.trust-item__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold-deep);
}
.trust-item__icon svg { width: 24px; height: 24px; }
.trust-item strong { display: block; color: var(--navy); font-size: 0.98rem; }
.trust-item span { font-size: 0.84rem; color: var(--muted); }

/* ---------- 8. About / Split Sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split__media .img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split__media .img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.split__badge {
  position: absolute;
  bottom: 24px; left: -24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.split__badge .icon {
  width: 48px; height: 48px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--gold-light);
}
.split__badge .icon svg { width: 26px; height: 26px; }
.split__badge strong { display: block; color: var(--navy); font-size: 1.5rem; font-family: var(--font-head); }
.split__badge span { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
.split__body p { color: var(--muted); }
.split__body .btn { margin-top: 0.6rem; }

.checklist { list-style: none; margin: 1.2rem 0 1.8rem; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); }
.checklist li svg {
  flex: none; width: 22px; height: 22px; margin-top: 3px;
  color: var(--gold-deep);
}

/* ---------- 9. Service Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0.05));
  color: var(--gold-deep);
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-4deg); }
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* Detailed service cards */
.service-card--detailed { padding: 36px 34px; }
.service-card--detailed h3 { font-size: 1.35rem; }
.service-card--detailed .tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(201, 168, 76, 0.12);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ---------- 9b. Service Groups (ADL / Complex Care / IADL) ---------- */
.service-group { margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.service-group:last-child { margin-bottom: 0; }

.group-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.group-head__icon {
  width: 60px; height: 60px; flex: none;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
}
.group-head__icon svg { width: 30px; height: 30px; }
.group-head__text h3 { margin: 0; font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.group-head__text p { margin: 5px 0 0; color: var(--muted); font-size: 0.98rem; }
.group-head .group-count {
  margin-left: auto;
  align-self: center;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep);
  background: rgba(201, 168, 76, 0.12);
  padding: 7px 15px; border-radius: 50px;
  white-space: nowrap;
}

.eligibility-note {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.eligibility-note svg { flex: none; width: 24px; height: 24px; color: var(--gold-deep); margin-top: 2px; }
.eligibility-note p { margin: 0; font-size: 0.96rem; color: var(--ink); }
.eligibility-note strong { color: var(--navy); }

/* Complex Care panel */
.complex-panel {
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 168, 76, 0.16), transparent 42%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
}
.complex-panel::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.complex-panel > * { position: relative; }
.complex-panel > p { color: rgba(255, 255, 255, 0.88); max-width: 760px; }
.tag-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 12px;
  margin-top: 1.4rem;
}
.tag-grid li {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.tag-grid li:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.tag-grid li svg { flex: none; width: 18px; height: 18px; color: var(--gold-light); }

/* ---------- 10. Feature Columns (Why Choose Us) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.feature {
  text-align: center;
  padding: 14px;
}
.feature__icon {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  border-radius: 24px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.4s var(--ease);
}
.feature__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid transparent;
  background: linear-gradient(145deg, var(--gold), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.feature:hover .feature__icon { transform: translateY(-6px); }
.feature:hover .feature__icon::after { opacity: 1; }
.feature__icon svg { width: 36px; height: 36px; color: var(--gold-deep); }
.feature h3 { font-size: 1.22rem; margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- 11. Statistics ---------- */
.stats {
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 168, 76, 0.18), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(201, 168, 76, 0.12), transparent 45%),
    var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { padding: 18px 10px; position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 70px;
  background: rgba(255, 255, 255, 0.16);
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat__num .suffix { font-size: 0.5em; color: var(--gold); }
.stat__label {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}

/* ---------- 12. Steps / How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.step {
  text-align: center;
  padding: 36px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.step__num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 168, 76, 0.5);
}
.step__icon { color: var(--gold-deep); margin-bottom: 12px; }
.step__icon svg { width: 30px; height: 30px; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Vertical numbered process (detailed pages) */
.process { max-width: 820px; margin: 0 auto; display: grid; gap: 8px; }
.process__item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;
  position: relative;
  padding-bottom: 36px;
}
.process__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 42px; top: 86px; bottom: -6px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(201, 168, 76, 0.25));
}
.process__num {
  width: 84px; height: 84px;
  border-radius: 22px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: #fff;
  position: relative;
  z-index: 1;
}
.process__num span {
  position: absolute;
  top: -8px; right: -8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #2a2207;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.process__num svg { width: 36px; height: 36px; color: var(--gold-light); }
.process__body { padding-top: 6px; }
.process__body h3 { margin-bottom: 0.4rem; }
.process__body p { color: var(--muted); margin: 0; }

/* ---------- 13. Banner / CTA Sections ---------- */
.cta-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 168, 76, 0.2), transparent 42%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  top: -60px; right: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.28), transparent 65%);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 620px; margin: 0 auto 2rem; position: relative; }
.cta-band .btn { position: relative; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Referral / Professional panel */
.referral {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.8rem);
  position: relative;
  overflow: hidden;
}
.referral::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.referral > * { position: relative; }
.referral h2 { color: #fff; }
.referral p { color: rgba(255, 255, 255, 0.88); }
.referral .eyebrow { color: var(--gold-light); }
.referral .eyebrow::before { background: var(--gold-light); }
.referral__visual {
  display: grid;
  place-items: center;
}
.referral__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  backdrop-filter: blur(8px);
}
.referral__card h4 { color: var(--gold-light); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.referral__card dl { margin: 0; display: grid; gap: 14px; }
.referral__card .row { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.referral__card .row:last-child { border-bottom: none; padding-bottom: 0; }
.referral__card dt { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.referral__card dd { margin: 0; color: #fff; font-weight: 600; font-size: 0.92rem; text-align: right; }

/* Careers teaser */
.careers-teaser {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.95), rgba(168, 134, 47, 0.95)),
    var(--gold);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.careers-teaser::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 60%);
}
.careers-teaser > * { position: relative; }
.careers-teaser h2 { color: #fff; }
.careers-teaser p { color: rgba(255, 255, 255, 0.92); margin: 0; max-width: 540px; }
.careers-teaser .pay {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem;
}
.careers-teaser .btn--navy { background: #fff; color: var(--navy); }
.careers-teaser .btn--navy:hover { background: var(--navy); color: #fff; }

/* ---------- 14. Footer ---------- */
.site-footer {
  background:
    radial-gradient(circle at 85% 0%, rgba(201, 168, 76, 0.12), transparent 40%),
    var(--navy-darker);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 3rem;
}
.footer .logo__name { color: #fff; }
.footer .logo__name b { color: var(--gold-light); }
.footer .logo__sub { color: rgba(255,255,255,0.6); }
.footer__about p { margin: 18px 0; font-size: 0.95rem; max-width: 320px; }
.footer__tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links { list-style: none; display: grid; gap: 11px; }
.footer__links a { color: rgba(255, 255, 255, 0.74); font-size: 0.95rem; }
.footer__links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer__contact { display: grid; gap: 14px; }
.footer__contact a, .footer__contact span { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.footer__contact svg { flex: none; width: 18px; height: 18px; color: var(--gold-light); margin-top: 3px; }
.footer__contact a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.footer__badge svg { width: 16px; height: 16px; color: var(--gold-light); }

/* ---------- 15. Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 4.5rem) 0 4.5rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(16, 43, 68, 0.92), rgba(31, 78, 121, 0.78)),
    var(--navy);
  background-size: cover;
  background-position: center;
}
.page-hero__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(16, 43, 68, 0.82), rgba(31, 78, 121, 0.6)),
    linear-gradient(to top, rgba(16, 43, 68, 0.45) 0%, rgba(16, 43, 68, 0) 55%);
}
.page-hero .hero__rays { z-index: 0; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.page-hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ---------- 16. Mission Pull Quote ---------- */
.mission {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.1), transparent 50%),
    var(--soft-blue-tint);
}
.mission__quote {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.mission__mark {
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
}
.mission__quote blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.4;
  color: var(--navy);
  font-weight: 600;
}
.mission__quote cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

/* ---------- 17. Value Cards ---------- */
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
}
.value-card__icon svg { width: 34px; height: 34px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- 18. Owner Profile ---------- */
.owner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.owner__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
}
.owner__photo img { width: 100%; height: 100%; object-fit: cover; }
.owner__photo .initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold-light);
}
.owner__ribbon {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(16, 43, 68, 0.82);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
}
.owner__ribbon strong { font-family: var(--font-head); font-size: 1.15rem; }
.owner__ribbon span { display: block; font-size: 0.82rem; color: var(--gold-light); letter-spacing: 0.06em; }
.owner__body h3 { font-size: 1.7rem; }
.owner__role { color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 1rem; }
.owner__body p { color: var(--muted); }
.owner__sign {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--navy);
  margin-top: 1rem;
}

/* ---------- 19. Compliance / Info Box ---------- */
.compliance {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.compliance__head { display: flex; align-items: center; gap: 16px; margin-bottom: 1.4rem; }
.compliance__head .icon {
  width: 56px; height: 56px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(31, 78, 121, 0.08);
  color: var(--navy);
}
.compliance__head .icon svg { width: 30px; height: 30px; }
.compliance__head h2 { margin: 0; font-size: 1.6rem; }
.compliance__head p { margin: 4px 0 0; color: var(--muted); font-size: 0.95rem; }
.compliance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 1.6rem;
}
.compliance__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  background: var(--soft-blue-tint);
  border-radius: var(--radius-sm);
}
.compliance__item svg { flex: none; width: 24px; height: 24px; color: var(--gold-deep); margin-top: 2px; }
.compliance__item strong { display: block; color: var(--navy); }
.compliance__item span { font-size: 0.88rem; color: var(--muted); }

/* ---------- 20. Who We Serve ---------- */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.serve-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.serve-card__top {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
}
.serve-card__top .icon {
  width: 56px; height: 56px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
}
.serve-card__top .icon svg { width: 30px; height: 30px; }
.serve-card__top h3 { color: #fff; margin: 0; font-size: 1.4rem; }
.serve-card__body { padding: 28px 30px; }
.serve-card__body p { color: var(--muted); }
.serve-card__body .checklist { margin-bottom: 0; }

/* ---------- 21. Service Area Map ---------- */
.map-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 4vw, 3.4rem);
  color: #fff;
  overflow: hidden;
}
.map-visual h2 { color: #fff; }
.map-visual p { color: rgba(255,255,255,0.85); }
.map-visual .eyebrow { color: var(--gold-light); }
.map-visual .eyebrow::before { background: var(--gold-light); }
.county-list { list-style: none; display: grid; gap: 14px; margin-top: 1.4rem; }
.county-list li {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.county-list .pin {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-darker);
  display: grid; place-items: center;
}
.county-list .pin svg { width: 22px; height: 22px; }
.county-list strong { display: block; }
.county-list span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.map-art {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  display: grid;
  place-items: center;
  min-height: 320px;
}
.map-art svg { width: 100%; height: auto; max-width: 360px; }

/* ---------- 22. FAQ Accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq__item.open { box-shadow: var(--shadow-md); border-color: rgba(201, 168, 76, 0.5); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__q .icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold-deep);
  position: relative;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.faq__q .icon::before,
.faq__q .icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq__q .icon::before { width: 13px; height: 2.5px; }
.faq__q .icon::after { width: 2.5px; height: 13px; transition: transform 0.3s var(--ease); }
.faq__item.open .faq__q .icon { background: var(--gold); color: #fff; transform: rotate(180deg); }
.faq__item.open .faq__q .icon::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a-inner { padding: 0 24px 24px; color: var(--muted); }
.faq__a-inner p { margin: 0; }

/* ---------- 23. Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.field label .req { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-blue-tint);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231F4E79' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa7b4; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.84rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.form-success {
  display: none;
  align-items: center; gap: 12px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 18px;
}
.form-success.show { display: flex; }
.form-success svg { flex: none; width: 24px; height: 24px; color: var(--gold-deep); }

/* ---------- 24. Contact Info ---------- */
.contact-info { display: grid; gap: 18px; }
.contact-info__item {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-info__item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-info__item .icon {
  width: 52px; height: 52px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
}
.contact-info__item .icon svg { width: 26px; height: 26px; }
.contact-info__item h4 { color: var(--muted); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 6px; }
.contact-info__item a, .contact-info__item p { font-size: 1.08rem; color: var(--navy); font-weight: 600; margin: 0; }
.contact-info__item a:hover { color: var(--gold-deep); }
.contact-info__item .small { font-size: 0.9rem; font-weight: 400; color: var(--muted); }

.pro-box {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
}
.pro-box::after {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.3), transparent 65%);
  border-radius: 50%;
}
.pro-box > * { position: relative; }
.pro-box h3 { color: #fff; font-size: 1.3rem; }
.pro-box p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.pro-box .id-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  margin-top: 6px;
}
.pro-box .id-chip svg { width: 18px; height: 18px; color: var(--gold-light); }

/* ---------- 25. Map embed ---------- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(0.1) contrast(1.05); }

/* ---------- 26. Job Posting ---------- */
.job-post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.job-post__head {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  position: relative;
  overflow: hidden;
}
.job-post__head::after {
  content: ""; position: absolute; top: -50px; right: -30px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,168,76,0.25), transparent 65%);
  border-radius: 50%;
}
.job-post__head > * { position: relative; }
.job-post__head h2 { color: #fff; margin-bottom: 0.4rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.job-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.88rem;
}
.job-meta svg { width: 16px; height: 16px; color: var(--gold-light); }
.job-post__body { padding: clamp(1.8rem, 3.5vw, 2.8rem); }
.job-block { margin-bottom: 2rem; }
.job-block:last-child { margin-bottom: 0; }
.job-block h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.job-block h3 svg { width: 24px; height: 24px; color: var(--gold-deep); }
.job-block p { color: var(--muted); }
.job-list { list-style: none; display: grid; gap: 12px; }
.job-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); }
.job-list li svg { flex: none; width: 22px; height: 22px; color: var(--gold-deep); margin-top: 3px; }

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(201,168,76,0.16), rgba(201,168,76,0.05));
  color: var(--gold-deep);
}
.benefit-card__icon svg { width: 32px; height: 32px; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.benefit-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }
.benefit-card .highlight { color: var(--gold-deep); font-weight: 700; font-family: var(--font-head); }

/* ---------- 27. Intro lead text ---------- */
.lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  color: var(--muted);
}

/* ---------- 28. Animations (reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

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

/* ---------- 29. Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
  .referral { grid-template-columns: 1fr; }
  .careers-teaser { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 880px) {
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: calc(var(--header-h) + 20px) 26px 40px;
    background: #fff;
    box-shadow: -20px 0 60px rgba(16, 43, 68, 0.18);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu .nav__link { padding: 14px 16px; font-size: 1.05rem; border-radius: 10px; }
  .nav__menu .nav__link::after { display: none; }
  .nav__menu .nav__link:hover, .nav__menu .nav__link.active { background: var(--soft-blue-tint); }
  .nav__menu .nav__phone.in-menu { display: inline-flex; padding: 14px 16px; }
  .nav__menu .btn { display: inline-flex; width: 100%; margin-top: 10px; }
  .nav__toggle { display: block; z-index: 1100; }
  .nav__actions .nav__phone:not(.in-menu) { display: none; }
  .nav__actions .nav__cta { display: none; }
  body.menu-open { overflow: hidden; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(16, 43, 68, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    z-index: 999;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { min-height: 320px; }
  .split__badge { left: 16px; bottom: 16px; }
  .trust-bar__grid { grid-template-columns: 1fr; gap: 6px; }
  .trust-item { justify-content: flex-start; }
  .trust-item:not(:last-child)::after { display: none; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px 10px; }
  .stat:not(:last-child)::after { display: none; }
  .stat:nth-child(odd)::after { content: ""; display: block; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 60px; background: rgba(255,255,255,0.16); }
  .steps { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .map-visual { grid-template-columns: 1fr; }
  .map-visual .map-art { order: -1; }
  .owner { grid-template-columns: 1fr; }
  .owner__photo { max-width: 320px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .process__item { grid-template-columns: 64px 1fr; gap: 18px; }
  .process__num { width: 64px; height: 64px; border-radius: 18px; }
  .process__num svg { width: 28px; height: 28px; }
  .process__item:not(:last-child)::before { left: 31px; top: 64px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, var(--container)); }
  .stats__grid { grid-template-columns: 1fr; }
  .stat::after, .stat:nth-child(odd)::after { display: none !important; }
  .stat:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.14); padding-bottom: 26px; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
  .logo__sub { display: none; }
}
