:root {
  --ivory-50: #fefdf9;
  --ivory-75: #f7f4eb;
  --mist-200: #eef2f2;
  --sage-400: #7b949c;
  --slate-500: #536c7c;
  --slate-700: #213c4e;
  --brand-navy: #182241;

  --white: var(--ivory-50);
  --dark-text: var(--brand-navy);
  --muted-text: color-mix(in srgb, var(--slate-700) 76%, var(--ivory-50));
  --line-soft: rgba(24, 34, 65, 0.1);
  --line-strong: rgba(24, 34, 65, 0.16);

  --glass-bg-light:
    linear-gradient(145deg, rgba(254, 253, 249, 0.68) 0%, rgba(247, 244, 235, 0.54) 40%, rgba(238, 242, 242, 0.58) 100%);
  --glass-bg-strong:
    linear-gradient(145deg, rgba(254, 253, 249, 0.8) 0%, rgba(247, 244, 235, 0.66) 44%, rgba(238, 242, 242, 0.72) 100%);
  --glass-bg-navy:
    linear-gradient(160deg, rgba(24, 34, 65, 0.88) 0%, rgba(33, 60, 78, 0.8) 100%);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-border-strong: rgba(24, 34, 65, 0.1);
  --glass-shadow: 0 22px 56px rgba(24, 34, 65, 0.1);
  --glass-shadow-strong: 0 30px 76px rgba(24, 34, 65, 0.12);
  --glass-blur: 11px;
  --glass-blur-strong: 14px;
  --section-wash: linear-gradient(180deg, rgba(254, 253, 249, 0.7) 0%, rgba(238, 242, 242, 0.88) 100%);
  --section-wash-soft: linear-gradient(180deg, rgba(254, 253, 249, 0.42) 0%, rgba(238, 242, 242, 0.74) 100%);
  --section-wash-dark: linear-gradient(180deg, rgba(24, 34, 65, 0.9) 0%, rgba(33, 60, 78, 0.84) 100%);

  --font-primary: "Outfit", sans-serif;
  --font-secondary: "Inter", sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 9rem;

  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 9999px;

  --transition-smooth: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background:
    radial-gradient(circle at top left, rgba(123, 148, 156, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(33, 60, 78, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f4ee 0%, var(--ivory-50) 24%, #edf1f0 100%);
  color: var(--dark-text);
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 85vw;
  height: 85vw;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.11;
  pointer-events: none;
  z-index: -10;
  animation: floatAmbient 30s infinite alternate ease-in-out;
}

body::before {
  background: var(--sage-400);
  top: -26vh;
  left: -18vw;
}

body::after {
  background: var(--slate-700);
  bottom: -30vh;
  right: -20vw;
  animation-duration: 40s;
  animation-direction: alternate-reverse;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, 12%) scale(1.04); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--brand-navy);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 6vw, 5.15rem); }
h2 { font-size: clamp(2.05rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.32rem, 2.2vw, 1.82rem); }

p {
  font-size: 1.1rem;
  font-weight: 350;
  max-width: 66ch;
  line-height: 1.78;
  color: var(--muted-text);
  text-wrap: pretty;
}

a {
  color: var(--brand-navy);
  text-decoration: none;
  transition: color 0.28s ease, opacity 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

a,
button,
[role="button"],
.btn {
  touch-action: manipulation;
}

img, video {
  width: 100%;
  height: auto;
  display: block;
}

.glass-panel p,
.surface-card p,
.glass-panel li,
.surface-card li,
.glass-panel ul,
.surface-card ul {
  max-width: none;
}

.glass-panel,
.surface-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg-light) !important;
  backdrop-filter: blur(var(--glass-blur)) saturate(164%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(164%);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow-strong) !important;
  border-radius: var(--radius-lg);
}

.glass-panel::before,
.surface-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(126deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.14) 54%, rgba(255, 255, 255, 0.02) 72%, rgba(255, 255, 255, 0.18) 100%);
  mix-blend-mode: screen;
  opacity: 0.78;
}

.glass-panel::after,
.surface-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 22%, rgba(255, 255, 255, 0.1) 42%, transparent 60%),
    radial-gradient(circle at 82% 16%, rgba(123, 148, 156, 0.12), transparent 24%),
    radial-gradient(circle at 18% 86%, rgba(83, 108, 124, 0.08), transparent 24%);
  opacity: 0.56;
  animation: surfaceGlowShift 18s ease-in-out infinite alternate;
}

.glass-panel > *,
.surface-card > * {
  position: relative;
  z-index: 1;
}

.surface-card--navy,
.glass-panel--navy {
  background: var(--glass-bg-navy) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--ivory-50);
}

.surface-card--navy::before,
.glass-panel--navy::before {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(126deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.62;
}

.surface-card--navy h1,
.surface-card--navy h2,
.surface-card--navy h3,
.surface-card--navy h4,
.surface-card--navy h5,
.surface-card--navy h6,
.surface-card--navy p,
.glass-panel--navy h1,
.glass-panel--navy h2,
.glass-panel--navy h3,
.glass-panel--navy h4,
.glass-panel--navy h5,
.glass-panel--navy h6,
.glass-panel--navy p {
  color: var(--ivory-50);
}

.surface-card--navy a:not(.btn),
.glass-panel--navy a:not(.btn) {
  color: var(--ivory-50);
}

.surface-card--navy .site-icon,
.glass-panel--navy .site-icon {
  background: rgba(254, 253, 249, 0.14);
  color: var(--ivory-50);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding-top: clamp(5.8rem, 7vw, 7.8rem);
  padding-bottom: clamp(5.8rem, 7vw, 7.8rem);
}

.section-shell--mist,
.section-shell--soft,
.section-shell--dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-shell--mist::before,
.section-shell--soft::before,
.section-shell--dark::before,
.section-shell--mist::after,
.section-shell--soft::after,
.section-shell--dark::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  filter: blur(64px);
  opacity: 0.55;
  z-index: 0;
  animation: sectionGlowDrift 18s ease-in-out infinite alternate;
}

.section-shell--mist::before,
.section-shell--soft::before {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(123, 148, 156, 0.18), transparent 66%);
}

.section-shell--mist::after,
.section-shell--soft::after {
  width: 30rem;
  height: 30rem;
  right: -6rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(33, 60, 78, 0.1), transparent 68%);
  animation-duration: 22s;
}

.section-shell--dark::before {
  width: 34rem;
  height: 34rem;
  top: -8rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(123, 148, 156, 0.18), transparent 64%);
}

.section-shell--dark::after {
  width: 26rem;
  height: 26rem;
  bottom: -7rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(254, 253, 249, 0.08), transparent 70%);
}

.section-shell--mist > *,
.section-shell--soft > *,
.section-shell--dark > * {
  position: relative;
  z-index: 1;
}

.section-shell--mist {
  background: var(--section-wash);
}

.section-shell--soft {
  background: var(--section-wash-soft);
}

.section-shell--dark {
  background: var(--section-wash-dark);
}

.section-shell--dark h1,
.section-shell--dark h2,
.section-shell--dark h3,
.section-shell--dark p,
.section-shell--dark .eyebrow {
  color: var(--ivory-50);
}

.section-shell--dark .eyebrow::before {
  background: currentColor;
}

.section-intro {
  max-width: 920px;
  margin: 0 auto 4.25rem;
  text-align: center;
}

.section-intro h2,
.section-intro h3 {
  margin-bottom: 1.35rem !important;
}

.section-intro p,
.section-intro .intro-copy {
  max-width: 72ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.section-intro--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-intro--left p,
.section-intro--left .intro-copy {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--slate-500);
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 0.9rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--no-line {
  gap: 0;
}

.eyebrow--no-line::before {
  display: none;
}

.article-meta,
.mini-post-meta {
  display: inline-block;
  color: var(--slate-500);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.article-meta {
  font-size: 0.78rem;
}

.mini-post-meta {
  font-size: 0.75rem;
}

.dark-band {
  background:
    linear-gradient(180deg, rgba(24, 34, 65, 0.94) 0%, rgba(33, 60, 78, 0.88) 100%);
  color: var(--ivory-50);
}

.dark-band h1,
.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band a {
  color: var(--ivory-50);
}

.img-reveal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 80px -26px rgba(24, 34, 65, 0.22);
}

.img-reveal img {
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-reveal:hover img {
  transform: scale(1.03);
}

.stack-xs > * + * { margin-top: 0.65rem; }
.stack-sm > * + * { margin-top: 0.9rem; }
.stack-md > * + * { margin-top: 1.2rem; }
.stack-lg > * + * { margin-top: 1.6rem; }

.page-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.page-actions--center {
  justify-content: center;
}

.title-sm {
  font-size: clamp(1.28rem, 2vw, 1.6rem);
}

.title-md {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.title-lg {
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
}

.support-note {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(24, 34, 65, 0.06);
  border: 1px solid rgba(24, 34, 65, 0.09);
}

.support-note p {
  max-width: none;
}

.divider-top {
  padding-top: 3.15rem;
  margin-top: 3.15rem;
  border-top: 2px solid rgba(24, 34, 65, 0.1);
}

.site-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(24, 34, 65, 0.12), rgba(83, 108, 124, 0.2));
  color: var(--brand-navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.site-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: currentColor;
}

.horizontal-scroll-nav {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-only { display: none; }
.desktop-only { display: block; }

.hero-standard {
  position: relative;
  width: 100vw;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
}

.hero-standard .bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--brand-navy);
}

.hero-standard .bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero-standard .overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(24, 34, 65, 0.46) 0%, rgba(24, 34, 65, 0.88) 100%);
}

.hero-standard .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  padding: clamp(7rem, 10vw, 9.4rem) 1.25rem clamp(4.25rem, 7vw, 5.8rem);
  text-align: center;
}

.hero-standard h1 {
  color: var(--white);
  margin-bottom: 1.35rem;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
  max-width: 15ch;
  margin-inline: auto;
}

.hero-standard p {
  color: rgba(254, 253, 249, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  margin: 0 auto;
  max-width: 54ch;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

@keyframes surfaceGlowShift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(3%, 3%, 0) scale(1.06); }
}

@keyframes sectionGlowDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(5%, 4%, 0) scale(1.08); }
}

@media (max-width: 1100px) {
  .section-intro {
    margin-bottom: 3.4rem;
  }
}

@media (max-width: 900px) {
  .mobile-only { display: block; }
  .desktop-only { display: none !important; }

  .section-padding {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .section-intro {
    margin-bottom: 2.75rem;
  }

  .horizontal-scroll-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0 0.65rem;
    margin: 0 -0.15rem;
    scroll-snap-type: x proximity;
  }

  .horizontal-scroll-nav > * {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }

  .hero-standard {
    min-height: 70vh;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.65rem);
  }

  p {
    font-size: 1rem;
  }
}

@media (hover: none), (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after,
  .section-shell--mist::before,
  .section-shell--soft::before,
  .section-shell--dark::before,
  .section-shell--mist::after,
  .section-shell--soft::after,
  .section-shell--dark::after {
    display: none;
    animation: none !important;
  }

  .glass-panel,
  .surface-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--glass-bg-strong) !important;
    box-shadow: var(--glass-shadow) !important;
  }

  .surface-card--navy,
  .glass-panel--navy {
    background: linear-gradient(160deg, rgba(24, 34, 65, 0.96) 0%, rgba(33, 60, 78, 0.93) 100%) !important;
  }

  .glass-panel::before,
  .surface-card::before {
    mix-blend-mode: normal;
    opacity: 0.42;
  }

  .glass-panel::after,
  .surface-card::after {
    animation: none !important;
    opacity: 0.16;
    background: linear-gradient(118deg, transparent 28%, rgba(255, 255, 255, 0.08) 48%, transparent 66%);
  }

  .img-reveal img {
    transition: none;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 26px 64px rgba(24, 34, 65, 0.12);
  }
  50% {
    box-shadow: 0 30px 74px rgba(24, 34, 65, 0.18);
  }
}

.animate-fade-up {
  animation: fadeUp 0.95s var(--transition-smooth) forwards;
}

.animate-scale-up {
  animation: scaleUp 0.95s var(--transition-smooth) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.hover-lift {
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.hover-soft-glow {
  transition: box-shadow 0.32s ease, transform 0.32s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(24, 34, 65, 0.16) !important;
    border-color: rgba(24, 34, 65, 0.18) !important;
  }

  .hover-soft-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(83, 108, 124, 0.18) !important;
  }
}

.pulse-surface {
  animation: softPulse 4.5s ease-in-out infinite;
}

@media (hover: none), (pointer: coarse) {
  .animate-fade-up,
  .animate-scale-up,
  .pulse-surface {
    animation: none !important;
  }

  .hover-lift,
  .hover-soft-glow {
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hover-lift:hover,
  .hover-soft-glow:hover {
    transform: none;
  }
}

.btn {
    --btn-bg: linear-gradient(135deg, rgba(24, 34, 65, 0.96), rgba(33, 60, 78, 0.9));
    --btn-bg-hover: linear-gradient(135deg, rgba(24, 34, 65, 1), rgba(33, 60, 78, 0.96));
    --btn-color: var(--ivory-50);
    --btn-border: rgba(123, 148, 156, 0.2);
    --btn-border-hover: rgba(123, 148, 156, 0.32);
    --btn-shadow: 0 18px 34px rgba(24, 34, 65, 0.16);
    --btn-shadow-hover: 0 24px 40px rgba(24, 34, 65, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 54px;
    padding: 1rem 2.15rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--btn-border);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
    color: var(--btn-color) !important;
    background: var(--btn-bg);
    box-shadow: var(--btn-shadow);
    backdrop-filter: blur(9px) saturate(138%);
    -webkit-backdrop-filter: blur(9px) saturate(138%);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
    touch-action: manipulation;
  }

  .btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.14) 68%, rgba(255, 255, 255, 0.02));
    opacity: 0.78;
    transform: translateX(-20%);
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: -1;
    pointer-events: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .btn:hover {
      transform: translateY(-2px);
      background: var(--btn-bg-hover);
      color: var(--btn-color) !important;
      border-color: var(--btn-border-hover);
      box-shadow: var(--btn-shadow-hover);
    }

    .btn:hover::before {
      transform: translateX(0);
    }
  }

  .btn:focus-visible {
    outline: 3px solid rgba(123, 148, 156, 0.34);
    outline-offset: 2px;
  }

  .btn-primary {
    --btn-bg: linear-gradient(135deg, rgba(24, 34, 65, 0.98), rgba(33, 60, 78, 0.94));
    --btn-bg-hover: linear-gradient(135deg, rgba(24, 34, 65, 1), rgba(33, 60, 78, 0.98));
    --btn-border: rgba(123, 148, 156, 0.24);
    --btn-border-hover: rgba(123, 148, 156, 0.34);
    --btn-shadow: 0 18px 34px rgba(24, 34, 65, 0.18);
    --btn-shadow-hover: 0 24px 40px rgba(24, 34, 65, 0.24);
  }

  .btn-secondary {
    --btn-bg: linear-gradient(135deg, rgba(83, 108, 124, 0.9), rgba(33, 60, 78, 0.86));
    --btn-bg-hover: linear-gradient(135deg, rgba(83, 108, 124, 0.98), rgba(33, 60, 78, 0.92));
    --btn-border: rgba(123, 148, 156, 0.24);
    --btn-border-hover: rgba(123, 148, 156, 0.38);
    --btn-shadow: 0 18px 34px rgba(24, 34, 65, 0.14);
    --btn-shadow-hover: 0 22px 38px rgba(24, 34, 65, 0.2);
  }

  .btn-light {
    --btn-bg: linear-gradient(135deg, rgba(254, 253, 249, 0.98), rgba(247, 244, 235, 0.94));
    --btn-bg-hover: linear-gradient(135deg, rgba(254, 253, 249, 1), rgba(244, 238, 224, 0.98));
    --btn-color: var(--brand-navy);
    --btn-border: rgba(24, 34, 65, 0.14);
    --btn-border-hover: rgba(83, 108, 124, 0.26);
    --btn-shadow: 0 18px 34px rgba(24, 34, 65, 0.1);
    --btn-shadow-hover: 0 22px 38px rgba(24, 34, 65, 0.14);
  }

  .btn-glass {
    --btn-bg: linear-gradient(135deg, rgba(254, 253, 249, 0.18), rgba(255, 255, 255, 0.08));
    --btn-bg-hover: linear-gradient(135deg, rgba(254, 253, 249, 0.26), rgba(255, 255, 255, 0.12));
    --btn-border: rgba(255, 255, 255, 0.28);
    --btn-border-hover: rgba(255, 255, 255, 0.4);
    --btn-shadow: 0 16px 32px rgba(24, 34, 65, 0.14);
    --btn-shadow-hover: 0 20px 36px rgba(24, 34, 65, 0.18);
  }

  .btn-block {
    width: 100%;
  }

  @media (hover: none), (pointer: coarse) {
    .btn {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: 0 14px 26px rgba(24, 34, 65, 0.14);
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .btn::before {
      transform: none;
      transition: none;
      opacity: 0.62;
    }
  }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
  }

  .service-card {
    position: relative;
    padding: clamp(2rem, 3vw, 2.6rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
  }

  .service-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--slate-500), var(--brand-navy));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .service-card-title {
    font-size: 1.5rem;
    color: var(--brand-navy);
  }

  .service-card-text {
    color: var(--muted-text);
    margin-bottom: auto;
  }

  .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-navy);
  }

  @media (hover: hover) and (pointer: fine) {
    .service-card:hover::after {
      opacity: 1;
    }

    .service-card-link:hover {
      gap: 0.8rem;
      color: var(--slate-700);
    }
  }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 2000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--brand-navy);
  color: var(--ivory-50);
}

.skip-link:focus {
  left: 1rem;
}

.dynamic-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  padding: 1.2rem 2rem;
  transition: background 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease, border-color 0.45s ease, padding 0.45s ease;
}

.dynamic-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(24, 34, 65, 0.18) 0%, rgba(24, 34, 65, 0.08) 100%);
  backdrop-filter: blur(10px) saturate(146%);
  -webkit-backdrop-filter: blur(10px) saturate(146%);
  transition: inherit;
}

.dynamic-header.scrolled,
.dynamic-header.header-solid {
  padding-top: 0.92rem;
  padding-bottom: 0.92rem;
}

.dynamic-header.scrolled::before,
.dynamic-header.header-solid::before {
  background: linear-gradient(180deg, rgba(254, 253, 249, 0.88) 0%, rgba(247, 244, 235, 0.74) 100%);
  border-bottom-color: rgba(24, 34, 65, 0.08);
  box-shadow: 0 18px 48px rgba(24, 34, 65, 0.08);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.header-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 0.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-brand {
  display: inline-flex;
  align-items: center;
}

.header-brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.dynamic-header.scrolled .header-brand img,
.dynamic-header.header-solid .header-brand img {
  filter: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ivory-50);
  transition: color 0.32s ease, opacity 0.32s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  opacity: 1;
  color: var(--ivory-50);
}

.dynamic-header.scrolled .nav-link,
.dynamic-header.header-solid .nav-link {
  color: var(--brand-navy);
  opacity: 0.84;
}

.dynamic-header.scrolled .nav-link:hover,
.dynamic-header.scrolled .nav-link[aria-current="page"],
.dynamic-header.header-solid .nav-link:hover,
.dynamic-header.header-solid .nav-link[aria-current="page"] {
  opacity: 1;
  color: var(--slate-700);
}

.nav-cta {
  min-height: 46px;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(33, 60, 78, 0.48), rgba(24, 34, 65, 0.36));
  color: var(--ivory-50) !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(24, 34, 65, 0.14);
}

.dynamic-header.scrolled .nav-cta,
.dynamic-header.header-solid .nav-cta {
  background: linear-gradient(135deg, rgba(24, 34, 65, 0.98), rgba(33, 60, 78, 0.94));
  color: var(--ivory-50) !important;
  border-color: rgba(24, 34, 65, 0.08);
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(83, 108, 124, 0.54), rgba(33, 60, 78, 0.46));
  color: var(--ivory-50) !important;
  border-color: rgba(255, 255, 255, 0.22);
}

.dynamic-header.scrolled .nav-cta:hover,
.dynamic-header.header-solid .nav-cta:hover {
  background: linear-gradient(135deg, rgba(24, 34, 65, 1), rgba(33, 60, 78, 0.98));
  color: var(--ivory-50) !important;
  border-color: rgba(123, 148, 156, 0.24);
  box-shadow: 0 16px 32px rgba(24, 34, 65, 0.22);
}

.mobile-trigger {
  display: none;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(24, 34, 65, 0.88), rgba(33, 60, 78, 0.82));
  box-shadow: 0 12px 28px rgba(24, 34, 65, 0.22);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.mobile-trigger-bars {
  position: relative;
  width: 22px;
  height: 14px;
  display: block;
  flex: 0 0 auto;
}

.mobile-trigger-bars span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ivory-50);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-trigger-bars span:nth-child(1) { top: 0; }
.mobile-trigger-bars span:nth-child(2) { top: 6px; }
.mobile-trigger-bars span:nth-child(3) { top: 12px; }

.mobile-trigger.is-active .mobile-trigger-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-trigger.is-active .mobile-trigger-bars span:nth-child(2) { opacity: 0; }
.mobile-trigger.is-active .mobile-trigger-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(24, 34, 65, 0.52);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  transition: opacity 0.28s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  padding: clamp(4.6rem, 10vh, 6rem) 1.25rem 2.6rem;
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(123, 148, 156, 0.16), transparent 26%),
    linear-gradient(160deg, rgba(24, 34, 65, 0.985) 0%, rgba(33, 60, 78, 0.96) 100%);
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  transform: translateY(-8px);
  transition: transform 0.28s ease;
}

.mobile-overlay.is-open .mobile-panel {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: min(100%, 22rem);
  text-align: center;
}

.mobile-nav a {
  width: 100%;
  padding: 0.72rem 0;
  font-family: var(--font-primary);
  font-size: clamp(1.72rem, 7.2vw, 2.35rem);
  line-height: 0.98;
  color: var(--ivory-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(254, 253, 249, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav-brand {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.2rem 0 0.95rem !important;
}

.mobile-nav-brand img {
  height: clamp(34px, 8vw, 42px);
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: rgba(254, 253, 249, 0.9);
}

.mobile-note {
  width: min(100%, 22rem);
  margin: 0.9rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(254, 253, 249, 0.12);
  text-align: center;
}

.mobile-note p {
  font-size: 0.98rem;
  max-width: none;
  color: rgba(254, 253, 249, 0.74);
}

.site-footer {
  position: relative;
  margin-top: auto;
  background: linear-gradient(180deg, rgba(24, 34, 65, 0.98) 0%, rgba(24, 34, 65, 1) 100%);
  color: var(--ivory-50);
  padding: 5.25rem 0 2rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(123, 148, 156, 0.18), transparent 24%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr 1.1fr;
  gap: 2.2rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: auto;
  height: 78px;
  margin-bottom: 1rem;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-service-area {
  color: rgba(254, 253, 249, 0.78);
}

.footer-col h3 {
  color: var(--ivory-50);
  font-size: 0.88rem;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.footer-col--split {
  display: grid;
  gap: 1.5rem;
}

.footer-subgroup h3 {
  margin-bottom: 0.85rem;
}

.footer-subgroup {
  display: grid;
  gap: 0.3rem;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-service-area {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-service-area::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(254, 253, 249, 0.28);
}

.footer-service-area--accent {
  color: #f0a24a;
  font-weight: 600;
}

.footer-service-area--accent::before {
  background: rgba(254, 253, 249, 0.28);
  box-shadow: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(254, 253, 249, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(254, 253, 249, 0.64);
  font-size: 0.94rem;
}

.footer-bottom p {
  max-width: 48rem;
}

.footer-meta-links {
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-meta-links a {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(254, 253, 249, 0.1);
  background: rgba(254, 253, 249, 0.04);
}

.footer-conversion-link {
  color: rgba(254, 253, 249, 0.88) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.detail-shell {
  padding-top: clamp(8rem, 11vw, 10rem);
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
}

.detail-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.75rem);
  margin-bottom: 1rem;
}

.detail-eyebrow,
.detail-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.detail-eyebrow {
  color: var(--slate-500);
  margin-bottom: 0.9rem;
}

.detail-meta {
  color: var(--slate-700);
  margin-bottom: 1rem;
}

.detail-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
  gap: 1.8rem;
  align-items: start;
}

.detail-content-shell {
  padding-top: clamp(3.35rem, 4.6vw, 4.4rem) !important;
}

.detail-body,
.detail-side-card {
  padding: 2.15rem;
}

.detail-body-intro {
  padding-bottom: 1.35rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(24, 34, 65, 0.08);
}

.detail-body-intro h2 {
  margin: 0.45rem 0 0 !important;
}

.detail-side {
  display: grid;
  gap: 1.2rem;
}

.detail-side-card {
  display: grid;
  gap: 1.15rem;
  padding: 2rem;
}

.detail-side-card .page-actions {
  margin-top: 0.3rem;
}

.detail-side-card--cta {
  gap: 1.25rem;
  padding: 2.35rem 2.15rem 2.45rem;
}

.detail-body h2,
.detail-body h3,
.detail-body h4 {
  margin-top: 2.35rem;
  margin-bottom: 0.95rem;
}

.detail-body h2 {
  font-size: clamp(1.62rem, 2.5vw, 2.12rem);
  line-height: 1.14;
}

.detail-body h3 {
  font-size: clamp(1.28rem, 2vw, 1.56rem);
  line-height: 1.18;
}

.detail-body h4 {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.22;
}

.detail-body p,
.detail-body ul,
.detail-body ol,
.detail-body blockquote {
  margin-bottom: 1rem;
  max-width: none;
}

.detail-body ul,
.detail-body ol {
  padding-left: 1.3rem;
}

.detail-body li {
  margin-bottom: 0.5rem;
}

.detail-body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.detail-body img {
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
}

.detail-body hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid rgba(24, 34, 65, 0.1);
}

.detail-body blockquote {
  padding: 1rem 1.2rem;
  border-left: 3px solid rgba(24, 34, 65, 0.18);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.detail-cta {
  padding: 5rem 0 6rem;
}

.detail-body .author-card {
  margin-top: 2.5rem;
}

.related-link {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(24, 34, 65, 0.08);
}

.related-link:first-of-type {
  padding-top: 0.2rem;
  border-top: none;
}

.related-link strong {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--brand-navy);
  line-height: 1.28;
}

.related-link span:last-child {
  color: var(--muted-text);
  font-size: 0.97rem;
  line-height: 1.62;
}

.related-link-meta {
  color: var(--slate-500);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.author-card {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding: 1.55rem;
}

.author-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.author-heading {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.32rem;
  padding-top: 0.06rem;
}

.author-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}

.author-body {
  display: grid;
  gap: 0.04rem;
}

.author-avatar {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 22px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(24, 34, 65, 0.92), rgba(83, 108, 124, 0.82));
  color: var(--ivory-50);
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-role {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--slate-500);
}

.author-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.02;
}

.author-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--slate-700);
  margin: 0 !important;
  line-height: 1.18;
}

.author-card p {
  max-width: none;
  margin-bottom: 0.58rem;
}

.author-card p:last-child {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-card {
  padding: 1.9rem;
}

.empty-card {
  padding: 1.8rem;
}

.schema-hidden {
  display: none;
}

.relative-z-2 {
  position: relative;
  z-index: 2;
}

.main-relative {
  background: transparent;
  position: relative;
  z-index: 5;
}

.main-pad-bottom-lg {
  padding-bottom: 8rem;
}

.section-pad-top-0 {
  padding-top: 0 !important;
}

.section-pad-bottom-0 {
  padding-bottom: 0 !important;
}

.section-pad-top-lg {
  padding-top: 5rem !important;
}

.section-pad-y-lg {
  padding: 6rem 0 !important;
}

.section-intro-transparent {
  background: transparent;
  margin-bottom: 3rem;
}

.section-intro-wide-left {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-intro-tight {
  margin-bottom: 1.8rem;
}

.page-actions-mt {
  margin-top: 2rem;
}

.page-actions-mt-sm {
  margin-top: 1.75rem;
}

.page-actions-mt-lg {
  margin-top: 2.2rem;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.offscreen-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.btn-borderless {
  border: none !important;
}

.error-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem;
  text-align: center;
}

.error-eyebrow {
  color: rgba(254, 253, 249, 0.72);
}

.error-title {
  margin-bottom: 1rem !important;
  color: var(--ivory-50) !important;
}

.error-copy {
  max-width: 680px;
  margin: 0 auto 1.8rem;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .dynamic-header::before,
body.menu-open .dynamic-header .header-brand,
body.menu-open .dynamic-header .mobile-trigger {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1220px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    width: 100%;
    padding-right: 0;
    gap: 1rem;
  }

  .mobile-trigger {
    display: inline-flex;
    position: fixed;
    right: 1rem;
    top: 1rem;
    transform: none;
    margin: 0;
  }

  .detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dynamic-header {
    padding-inline: 1rem;
  }

  .header-inner {
    width: 100%;
  }

  .header-brand img {
    height: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero,
  .detail-body,
  .detail-side-card {
    padding: 1.35rem;
  }

  .error-panel {
    padding: 2.4rem 1.35rem;
  }
}

@media (max-width: 640px) {
  .hero-home .hero-inner,
  .hero-standard .hero-inner {
    padding-top: 6.4rem;
    padding-bottom: 4.75rem;
    padding-inline: 1rem;
  }

  .hero-home h1,
  .hero-standard h1 {
    font-size: clamp(2.2rem, 10vw, 3.15rem) !important;
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home p,
  .hero-standard p {
    font-size: 1rem !important;
    max-width: 36ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .dynamic-header {
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
  }

  .dynamic-header::before,
  .dynamic-header.scrolled::before,
  .dynamic-header.header-solid::before,
  .mobile-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .dynamic-header::before {
    background: linear-gradient(180deg, rgba(24, 34, 65, 0.26) 0%, rgba(24, 34, 65, 0.14) 100%);
  }

  .dynamic-header.scrolled::before,
  .dynamic-header.header-solid::before {
    background: linear-gradient(180deg, rgba(254, 253, 249, 0.96) 0%, rgba(247, 244, 235, 0.92) 100%);
    box-shadow: 0 12px 30px rgba(24, 34, 65, 0.08);
  }

  .mobile-overlay {
    background: rgba(24, 34, 65, 0.72);
  }
}