:root {
  --bg: #05070d;
  --bg-soft: #0b111d;
  --panel: rgba(12, 18, 31, 0.78);
  --panel-strong: rgba(10, 14, 24, 0.94);
  --line: rgba(184, 209, 255, 0.18);
  --line-strong: rgba(217, 181, 103, 0.42);
  --text: #f4f7fb;
  --muted: #aab6c7;
  --muted-2: #7f8da3;
  --gold: #d9b567;
  --gold-soft: #f2d893;
  --cyan: #65d7ff;
  --blue: #437cff;
  --emerald: #35d6a4;
  --danger: #ff6178;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(67, 124, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(217, 181, 103, 0.18), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #08101d 38%, #04060a 100%);
  color: var(--text);
  font-family: Inter, Sora, "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(101, 215, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 215, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 18%, rgba(101, 215, 255, 0.04) 50%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.48;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

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

html[data-av-interaction-protection="active"] body {
  user-select: none;
  -webkit-touch-callout: none;
}

html[data-av-interaction-protection="active"] input,
html[data-av-interaction-protection="active"] textarea,
html[data-av-interaction-protection="active"] select,
html[data-av-interaction-protection="active"] [contenteditable="true"],
html[data-av-interaction-protection="active"] [data-av-allow-copy],
html[data-av-interaction-protection="active"] .av-allow-copy,
html[data-av-interaction-protection="active"] .email-display,
html[data-av-interaction-protection="active"] .footer-email {
  user-select: text;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: #070a12;
  color: var(--text);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 181, 103, 0.18);
  background: rgba(5, 7, 13, 0.82);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 78px;
  margin: 0 auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(217, 181, 103, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(217, 181, 103, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(19, 31, 52, 0.92), rgba(5, 7, 13, 0.92));
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 0 24px rgba(217, 181, 103, 0.16), inset 0 0 18px rgba(101, 215, 255, 0.12);
}

.brand-mark::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(101, 215, 255, 0.18);
  border-radius: 50%;
  content: "";
  animation: rotateRing 9s linear infinite;
}

.brand-name {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #dce6f7;
  font-size: 0.86rem;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(217, 181, 103, 0.38);
  background: rgba(217, 181, 103, 0.09);
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 132px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero--compact {
  min-height: 560px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.76) 43%, rgba(5, 7, 13, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.08) 0%, rgba(5, 7, 13, 0.88) 100%);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 46px;
}

.hero-inner > *,
.hero-panel,
.content-panel,
.contact-content,
.metric,
.signal {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero--compact h1 {
  font-size: 4.6rem;
}

.lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: #d6e0f0;
  font-size: 1.28rem;
  overflow-wrap: anywhere;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(217, 181, 103, 0.55);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(217, 181, 103, 0.22), rgba(67, 124, 255, 0.08));
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, rgba(217, 181, 103, 0.34), rgba(101, 215, 255, 0.12));
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(170, 182, 199, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #dce6f7;
}

.hero-panel {
  align-self: stretch;
  padding: 24px;
  border: 1px solid rgba(217, 181, 103, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 14, 24, 0.74), rgba(10, 14, 24, 0.42));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 12px;
  color: var(--muted);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 0.76rem;
}

.signal strong {
  color: var(--gold-soft);
}

.signal-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 16px var(--emerald);
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric {
  padding: 16px;
  border: 1px solid rgba(184, 209, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.metric span {
  display: block;
  color: var(--gold-soft);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

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

.section--tight {
  padding-top: 52px;
}

.section--band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 3.9rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.media-grid--reverse {
  grid-template-columns: 0.84fr 1.16fr;
}

.image-panel,
.content-panel,
.service-card,
.case-card,
.contact-banner,
.seal-board {
  border: 1px solid rgba(184, 209, 255, 0.16);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.06);
  transition: transform 0.75s ease;
}

.image-panel:hover img {
  transform: scale(1.035);
}

.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, rgba(5, 7, 13, 0.84) 100%),
    linear-gradient(120deg, rgba(217, 181, 103, 0.16), transparent 42%, rgba(101, 215, 255, 0.13));
}

.image-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: var(--text);
  font-weight: 800;
}

.content-panel {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(12, 18, 31, 0.94), rgba(12, 18, 31, 0.64)),
    radial-gradient(circle at 100% 0%, rgba(217, 181, 103, 0.12), transparent 36%);
}

.content-panel h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.content-panel p,
.service-card p,
.case-card p {
  color: var(--muted);
}

.pill-row,
.timeline,
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 10px;
  border: 1px solid rgba(217, 181, 103, 0.28);
  border-radius: 999px;
  background: rgba(217, 181, 103, 0.08);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.service-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 18, 31, 0.92), rgba(8, 12, 22, 0.92));
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08);
}

.service-card-body {
  padding: 20px;
}

.service-card h3,
.case-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.stat {
  padding: 20px;
  border: 1px solid rgba(101, 215, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(101, 215, 255, 0.06);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 1.6rem;
  line-height: 1;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: timeline;
}

.timeline-item {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(217, 181, 103, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  counter-increment: timeline;
}

.timeline-item::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(217, 181, 103, 0.46);
  border-radius: 50%;
  background: rgba(217, 181, 103, 0.12);
  color: var(--gold-soft);
  content: counter(timeline, decimal-leading-zero);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 900;
}
.content-panel .timeline {
  grid-template-columns: 1fr;
  gap: 14px;
}

.content-panel .timeline-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 0;
  padding: 20px 22px;
  column-gap: 18px;
  align-items: start;
}

.content-panel .timeline-item::before {
  margin-bottom: 0;
  grid-row: 1 / span 2;
}

.content-panel .timeline-item h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.22;
  overflow-wrap: normal;
}

.content-panel .timeline-item p {
  margin-bottom: 0;
  line-height: 1.48;
}

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

.case-card {
  padding: 24px;
  min-height: 260px;
}

.contact-banner {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
}

.contact-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.08);
}

.contact-banner::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.95), rgba(5, 7, 13, 0.58), rgba(5, 7, 13, 0.35)),
    linear-gradient(180deg, rgba(5, 7, 13, 0.1), rgba(5, 7, 13, 0.88));
}

.contact-content {
  align-self: end;
  max-width: 780px;
  padding: 42px;
}

.email-display {
  display: inline-flex;
  margin: 14px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 181, 103, 0.58);
  border-radius: var(--radius);
  background: rgba(217, 181, 103, 0.1);
  color: var(--gold-soft);
  font-family: "Roboto Mono", Consolas, monospace;
  max-width: 100%;
  font-size: 1.22rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  user-select: text;
}

.seal-board {
  grid-column: 1 / -1;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(217, 181, 103, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.seal-board > .footer-title,
.seal-board > .footer-text {
  text-align: center;
}

.seal-board > .footer-title {
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.seal-board > .footer-text {
  margin: 0;
  font-size: 0.76rem;
}

.seal-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.seal {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(217, 181, 103, 0.24);
  border-radius: 6px;
  background: rgba(217, 181, 103, 0.055);
  color: var(--text);
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow: none;
}

.seal strong {
  display: inline-grid;
  min-width: 34px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 1px solid rgba(217, 181, 103, 0.24);
  border-radius: 4px;
  background: rgba(217, 181, 103, 0.1);
  color: var(--gold-soft);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 0.68rem;
}

.seal span {
  color: var(--muted);
  font-size: 0.68rem;
  white-space: nowrap;
}

.seal:hover,
.seal:focus-visible {
  border-color: rgba(217, 181, 103, 0.62);
  background: rgba(217, 181, 103, 0.1);
  color: var(--gold-soft);
  outline: 2px solid rgba(217, 181, 103, 0.18);
  outline-offset: 2px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 28px;
  background: rgba(2, 4, 8, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  gap: 32px;
}

.footer-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-text,
.copyright {
  color: var(--muted);
}

.footer-email {
  display: inline-block;
  margin: 10px 0;
  color: var(--gold-soft);
  font-family: "Roboto Mono", Consolas, monospace;
  font-weight: 900;
  overflow-wrap: anywhere;
  user-select: text;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(184, 209, 255, 0.12);
  font-size: 0.88rem;
}

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

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(217, 181, 103, 0.22);
    border-radius: var(--radius);
    background: rgba(5, 7, 13, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
  }

  .hero-inner,
  .section-head,
  .media-grid,
  .media-grid--reverse,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 4rem;
  }

  .hero--compact h1 {
    font-size: 3.5rem;
  }

  .lead {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 3.1rem;
  }

  .hero-panel {
    align-self: auto;
  }

  .service-grid,
  .case-grid,
  .stats-row,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .seal-board {
    padding: 16px 0 0;
  }

  .seal-grid {
    gap: 6px;
  }

  .seal {
    min-height: 32px;
    gap: 5px;
    padding: 5px 7px;
  }

  .seal strong {
    min-width: 30px;
    font-size: 0.64rem;
  }

  .seal span {
    font-size: 0.6rem;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    min-width: 0;
  }

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

  .brand-subtitle {
    font-size: 0.58rem;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  .hero--compact h1 {
    font-size: 2.35rem;
  }

  .page-contact .hero--compact h1 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .email-display {
    font-size: 1rem;
  }

  .hero-panel,
  .content-panel,
  .contact-content {
    padding: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .image-panel {
    min-height: 320px;
  }

  .service-grid,
  .case-grid,
  .stats-row,
  .timeline {
    grid-template-columns: 1fr;
  }

  .seal-board {
    padding: 14px 0 0;
  }

  .seal-grid {
    gap: 4px;
    margin-top: 12px;
  }

  .seal {
    flex: 1 1 0;
    min-height: 32px;
    gap: 0;
    padding: 5px 2px;
    border-radius: 4px;
  }

  .seal strong {
    min-width: 0;
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.52rem;
    line-height: 1.1;
    white-space: nowrap;
  }

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

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

.brand-mark {
  width: 54px;
  height: 54px;
  padding: 5px;
  overflow: visible;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(217, 181, 103, 0.38));
}
