:root {
  --onyx: #101418;
  --onyx-soft: #1a242d;
  --slate: #4f5b66;
  --platinum: #c8d2da;
  --paper: #f4f7fa;
  --paper-strong: #ffffff;
  --accent: #4cb8ff;
  --accent-strong: #0b85d8;
  --accent-soft: rgba(76, 184, 255, 0.12);
  --line: rgba(16, 20, 24, 0.1);
  --shadow: 0 20px 60px rgba(16, 20, 24, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --max-width: 1240px;
  --font-primary: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-primary);
  color: var(--onyx);
  background:
    radial-gradient(circle at top left, rgba(76, 184, 255, 0.2), transparent 22%),
    linear-gradient(180deg, #eef5fb 0%, #f8fbfd 16%, #ffffff 48%, #f1f5f8 100%);
}

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

a,
button {
  touch-action: manipulation;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--onyx);
  color: var(--paper-strong);
}

.skip-link:focus {
  top: 1rem;
}

.section,
.site-footer,
.positioning-strip {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 0;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.68rem max(1rem, calc((100vw - var(--max-width)) / 2 + 1rem));
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(16, 20, 24, 0.05);
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    gap 220ms ease;
}

.site-header.is-compact {
  width: 100%;
}

.site-header.is-compact .header-shell {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 44px rgba(16, 20, 24, 0.1);
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.35rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
}

.site-header .brand-logo-full {
  width: clamp(190px, 23vw, 290px);
}

.brand-logo-icon {
  display: none;
  width: 3.4rem;
}

.site-header.is-compact .brand-link {
  padding: 0.12rem;
}

.site-header.is-compact .brand-logo-full,
.site-header.is-compact .desktop-nav {
  display: none;
}

.site-header.is-compact .brand-logo-icon,
.site-header.is-compact .menu-toggle {
  display: inline-flex;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: rgba(16, 20, 24, 0.82);
}

.site-nav a,
.mobile-nav a,
.footer-links a,
.service-link {
  display: inline-flex;
  align-items: center;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.service-link:hover,
.service-link:focus-visible {
  color: var(--accent-strong);
}

.site-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--paper-strong);
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  box-shadow: 0 16px 34px rgba(11, 133, 216, 0.22);
}

.button-secondary {
  color: var(--onyx);
  border-color: rgba(11, 133, 216, 0.18);
  background: rgba(255, 255, 255, 0.84);
}

.button-outline {
  color: var(--onyx);
  border-color: rgba(16, 20, 24, 0.14);
  background: rgba(255, 255, 255, 0.84);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(11, 133, 216, 0.42);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid rgba(16, 20, 24, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--onyx);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.site-header.is-compact .mobile-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  left: auto;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(16, 20, 24, 0.12);
}

body.menu-open .site-header.is-compact .mobile-panel {
  display: grid;
  gap: 1rem;
}

.site-header.is-compact .mobile-nav {
  display: grid;
  gap: 0.35rem;
}

.site-header.is-compact .mobile-nav a {
  padding: 0.8rem 0.35rem;
  border-bottom: 1px solid rgba(16, 20, 24, 0.07);
  font-size: 1rem;
  color: rgba(16, 20, 24, 0.86);
}

.site-header.is-compact .mobile-actions {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.4rem;
}

.mobile-contact-bar {
  display: none;
}

.section {
  padding: 4.75rem 0;
}

.hero,
.page-hero,
.about-story,
.service-layout,
.service-detail-block,
.faq-layout,
.cta-shell,
.site-footer {
  display: grid;
  gap: 2rem;
}

.hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  padding-top: 3rem;
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 133, 216, 0.1);
  color: #30556f;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.story-intro h2,
.standards-intro h2,
.about-copy h2,
.about-panel h2,
.cta-shell h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.page-hero h1,
.section-heading h2,
.story-intro h2,
.standards-intro h2,
.about-copy h2,
.about-panel h2,
.cta-shell h2,
.site-footer h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.hero-text,
.section-heading p,
.story-intro p,
.standards-intro p,
.about-panel p,
.service-copy p,
.faq-intro p,
.page-hero p,
.about-copy p,
.license-list li,
.site-footer p,
.service-card p,
.process-step p,
.faq-item p,
.five-w-card p,
.info-list li,
.story-panel figcaption {
  color: rgba(16, 20, 24, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 1.4rem 0 2rem;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.section-actions {
  margin-top: 1.5rem;
}

.hero-media img,
.story-panel img,
.page-hero-media img,
.about-portrait img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media img,
.story-panel img,
.page-hero-media img {
  aspect-ratio: 16 / 9;
}

.positioning-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(16, 20, 24, 0.08);
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
}

.positioning-strip p {
  margin: 0;
  text-align: center;
  color: rgba(16, 20, 24, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip {
  padding-top: 2.25rem;
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.trust-copy {
  display: grid;
  gap: 1rem;
}

.trust-copy h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.trust-copy p {
  margin: 0;
  max-width: 58ch;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 133, 216, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(16, 20, 24, 0.84);
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-badge,
.credential-seal-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-seal,
.credential-seal {
  width: min(100%, 280px);
  filter: drop-shadow(0 18px 30px rgba(16, 20, 24, 0.12));
}

.accent-panel {
  position: relative;
  border: 1px solid rgba(11, 133, 216, 0.12);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(219, 242, 255, 0.82)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.accent-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.section-heading,
.story-intro,
.faq-intro {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.schedule-card,
.cta-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.schedule-actions {
  display: grid;
  gap: 0.9rem;
}

.service-grid,
.process-grid,
.five-w-grid,
.detail-columns {
  display: grid;
  gap: 1.25rem;
}

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

.service-card,
.process-step,
.five-w-card,
.detail-panel,
.faq-item,
.about-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 44px rgba(16, 20, 24, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.service-card h3,
.process-step h3,
.five-w-card h3,
.detail-panel h3,
.about-panel h3,
.faq-item summary,
.standards-list h3,
.service-link {
  margin: 0 0 0.75rem;
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--accent-strong);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.service-card:focus-within,
.detail-panel:hover,
.detail-panel:focus-within,
.about-panel:hover,
.about-panel:focus-within,
.five-w-card:hover,
.five-w-card:focus-within,
.process-step:hover,
.process-step:focus-within {
  transform: translateY(-4px);
  border-color: rgba(11, 133, 216, 0.18);
  box-shadow: 0 22px 52px rgba(16, 20, 24, 0.08);
}

.service-card .service-link {
  margin-top: auto;
  padding-top: 1.15rem;
}

.service-card:hover .service-link,
.service-card:focus-within .service-link {
  transform: translateX(2px);
}

.service-link::after {
  content: "->";
}

.story-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1.25rem;
}

.story-panel {
  margin: 0;
}

.story-panel figcaption {
  margin-top: 0.9rem;
  padding-left: 0.2rem;
}

.process-grid,
.five-w-grid,
.standards-list,
.detail-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.standards {
  display: grid;
  gap: 2rem;
}

.standards-intro {
  max-width: 760px;
}

.standards-list article {
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 20, 24, 0.12);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 133, 216, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(16, 20, 24, 0.82);
  font-size: 0.92rem;
}

.page-hero-media,
.about-portrait {
  align-self: start;
}

.about-story,
.service-layout,
.faq-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.about-panel,
.detail-panel {
  height: 100%;
}

.placeholder-note {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: #2f556f;
  font-size: 0.9rem;
}

.license-list,
.info-list {
  margin: 0;
  padding-left: 1.1rem;
}

.license-list strong {
  color: var(--onyx);
}

.credential-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: center;
  gap: 1.5rem;
}

.faq-group {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(11, 133, 216, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-strong);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] {
  border-color: rgba(11, 133, 216, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 247, 255, 0.86));
  box-shadow: 0 18px 48px rgba(16, 20, 24, 0.07);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.5rem 0 0;
}

.site-footer {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 4.5rem 0 5rem;
  border-top: 1px solid rgba(16, 20, 24, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand-link {
  padding: 0;
  background: transparent;
}

.footer-brand .brand-logo {
  width: clamp(180px, 18vw, 250px);
}

.footer-copy {
  max-width: 34rem;
}

.footer-phone,
.footer-email {
  display: block;
  width: fit-content;
}

.footer-phone {
  margin-top: 1.5rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-email {
  margin-top: 0.6rem;
  color: rgba(16, 20, 24, 0.74);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  justify-content: flex-end;
  align-items: center;
  color: rgba(16, 20, 24, 0.74);
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.15rem;
  color: rgba(16, 20, 24, 0.72);
  font-size: 0.95rem;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
}

.footer-links a {
  min-height: 2.5rem;
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .schedule-card,
  .trust-shell,
  .story-grid,
  .about-story,
  .service-layout,
  .faq-layout,
  .cta-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .five-w-grid,
  .standards-list,
  .detail-columns,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 761px) {
  .site-header.is-compact {
    width: 100%;
    padding-top: 0;
  }

  .site-header.is-compact .header-shell {
    grid-template-columns: auto 1fr auto auto;
    gap: 0.85rem;
    padding: 0.56rem max(1rem, calc((100vw - var(--max-width)) / 2 + 1rem));
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .site-header.is-compact .desktop-phone {
    display: inline-flex;
    justify-self: end;
  }

  .site-header.is-compact .menu-toggle {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(6.35rem + env(safe-area-inset-bottom));
  }

  .site-header,
  .section,
  .site-footer,
  .positioning-strip {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .site-header {
    padding-top: 0;
    width: 100%;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0.68rem 1rem;
  }

  .brand-link {
    padding-inline: 0.2rem;
  }

  .site-header .brand-logo-full {
    width: clamp(156px, 42vw, 220px);
  }

  .brand-logo-icon {
    width: 3rem;
  }

  .site-header.is-compact .header-shell {
    padding: 0.52rem 0.8rem;
  }

  .desktop-nav,
  .desktop-phone {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    padding: 1rem;
    border: 1px solid rgba(16, 20, 24, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(16, 20, 24, 0.12);
  }

  body.menu-open .mobile-panel {
    display: grid;
    gap: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-nav {
    display: grid;
    gap: 0.35rem;
  }

  .mobile-nav a {
    padding: 0.8rem 0.35rem;
    border-bottom: 1px solid rgba(16, 20, 24, 0.07);
    font-size: 1rem;
    color: rgba(16, 20, 24, 0.86);
  }

  .mobile-actions {
    display: grid;
    gap: 0.8rem;
    padding-top: 0.4rem;
  }

  .mobile-actions .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .support-links {
    gap: 0.4rem 1rem;
  }

  .hero {
    gap: 2rem;
    padding-top: 1.5rem;
  }

  .page-hero,
  .faq-layout,
  .about-story {
    gap: 1.5rem;
  }

  .positioning-strip,
  .service-grid,
  .process-grid,
  .five-w-grid,
  .standards-list,
  .detail-columns,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .trust-shell {
    padding: 1.5rem;
  }

  .trust-seal,
  .credential-seal {
    width: min(100%, 220px);
  }

  .positioning-strip {
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.55rem);
  }

  .page-hero h1,
  .section-heading h2,
  .story-intro h2,
  .standards-intro h2,
  .about-copy h2,
  .about-panel h2,
  .cta-shell h2,
  .site-footer h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

  .hero-text,
  .page-hero p,
  .section-heading p,
  .story-intro p,
  .standards-intro p,
  .about-copy p,
  .about-panel p,
  .site-footer p {
    line-height: 1.65;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-shell,
  .about-panel,
  .detail-panel,
  .service-card,
  .faq-item,
  .five-w-card,
  .process-step {
    padding: 1.3rem;
  }

  .footer-phone {
    margin-top: 1.15rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 50%;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0.65rem;
    width: min(calc(100% - 1rem), 31rem);
    padding: 0.55rem;
    border: 1px solid rgba(16, 20, 24, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 50px rgba(16, 20, 24, 0.16);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-contact-bar .button {
    min-height: 3.3rem;
    padding-inline: 1rem;
  }

  body.menu-open .mobile-contact-bar {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 1.25rem);
  }
}

@media (max-width: 520px) {
  .section,
  .site-footer,
  .positioning-strip {
    width: min(calc(100% - 0.9rem), var(--max-width));
  }

  .button {
    font-size: 0.92rem;
  }

  .mobile-contact-bar {
    grid-template-columns: 1fr;
  }
}

.js-ready.motion-safe [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.js-ready.motion-safe [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
