:root {
  --bg: #f4f8ff;
  --bg-alt: #ebf2fd;
  --surface: #ffffff;
  --surface-soft: #f6fbff;
  --text: #183153;
  --muted: #58708f;
  --line: #d1e1f2;
  --brand: #2a72d5;
  --brand-strong: #1f54b8;
  --brand-soft: #e5f0ff;
  --brand-teal: #2e97b3;
  --accent: #7fb8ff;
  --accent-soft: #cde6ff;
  --accent-mint: #d8f4ee;
  --accent-warm: #ffe8cf;
  --success: #329176;
  --shadow-sm: 0 11px 30px rgba(26, 54, 90, 0.09);
  --shadow-md: 0 26px 62px rgba(24, 53, 88, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 102% -10%, rgba(109, 169, 255, 0.4) 0%, transparent 34%),
    radial-gradient(circle at -10% 18%, rgba(103, 203, 218, 0.28) 0%, transparent 32%),
    radial-gradient(circle at 20% 110%, rgba(255, 223, 186, 0.28) 0%, transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(75, 152, 234, 0.45);
  outline-offset: 2px;
}

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

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--surface);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(246, 250, 255, 0.9);
  border-bottom: 1px solid rgba(209, 225, 242, 0.86);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #2a72d5, #2e97b3 58%, #85c4ff);
  box-shadow: 0 13px 26px rgba(42, 114, 213, 0.34);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--brand), var(--brand-teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(132deg, var(--brand), var(--brand-strong) 52%, var(--brand-teal));
  color: #fff;
  box-shadow: 0 14px 28px rgba(42, 114, 213, 0.33);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(42, 114, 213, 0.4);
}

.button-secondary {
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  color: var(--text);
  border-color: rgba(198, 218, 240, 0.95);
  box-shadow: 0 8px 22px rgba(42, 114, 213, 0.08);
}

.button-secondary:hover {
  background: linear-gradient(180deg, #ffffff, #eef6ff);
}

.hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.kicker {
  margin: 0 0 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  background: linear-gradient(145deg, #ffffff, #e9f4ff 48%, #ecfbff);
  border: 1px solid rgba(199, 220, 243, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-panel::before {
  width: 300px;
  aspect-ratio: 1;
  right: -80px;
  top: -130px;
  background: radial-gradient(circle, rgba(122, 182, 255, 0.48), transparent 65%);
}

.hero-panel::after {
  width: 180px;
  aspect-ratio: 1;
  left: -60px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(46, 151, 179, 0.24), transparent 70%);
}

.panel-content {
  position: relative;
  z-index: 2;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.badge {
  border-radius: 12px;
  padding: 0.8rem;
  background: linear-gradient(160deg, #ffffff, #f2f9ff);
  border: 1px solid rgba(207, 224, 244, 0.95);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.badge:nth-child(2n) {
  background: linear-gradient(160deg, #ffffff, #eefcff);
}

.hero-photo {
  margin: 0 0 1rem;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(182, 210, 238, 0.95);
  box-shadow: 0 22px 44px rgba(22, 54, 91, 0.2);
  isolation: isolate;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 30, 52, 0.02), rgba(12, 30, 52, 0.36));
  z-index: 1;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  object-position: center 42%;
}

.stats-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat {
  background: linear-gradient(180deg, #ffffff, #f4faff);
  border: 1px solid rgba(207, 223, 243, 0.95);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(33, 71, 109, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-strong);
}

.stat span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: clamp(3rem, 7vw, 5.6rem) 0;
}

.section-alt {
  background:
    radial-gradient(circle at 10% 40%, rgba(124, 183, 255, 0.1), transparent 42%),
    radial-gradient(circle at 90% 70%, rgba(107, 206, 217, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(234, 244, 255, 0.82), rgba(246, 251, 255, 0.82));
  border-top: 1px solid rgba(205, 223, 243, 0.72);
  border-bottom: 1px solid rgba(205, 223, 243, 0.72);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.media-frame {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(201, 221, 243, 0.95);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.media-caption {
  margin: 0;
  padding: 0.8rem 0.9rem;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.86rem;
}

.community-pride {
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 220, 170, 0.2), transparent 35%),
    radial-gradient(circle at 90% 84%, rgba(118, 195, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #f8fbff, #eef6ff);
  border: 1px solid rgba(199, 220, 244, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.35rem, 2.8vw, 2.1rem);
}

.pride-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.pride-quote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  border: 1px solid rgba(198, 220, 243, 0.92);
  color: #3d5f86;
  font-weight: 600;
}

.pride-quote strong {
  color: var(--brand-strong);
}

.gallery-shell {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 220, 244, 0.86);
  background:
    radial-gradient(circle at 90% 10%, rgba(116, 190, 255, 0.16), transparent 36%),
    radial-gradient(circle at 12% 85%, rgba(255, 216, 161, 0.16), transparent 32%),
    #f7fbff;
  padding: clamp(1.1rem, 2.3vw, 1.5rem);
  box-shadow: var(--shadow-sm);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gallery-chip {
  border: 1px solid rgba(193, 216, 241, 0.95);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
  color: #4a6a90;
  font-size: 0.8rem;
  font-weight: 700;
}

.gallery-grid-pro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(193, 218, 243, 0.95);
  box-shadow: 0 14px 34px rgba(22, 57, 96, 0.15);
  isolation: isolate;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 34, 56, 0.02), rgba(17, 34, 56, 0.6));
  z-index: 1;
}

.gallery-tile:hover img {
  transform: scale(1.05);
}

.gallery-tile figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.75rem;
  margin: 0;
  color: #f8fbff;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.gallery-tile--lg {
  grid-column: span 6;
  min-height: 320px;
}

.gallery-tile--md {
  grid-column: span 4;
}

.gallery-tile--sm {
  grid-column: span 3;
  min-height: 180px;
}

.card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(207, 224, 244, 0.96);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #96c4ff, #56a2d8, #5ec9a6);
  opacity: 0.7;
  transition: opacity 0.22s ease, transform 0.26s ease;
  transform: scaleX(0.3);
  transform-origin: left;
}

.card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.card:hover {
  --lift-y: -3px;
  box-shadow: 0 22px 48px rgba(24, 61, 101, 0.14);
  border-color: rgba(169, 201, 237, 0.95);
}

.card h3 {
  margin: 0.2rem 0 0.7rem;
  font-size: 1.17rem;
  line-height: 1.2;
}

.card-thumb {
  margin: -1.35rem -1.35rem 0.95rem;
  border-bottom: 1px solid rgba(207, 224, 244, 0.9);
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-thumb img {
  transform: scale(1.04);
}

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

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #2e97b3, #2a72d5);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 22px rgba(42, 114, 213, 0.24);
}

.grid-3 .card:nth-child(3n + 1) .icon-chip {
  background: linear-gradient(145deg, #2a72d5, #6caef6);
}

.grid-3 .card:nth-child(3n + 2) .icon-chip {
  background: linear-gradient(145deg, #2e97b3, #61c9c3);
}

.grid-3 .card:nth-child(3n) .icon-chip {
  background: linear-gradient(145deg, #2a72d5, #2e97b3);
}

.list-clean {
  margin: 0;
  padding-left: 1.1rem;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process .card {
  padding-top: 1.8rem;
}

.process .card h3::before {
  counter-increment: step;
  content: "0" counter(step) " · ";
  color: var(--brand-strong);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
}

.trust-band {
  margin-top: 1.35rem;
  background: linear-gradient(180deg, #ffffff, #f4faff);
  border: 1px solid rgba(198, 217, 239, 0.95);
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pill {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 214, 240, 0.95);
  background: linear-gradient(180deg, #ffffff, #ecf7ff);
  color: #476789;
  font-weight: 700;
  font-size: 0.82rem;
}

.cta-block {
  background:
    radial-gradient(circle at 90% 20%, rgba(123, 184, 255, 0.27), transparent 35%),
    radial-gradient(circle at 12% 95%, rgba(255, 221, 176, 0.26), transparent 33%),
    linear-gradient(135deg, #e7f2ff, #f6fbff 58%, #ebfdf9);
  border: 1px solid rgba(157, 195, 236, 0.62);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cta-block h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-family: "Newsreader", "Iowan Old Style", serif;
}

.cta-block p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: clamp(2.8rem, 6vw, 5rem) 0 2rem;
  position: relative;
}

.page-hero .container {
  position: relative;
}

.page-hero .container::before {
  content: "";
  position: absolute;
  right: min(2vw, 16px);
  top: clamp(-8px, -1.5vw, -16px);
  width: clamp(150px, 20vw, 220px);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 114, 213, 0), rgba(42, 114, 213, 0.35), rgba(46, 151, 179, 0.4));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 205, 236, 0.8), transparent);
}

.page-hero h1 {
  margin: 0;
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.page-hero p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

form {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(201, 221, 243, 0.96);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(42, 114, 213, 0.22);
  border-color: var(--brand);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 2.4rem 0 2rem;
  border-top: 1px solid rgba(202, 220, 242, 0.9);
  background:
    radial-gradient(circle at 100% 0%, rgba(109, 169, 255, 0.08), transparent 45%),
    rgba(248, 252, 255, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--brand-strong);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-panel::before {
    animation: drift-glow 12s ease-in-out infinite alternate;
  }

  .hero-panel::after {
    animation: drift-glow 10s ease-in-out infinite alternate-reverse;
  }
}

@keyframes drift-glow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate(-12px, 10px) scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .cta-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .process,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-tile--lg,
  .gallery-tile--md,
  .gallery-tile--sm {
    grid-column: auto;
    min-height: 240px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-nav {
    position: fixed;
    inset: 84px 1rem auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(194, 215, 240, 0.95);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-actions .button-secondary {
    display: none;
  }

  .grid-3,
  .grid-2,
  .media-grid,
  .media-grid-2,
  .pride-grid,
  .process,
  .stats-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid-pro {
    grid-template-columns: 1fr;
  }

  .gallery-tile--lg,
  .gallery-tile--md,
  .gallery-tile--sm {
    min-height: 220px;
  }

  .container {
    width: min(var(--max), calc(100% - 1.45rem));
  }

  .hero {
    padding-top: 2.5rem;
  }
}

/* Premium polish and interaction pass */
body {
  position: relative;
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}

body::before {
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(124, 188, 255, 0.3), transparent 70%);
  animation: drift-aura 18s ease-in-out infinite alternate;
}

body::after {
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 209, 150, 0.24), transparent 70%);
  animation: drift-aura 22s ease-in-out infinite alternate-reverse;
}

@keyframes drift-aura {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, -20px);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}

.scroll-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(var(--progress, 0));
  background: linear-gradient(90deg, #2a72d5, #2e97b3, #6cc8e1);
  box-shadow: 0 8px 20px rgba(42, 114, 213, 0.3);
}

.site-header,
.header-inner {
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(182, 208, 236, 0.9);
  box-shadow: 0 14px 34px rgba(19, 47, 83, 0.1);
}

.site-header.is-scrolled .header-inner {
  min-height: 74px;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  transform: translateX(-140%);
  transition: transform 0.4s ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.section-tight {
  padding: clamp(1.35rem, 3vw, 2.4rem) 0;
}

.confidence-ribbon {
  border: 1px solid rgba(178, 207, 238, 0.92);
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(234, 246, 255, 0.94), rgba(233, 251, 246, 0.9));
  box-shadow: 0 18px 32px rgba(25, 55, 91, 0.09);
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.confidence-line {
  margin: 0;
  font-weight: 720;
  letter-spacing: 0.01em;
  color: #2f527b;
}

.confidence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.confidence-tags span {
  border-radius: 999px;
  border: 1px solid rgba(173, 204, 238, 0.9);
  background: linear-gradient(180deg, #ffffff, #eef8ff);
  color: #48698f;
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.68rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.outcome-card {
  border: 1px solid rgba(191, 217, 244, 0.94);
  border-radius: 24px;
  background: linear-gradient(170deg, #ffffff, #eef7ff 55%, #f2fcf9);
  box-shadow: 0 18px 40px rgba(21, 53, 92, 0.12);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 189, 255, 0.22), transparent 70%);
}

.outcome-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #47709b;
  font-weight: 800;
}

.outcome-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  line-height: 1.24;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.journey-step {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  padding: 1.2rem;
  border: 1px solid rgba(173, 203, 235, 0.95);
  box-shadow: 0 18px 40px rgba(20, 51, 87, 0.15);
  color: #f9fcff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.journey-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(16, 34, 56, 0.03), rgba(16, 34, 56, 0.78)), var(--step-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.5s ease;
}

.journey-step:hover::before {
  transform: scale(1.05);
}

.journey-step > * {
  position: relative;
  z-index: 1;
}

.journey-tag {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  opacity: 0.9;
}

.journey-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.journey-step p {
  margin: 0;
  color: rgba(244, 250, 255, 0.9);
}

.gallery-overview {
  border: 1px solid rgba(189, 216, 242, 0.92);
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, #ffffff, #edf7ff 58%, #ecfcf8);
  box-shadow: 0 20px 40px rgba(20, 55, 94, 0.11);
  padding: clamp(1.2rem, 2.6vw, 1.9rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.gallery-overview h2 {
  margin: 0 0 0.5rem;
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.12;
}

.gallery-overview p {
  margin: 0;
  color: var(--muted);
}

.gallery-overview-stats {
  display: grid;
  gap: 0.6rem;
}

.gallery-overview-stats > div {
  border: 1px solid rgba(185, 212, 241, 0.94);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f2f9ff);
  padding: 0.85rem 0.95rem;
  box-shadow: 0 12px 24px rgba(24, 57, 91, 0.08);
}

.gallery-overview-stats strong {
  display: block;
  color: var(--brand-strong);
  font-size: 1.35rem;
  font-weight: 820;
}

.gallery-overview-stats span {
  color: #507297;
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-toolbar {
  gap: 0.58rem;
}

.gallery-chip {
  appearance: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gallery-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(30, 67, 106, 0.12);
}

.gallery-chip.is-active {
  color: #ffffff;
  border-color: rgba(46, 130, 193, 0.9);
  background: linear-gradient(125deg, #2a72d5, #2e97b3);
  box-shadow: 0 12px 24px rgba(30, 83, 150, 0.3);
}

.gallery-tile {
  cursor: zoom-in;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(21, 56, 95, 0.18);
}

.gallery-tile:focus-visible {
  outline: 3px solid rgba(62, 145, 230, 0.5);
  outline-offset: 2px;
}

.gallery-tile.is-hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(13, 27, 45, 0.82);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  padding: 1rem;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__dialog {
  width: min(980px, 94vw);
  border-radius: 20px;
  border: 1px solid rgba(171, 198, 228, 0.4);
  background: rgba(6, 18, 34, 0.86);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.lightbox__img {
  width: 100%;
  max-height: min(74vh, 720px);
  object-fit: cover;
}

.lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.lightbox__caption {
  color: #ecf4ff;
  font-weight: 700;
  line-height: 1.4;
}

.lightbox__close {
  appearance: none;
  border: 1px solid rgba(172, 205, 238, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #f0f7ff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  cursor: pointer;
}

.quick-contact-bar {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 110;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(176, 204, 233, 0.92);
  box-shadow: 0 14px 34px rgba(19, 47, 83, 0.2);
  border-radius: 14px;
  display: none;
  gap: 0.55rem;
  padding: 0.45rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact-bar a {
  flex: 1;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 780;
  text-align: center;
  padding: 0.7rem 0.5rem;
}

.quick-contact-bar a:first-child {
  background: linear-gradient(140deg, #2a72d5, #2e97b3);
  color: #fff;
}

.quick-contact-bar a:last-child {
  background: #eef6ff;
  color: #214d87;
  border: 1px solid rgba(174, 205, 236, 0.92);
}

.quick-contact-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1080px) {
  .outcome-grid,
  .journey-grid,
  .gallery-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .confidence-ribbon {
    border-radius: 22px;
  }

  .quick-contact-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body {
    padding-bottom: 5.8rem;
  }
}

/* Ultra premium refinement */
:root {
  --shadow-luxe: 0 24px 55px rgba(15, 45, 82, 0.16);
  --shadow-float: 0 16px 36px rgba(24, 56, 95, 0.12);
  --line-soft: rgba(183, 209, 237, 0.84);
}

::selection {
  background: rgba(100, 167, 244, 0.22);
  color: #143d73;
}

body {
  line-height: 1.66;
  letter-spacing: 0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  filter: blur(0);
  opacity: 0.95;
}

.container {
  width: min(var(--max), calc(100% - 2.6rem));
}

.site-header {
  background: transparent;
  border-bottom: 0;
  padding: 0.55rem 0 0.45rem;
  backdrop-filter: none;
}

.header-inner {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(183, 210, 237, 0.88);
  border-radius: 22px;
  padding: 0.6rem 0.95rem;
  box-shadow: 0 18px 44px rgba(22, 57, 95, 0.1);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .header-inner {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 48px rgba(20, 53, 89, 0.14);
}

.brand-name {
  letter-spacing: -0.015em;
}

.site-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-nav a::after {
  height: 3px;
  bottom: -8px;
}

.button {
  font-weight: 760;
  letter-spacing: 0.02em;
  padding: 0.82rem 1.3rem;
}

.button-primary {
  background: linear-gradient(126deg, #2a72d5 0%, #225fca 34%, #2e97b3 100%);
  border: 1px solid rgba(37, 107, 188, 0.58);
}

.button-secondary {
  border-color: rgba(178, 206, 236, 0.95);
}

.hero {
  padding: clamp(3.8rem, 8vw, 7.8rem) 0 4.4rem;
}

.hero-grid {
  gap: clamp(1.5rem, 3.5vw, 3rem);
}

.hero h1 {
  font-size: clamp(2.25rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero p {
  max-width: 60ch;
}

.hero-panel {
  border-radius: 34px;
  border: 1px solid rgba(178, 207, 236, 0.92);
  box-shadow: var(--shadow-luxe);
}

.stat {
  border-radius: 18px;
}

.section {
  position: relative;
}

.section-head {
  margin-bottom: 2.2rem;
}

.section-head h2 {
  text-wrap: balance;
}

.section-head p {
  font-size: 1.02rem;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  border-radius: 999px;
  margin-top: 0.58rem;
  background: linear-gradient(90deg, rgba(42, 114, 213, 0.9), rgba(46, 151, 179, 0.45), rgba(46, 151, 179, 0));
}

.media-frame,
.card,
.outcome-card,
.signature-card,
.gallery-overview,
.gallery-shell,
.community-pride,
.cta-block {
  box-shadow: var(--shadow-float);
}

.card {
  border-color: var(--line-soft);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 255, 0.95));
}

.card:hover {
  box-shadow: var(--shadow-luxe);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.icon-chip {
  border-radius: 14px;
}

.process .card {
  padding-top: 2rem;
}

.trust-band {
  border-radius: 22px;
}

.cta-block {
  border-radius: 32px;
  border-color: rgba(166, 201, 237, 0.86);
}

.page-hero {
  padding: clamp(3.1rem, 6vw, 5.4rem) 0 2.35rem;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.6rem);
  text-wrap: balance;
}

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

.gallery-shell {
  border-radius: 36px;
}

.gallery-grid-pro {
  gap: 1rem;
}

.gallery-tile {
  border-radius: 22px;
  border: 1px solid rgba(178, 207, 238, 0.94);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  z-index: 2;
  transform: translateX(-140%);
  transition: transform 0.45s ease;
}

.gallery-tile:hover::before {
  transform: translateX(120%);
}

.gallery-tile figcaption {
  font-size: 0.93rem;
}

.outcome-card {
  border-radius: 26px;
  border-color: rgba(179, 208, 238, 0.92);
}

.journey-step {
  border-radius: 26px;
  border-color: rgba(171, 201, 234, 0.94);
}

.community-pride {
  border-radius: 34px;
}

.pride-grid--rich {
  grid-template-columns: 1.08fr 0.95fr 0.97fr;
  align-items: stretch;
}

.pride-copy {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.pride-title {
  margin: 0;
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  text-wrap: balance;
}

.pride-text {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.pride-photo-stack {
  position: relative;
  min-height: 260px;
}

.pride-photo {
  margin: 0;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(182, 209, 235, 0.95);
  box-shadow: var(--shadow-float);
}

.pride-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pride-photo--offset {
  position: absolute;
  width: 58%;
  height: 62%;
  right: -12px;
  bottom: -18px;
  border-radius: 18px;
  box-shadow: var(--shadow-luxe);
}

.pride-voices {
  display: grid;
  gap: 0.8rem;
}

.pride-quote {
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(24, 57, 91, 0.08);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.signature-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(177, 205, 236, 0.92);
  background: linear-gradient(150deg, #ffffff 8%, #eef7ff 60%, #eefbf6 100%);
  overflow: hidden;
  padding: 1.35rem;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.signature-card::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -56px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 190, 255, 0.24), transparent 72%);
}

.signature-card:hover {
  --lift-y: -5px;
  box-shadow: var(--shadow-luxe);
  border-color: rgba(156, 194, 233, 0.95);
}

.signature-card h3,
.signature-card p,
.signature-label {
  position: relative;
  z-index: 1;
}

.signature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.23rem;
  line-height: 1.28;
}

.signature-card p {
  margin: 0;
  color: var(--muted);
}

.signature-label {
  margin: 0 0 0.58rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b7198;
}

.hero-panel,
.cta-block,
.card,
.outcome-card,
.signature-card,
.stat,
.gallery-overview-stats > div {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift-y, 0));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.card:hover,
.outcome-card:hover {
  --lift-y: -4px;
}

.hero-panel:hover,
.cta-block:hover {
  --lift-y: -2px;
}

.gallery-overview {
  border-radius: 34px;
  border-color: rgba(177, 206, 237, 0.92);
}

.gallery-overview-stats > div {
  border-radius: 18px;
}

.lightbox__dialog {
  border-radius: 26px;
}

.site-footer {
  border-top-color: rgba(183, 209, 237, 0.9);
}

@media (max-width: 1080px) {
  .pride-grid--rich,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .pride-photo-stack {
    min-height: 360px;
  }

  .pride-photo--offset {
    width: 42%;
    height: 50%;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(var(--max), calc(100% - 1.3rem));
  }

  .site-header {
    padding-top: 0.42rem;
  }

  .header-inner {
    border-radius: 16px;
    min-height: 72px;
    padding: 0.52rem 0.72rem;
  }

  .site-nav {
    inset: 92px 0.72rem auto;
    border-radius: 16px;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section-head h2::after {
    width: 58px;
    height: 4px;
  }

  .community-pride,
  .gallery-shell,
  .gallery-overview,
  .cta-block {
    border-radius: 24px;
  }

  .pride-photo-stack {
    min-height: 260px;
  }
}

/* Ultra premium gallery page */
.page-gallery-ultra .gallery-luxe-hero {
  padding: clamp(2.8rem, 7vw, 5rem) 0 2.2rem;
}

.page-gallery-ultra .gallery-luxe-hero-panel {
  border-radius: 34px;
  border: 1px solid rgba(170, 201, 234, 0.92);
  background:
    radial-gradient(circle at 100% -10%, rgba(122, 190, 255, 0.34), transparent 46%),
    radial-gradient(circle at 0% 100%, rgba(255, 214, 158, 0.28), transparent 44%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.92) 58%, rgba(235, 252, 247, 0.9));
  box-shadow: 0 28px 58px rgba(19, 49, 84, 0.17);
  padding: clamp(1.2rem, 2.8vw, 2rem);
  position: relative;
  overflow: hidden;
}

.page-gallery-ultra .gallery-luxe-hero-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 178, 255, 0.25), transparent 72%);
}

.page-gallery-ultra .gallery-luxe-hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: clamp(1rem, 2.8vw, 2.2rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-gallery-ultra .gallery-luxe-title {
  margin: 0;
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(2rem, 4.8vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.page-gallery-ultra .gallery-luxe-lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  max-width: 58ch;
}

.page-gallery-ultra .gallery-luxe-metrics {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.page-gallery-ultra .gallery-luxe-metrics article {
  border: 1px solid rgba(172, 202, 233, 0.94);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 246, 255, 0.92));
  box-shadow: 0 14px 28px rgba(23, 55, 90, 0.09);
  padding: 0.78rem 0.85rem;
}

.page-gallery-ultra .gallery-luxe-metrics strong {
  display: block;
  font-size: 1.34rem;
  line-height: 1;
  color: #1f54b8;
}

.page-gallery-ultra .gallery-luxe-metrics span {
  color: #51759e;
  font-size: 0.8rem;
  font-weight: 700;
}

.page-gallery-ultra .gallery-luxe-media-stage {
  min-height: 420px;
  position: relative;
}

.page-gallery-ultra .gallery-luxe-media-main,
.page-gallery-ultra .gallery-luxe-media-float {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(176, 205, 236, 0.95);
  box-shadow: 0 18px 38px rgba(20, 50, 86, 0.18);
}

.page-gallery-ultra .gallery-luxe-media-main {
  height: 100%;
  min-height: 420px;
}

.page-gallery-ultra .gallery-luxe-media-main img,
.page-gallery-ultra .gallery-luxe-media-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gallery-ultra .gallery-luxe-media-float {
  position: absolute;
  width: 44%;
  height: 46%;
}

.page-gallery-ultra .gallery-luxe-media-float--one {
  top: -18px;
  right: -16px;
}

.page-gallery-ultra .gallery-luxe-media-float--two {
  left: -18px;
  bottom: -16px;
}

.page-gallery-ultra .gallery-luxe-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.page-gallery-ultra .gallery-luxe-collection-card {
  border: 1px solid rgba(176, 205, 235, 0.94);
  border-radius: 22px;
  background: linear-gradient(155deg, #ffffff, #eff8ff 62%, #eefcf8);
  box-shadow: 0 16px 34px rgba(24, 54, 90, 0.11);
  padding: 1.2rem;
}

.page-gallery-ultra .gallery-luxe-mini {
  margin: 0 0 0.55rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: #50759d;
}

.page-gallery-ultra .gallery-luxe-collection-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.page-gallery-ultra .gallery-luxe-collection-card p {
  margin: 0;
  color: var(--muted);
}

.page-gallery-ultra .gallery-luxe-shell {
  border-radius: 36px;
  border: 1px solid rgba(175, 205, 236, 0.93);
  background:
    radial-gradient(circle at 97% 7%, rgba(127, 194, 255, 0.19), transparent 38%),
    radial-gradient(circle at 8% 95%, rgba(255, 216, 161, 0.19), transparent 34%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.97), rgba(238, 247, 255, 0.95));
  box-shadow: 0 24px 54px rgba(19, 51, 89, 0.15);
  padding: clamp(1.1rem, 2.5vw, 1.8rem);
}

.page-gallery-ultra .gallery-luxe-toolbar {
  gap: 0.62rem;
  margin-bottom: 1.1rem;
}

.page-gallery-ultra .gallery-luxe-chip {
  border-color: rgba(170, 200, 233, 0.95);
  background: linear-gradient(180deg, #ffffff, #eff8ff);
  color: #436992;
  font-weight: 760;
}

.page-gallery-ultra .gallery-luxe-chip.is-active {
  background: linear-gradient(132deg, #2a72d5, #2c88c8, #2e97b3);
}

.page-gallery-ultra .gallery-luxe-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.92rem;
}

.page-gallery-ultra .gallery-luxe-item {
  border-radius: 22px;
  border: 1px solid rgba(173, 204, 236, 0.95);
  min-height: 220px;
  box-shadow: 0 18px 40px rgba(20, 54, 91, 0.17);
}

.page-gallery-ultra .gallery-luxe-item::after {
  background: linear-gradient(180deg, rgba(14, 31, 54, 0.05), rgba(14, 31, 54, 0.72));
}

.page-gallery-ultra .gallery-luxe-item figcaption {
  display: grid;
  gap: 0.45rem;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.page-gallery-ultra .gallery-luxe-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(208, 227, 246, 0.95);
  background: rgba(237, 247, 255, 0.17);
  padding: 0.2rem 0.58rem;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ecf5ff;
}

.page-gallery-ultra .gallery-luxe-item--hero {
  grid-column: span 7;
  min-height: 360px;
}

.page-gallery-ultra .gallery-luxe-item--lg {
  grid-column: span 6;
  min-height: 318px;
}

.page-gallery-ultra .gallery-luxe-item--md {
  grid-column: span 4;
  min-height: 246px;
}

.page-gallery-ultra .gallery-luxe-item--sm {
  grid-column: span 3;
  min-height: 198px;
}

.page-gallery-ultra .gallery-luxe-story-card {
  border: 1px solid rgba(171, 202, 235, 0.94);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(126, 192, 255, 0.19), transparent 40%),
    radial-gradient(circle at 0% 90%, rgba(255, 214, 158, 0.17), transparent 36%),
    linear-gradient(145deg, #ffffff, #eef8ff 60%, #ecfaf5);
  box-shadow: 0 24px 50px rgba(19, 52, 88, 0.13);
  padding: clamp(1.2rem, 2.8vw, 2rem);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.1rem;
  align-items: center;
}

.page-gallery-ultra .gallery-luxe-story-card h2 {
  margin: 0 0 0.6rem;
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.page-gallery-ultra .gallery-luxe-story-card p {
  margin: 0;
  color: var(--muted);
}

.page-gallery-ultra .gallery-luxe-story-card blockquote {
  margin: 0;
  border: 1px solid rgba(169, 202, 237, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 247, 255, 0.9));
  padding: 1rem 1.1rem;
  color: #355b86;
  font-weight: 650;
}

@media (max-width: 1100px) {
  .page-gallery-ultra .gallery-luxe-hero-grid,
  .page-gallery-ultra .gallery-luxe-story-card,
  .page-gallery-ultra .gallery-luxe-collection-grid {
    grid-template-columns: 1fr;
  }

  .page-gallery-ultra .gallery-luxe-media-stage {
    min-height: 360px;
  }

  .page-gallery-ultra .gallery-luxe-media-main {
    min-height: 360px;
  }

  .page-gallery-ultra .gallery-luxe-item--hero,
  .page-gallery-ultra .gallery-luxe-item--lg {
    grid-column: span 6;
  }

  .page-gallery-ultra .gallery-luxe-item--md {
    grid-column: span 6;
  }

  .page-gallery-ultra .gallery-luxe-item--sm {
    grid-column: span 4;
  }
}

@media (max-width: 840px) {
  .page-gallery-ultra .gallery-luxe-hero {
    padding-top: 2.3rem;
  }

  .page-gallery-ultra .gallery-luxe-hero-panel,
  .page-gallery-ultra .gallery-luxe-shell,
  .page-gallery-ultra .gallery-luxe-story-card {
    border-radius: 24px;
  }

  .page-gallery-ultra .gallery-luxe-title {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }

  .page-gallery-ultra .gallery-luxe-metrics {
    grid-template-columns: 1fr;
  }

  .page-gallery-ultra .gallery-luxe-media-stage,
  .page-gallery-ultra .gallery-luxe-media-main {
    min-height: 290px;
  }

  .page-gallery-ultra .gallery-luxe-media-float {
    width: 46%;
    height: 44%;
  }

  .page-gallery-ultra .gallery-luxe-media-float--one {
    right: 8px;
    top: 10px;
  }

  .page-gallery-ultra .gallery-luxe-media-float--two {
    left: 8px;
    bottom: 10px;
  }

  .page-gallery-ultra .gallery-luxe-grid {
    grid-template-columns: 1fr;
  }

  .page-gallery-ultra .gallery-luxe-item--hero,
  .page-gallery-ultra .gallery-luxe-item--lg,
  .page-gallery-ultra .gallery-luxe-item--md,
  .page-gallery-ultra .gallery-luxe-item--sm {
    grid-column: auto;
    min-height: 232px;
  }
}

.page-gallery-ultra .gallery-luxe-hero-panel,
.page-gallery-ultra .gallery-luxe-collection-card,
.page-gallery-ultra .gallery-luxe-story-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift-y, 0));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.page-gallery-ultra .gallery-luxe-collection-card:hover {
  --lift-y: -4px;
}

.page-gallery-ultra .gallery-luxe-hero-panel:hover,
.page-gallery-ultra .gallery-luxe-story-card:hover {
  --lift-y: -2px;
}

/* Header cleanup */
.site-header {
  top: 0;
  z-index: 80;
  padding: 0;
  backdrop-filter: blur(14px);
  background: rgba(248, 252, 255, 0.9);
  border-bottom: 1px solid rgba(168, 197, 229, 0.64);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: clamp(0.8rem, 1.8vw, 1.4rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0.35rem 0;
}

.site-header.is-scrolled {
  background: rgba(248, 252, 255, 0.95);
  border-bottom-color: rgba(161, 193, 228, 0.76);
  box-shadow: 0 10px 28px rgba(18, 46, 81, 0.09);
}

.site-header.is-scrolled .header-inner {
  min-height: 72px;
  background: transparent;
  box-shadow: none;
}

.brand {
  gap: 0.68rem;
}

.brand-mark {
  width: 38px;
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(42, 114, 213, 0.22);
}

.brand-name {
  line-height: 1.02;
}

.brand-name small {
  font-size: 0.66rem;
}

.site-nav {
  justify-self: center;
  gap: clamp(0.65rem, 1.2vw, 1rem);
  flex-wrap: nowrap;
}

.site-nav a {
  white-space: nowrap;
  color: #32547a;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.35rem 0;
}

.site-nav a::after {
  bottom: -5px;
  height: 2px;
}

.nav-actions {
  gap: 0.55rem;
}

.nav-actions .button {
  white-space: nowrap;
  border-radius: 12px;
  padding: 0.68rem 1rem;
  font-size: 0.91rem;
  line-height: 1.1;
}

.nav-actions .button-secondary {
  background: #ffffff;
  border-color: rgba(171, 201, 234, 0.95);
  box-shadow: none;
}

.nav-actions .button-primary {
  box-shadow: 0 10px 24px rgba(42, 114, 213, 0.26);
}

@media (max-width: 1180px) {
  .nav-actions .button-secondary {
    display: none;
  }
}

@media (max-width: 840px) {
  .site-header {
    padding: 0.3rem 0 0.2rem;
  }

  .header-inner {
    min-height: 68px;
    grid-template-columns: auto auto auto;
    column-gap: 0.55rem;
    padding: 0;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .site-nav {
    inset: 76px 0.65rem auto;
    justify-self: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(172, 202, 235, 0.95);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(18, 46, 81, 0.14);
    padding: 0.9rem;
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.24rem 0;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 840px) {
  .hero-photo img {
    height: 236px;
    object-position: center 44%;
  }
}

/* Homepage gallery redesign */
.home-gallery-showcase {
  border: 1px solid rgba(174, 205, 237, 0.9);
  border-radius: 34px;
  background:
    radial-gradient(circle at 94% 6%, rgba(121, 190, 255, 0.18), transparent 36%),
    radial-gradient(circle at 7% 96%, rgba(255, 215, 160, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.92));
  box-shadow: 0 24px 52px rgba(19, 49, 84, 0.14);
  padding: clamp(1.1rem, 2.7vw, 1.9rem);
}

.home-gallery-head {
  max-width: 72ch;
  margin-bottom: 1rem;
}

.home-gallery-head h2 {
  margin: 0;
  font-family: "Newsreader", "Iowan Old Style", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  text-wrap: balance;
}

.home-gallery-head p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.home-gallery-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.95rem;
}

.home-gallery-card {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(175, 206, 239, 0.95);
  box-shadow: 0 18px 38px rgba(21, 54, 90, 0.16);
  min-height: 210px;
  cursor: zoom-in;
}

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

.home-gallery-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-gallery-card--wide {
  grid-column: span 2;
  min-height: 248px;
}

.home-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 32, 55, 0.04), rgba(14, 32, 55, 0.74));
}

.home-gallery-card:hover img {
  transform: scale(1.05);
}

.home-gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  color: #eff6ff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.home-gallery-card figcaption span {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(203, 225, 246, 0.95);
  background: rgba(233, 245, 255, 0.16);
  padding: 0.2rem 0.58rem;
  color: #f4f9ff;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.home-gallery-footer {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .home-gallery-stage {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .home-gallery-showcase {
    border-radius: 24px;
    padding: 1rem;
  }

  .home-gallery-side {
    grid-template-columns: 1fr;
  }

  .home-gallery-card--wide {
    grid-column: auto;
  }

  .home-gallery-card,
  .home-gallery-card--feature,
  .home-gallery-card--wide {
    min-height: 238px;
  }
}

/* Final enterprise UX layer */

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.ops-card {
  border: 1px solid rgba(178, 206, 236, 0.92);
  border-radius: 22px;
  background: linear-gradient(155deg, #ffffff, #eef8ff 62%, #edf9f5);
  box-shadow: 0 16px 34px rgba(22, 53, 88, 0.12);
  padding: 1.2rem;
}

.ops-label {
  margin: 0 0 0.55rem;
  color: #4f7399;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ops-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.14rem;
  line-height: 1.28;
}

.ops-card p {
  margin: 0;
  color: var(--muted);
}

.content-toolbar {
  border: 1px solid rgba(176, 206, 238, 0.9);
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 255, 0.92));
  box-shadow: 0 14px 30px rgba(20, 50, 84, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
}

.content-toolbar-label {
  color: #315579;
  font-size: 0.9rem;
  font-weight: 760;
  white-space: nowrap;
}

.content-toolbar input {
  width: 100%;
  border: 1px solid rgba(176, 206, 238, 0.94);
  border-radius: 11px;
  background: #fff;
  color: #1d3f68;
  font-size: 0.92rem;
  padding: 0.62rem 0.72rem;
}

.content-toolbar-meta {
  margin: 0;
  color: #55789f;
  font-size: 0.84rem;
  font-weight: 760;
  white-space: nowrap;
}

.content-empty-state {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  border: 1px dashed rgba(176, 205, 238, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #486b92;
  font-weight: 650;
  text-align: center;
  padding: 0.82rem;
}

.back-to-top {
  position: fixed;
  right: 0.95rem;
  bottom: 1rem;
  z-index: 120;
  border: 1px solid rgba(165, 197, 232, 0.95);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #edf7ff);
  color: #2f547e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.52rem 0.8rem;
  box-shadow: 0 12px 26px rgba(20, 48, 82, 0.16);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .ops-grid,
  .content-toolbar {
    grid-template-columns: 1fr;
  }

  .content-toolbar {
    gap: 0.55rem;
  }
}

@media (max-width: 840px) {
  .back-to-top {
    right: 0.75rem;
    bottom: 5.8rem;
  }
}

/* Enterprise completion layer */
.trust-proof-band {
  border: 1px solid rgba(170, 201, 235, 0.88);
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 8%, rgba(117, 185, 255, 0.2), transparent 34%),
    radial-gradient(circle at 9% 92%, rgba(255, 215, 159, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 255, 0.93));
  box-shadow: 0 22px 44px rgba(17, 45, 79, 0.13);
  padding: clamp(1rem, 2.5vw, 1.45rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem 1.2rem;
  align-items: center;
}

.trust-proof-score {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: #204b7f;
  font-weight: 820;
  letter-spacing: 0.01em;
}

.trust-proof-score span {
  color: #f0af2a;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
}

.trust-proof-score strong {
  font-size: 1rem;
}

.trust-proof-sub {
  margin: 0.42rem 0 0;
  color: #507195;
  max-width: 58ch;
}

.trust-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.trust-proof-metrics article {
  border: 1px solid rgba(176, 206, 239, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.75rem 0.7rem;
  text-align: center;
}

.trust-proof-metrics strong {
  display: block;
  font-size: 1.12rem;
  color: #1f4a7c;
  line-height: 1.1;
}

.trust-proof-metrics span {
  display: block;
  margin-top: 0.26rem;
  color: #567899;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-proof-badges {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-proof-badges span {
  border: 1px solid rgba(175, 205, 238, 0.94);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #edf7ff);
  color: #45678f;
  padding: 0.38rem 0.7rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 780;
}

.service-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-compare-card {
  border: 1px solid rgba(176, 206, 239, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(120, 188, 255, 0.16), transparent 34%),
    linear-gradient(160deg, #ffffff, #eff8ff 60%, #effbf7);
  box-shadow: 0 16px 34px rgba(17, 47, 82, 0.1);
  padding: 1.1rem;
}

.service-compare-card h3 {
  margin: 0 0 0.62rem;
  font-size: 1.2rem;
}

.service-compare-card .list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.46rem;
}

.service-compare-card .list-clean li {
  border: 1px solid rgba(190, 216, 243, 0.9);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.56rem 0.64rem;
  color: #4f6f92;
}

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

.form-stepper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.form-stepper span {
  border: 1px solid rgba(182, 210, 241, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f2f9ff);
  color: #5a7c9f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.44rem 0.5rem;
}

.form-stepper span.is-active {
  color: #ffffff;
  border-color: rgba(40, 106, 191, 0.92);
  background: linear-gradient(130deg, #2a72d5, #2e97b3);
  box-shadow: 0 12px 24px rgba(42, 114, 213, 0.24);
}

.form-stepper span.is-complete {
  color: #2f567f;
  border-color: rgba(166, 199, 234, 0.95);
  background: linear-gradient(180deg, #f8fdff, #ecf8ff);
}

.form-step {
  margin: 0;
  border: 1px solid rgba(182, 211, 241, 0.9);
  border-radius: 18px;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 255, 0.9));
  padding: 0.95rem;
  display: grid;
  gap: 0.85rem;
}

.form-step[hidden] {
  display: none !important;
}

.form-step.is-active {
  box-shadow: 0 14px 30px rgba(22, 51, 86, 0.1);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.form-actions .button {
  min-width: 180px;
}

.site-header {
  box-shadow: 0 10px 28px rgba(16, 43, 75, 0.06);
}

@media (max-width: 1080px) {
  .service-compare,
  .trust-proof-band,
  .trust-proof-metrics {
    grid-template-columns: 1fr;
  }

  .trust-proof-band {
    border-radius: 24px;
  }
}

@media (max-width: 840px) {
  .form-stepper {
    grid-template-columns: 1fr;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .button {
    width: 100%;
    min-width: 0;
  }
}

/* Conversion and monetization enhancement layer */
.hero-intake-form {
  margin-top: 1.3rem;
  border: 1px solid rgba(167, 199, 234, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 8%, rgba(122, 188, 255, 0.2), transparent 35%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 255, 0.94));
  box-shadow: 0 16px 34px rgba(17, 45, 77, 0.12);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.hero-intake-form h2 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-intake-note {
  margin: 0;
  color: #537497;
  font-size: 0.92rem;
}

.hero-intake-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-intake-grid label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4e7095;
}

.hero-intake-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.hero-intake-promise {
  margin: 0;
  color: #4e7094;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-feedback {
  margin: 0;
  color: #2f5f93;
  font-size: 0.82rem;
  font-weight: 700;
}

.sla-strip {
  border: 1px solid rgba(176, 206, 239, 0.92);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.93));
  box-shadow: 0 18px 38px rgba(18, 47, 80, 0.11);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.sla-strip article {
  border: 1px solid rgba(186, 214, 243, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.8rem;
}

.sla-strip h3 {
  margin: 0.35rem 0;
  font-size: 1rem;
}

.sla-strip p {
  margin: 0;
  color: #4f7195;
  font-size: 0.9rem;
}

.sla-step {
  color: #2d5d96;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.pricing-card {
  border: 1px solid rgba(174, 205, 238, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(120, 187, 255, 0.18), transparent 32%),
    linear-gradient(160deg, #ffffff, #eef7ff 62%, #edf9f5);
  box-shadow: 0 16px 32px rgba(19, 47, 81, 0.1);
  padding: 1.15rem;
}

.pricing-kicker {
  margin: 0;
  color: #4d7095;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.pricing-card p {
  margin: 0;
  color: #527598;
}

.pricing-card .list-clean {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.4rem;
}

.pricing-card .list-clean li {
  border: 1px solid rgba(187, 214, 242, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.5rem 0.6rem;
}

.pricing-disclaimer {
  margin: 1rem 0 0;
  color: #57799d;
  font-size: 0.88rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.testimonial-card {
  border: 1px solid rgba(177, 207, 239, 0.92);
  border-radius: 22px;
  background: linear-gradient(165deg, #ffffff, #eef8ff 60%, #eefbf8);
  box-shadow: 0 16px 34px rgba(22, 50, 84, 0.1);
  padding: 0.9rem;
}

.testimonial-card figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  height: 176px;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card blockquote {
  margin: 0.75rem 0 0.55rem;
  font-size: 0.95rem;
  color: #2b4f75;
  font-weight: 650;
}

.testimonial-card p {
  margin: 0;
  color: #527395;
  font-size: 0.86rem;
}

.story-reel {
  margin-top: 1rem;
  border: 1px solid rgba(171, 201, 236, 0.92);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(123, 188, 255, 0.2), transparent 35%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.93));
  box-shadow: 0 20px 42px rgba(19, 47, 81, 0.12);
  padding: 1rem;
}

.story-reel-header h3 {
  margin: 0;
  font-size: 1.35rem;
}

.story-reel-header p {
  margin: 0.45rem 0 0;
  color: #547599;
}

.story-reel-stage {
  margin-top: 0.8rem;
  position: relative;
  min-height: 310px;
  border-radius: 18px;
  overflow: hidden;
}

.story-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.story-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.story-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-slide figcaption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(11, 31, 53, 0.7);
  color: #edf5ff;
  font-size: 0.86rem;
  padding: 0.5rem 0.65rem;
}

.story-reel-controls {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-ops-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-ops-card {
  border: 1px solid rgba(178, 207, 240, 0.92);
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff, #eef8ff);
  box-shadow: 0 15px 30px rgba(19, 47, 79, 0.09);
  padding: 1rem;
}

.trust-ops-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.trust-ops-card p {
  margin: 0;
  color: #55779a;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.location-card {
  border: 1px solid rgba(178, 207, 239, 0.93);
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff, #f1f9ff);
  box-shadow: 0 13px 28px rgba(20, 49, 84, 0.09);
  padding: 0.9rem;
}

.location-card h3 {
  margin: 0;
  font-size: 1.04rem;
}

.location-card p {
  margin: 0.45rem 0 0.7rem;
  color: #537598;
  font-size: 0.9rem;
}

.location-card a {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #21548f;
}

.schedule-panel {
  border: 1px solid rgba(175, 205, 238, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 9%, rgba(122, 188, 255, 0.2), transparent 34%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.93));
  box-shadow: 0 20px 44px rgba(18, 45, 78, 0.11);
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.schedule-form {
  display: grid;
  gap: 0.8rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dashboard-card {
  border: 1px solid rgba(178, 207, 239, 0.92);
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff, #eef8ff);
  box-shadow: 0 13px 28px rgba(20, 49, 84, 0.09);
  padding: 0.9rem;
}

.dashboard-card p {
  margin: 0;
  color: #57799c;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
}

.dashboard-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.7rem;
  line-height: 1;
}

.dashboard-log-card {
  border: 1px solid rgba(174, 205, 238, 0.92);
  border-radius: 24px;
  background: linear-gradient(160deg, #ffffff, #eef8ff);
  box-shadow: 0 16px 34px rgba(17, 44, 79, 0.1);
  padding: 1rem;
}

.dashboard-log-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.dashboard-log-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.dashboard-log-wrap {
  margin-top: 0.8rem;
  overflow: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.dashboard-table th,
.dashboard-table td {
  text-align: left;
  border-bottom: 1px solid rgba(190, 215, 243, 0.92);
  padding: 0.55rem 0.5rem;
  font-size: 0.84rem;
}

.dashboard-table th {
  color: #4a6c92;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
}

.quick-contact-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-contact-bar a {
  font-size: 0.72rem;
  padding: 0.58rem 0.3rem;
}

.quick-contact-bar a:nth-child(1) {
  background: linear-gradient(140deg, #2a72d5, #2e97b3);
  color: #fff;
}

.quick-contact-bar a:nth-child(2) {
  background: #eef6ff;
  color: #214d87;
  border: 1px solid rgba(174, 205, 236, 0.92);
}

.quick-contact-bar a:nth-child(3) {
  background: linear-gradient(140deg, #22b36a, #1f9759);
  color: #fff;
}

.quick-contact-bar a:nth-child(4) {
  background: linear-gradient(140deg, #f4f9ff, #e9f3ff);
  color: #204a84;
  border: 1px solid rgba(174, 205, 236, 0.92);
}

@media (max-width: 1140px) {
  .hero-intake-grid,
  .pricing-grid,
  .testimonial-grid,
  .trust-ops-grid,
  .location-grid,
  .dashboard-grid,
  .sla-strip {
    grid-template-columns: 1fr;
  }

  .story-reel-stage {
    min-height: 258px;
  }
}

@media (max-width: 840px) {
  .hero-intake-form {
    border-radius: 18px;
  }

  .hero-intake-actions {
    justify-content: stretch;
  }

  .hero-intake-actions .button {
    width: 100%;
  }

  .quick-contact-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
  }

  .quick-contact-bar a {
    font-size: 0.7rem;
  }

  body {
    padding-bottom: 5.9rem;
  }
}

/* Brand menu redesign */
:root {
  --brand-menu: #691e4e;
  --brand-menu-2: #9a3d73;
  --brand-menu-soft: #f8f1f6;
  --brand-menu-line: rgba(105, 30, 78, 0.16);
}

.site-header {
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--brand-menu-line);
  box-shadow: 0 10px 32px rgba(58, 16, 44, 0.09);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: clamp(0.8rem, 1.8vw, 1.35rem);
  padding: 0.45rem 0;
}

.brand {
  gap: 0.74rem;
}

.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(105, 30, 78, 0.17);
  box-shadow: 0 10px 22px rgba(63, 18, 48, 0.15);
  padding: 2px;
}

.brand-name {
  font-weight: 840;
  letter-spacing: -0.015em;
  color: #2f2841;
}

.brand-name small {
  color: #805b7d;
  font-size: 0.64rem;
  letter-spacing: 0.09em;
}

.site-nav {
  justify-self: center;
  gap: 0.18rem;
  padding: 0.3rem;
  border: 1px solid var(--brand-menu-line);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #fcf8fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-nav a {
  white-space: nowrap;
  color: #5b4265;
  font-size: 0.93rem;
  font-weight: 760;
  padding: 0.48rem 0.76rem;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(130deg, var(--brand-menu), var(--brand-menu-2));
  box-shadow: 0 8px 18px rgba(105, 30, 78, 0.24);
}

.nav-actions {
  gap: 0.62rem;
}

.nav-actions .button {
  border-radius: 14px;
  font-weight: 780;
  font-size: 0.92rem;
  padding: 0.68rem 1.08rem;
  white-space: nowrap;
}

.nav-actions .button-secondary {
  background: #ffffff;
  color: var(--brand-menu);
  border-color: rgba(105, 30, 78, 0.26);
  box-shadow: 0 6px 16px rgba(63, 18, 48, 0.08);
}

.nav-actions .button-secondary:hover {
  background: #fef7fb;
}

.nav-actions .button-primary {
  color: #ffffff;
  border-color: rgba(105, 30, 78, 0.56);
  background: linear-gradient(130deg, var(--brand-menu), var(--brand-menu-2));
  box-shadow: 0 12px 24px rgba(105, 30, 78, 0.24);
}

.menu-toggle {
  border-color: rgba(105, 30, 78, 0.24);
  color: var(--brand-menu);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(63, 18, 48, 0.08);
}

.menu-toggle:hover {
  background: #fcf6fa;
}

.site-footer .brand-logo {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 11px;
}

@media (max-width: 1380px) {
  .site-nav a {
    font-size: 0.88rem;
    padding: 0.42rem 0.62rem;
  }
}

@media (max-width: 1140px) {
  .site-nav {
    border-radius: 16px;
  }

  .site-nav a {
    border-radius: 11px;
  }
}

@media (max-width: 840px) {
  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    padding: 0.22rem 0;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 1.72rem;
  }

  .brand-name small {
    font-size: 0.58rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 76px 0.65rem auto;
    z-index: 95;
    border-radius: 16px;
    border: 1px solid rgba(105, 30, 78, 0.22);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(250, 242, 247, 0.97));
    box-shadow: 0 22px 48px rgba(52, 15, 39, 0.18);
    padding: 0.7rem;
    gap: 0.3rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    color: #512f59;
    text-align: left;
    padding: 0.64rem 0.72rem;
    font-size: 0.98rem;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    box-shadow: 0 10px 20px rgba(105, 30, 78, 0.2);
  }

  .nav-actions {
    display: none;
  }
}

/* Brand button color update */
:root {
  --brand-cta: #b0558f;
  --brand-cta-strong: #8f3f72;
  --brand-cta-soft: #f8edf4;
}

.button-primary {
  color: #ffffff;
  border-color: rgba(176, 85, 143, 0.54);
  background: linear-gradient(130deg, var(--brand-cta), var(--brand-cta-strong));
  box-shadow: 0 12px 24px rgba(112, 44, 90, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(112, 44, 90, 0.3);
}

.button-secondary {
  color: #7a3b65;
  border-color: rgba(176, 85, 143, 0.32);
  background: linear-gradient(180deg, #ffffff, var(--brand-cta-soft));
}

.button-secondary:hover {
  background: linear-gradient(180deg, #ffffff, #f4e5ee);
}

.quick-contact-bar a:nth-child(1) {
  background: linear-gradient(130deg, var(--brand-cta), var(--brand-cta-strong));
  color: #ffffff;
}

.quick-contact-bar a:nth-child(2) {
  color: #7a3b65;
  border-color: rgba(176, 85, 143, 0.35);
  background: linear-gradient(180deg, #ffffff, var(--brand-cta-soft));
}

/* More image-rich homepage section */
.image-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.image-ribbon-card {
  margin: 0;
  border: 1px solid rgba(176, 85, 143, 0.26);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8eef5);
  box-shadow: 0 14px 28px rgba(91, 30, 69, 0.12);
}

.image-ribbon-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-ribbon-card:hover img {
  transform: scale(1.04);
}

.image-ribbon-card figcaption {
  padding: 0.62rem 0.72rem;
  color: #5c4061;
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .image-ribbon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .image-ribbon-grid {
    grid-template-columns: 1fr;
  }
}

/* Header and hero refinement */
.site-header .brand-name small {
  display: none;
}

.site-header .brand-name {
  line-height: 1.2;
}

.hero-grid {
  align-items: start;
}

.hero-aside-stack {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.hero-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-assurance-card {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(176, 85, 143, 0.24);
  background: linear-gradient(165deg, #ffffff, #f9eff5);
  box-shadow: 0 10px 24px rgba(83, 24, 61, 0.12);
  padding: 0.68rem 0.7rem;
}

.hero-assurance-card p {
  margin: 0;
  color: #7b4c6d;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-assurance-card strong {
  display: block;
  margin-top: 0.24rem;
  color: #392745;
  font-size: 0.95rem;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .hero-assurance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .brand-name {
    font-size: 1.02rem;
  }

  .hero-aside-stack {
    gap: 0.75rem;
  }

  .hero-assurance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-assurance-card {
    padding: 0.56rem 0.58rem;
  }

  .hero-assurance-card p {
    font-size: 0.62rem;
  }

  .hero-assurance-card strong {
    font-size: 0.82rem;
  }
}

/* Product-level hero density upgrade */
.hero {
  padding-bottom: 2.8rem;
}

.hero-aside-stack {
  grid-template-rows: auto auto auto;
}

.hero-ops-card {
  border: 1px solid rgba(176, 85, 143, 0.24);
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff, #f9eff5);
  box-shadow: 0 14px 30px rgba(91, 31, 69, 0.14);
  padding: 0.95rem;
  display: grid;
  gap: 0.75rem;
}

.hero-ops-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: #7f4d72;
  font-weight: 800;
}

.hero-ops-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.03rem;
  line-height: 1.35;
  color: #32263f;
}

.hero-ops-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.hero-ops-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid rgba(176, 85, 143, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.56rem 0.62rem;
}

.hero-ops-list span {
  color: #60475f;
  font-size: 0.83rem;
}

.hero-ops-list strong {
  color: #47284f;
  font-size: 0.82rem;
  white-space: nowrap;
}

.hero-ops-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.hero-ops-actions .button {
  width: 100%;
  font-size: 0.84rem;
  padding: 0.62rem 0.74rem;
}

.hero-capability-ribbon {
  margin-top: 1rem;
  border: 1px solid rgba(176, 85, 143, 0.22);
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff, #f9eff5 62%, #f4fbff);
  box-shadow: 0 16px 34px rgba(67, 22, 51, 0.12);
  padding: 0.92rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-capability-ribbon article {
  border: 1px solid rgba(176, 85, 143, 0.16);
  border-radius: 14px;
  background: #ffffff;
  padding: 0.66rem 0.7rem;
}

.hero-capability-ribbon p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #81556f;
}

.hero-capability-ribbon strong {
  display: block;
  margin-top: 0.35rem;
  color: #3f2d4a;
  font-size: 0.89rem;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .hero-ops-actions,
  .hero-capability-ribbon {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .hero {
    padding-bottom: 2.2rem;
  }

  .hero-ops-card {
    padding: 0.78rem;
  }
}
