:root {
  --ink: #0e1b26;
  --ink-soft: #1f3445;
  --muted: #667789;
  --line: #d8e3ea;
  --paper: #f5f8fa;
  --panel: #ffffff;
  --panel-soft: #f9fbfc;
  --navy: #12344e;
  --blue: #176aa6;
  --cyan: #77c4d7;
  --sky: #dbeff6;
  --red: #b33a32;
  --gold: #c9912d;
  --green: #416f61;
  --shadow-sm: 0 10px 24px rgba(14, 27, 38, .08);
  --shadow-md: 0 22px 54px rgba(14, 27, 38, .14);
  --shadow-lg: 0 34px 80px rgba(14, 27, 38, .22);
  --ease: cubic-bezier(.2, .72, .18, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f7f9fb;
  line-height: 1.6;
  font-size: 15px;
  text-rendering: optimizeLegibility;
}

body::before {
  display: none;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy);  }

img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 2000;
}

.skip-link:focus { left: 10px; }

.navbar {
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(216,227,234,.82);
  box-shadow: 0 16px 38px rgba(14, 27, 38, .08);
  backdrop-filter: blur(18px);
  transition: padding .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.navbar.is-scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 34px rgba(14, 27, 38, .14);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue) 58%, var(--green));
  box-shadow: 0 14px 30px rgba(23, 106, 166, .28);
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35), transparent 70%);
  transform: translateX(-55%) rotate(18deg);
  animation: brand-shine 7s var(--ease) infinite;
}

.navbar-brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: -2px;
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-weight: 700;
  font-size: .9rem;
  padding-inline: .72rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .15rem;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}

.dropdown-menu {
  border: 1px solid rgba(216,227,234,.9);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 8px;
}

.dropdown-item {
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  padding: 9px 12px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--navy);
  background: var(--sky);
}

.nav-link.active,
.nav-link:hover { color: var(--blue); }

.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  gap: 8px;
  margin-left: 14px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(23, 106, 166, .25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy), #0e2639);
  border-color: var(--navy);
  box-shadow: 0 18px 34px rgba(18, 52, 78, .28);
}

.btn-outline-primary {
  color: var(--blue);
  border-color: rgba(23, 106, 166, .5);
  background: rgba(255,255,255,.64);
}

.btn-outline-danger {
  color: var(--red);
  border-color: rgba(179,58,50,.55);
  background: rgba(255,255,255,.64);
}

.btn-danger {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 28px rgba(179,58,50,.22);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0b1822;
  color: #fff;
  padding: 150px 0 78px;
  perspective: 1200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 230px;
  background: linear-gradient(180deg, transparent, var(--paper));
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-media {
  position: absolute;
  inset: -5% 0;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  transition: transform .12s linear;
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(8,19,29,.88), rgba(8,19,29,.58) 44%, rgba(8,19,29,.16)),
          linear-gradient(180deg, rgba(8,19,29,.1), rgba(8,19,29,.42));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
  transform-style: preserve-3d;
  animation: hero-rise .85s var(--ease) both;
  padding: 12px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
}

.hero h1 {
  line-height: .98;
  letter-spacing: 0;
  margin: 0 0 22px;
  max-width: 860px;
  text-wrap: balance;
  text-shadow: 0 20px 58px rgba(0,0,0,.32);
}

.hero p {
  font-size: 1.24rem;
  max-width: 680px;
  color: rgba(255,255,255,.9);
}

.hero-actions,
.inline-actions,
.cta-actions,
.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions { margin-top: 28px; }

.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust span,
.check-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
  border-radius: 7px;
  padding: 8px 12px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.content-block h2,
.cta-band h2,
.footer-cta h2,
.request-panel h2,
.narrow h2 {
  font-size: 2.85rem;
  line-height: 1.08;
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-heading p,
.content-block p,
.local-band p,
.split-section p,
.request-panel p,
.article-layout p,
.contact-card p,
.narrow p {
  color: var(--muted);
}

.service-card,
.article-card,
.info-panel,
.request-panel,
.contact-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(216,227,234,.9);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(14, 27, 38, .07);
  transform-style: preserve-3d;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.service-card::before,
.article-card::before,
.info-panel::before,
.request-panel::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(23,106,166,.08), transparent 46%);
  opacity: 0;
  transition: opacity .28s var(--ease);
  pointer-events: none;
}

.service-card:hover,
.article-card:hover,
.info-panel:hover,
.request-panel:hover,
.contact-card:hover {
  transform: translateY(-7px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: var(--shadow-md);
  border-color: rgba(23,106,166,.28);
}

.service-card:hover::before,
.article-card:hover::before,
.info-panel:hover::before,
.request-panel:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.service-card {
  padding: 30px;
  min-height: 250px;
  border-top: 4px solid rgba(23,106,166,.34);
}

.service-card h3,
.article-card h3,
.contact-card h3,
.info-panel h3 {
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-card h3,
.service-card p,
.service-card .text-link,
.article-card-body,
.info-panel > *,
.request-panel > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.service-card p,
.article-card p {
  color: var(--muted);
}

.text-link {
  font-weight: 900;
}

.local-band {
  overflow: hidden;
  background:
          linear-gradient(135deg, #eef6f8, #fff 52%, #f4f8f7);
  border-block: 1px solid var(--line);
}

.local-band::after {
  display: none;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.check-grid span {
  color: var(--ink);
  background: rgba(255,255,255,.82);
  border-color: rgba(216,227,234,.9);
}

.info-panel,
.request-panel,
.contact-card {
  padding: 32px;
}

.info-panel ol {
  margin: 0 0 22px;
  padding-left: 20px;
}

.rounded-media {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(216,227,234,.92);
  box-shadow: 0 28px 74px rgba(14,27,38,.18);
  transform: perspective(900px) rotateY(-2.5deg) rotateX(1deg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.rounded-media:hover {
  transform: perspective(900px) rotateY(0) rotateX(0) translateY(-6px);
  box-shadow: 0 38px 90px rgba(14,27,38,.24);
}

.content-block {
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.request-panel {
  position: sticky;
  top: 104px;
}

.request-panel.large {
  position: static;
}

.form-label {
  font-weight: 800;
  color: var(--ink);
}

.form-control,
.form-select {
  border-radius: 7px;
  border-color: var(--line);
  min-height: 46px;
  background: rgba(255,255,255,.92);
  transition: box-shadow .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(23,106,166,.58);
  box-shadow: 0 0 0 .22rem rgba(23,106,166,.13);
  transform: translateY(-1px);
}

.form-note {
  color: var(--green);
  font-weight: 800;
}

.article-card {
  overflow: hidden;
  height: 100%;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .45s var(--ease), filter .45s var(--ease);
}

.article-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.article-card-body {
  padding: 24px;
}

.article-card-body span {
  color: var(--green);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
}

.faq-section {
  background: rgba(255,255,255,.72);
}

.accordion {
  box-shadow: var(--shadow-sm);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-color: var(--line);
}

.accordion-button {
  font-weight: 900;
  color: var(--ink);
  background: rgba(255,255,255,.94);
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: linear-gradient(90deg, var(--sky), #ffffff);
}

.cta-band {
  overflow: hidden;
  color: #fff;
  background:
          linear-gradient(135deg, rgba(18,52,78,.98), rgba(29,78,112,.94)),
          var(--navy);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 42% 44%, transparent 44%),
          linear-gradient(115deg, transparent 0 62%, rgba(119,196,215,.18) 62% 63%, transparent 63%);
  transform: translateX(var(--parallax-x, 0));
  transition: transform .12s linear;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band p { color: rgba(255,255,255,.82); }
.cta-actions { justify-content: flex-start; }

.article-layout article {
  font-size: 1.1rem;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card.urgent {
  border-color: rgba(179,58,50,.35);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
          linear-gradient(135deg, #0f1c27, #132b3a 72%, #17344a);
  color: rgba(255,255,255,.78);
  padding: 58px 0 92px;
}

.site-footer::before {
  display: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer a:not(.btn) {
  color: #fff;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}

.footer-cta h2 {
  color: #fff;
  margin-bottom: 0;
}

.footer-main {
  padding-top: 38px;
}

.footer-brand {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.two-column-list {
  columns: 2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 34px;
  padding-top: 22px;
  font-size: .9rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mobile-sticky-cta {
  display: none;
}

.narrow {
  max-width: 860px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px) rotateX(4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes flight-grid {
  from { transform: rotateX(58deg) rotateZ(-12deg) translate3d(0, 0, 0); }
  to { transform: rotateX(58deg) rotateZ(-12deg) translate3d(-32px, 18px, 0); }
}

@keyframes brand-shine {
  0%, 55% { transform: translateX(-70%) rotate(18deg); }
  76%, 100% { transform: translateX(70%) rotate(18deg); }
}

@media (max-width: 1199px) {
  .nav-actions {
    margin-left: 0;
    padding: 12px 0 4px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .section-heading h2,
  .content-block h2,
  .cta-band h2,
  .footer-cta h2,
  .request-panel h2,
  .narrow h2 {
    font-size: 2.45rem;
  }
}

@media (max-width: 767px) {
  body { padding-bottom: 62px; }

  .hero {
    min-height: 620px;
    padding: 130px 0 52px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-media::after {
    background:
            linear-gradient(180deg, rgba(10,24,35,.86), rgba(10,24,35,.74)),
            radial-gradient(circle at 50% 25%, rgba(119,196,215,.22), transparent 42%);
  }

  .hero::after {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading h2,
  .content-block h2,
  .cta-band h2,
  .footer-cta h2,
  .request-panel h2,
  .narrow h2 {
    font-size: 2rem;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .rounded-media {
    transform: none;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-column-list {
    columns: 1;
  }

  .request-panel {
    position: static;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -10px 22px rgba(14,27,38,.22);
  }

  .mobile-sticky-cta a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    background: var(--red);
    text-decoration: none;
  }

  .mobile-sticky-cta a + a {
    background: var(--blue);
  }
}

/* Final readability overrides */
.hero-media::after {
  content: none;
  display: none;
  background: none;
}

.hero-media img {
  filter: saturate(.98) contrast(1.04) brightness(.95);
}

.hero h1,
.hero p,
.hero .eyebrow,
.hero-trust span {
  color: #fff;
}

.hero-content {
  background: rgba(7,16,24,.74);
  border: 1px solid rgba(234,216,178,.3);
}

.section-heading p,
.content-block p,
.split-section p,
.request-panel p,
.article-layout p,
.contact-card p,
.narrow p,
.service-card p,
.article-card p {
  color: #4d565f;
}

.local-band {
  background: #101820;
}

.local-band h2,
.local-band h3,
.local-band li,
.local-band .eyebrow,
.local-band .info-panel h3,
.cta-band h2,
.cta-band .eyebrow,
.site-footer h2,
.site-footer h3,
.site-footer .footer-brand {
  color: #fff;
}

.local-band p,
.local-band .info-panel p,
.cta-band p,
.site-footer,
.site-footer p,
.site-footer li,
.site-footer span {
  color: rgba(255,255,255,.8);
}

.local-band .info-panel {
  background: rgba(255,255,255,.08);
  border-color: rgba(234,216,178,.28);
}

.accordion-body {
  color: #3f464c;
  background: #fffdfa;
}

/* Contrast and readability fixes */
.hero-media::after {
  display: none;
}

.hero-media img {
  filter: saturate(.98) contrast(1.04) brightness(.95);
}

.hero-content {
  max-width: 760px;
  padding: 34px;
  border: 1px solid rgba(234,216,178,.28);
  border-radius: 4px;
  background: rgba(7,16,24,.72);
  box-shadow: 0 34px 90px rgba(0,0,0,.36);
  backdrop-filter: blur(8px);
}

.hero p,
.hero h1 {
  color: #fff;
}

.section-heading p,
.content-block p,
.split-section p,
.request-panel p,
.article-layout p,
.contact-card p,
.narrow p,
.service-card p,
.article-card p {
  color: #4f565c;
}

.local-band {
  background: #101820;
}

.local-band .eyebrow,
.local-band h2,
.local-band h3,
.local-band li,
.local-band .info-panel h3 {
  color: #fff;
}

.local-band p,
.local-band .info-panel p {
  color: rgba(255,255,255,.78);
}

.local-band .info-panel {
  background: rgba(255,255,255,.08);
  border-color: rgba(234,216,178,.28);
}

.local-band .btn-primary {
  color: var(--lux-black);
}

.cta-band h2,
.cta-band .eyebrow,
.cta-band p,
.cta-band li {
  color: #fff;
}

.cta-band p {
  color: rgba(255,255,255,.8);
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer span {
  color: rgba(255,255,255,.78);
}

.site-footer h2,
.site-footer h3,
.site-footer .footer-brand {
  color: #fff;
}

.site-footer .eyebrow {
  color: var(--lux-gold-soft);
}

.accordion-body {
  color: #3f464c;
  background: #fffdfa;
}

.accordion-button {
  color: var(--lux-ink);
}

.article-layout article {
  color: var(--lux-ink);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media,
  .cta-band::after {
    transform: none !important;
  }
}

/* Luxury premium visual system */
:root {
  --lux-black: #071018;
  --lux-ink: #101820;
  --lux-charcoal: #17212b;
  --lux-cream: #f6f1e8;
  --lux-paper: #f3f0e9;
  --lux-gold: #c9a45d;
  --lux-gold-soft: #ead8b2;
  --lux-platinum: #dce4e8;
  --lux-blue: #12334c;
  --lux-red: #8f2d2b;
  --ink: var(--lux-ink);
  --muted: #6f7478;
  --line: rgba(16, 24, 32, .12);
  --paper: var(--lux-paper);
  --panel: #fffdfa;
  --navy: var(--lux-blue);
  --blue: #1b526f;
  --gold: var(--lux-gold);
  --red: var(--lux-red);
  --shadow-sm: 0 18px 45px rgba(7, 16, 24, .1);
  --shadow-md: 0 30px 80px rgba(7, 16, 24, .18);
  --shadow-lg: 0 46px 110px rgba(7, 16, 24, .28);
}

body {
  color: var(--lux-ink);
  background:
          linear-gradient(180deg, #fbf8f1 0, #f0ede6 44%, #f7f4ee 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
          radial-gradient(circle at 18% 8%, rgba(201,164,93,.14), transparent 30%),
          radial-gradient(circle at 86% 18%, rgba(18,51,76,.1), transparent 34%);
}

h1,
h2,
.footer-cta h2,
.section-heading h2,
.content-block h2,
.request-panel h2,
.narrow h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.navbar {
  background: rgba(7, 16, 24, .82);
  border-bottom: 1px solid rgba(201,164,93,.22);
  box-shadow: 0 22px 70px rgba(7,16,24,.28);
  backdrop-filter: blur(20px);
}

.navbar.is-scrolled {
  background: rgba(7, 16, 24, .94);
  border-bottom-color: rgba(201,164,93,.34);
  box-shadow: 0 20px 62px rgba(7,16,24,.38);
}

.navbar-brand,
.nav-link {
  color: rgba(255,255,255,.9);
}

.navbar-brand:hover,
.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.navbar-brand small {
  color: rgba(234,216,178,.74);
}

.navbar-toggler {
  border-color: rgba(234,216,178,.45);
}

.navbar-toggler-icon {
  filter: invert(1) sepia(.25) saturate(1.2);
}

.brand-mark {
  color: var(--lux-black);
  background:
          linear-gradient(135deg, #f9eed4 0, var(--lux-gold) 48%, #8b6b2d 100%);
  box-shadow: 0 14px 34px rgba(201,164,93,.34);
}

.nav-link::after {
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  height: 1px;
}

.dropdown-menu {
  background: rgba(12, 22, 31, .97);
  border: 1px solid rgba(201,164,93,.24);
  box-shadow: 0 30px 80px rgba(7,16,24,.38);
}

.dropdown-item {
  color: rgba(255,255,255,.82);
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background: rgba(201,164,93,.14);
}

.btn {
  border-radius: 4px;
  letter-spacing: .01em;
}

.btn-primary {
  color: var(--lux-black);
  background:
          linear-gradient(135deg, #f7e7bd 0, var(--lux-gold) 52%, #9a7838 100%);
  border-color: rgba(201,164,93,.8);
  box-shadow: 0 18px 38px rgba(119,86,28,.24);
}

.btn-primary:hover {
  color: var(--lux-black);
  background:
          linear-gradient(135deg, #fff2cf 0, #d5b36d 54%, #a9853d 100%);
  border-color: var(--lux-gold);
  box-shadow: 0 24px 48px rgba(119,86,28,.32);
}

.btn-light {
  color: var(--lux-black);
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.8);
}

.btn-outline-primary,
.btn-outline-danger,
.btn-outline-light {
  border-color: rgba(201,164,93,.65);
  color: var(--lux-gold);
  background: rgba(7,16,24,.05);
}

.btn-outline-primary:hover,
.btn-outline-danger:hover,
.btn-outline-light:hover {
  color: var(--lux-black);
  background: var(--lux-gold);
  border-color: var(--lux-gold);
}

.btn-danger {
  background: linear-gradient(135deg, #a63b36, #6f211f);
  border-color: #8f2d2b;
}

.hero {
  min-height: 760px;
  background: var(--lux-black);
}

.hero::before {
  height: 260px;
  background:
          linear-gradient(180deg, transparent, rgba(7,16,24,.2) 24%, var(--lux-paper));
}

.hero-media::after {
  background:
          linear-gradient(90deg, rgba(4,10,15,.92), rgba(7,16,24,.7) 44%, rgba(7,16,24,.26)),
          linear-gradient(180deg, rgba(7,16,24,.12), rgba(7,16,24,.7)),
          radial-gradient(circle at 78% 30%, rgba(201,164,93,.18), transparent 34%);
}

.hero-media img {
  filter: saturate(.96) contrast(1.08) brightness(.88);
}

.hero-content {
  max-width: 830px;
}

.eyebrow {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .17em;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.hero h1 {
  max-width: 900px;
  font-size: 35px;
  line-height: .94;
  text-shadow: 0 28px 80px rgba(0,0,0,.48);
}

.hero p {
  max-width: 690px;
  color: rgba(255,255,255,.82);
}

.hero-trust span {
  color: rgba(255,255,255,.88);
  border-color: rgba(234,216,178,.28);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.content-block h2,
.request-panel h2,
.narrow h2 {
  font-size: 3.05rem;
  color: var(--lux-ink);
}

.service-card,
.article-card,
.info-panel,
.request-panel,
.contact-card {
  background:
          linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,252,246,.94));
  border: 1px solid rgba(201,164,93,.18);
  border-radius: 4px;
  box-shadow: 0 22px 60px rgba(7,16,24,.1);
}

.service-card {
  border-top: 1px solid rgba(201,164,93,.45);
}

.service-card::after,
.request-panel::after,
.contact-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,93,.7), transparent);
}

.service-card:hover,
.article-card:hover,
.info-panel:hover,
.request-panel:hover,
.contact-card:hover {
  transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 34px 90px rgba(7,16,24,.18);
  border-color: rgba(201,164,93,.38);
}

.service-card h3 a,
.article-card h3 a {
  color: var(--lux-ink);
}

.text-link {
  color: #8a682d;
}

.local-band {
  background:
          linear-gradient(135deg, #111d27, #1b2a36 52%, #223343);
  border-block: 1px solid rgba(201,164,93,.24);
  color: #fff;
}

.local-band h2,
.local-band .section-heading h2 {
  color: #fff;
}

.local-band p {
  color: rgba(255,255,255,.74);
}

.check-grid span {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06);
  border-color: rgba(234,216,178,.2);
}

.rounded-media {
  border-radius: 4px;
  border: 1px solid rgba(201,164,93,.22);
  box-shadow: 0 38px 110px rgba(7,16,24,.2);
}

.form-control,
.form-select {
  border-radius: 4px;
  background: #fffdfa;
}

.accordion {
  border: 1px solid rgba(201,164,93,.18);
  border-radius: 4px;
}

.accordion-button:not(.collapsed) {
  color: var(--lux-black);
  background: linear-gradient(90deg, #f5ead0, #fffdfa);
}

.cta-band {
  background:
          linear-gradient(135deg, rgba(7,16,24,.97), rgba(18,51,76,.94)),
          var(--lux-black);
  border-block: 1px solid rgba(201,164,93,.22);
}

.cta-band::after {
  background:
          linear-gradient(115deg, transparent 0 42%, rgba(201,164,93,.1) 42% 43%, transparent 43%),
          radial-gradient(circle at 88% 42%, rgba(201,164,93,.18), transparent 32%);
}

.article-card img {
  filter: saturate(.95) contrast(1.04);
}

.site-footer {
  background:
          linear-gradient(135deg, #050b10, #101d28 58%, #172636);
  border-top: 1px solid rgba(201,164,93,.24);
}

.footer-cta {
  border-radius: 4px;
  border-color: rgba(201,164,93,.28);
  background:
          linear-gradient(135deg, rgba(255,255,255,.08), rgba(201,164,93,.08));
}

.mobile-sticky-cta a {
  background: #7d2925;
}

.mobile-sticky-cta a + a {
  color: var(--lux-black);
  background: var(--lux-gold);
}

@media (max-width: 1199px) {
  .hero h1 {
    font-size: 4.2rem;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .section-heading h2,
  .content-block h2,
  .cta-band h2,
  .footer-cta h2,
  .request-panel h2,
  .narrow h2 {
    font-size: 2.15rem;
  }
}
