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

:root {
  --bg: #f7f7f7;
  --surface: #ffffff;
  --ink: #24343e;
  --ink-soft: #58636a;
  --main: #243b4a;
  --accent: #78999d;
  --accent-deep: #63858a;
  --line: #d8dfe1;
  --label: #8aa5ae;
  --gold: #efb238;
  --shadow: 0 14px 36px rgba(29, 49, 61, 0.07);
  --radius: 14px;
  --container: 1288px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.bleed-left { margin-left: calc(50% - 50vw); }
.bleed-right { margin-right: calc(50% - 50vw); }
.bleed-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

.container,
.header-inner,
.footer-inner,
.hero-inner {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(247,247,247,.92);
  box-shadow: 0 8px 28px rgba(25,43,54,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  color: #23343e;
}
.brand-name,
.footer-name {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .025em;
}
.brand-tagline {
  margin-top: 7px;
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: .12em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: .06em;
}
.desktop-nav a,
.footer-nav a { transition: opacity .25s ease; }
.desktop-nav a {
  position: relative;
  padding: 8px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }
.desktop-nav a:hover,
.footer-nav a:hover { opacity: .58; }
.header-actions { display: flex; gap: 10px; }
.header-cta {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.header-cta img { width: 19px; height: 19px; object-fit: contain; }
.header-cta--primary { background: var(--accent); color: #fff; }
.header-cta--primary img { filter: brightness(0) invert(1); }
.header-cta--outline { border: 1px solid #446278; background: rgba(255,255,255,.88); }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30,50,62,.12); }
.menu-button { display: none; }
.mobile-menu { display: none; }

.floating-actions {
  position: fixed;
  right: 0;
  top: 38%;
  z-index: 45;
  width: 88px;
  overflow: hidden;
  border-radius: 7px 0 0 7px;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(25,43,54,.18);
  transform: translateY(-50%);
}
.floating-action {
  min-height: 86px;
  padding: 11px 7px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  transition: background-color .25s ease;
}
.floating-action + .floating-action { border-top: 1px solid rgba(255,255,255,.34); }
.floating-action:hover,
.floating-action:focus-visible { background: var(--accent-deep); }
.floating-action img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  min-height: 870px;
  background: #d8e3e8;
}
.hero-inner {
  position: relative;
  min-height: 870px;
}
.hero-media {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 51%;
  display: block;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  animation: hero-zoom 5.8s ease-out both;
}
.hero-slide.is-leaving {
  z-index: 1;
  opacity: 0;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 72px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(10,18,22,.28);
}
.hero-copy h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: .07em;
  white-space: nowrap;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  width: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-shadow: 0 2px 12px rgba(10,18,22,.42);
  transform: translateX(-50%);
}
.hero-scroll i {
  position: relative;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: rgba(255,255,255,.38);
}
.hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scroll-guide 1.8s ease-in-out infinite;
}
@keyframes scroll-guide {
  0% { transform: translateY(-105%); }
  45%, 55% { transform: translateY(0); }
  100% { transform: translateY(105%); }
}

.section[id] { scroll-margin-top: 48px; }
.section { padding: 112px 0; }
.section--trouble { padding-top: 104px; }
.section--faq { padding-top: 100px; padding-bottom: 100px; }
.section--contact { padding-top: 100px; padding-bottom: 120px; }
.section-heading {
  position: relative;
  margin-bottom: 28px;
  padding-left: 34px;
}
.section-corner {
  position: absolute;
  left: 0;
  top: -13px;
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: .85;
}
.section-kicker {
  margin: 0 0 7px;
  color: var(--label);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .14em;
}
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}
.section-heading--with-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.section-heading--with-link > div { position: relative; }
.section-heading--with-link .section-corner { left: -34px; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.trouble-card,
.work-card,
.voice-card {
  background: var(--surface);
  border: 1px solid rgba(35,59,74,.08);
  border-radius: 7px;
  box-shadow: 0 7px 22px rgba(28,48,61,.04);
  overflow: hidden;
}
.trouble-card {
  min-height: 290px;
  padding: 34px 34px 30px;
  text-align: center;
}
.trouble-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 22px;
}
.trouble-card h3,
.work-card h3,
.voice-card h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: var(--main);
  font-weight: 600;
  letter-spacing: .03em;
}
.trouble-card h3 { font-size: 19px; line-height: 1.6; }
.trouble-card p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

.about-layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 720px);
  justify-content: start;
  gap: 104px;
  align-items: start;
}
.about-copy { padding-top: 8px; }
.about-copy h3 {
  margin: 0 0 28px;
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .08em;
}
.about-copy p {
  margin: 0 0 18px;
  color: #48555d;
  line-height: 2;
  text-align: left;
}
.text-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #416779;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
}
.round-arrow {
  display: inline-block;
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--accent);
}
.round-arrow::before,
.cta-arrow::before,
.back-to-top span::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.round-arrow::before { left: 13px; top: 14px; color: white; }
.about-gallery { display: grid; gap: 12px; margin-top: -90px; }
.about-gallery img { width: 100%; object-fit: cover; border-radius: 10px; display: block; }
.about-main { aspect-ratio: 16 / 7.2; object-position: center 50%; }
.about-subgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-subgrid img { aspect-ratio: 16 / 8.9; }
.about-subgrid img:first-child { object-position: 52% 47%; }
.about-subgrid img:last-child { object-position: 52% 48%; }

.text-link--compact { margin: 0 0 5px; white-space: nowrap; }
.works-grid { align-items: stretch; }
.work-card,
.voice-card { transition: transform .25s ease, box-shadow .25s ease; }
.work-card:hover,
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-card > img,
.voice-photo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.work-card:nth-child(1) > img { object-position: center 52%; }
.work-card:nth-child(2) > img { object-position: center 52%; }
.work-card:nth-child(3) > img { object-position: center 52%; }
.card-body { padding: 22px 24px 24px; }
.work-card h3,
.voice-card h3 { font-size: 19px; }
.work-card p,
.voice-card p { margin: 8px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.8; text-align: left; }
.provisional { color: #75848a !important; font-size: 11px !important; text-align: right !important; }
.rating { display: flex; align-items: center; flex-wrap: wrap; gap: 2px; margin-top: 8px; }
.rating img { width: 16px; height: 16px; object-fit: contain; }
.rating span { margin-left: 5px; color: #7a7f81; font-size: 11px; }
.voice-photo { aspect-ratio: 16 / 7.1; }
.voice-card:nth-child(3n + 1) .voice-photo { object-position: center 50%; }
.voice-card:nth-child(3n + 2) .voice-photo,
.voice-card:nth-child(3n) .voice-photo { object-position: center 54%; }
.voice-marquee {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 20px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}
.voice-track {
  display: flex;
  width: max-content;
  animation: voice-loop 58s linear infinite;
  will-change: transform;
}
.voice-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}
.voice-group .voice-card {
  width: clamp(300px, 29vw, 386px);
  flex: 0 0 auto;
}
.voice-marquee:hover .voice-track,
.voice-marquee:focus-within .voice-track { animation-play-state: paused; }
@keyframes voice-loop {
  to { transform: translateX(-50%); }
}

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 0 18px 0 10px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 46px 1fr 30px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .025em;
}
.faq-q { color: #568398; font-family: "Cormorant Garamond", serif; font-size: 29px; }
.chevron { position: relative; width: 24px; height: 24px; justify-self: end; }
.chevron::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 7px;
  top: 5px;
  border-right: 1.5px solid #568398;
  border-bottom: 1.5px solid #568398;
  transform: rotate(45deg);
  transition: transform .25s ease, top .25s ease;
}
.faq-question[aria-expanded="true"] .chevron::before { transform: rotate(225deg); top: 10px; }
.faq-answer { padding: 0 64px 26px 66px; }
.faq-answer p { margin: 0; color: var(--ink-soft); text-align: left; }

.section-heading--contact { margin-bottom: 12px; }
.contact-copy { max-width: 760px; margin: -36px auto 0; text-align: center; }
.contact-copy h2 { font-size: clamp(36px, 3.2vw, 50px); }
.contact-lead { margin: 20px 0 0; font-family: "Noto Serif JP", serif; font-size: 20px; font-weight: 500; letter-spacing: .05em; }
.contact-note { margin: 18px auto 0; color: #667178; font-size: 13px; line-height: 1.9; }
.contact-actions { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.large-cta {
  position: relative;
  min-height: 72px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 14px;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.large-cta img { width: 27px; height: 27px; object-fit: contain; }
.large-cta--primary { background: var(--accent); color: #fff; }
.large-cta--primary img { filter: brightness(0) invert(1); }
.large-cta--outline { border: 1px solid #31566e; background: rgba(255,255,255,.55); color: #31566e; }
.large-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cta-arrow { position: relative; width: 24px; height: 24px; justify-self: end; }
.cta-arrow::before { left: 5px; top: 7px; }
.demo-note { margin: 12px 0 0; font-size: 11px; color: #81898d; }

.site-footer { background: linear-gradient(120deg, #173548, #244a5d); color: rgba(255,255,255,.86); padding: 58px 0 34px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 36px 54px; align-items: end; }
.footer-brand p { margin: 0; }
.footer-name { font-size: 27px !important; color: #fff; }
.footer-brand p:last-child { margin-top: 8px; font-family: "Noto Serif JP", serif; font-size: 11px; letter-spacing: .12em; }
.footer-nav { display: flex; gap: 26px; font-size: 12px; letter-spacing: .05em; }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  color: rgba(255,255,255,.62);
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 12px; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(36,59,74,.92);
  color: #fff;
  box-shadow: 0 8px 24px rgba(20,39,50,.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top span { position: absolute; inset: 0; }
.back-to-top span::before { left: 19px; top: 21px; transform: rotate(-45deg); }

:focus-visible { outline: 3px solid #3f778d; outline-offset: 4px; }

.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .42s ease, transform .42s ease; }

@media (max-width: 1060px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions { display: none; }
  .menu-button {
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid rgba(36,59,74,.22);
    background: rgba(255,255,255,.82);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .menu-button span { display: block; height: 1.5px; background: var(--main); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 18px;
    right: 18px;
    z-index: 25;
    padding: 22px;
    border-radius: 8px;
    background: rgba(247,247,247,.98);
    box-shadow: 0 18px 50px rgba(20,39,50,.18);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu a { padding: 15px 8px; border-bottom: 1px solid var(--line); font-family: "Noto Serif JP", serif; }
  .mobile-menu a:last-child { border-bottom: 0; }
}

@media (max-width: 900px) {
  .container, .header-inner, .footer-inner, .hero-inner { width: min(calc(100% - 40px), var(--container)); }
  .hero, .hero-inner { min-height: 680px; }
  .hero-copy { bottom: 58px; }
  .hero-copy h1 { font-size: clamp(38px, 7vw, 54px); }
  .section { padding: 96px 0; }
  .floating-actions { display: none; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .trouble-grid > :last-child,
  .works-grid > :last-child,
  .voice-grid > :last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); justify-self: center; width: 100%; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-gallery { margin-top: 0; }
  .about-copy { max-width: 580px; }
  .contact-copy { margin-top: 0; }
  .section-heading--with-link { align-items: flex-end; }
}

@media (max-width: 640px) {
  :root { --header-h: 76px; }
  body { font-size: 16px; }
  .container, .header-inner, .footer-inner, .hero-inner { width: calc(100% - 36px); }
  .brand-name { font-size: 21px; }
  .brand-tagline { font-size: 9px; margin-top: 5px; }
  .hero, .hero-inner { min-height: 620px; }
  .hero-slide { object-position: 56% center; }
  .hero-copy { left: 2px; bottom: 112px; width: calc(100% - 4px); }
  .hero-copy h1 { font-size: clamp(31px, 8.8vw, 42px); line-height: 1.52; letter-spacing: .045em; }
  .hero-scroll { bottom: 12px; }
  .section { padding: 76px 0; }
  .section--trouble { padding-top: 72px; }
  .section--contact { padding-top: 72px; padding-bottom: 88px; }
  .section-heading { margin-bottom: 30px; padding-left: 26px; }
  .section-heading h2, .contact-copy h2 { font-size: clamp(29px, 8vw, 37px); letter-spacing: .045em; }
  .section-heading h2 { white-space: normal; }
  .section-corner { width: 34px; height: 34px; top: -10px; }
  .section-kicker { font-size: 13px; }
  .section-heading--with-link { display: block; }
  .section-heading--with-link .section-corner { left: -26px; }
  .text-link--compact { margin-top: 20px; }
  .card-grid { grid-template-columns: 1fr; gap: 18px; }
  .trouble-grid > :last-child,
  .works-grid > :last-child,
  .voice-grid > :last-child { grid-column: auto; max-width: none; }
  .trouble-card { min-height: 0; padding: 30px 26px 28px; }
  .trouble-card h3 { font-size: 18px; }
  .about-layout { gap: 28px; }
  .about-copy h3 { font-size: 27px; margin-bottom: 22px; }
  .about-copy p { line-height: 1.9; }
  .about-main { aspect-ratio: 4 / 3; }
  .about-subgrid { gap: 8px; }
  .about-subgrid img { aspect-ratio: 4 / 3; }
  .card-body { padding: 20px 20px 22px; }
  .work-card > img, .voice-photo { aspect-ratio: 16 / 9; }
  .voice-group { gap: 16px; padding-right: 16px; }
  .voice-group .voice-card { width: min(82vw, 340px); }
  .faq-question { min-height: 72px; grid-template-columns: 38px 1fr 24px; padding-inline: 4px; font-size: 16px; line-height: 1.7; }
  .faq-answer { padding: 0 8px 24px 42px; }
  .contact-lead { font-size: 18px; text-align: left; }
  .contact-note { font-size: 13px; text-align: left; }
  .contact-note br { display: none; }
  .contact-actions { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .large-cta { width: 100%; max-width: 360px; margin-inline: auto; min-height: 62px; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-nav { flex-wrap: wrap; gap: 14px 20px; }
  .footer-bottom { display: grid; gap: 12px; }
  .floating-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    padding-bottom: env(safe-area-inset-bottom);
    border-radius: 0;
    transform: none;
    box-shadow: 0 -8px 24px rgba(25,43,54,.16);
  }
  .floating-action {
    min-height: 62px;
    padding: 9px 12px;
    flex-direction: row;
    gap: 10px;
    font-size: 13px;
  }
  .floating-action + .floating-action {
    border-top: 0;
    border-left: 0;
  }
  .floating-action img { width: 23px; height: 23px; }
  .floating-action:last-child {
    background: #fff;
    color: #31566e;
    box-shadow: none;
  }
  .floating-action:last-child img { filter: none; }
  .floating-action:last-child:hover,
  .floating-action:last-child:focus-visible { background: #f3f6f7; }
  .site-footer { padding-bottom: calc(34px + 62px + env(safe-area-inset-bottom)); }
  .back-to-top { right: 14px; bottom: calc(76px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero-slide:not(.is-active) { display: none; }
  .voice-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}
