:root {
  --bg: #fafafa;
  --ink: #0a0a0a;
  --mute: #444444;
  --line: #e6e6e6;
  --accent: #0a5c66;
  --white: #ffffff;
  --gutter: clamp(24px, 5vw, 72px);
  --section-y: clamp(64px, 10vw, 112px);
  --touch: 48px;
  --font: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(88px + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0;
  z-index: 100;
  transform: translateY(-120%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline-offset: 2px;
}

/* Main navigation: home | centered links | CTA */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(180deg, rgba(8, 16, 22, 0.42) 0%, rgba(8, 16, 22, 0.12) 72%, transparent);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-nav.is-solid,
.page-shell .site-nav {
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
  align-items: center;
  column-gap: 16px;
  min-height: calc(var(--touch) + 16px);
  padding: 10px var(--gutter);
}

.nav-brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch);
  min-width: var(--touch);
  min-height: var(--touch);
  color: var(--white);
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
  border-radius: 10px;
  transition: color 0.25s var(--ease), background 0.2s var(--ease), filter 0.25s var(--ease);
}

.nav-home-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.site-nav.is-solid .nav-brand,
.page-shell .nav-brand {
  color: var(--ink);
  filter: none;
}

.nav-brand:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-nav.is-solid .nav-brand:hover,
.page-shell .nav-brand:hover {
  background: rgba(10, 10, 10, 0.05);
  color: var(--accent);
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links > a,
.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--touch);
  padding: 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav.is-solid .nav-links > a,
.site-nav.is-solid .nav-dd-trigger,
.page-shell .nav-links > a,
.page-shell .nav-dd-trigger {
  color: var(--mute);
  text-shadow: none;
}

.nav-links > a:hover,
.nav-dd:hover .nav-dd-trigger,
.nav-dd.open .nav-dd-trigger {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav.is-solid .nav-links > a:hover,
.site-nav.is-solid .nav-dd:hover .nav-dd-trigger,
.site-nav.is-solid .nav-dd.open .nav-dd-trigger,
.page-shell .nav-links > a:hover,
.page-shell .nav-dd:hover .nav-dd-trigger,
.page-shell .nav-dd.open .nav-dd-trigger {
  color: var(--ink);
  background: rgba(10, 10, 10, 0.05);
}

.nav-links > a[aria-current="page"],
.nav-dd[data-active] > .nav-dd-trigger {
  color: #fff;
}

.site-nav.is-solid .nav-links > a[aria-current="page"],
.site-nav.is-solid .nav-dd[data-active] > .nav-dd-trigger,
.page-shell .nav-links > a[aria-current="page"],
.page-shell .nav-dd[data-active] > .nav-dd-trigger {
  color: var(--accent);
}

.nav-caret {
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0.55;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-dd:hover .nav-caret,
.nav-dd.open .nav-caret {
  transform: rotate(-135deg);
  margin-top: 1px;
  opacity: 0.95;
}

.nav-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 280px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.nav-dd:hover > .nav-dd-menu,
.nav-dd:focus-within > .nav-dd-menu,
.nav-dd.open > .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dd-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dd-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 12px;
  text-align: left;
  white-space: normal;
  border-radius: 10px;
  transition: background 0.15s var(--ease);
}

.nav-dd-menu a:hover,
.nav-dd-menu a:focus-visible {
  background: rgba(10, 92, 102, 0.08);
}

.ddi-t {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

.ddi-d {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.4;
}

.nav-dd-feature {
  background: rgba(10, 92, 102, 0.08);
  border: 1px solid rgba(10, 92, 102, 0.16);
}

.nav-dd-feature:hover,
.nav-dd-feature:focus-visible {
  background: rgba(10, 92, 102, 0.12) !important;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-phone:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-nav.is-solid .nav-phone,
.page-shell .nav-phone {
  color: var(--mute);
  text-shadow: none;
}

.site-nav.is-solid .nav-phone:hover,
.page-shell .nav-phone:hover {
  color: var(--ink);
  background: rgba(10, 10, 10, 0.05);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0 18px !important;
  background: var(--white);
  color: var(--ink) !important;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: none !important;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.site-nav.is-solid .nav-cta,
.page-shell .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #f2f2f2;
}

.site-nav.is-solid .nav-cta:hover,
.page-shell .nav-cta:hover {
  background: #084b53;
}

.nav-mobile-extra {
  display: none;
}

.nav-hamburger {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.site-nav.is-solid .nav-hamburger span,
.page-shell .nav-hamburger span {
  background: var(--ink);
}

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

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

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

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .nav-phone span {
    font-size: 0.85rem;
  }

  .nav-links > a,
  .nav-dd-trigger {
    padding: 0 10px;
  }
}

@media (max-width: 920px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(64px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    height: calc(100dvh - 64px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(250, 250, 250, 0.99);
    padding: 8px var(--gutter) calc(48px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .nav-dd-trigger {
    width: 100%;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink) !important;
    text-shadow: none !important;
    background: none !important;
  }

  .nav-dd {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-dd-menu {
    position: static;
    left: auto;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 12px;
    border-radius: 0;
  }

  .nav-dd.open > .nav-dd-menu {
    display: flex;
  }

  .nav-dd-menu::before {
    display: none;
  }

  .nav-dd-menu a {
    padding: 12px 4px;
  }

  .nav-dd-feature {
    margin-top: 4px;
  }

  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .nav-phone-m {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--touch);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
  }

  .nav-phone-m svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
  }

  .nav-mobile-extra .nav-cta {
    justify-content: center;
    width: 100%;
    background: var(--accent) !important;
    color: var(--white) !important;
  }
}


.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #0d2430;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero-cleveland.jpg");
  background-image: image-set(
    url("/assets/hero-cleveland.webp") type("image/webp"),
    url("/assets/hero-cleveland.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.02);
  animation: ken 18s var(--ease) infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.35) 0%, rgba(8, 16, 22, 0.2) 38%, rgba(8, 16, 22, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 16, 22, 0.55) 0%, transparent 58%);
}

.hero-board {
  position: relative;
  z-index: 2;
  width: 100%;
  padding:
    calc(104px + env(safe-area-inset-top, 0px))
    var(--gutter)
    calc(56px + env(safe-area-inset-bottom, 0px));
}

.hero-board-inner {
  max-width: 820px;
  animation: up 0.9s var(--ease) both;
}

.hero-brand {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 12ch;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-line {
  margin: 0 0 28px;
  max-width: 36ch;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0 22px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f2f2f2;
}

.btn-text {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-text:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.section {
  padding: var(--section-y) var(--gutter);
}

.section-inner {
  max-width: 880px;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 20ch;
  text-wrap: balance;
}

.section p {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--mute);
  max-width: 48ch;
  line-height: 1.65;
}

.section p:last-child {
  margin-bottom: 0;
}

.about {
  background: var(--bg);
}

.about-meta {
  margin-top: 32px;
  display: inline-block;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.65;
  max-width: 100%;
}

.about-meta strong {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-meta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-meta a:hover {
  color: var(--ink);
}

.heroes {
  background: var(--ink);
  color: var(--white);
}

.heroes h2 {
  color: var(--white);
}

.heroes p {
  color: rgba(255, 255, 255, 0.86);
}

.heroes-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.heroes-list li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.faq {
  background: var(--white);
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--touch);
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
}

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

.faq-item p {
  margin: 0 0 18px;
  padding-right: 28px;
}

.faq-item a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tips-teaser {
  background: var(--bg);
}

.tip-index {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.tip-index li {
  border-bottom: 1px solid var(--line);
}

.tip-index a {
  display: block;
  padding: 18px 0;
  min-height: var(--touch);
}

.tip-index a:hover .tip-index-title {
  color: var(--accent);
}

.tip-index-title {
  display: block;
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.tip-index-desc {
  display: block;
  margin: 0;
  font-size: 0.98rem;
  color: var(--mute);
  max-width: 48ch;
  line-height: 1.55;
}

.tips-more {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tips-more:hover {
  color: var(--ink);
}

.page-head {
  padding:
    calc(112px + env(safe-area-inset-top, 0px))
    var(--gutter)
    40px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(10, 92, 102, 0.12), transparent 55%),
    linear-gradient(180deg, #f0f4f5 0%, var(--bg) 100%);
}

.page-head-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-kicker {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.page-kicker a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-head h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 16ch;
  text-wrap: balance;
}

.page-lede {
  margin: 0;
  max-width: 42ch;
  font-size: 1.08rem;
  color: var(--mute);
  line-height: 1.6;
}

.prose {
  background: var(--white);
}

.prose .section-inner {
  max-width: 720px;
}

.prose h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  max-width: none;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  font-size: 1.05rem;
  color: var(--mute);
  line-height: 1.7;
  max-width: 54ch;
}

.prose ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tip-cta {
  background: var(--ink);
  color: var(--white);
}

.tip-cta h2 {
  color: var(--white);
}

.tip-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.tip-cta .btn-primary {
  margin-top: 8px;
}

.contact {
  background: var(--bg);
}

.contact-lines {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.contact-lines a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.contact-lines a:hover {
  color: var(--ink);
}

.site-footer {
  padding: 28px var(--gutter) calc(28px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  font-size: 0.85rem;
  color: #595959;
  background: var(--bg);
}

.site-footer a {
  color: #595959;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover {
  color: var(--ink);
}

.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;
}

.mobile-call {
  display: none;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ken {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 700px) {
  .hero-title {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .section h2 {
    max-width: none;
  }

  .mobile-call {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(250, 250, 250, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }

  .mobile-call .btn {
    width: 100%;
    background: var(--accent);
    color: var(--white);
  }

  .mobile-call .btn:hover {
    background: #084b53;
    transform: none;
  }

  .site-footer,
  .contact,
  .tip-cta {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-photo,
  .hero-board-inner {
    animation: none !important;
  }

  .btn:hover,
  .nav-cta:hover {
    transform: none;
  }

  .nav-dd-menu,
  .nav-caret,
  .nav-hamburger span {
    transition: none !important;
  }
}

@media (prefers-contrast: more) {
  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.88));
  }

  .btn-text {
    border-width: 3px;
  }

  :focus-visible {
    outline-width: 4px;
  }
}
