@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --brand-blue: #3c6ea9;
  --brand-blue-deep: #29547f;
  --brand-blue-dark: #12314f;
  --brand-red: #cf3341;
  --brand-red-deep: #b82735;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --surface-mist: rgba(255, 255, 255, 0.78);
  --text: #17324d;
  --text-soft: #60758a;
  --line: rgba(18, 49, 79, 0.12);
  --line-strong: rgba(18, 49, 79, 0.2);
  --shadow-lg: 0 22px 50px rgba(10, 31, 53, 0.12);
  --shadow-xl: 0 34px 90px rgba(10, 31, 53, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(207, 51, 65, 0.13), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(60, 110, 169, 0.16), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fa 50%, #f7fafc 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  min-width: 320px;
  min-height: 320px;
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
  z-index: -2;
  animation: float-aura 18s ease-in-out infinite alternate;
}

body::before {
  top: -10vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(60, 110, 169, 0.24) 0%, rgba(60, 110, 169, 0) 70%);
}

body::after {
  bottom: -14vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(207, 51, 65, 0.2) 0%, rgba(207, 51, 65, 0) 72%);
  animation-duration: 22s;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container-xxl {
  width: min(100% - 2rem, 1380px);
  margin-inline: auto;
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--gutter-y) * -1);
  margin-inline: calc(var(--gutter-x) / -2);
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-inline: calc(var(--gutter-x) / 2);
  margin-top: var(--gutter-y);
}

.g-3 {
  --gutter-x: 1rem;
  --gutter-y: 1rem;
}

.g-4 {
  --gutter-x: 1.5rem;
  --gutter-y: 1.5rem;
}

.gap-2 {
  gap: 0.75rem;
}

.gap-3 {
  gap: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.pt-0 {
  padding-top: 0;
}

.pb-3 {
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-sm-row,
.flex-lg-row {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-lg-end {
  justify-content: flex-start;
}

.position-relative {
  position: relative;
}

.h-100 {
  height: 100%;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 32;
}

.ms-auto {
  margin-left: auto;
}

.collapse:not(.show) {
  display: none;
}

.collapse.show {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-collapse {
  width: 100%;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.navbar-toggler-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.accordion-button::after {
  content: "+";
  margin-left: auto;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-red);
}

.accordion-button:not(.collapsed)::after {
  content: "−";
}

.col-12 {
  width: 100%;
}

.site-app {
  position: relative;
  overflow: clip;
}

.utility-bar {
  position: relative;
  z-index: 20;
  padding: 0.8rem 0;
  color: #fff;
  background: linear-gradient(90deg, #10304d 0%, #29547f 58%, #3c6ea9 100%);
}

.utility-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.utility-copy strong {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.utility-copy span {
  color: rgba(255, 255, 255, 0.82);
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header {
  z-index: 30;
}

.site-navbar {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2818,49,79,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(18, 49, 79, 0.08);
  box-shadow: 0 18px 50px rgba(10, 31, 53, 0.08);
  backdrop-filter: blur(18px);
}

.site-navbar .container-xxl {
  align-items: center;
}

.site-navbar .navbar-toggler {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(18, 49, 79, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.site-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1.2rem;
}

.site-brand__logo {
  width: auto;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(18, 49, 79, 0.16));
}

.site-brand__text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.site-brand__text strong {
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: var(--brand-blue-dark);
}

.site-brand__text small {
  color: var(--brand-red);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-navbar .nav-link {
  padding: 0.72rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--brand-blue-dark);
  font-weight: 800;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus-visible {
  color: var(--brand-blue-dark);
  background: rgba(60, 110, 169, 0.08);
  transform: translateY(-1px);
}

.btn {
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.86rem 1.4rem;
  border-width: 1px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1rem 1.55rem;
  font-size: 1rem;
}

.btn-brand-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-red-deep) 0%, var(--brand-red) 100%);
  box-shadow: 0 18px 34px rgba(184, 39, 53, 0.22);
}

.btn-brand-primary:hover,
.btn-brand-primary:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ab2431 0%, #d73d4b 100%);
}

.btn-brand-outline {
  color: var(--brand-blue-dark);
  border-color: rgba(18, 49, 79, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.btn-brand-outline:hover,
.btn-brand-outline:focus-visible {
  color: var(--brand-blue-dark);
  border-color: rgba(18, 49, 79, 0.18);
  background: rgba(255, 255, 255, 1);
}

.btn-brand-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.btn-brand-light:hover,
.btn-brand-light:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.btn-brand-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

.btn-brand-outline-light:hover,
.btn-brand-outline-light:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.site-main {
  position: relative;
}

.hero-section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4.5rem, 8vw, 7rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 45, 72, 0.96) 0%, rgba(41, 84, 127, 0.96) 45%, rgba(60, 110, 169, 0.94) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(125deg, transparent 0 60%, rgba(207, 51, 65, 0.2) 60%, rgba(207, 51, 65, 0.1) 100%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--brand-red) 0%, #ea5563 50%, rgba(255, 255, 255, 0.65) 100%);
}

.hero-section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-section__glow--one {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.hero-section__glow--two {
  width: 220px;
  height: 220px;
  bottom: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(207, 51, 65, 0.2), rgba(207, 51, 65, 0));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--brand-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(60, 110, 169, 0.08);
  border: 1px solid rgba(60, 110, 169, 0.14);
}

.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 6px rgba(207, 51, 65, 0.14);
}

.hero-section .section-kicker,
.section-intro--light .section-kicker,
.cta-banner .section-kicker {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-section .section-kicker::before,
.section-intro--light .section-kicker::before,
.cta-banner .section-kicker::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.hero-title,
.section-intro h2,
.cta-banner h2,
.footer-card--brand h2 {
  margin: 1.25rem 0 1rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.045em;
}

.hero-title {
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: 0.94;
  max-width: 11ch;
}

.hero-copy p {
  margin: 0 0 1rem;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.badge-link,
.area-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
}

.badge-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.badge-link:hover,
.badge-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.signal-card,
.info-chip,
.info-card,
.service-card,
.value-card,
.gallery-card,
.cta-card,
.related-card,
.footer-card,
.highlight-strip {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.signal-card,
.info-chip {
  height: 100%;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.signal-card span,
.info-chip span {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffdce0;
}

.signal-card strong,
.info-chip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.hero-visual-shell {
  position: relative;
}

.hero-media-card,
.mini-media-card,
.gallery-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #10263d;
}

.hero-media-card {
  min-height: 640px;
}

.hero-media-card img,
.mini-media-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-card img {
  min-height: 640px;
}

.mini-media-card {
  min-height: 308px;
}

.mini-media-card img {
  min-height: 308px;
}

.media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-blue-dark);
  box-shadow: 0 18px 40px rgba(10, 31, 53, 0.14);
  backdrop-filter: blur(18px);
}

.media-caption--dark {
  background: rgba(7, 19, 31, 0.7);
  color: #fff;
}

.media-caption strong {
  font-size: 1rem;
}

.media-caption span {
  color: inherit;
  opacity: 0.84;
  font-size: 0.92rem;
  line-height: 1.5;
}

.content-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(238, 244, 251, 0.92) 100%);
}

.section-gallery {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 251, 255, 1) 100%);
}

.section-accent {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 49, 79, 0.98) 0%, rgba(41, 84, 127, 0.96) 52%, rgba(60, 110, 169, 0.95) 100%);
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(130deg, transparent 0 58%, rgba(207, 51, 65, 0.16) 58%, rgba(207, 51, 65, 0.08) 100%);
  pointer-events: none;
}

.section-intro {
  position: relative;
  z-index: 1;
  max-width: 62ch;
  margin-bottom: 2rem;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  color: var(--brand-blue-dark);
}

.section-intro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.section-intro--light h2,
.section-intro--light p,
.section-accent .value-card h3,
.section-accent .value-card p {
  color: #fff;
}

.section-intro--light p,
.section-accent .value-card p {
  opacity: 0.84;
}

.section-intro--split {
  margin-top: 4rem;
}

.info-card,
.service-card,
.value-card,
.cta-card,
.related-card {
  height: 100%;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover,
.service-card:hover,
.value-card:hover,
.cta-card:hover,
.related-card:hover,
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  border-color: var(--line-strong);
}

.info-card--location,
.info-card--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 245, 252, 0.95) 100%);
}

.info-card h3,
.service-card h3,
.value-card h3,
.cta-card h3,
.related-card h3,
.footer-card h3 {
  margin: 0 0 0.9rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--brand-blue-dark);
}

.info-card p,
.service-card p,
.value-card p,
.cta-card p,
.related-card p,
.footer-card p {
  margin: 0;
  color: var(--text-soft);
}

.clean-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 6px rgba(207, 51, 65, 0.1);
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
}

.service-card__index,
.value-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(60, 110, 169, 0.14), rgba(207, 51, 65, 0.18));
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.value-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.value-card--glass {
  background: rgba(255, 255, 255, 0.08);
}

.value-card__badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.area-pill {
  color: var(--brand-blue-dark);
  background: rgba(60, 110, 169, 0.08);
  border: 1px solid rgba(60, 110, 169, 0.12);
}

.gallery-card--feature {
  min-height: 360px;
}

.gallery-card--tall {
  min-height: 410px;
}

.gallery-card--wide {
  min-height: 260px;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(18, 49, 79, 0.08);
  background: linear-gradient(135deg, rgba(60, 110, 169, 0.1), rgba(207, 51, 65, 0.08));
}

.highlight-strip__item {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
}

.highlight-strip__item strong {
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-strip__item span {
  color: var(--text);
}

.faq-accordion .accordion-item {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: 1rem;
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.35rem 1.45rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
  border: 0;
  text-align: left;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue-dark);
  background: rgba(238, 244, 251, 0.98);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 1.45rem 1.4rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.95);
}

.sticky-stack {
  position: sticky;
  top: 7rem;
}

.cta-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 253, 0.96) 100%);
}

.related-card {
  display: grid;
  gap: 0.7rem;
}

.related-card span {
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(207, 51, 65, 0.98) 0%, rgba(184, 39, 53, 0.98) 38%, rgba(41, 84, 127, 0.98) 100%);
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner h2 {
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.98;
}

.cta-banner p {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  position: relative;
  padding: 2rem 0 7rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 49, 79, 0.98) 0%, rgba(10, 28, 45, 0.99) 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 68%, rgba(207, 51, 65, 0.16) 68%, rgba(207, 51, 65, 0.08) 100%);
  pointer-events: none;
}

.footer-card {
  height: 100%;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.footer-card--brand {
  display: grid;
  gap: 0.75rem;
}

.footer-card--brand img {
  width: auto;
  height: 72px;
}

.footer-card--brand h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.footer-card h3 {
  color: #fff;
}

.footer-card p,
.footer-card li {
  color: rgba(255, 255, 255, 0.82);
}

.clean-list--footer li {
  color: rgba(255, 255, 255, 0.82);
}

.clean-list--footer li::before {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}

.floating-contact .btn {
  box-shadow: 0 20px 44px rgba(184, 39, 53, 0.26);
}

@keyframes float-aura {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(2vw, -2vw, 0) scale(1.08);
  }
}

@media (max-width: 991.98px) {
  .site-brand__logo {
    height: 56px;
  }

  .site-navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 49, 79, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .hero-media-card,
  .hero-media-card img {
    min-height: 520px;
  }

  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .sticky-stack {
    position: static;
  }

  .floating-contact {
    right: 0.75rem;
    left: 0.75rem;
  }

  .floating-contact .btn {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row;
  }

  .d-sm-flex {
    display: flex;
  }

  .col-sm-6 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    width: 33.333333%;
  }

  .col-md-5 {
    width: 41.666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.333333%;
  }

  .col-md-8 {
    width: 66.666667%;
  }
}

@media (max-width: 767.98px) {
  .utility-bar {
    padding: 0.9rem 0;
  }

  .utility-copy {
    display: grid;
    gap: 0.35rem;
  }

  .site-brand {
    gap: 0.75rem;
    max-width: calc(100% - 70px);
  }

  .site-brand__logo {
    height: 48px;
  }

  .site-brand__text small {
    font-size: 0.75rem;
  }

  .hero-section {
    padding-top: 2.75rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
    max-width: none;
  }

  .hero-media-card,
  .hero-media-card img {
    min-height: 420px;
  }

  .mini-media-card,
  .mini-media-card img,
  .gallery-card--feature,
  .gallery-card--tall,
  .gallery-card--wide {
    min-height: 260px;
  }

  .media-caption {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.95rem;
  }

  .section-intro h2,
  .cta-banner h2 {
    line-height: 1.02;
  }

  .btn-lg {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    justify-content: flex-end;
    width: auto;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .flex-lg-row {
    flex-direction: row;
  }

  .d-lg-grid {
    display: grid;
  }

  .align-items-lg-center {
    align-items: center;
  }

  .justify-content-lg-end {
    justify-content: flex-end;
  }

  .gap-lg-2 {
    gap: 0.75rem;
  }

  .pb-lg-0 {
    padding-bottom: 0;
  }

  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .ms-lg-3 {
    margin-left: 1rem;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.333333%;
  }

  .col-lg-5 {
    width: 41.666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }

  .col-lg-8 {
    width: 66.666667%;
  }
}

@media (min-width: 1200px) {
  .g-xl-5 {
    --gutter-x: 3rem;
    --gutter-y: 3rem;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.333333%;
  }

  .col-xl-8 {
    width: 66.666667%;
  }
}

@media (max-width: 575.98px) {
  .site-navbar {
    padding: 0.8rem 0;
  }

  .section-kicker {
    font-size: 0.74rem;
  }

  .content-section {
    padding: 4rem 0;
  }

  .cta-banner {
    padding: 1.7rem;
  }
}
