:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5b6c6f;
  --paper: #f7fbf7;
  --white: #ffffff;
  --sage: #88d8c0;
  --forest: #007c89;
  --teal: #0b929d;
  --clay: #f15b4a;
  --gold: #ffe45c;
  --line: #d7ece7;
  --aqua: #edf8f4;
  --aqua-strong: #d8f2ea;
  --coral-soft: #ffe3dc;
  --deep: #101820;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.12);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: auto;
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  line-height: 1.7;
  touch-action: pan-y;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 228, 92, 0.95);
  outline-offset: 3px;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--forest);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.32rem;
}

.image-mark {
  overflow: hidden;
  background: var(--white);
}

.image-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(11, 138, 160, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  font-size: 0.72rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(0, 124, 137, 0.1);
}

.site-nav .nav-reserve {
  margin-left: 8px;
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 10px 26px rgba(241, 91, 74, 0.28);
}

.site-nav .nav-reserve:hover {
  background: #d64c40;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(76vh, 680px);
  padding: calc(var(--header-height) + 34px) clamp(20px, 6vw, 84px) 44px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/source/hpb-salon-01.jpg");
  background-position: center 46%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.84) 0%, rgba(0, 124, 137, 0.66) 48%, rgba(16, 24, 32, 0.12) 88%),
    linear-gradient(0deg, rgba(0, 124, 137, 0.26), rgba(255, 255, 255, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dffcff;
}

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

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 3.55rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(1.02rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 14px 34px rgba(241, 91, 74, 0.3);
}

.button.primary:hover {
  background: #d64c40;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button.secondary.dark {
  color: var(--forest);
  border-color: rgba(11, 138, 160, 0.28);
  background: transparent;
}

.button.ghost {
  color: var(--forest);
  border-color: rgba(11, 138, 160, 0.22);
  background: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 32px 0 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-facts dt {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
}

.section-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(58px, 8vw, 104px) 0;
}

.route-section {
  padding-top: 42px;
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 62px);
  max-width: none;
  align-items: end;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-card {
  display: grid;
  min-height: 178px;
  align-content: end;
  padding: 22px;
  color: var(--forest);
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 91, 74, 0.36);
  box-shadow: var(--shadow);
}

.route-card.strong {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--deep));
  border-color: var(--gold);
}

.route-card span {
  margin-bottom: 36px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.route-card.strong span {
  color: var(--gold);
}

.route-card strong {
  font-size: 1.18rem;
}

.route-card small {
  display: block;
  margin-top: 7px;
  color: currentColor;
  opacity: 0.78;
}

.worries {
  background: var(--paper);
}

.source-gallery {
  background: linear-gradient(180deg, var(--white), #fff8d7 52%, var(--aqua));
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.source-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.08);
}

.source-grid figure:first-child,
.source-grid figure:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.source-grid figure:nth-child(n + 3) {
  grid-column: span 1;
}

.source-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.worry-grid,
.menu-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.worry-card,
.menu-card,
.support-card,
.access-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.07);
}

.worry-card {
  min-height: 246px;
  padding: 24px;
}

.icon-dot {
  display: block;
  width: 13px;
  height: 13px;
  margin-bottom: 28px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 18px 0 0 rgba(118, 223, 231, 0.28), 36px 0 0 rgba(118, 223, 231, 0.16);
}

.icon-dot.clay {
  background: var(--clay);
  box-shadow: 18px 0 0 rgba(241, 91, 74, 0.24), 36px 0 0 rgba(241, 91, 74, 0.12);
}

.icon-dot.teal {
  background: var(--teal);
  box-shadow: 18px 0 0 rgba(11, 146, 157, 0.24), 36px 0 0 rgba(11, 146, 157, 0.12);
}

.icon-dot.gold {
  background: var(--gold);
  box-shadow: 18px 0 0 rgba(255, 209, 102, 0.28), 36px 0 0 rgba(255, 209, 102, 0.14);
}

.icon-dot.coral {
  background: var(--clay);
  box-shadow: 18px 0 0 rgba(255, 228, 92, 0.3), 36px 0 0 rgba(136, 216, 192, 0.2);
}

.worry-card p,
.menu-card p,
.support-card p {
  color: var(--muted);
}

.worry-card a,
.text-link {
  color: var(--forest);
  font-weight: 900;
}

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

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

.menu-card {
  display: grid;
  min-height: 278px;
  overflow: hidden;
  padding: 0 28px 28px;
}

.menu-photo {
  width: calc(100% + 56px);
  height: 210px;
  margin: 0 -28px 24px;
  object-fit: cover;
}

.menu-card.highlight {
  color: var(--white);
  background: linear-gradient(145deg, var(--forest), var(--deep));
  border-color: var(--gold);
}

.menu-card.highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.menu-card.highlight .text-link {
  color: #dffcff;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.menu-top span {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
}

.menu-card.highlight .menu-top span {
  color: #dffcff;
}

.menu-top strong {
  font-size: 1.2rem;
}

.price {
  margin-top: auto;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

.first {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 100%);
}

.first .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.first-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.first-visual {
  display: grid;
  gap: 14px;
}

.first-visual > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(4, 81, 94, 0.2);
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.step-list span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.step-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof {
  padding: 58px 0;
  background: var(--aqua);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  color: var(--forest);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  background-image: radial-gradient(circle, var(--clay) 0 5px, transparent 6px);
  background-position: 0 24px;
  background-repeat: no-repeat;
  font-weight: 800;
}

.proof-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 18px;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-list li:last-child {
  border-bottom: 0;
}

.homecare {
  background: var(--paper);
}

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

.support-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 286px;
  overflow: hidden;
  padding: 0 28px 28px;
}

.support-photo {
  width: calc(100% + 56px);
  height: 170px;
  margin: 0 -28px 16px;
  object-fit: cover;
}

.support-card .button {
  align-self: end;
  margin-top: 10px;
}

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

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--forest);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.access {
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(237, 248, 244, 0.96), rgba(255, 248, 215, 0.68)),
    var(--aqua);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.access h2 {
  max-width: 650px;
}

.access-copy {
  max-width: 560px;
  color: var(--muted);
}

.access-photo {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  margin: 10px 0 22px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.access-card {
  padding: clamp(24px, 4vw, 36px);
  color: var(--ink);
}

.access-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.access-card div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.access-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.access-card dt {
  color: var(--muted);
  font-weight: 900;
}

.access-card dd {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 92px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
  border-top: 5px solid var(--gold);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  right: clamp(14px, 3vw, 32px);
  bottom: 18px;
  z-index: 90;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 124, 137, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-sticky-cta .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--clay);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.sticky-cta a:last-child {
  color: var(--forest);
  background: var(--aqua);
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    padding: 10px 12px;
  }

  .site-nav .nav-reserve {
    margin-left: 0;
  }

  .hero {
    min-height: min(760px, calc(100svh - 44px));
    padding-top: calc(var(--header-height) + 68px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 24, 32, 0.88) 0%, rgba(0, 124, 137, 0.7) 66%, rgba(0, 124, 137, 0.2) 100%),
      linear-gradient(0deg, rgba(0, 124, 137, 0.28), rgba(255, 255, 255, 0.04));
  }

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

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

  .source-grid figure,
  .source-grid figure:first-child,
  .source-grid figure:nth-child(2),
  .source-grid figure:nth-child(n + 3) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .section-heading.split,
  .first-layout,
  .proof-panel,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 720px;
    padding-inline: 20px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.65rem);
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-copy {
    max-width: 31rem;
  }

  .hero-actions,
  .access-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 340px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 340px;
    margin-top: 30px;
  }

  .hero-facts div {
    padding: 10px;
  }

  .hero-facts dd {
    font-size: 0.86rem;
  }

  .section-inner {
    width: min(100% - 32px, 1140px);
  }

  section:not(.hero) {
    padding: 54px 0;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .route-grid,
  .worry-grid,
  .menu-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 148px;
  }

  .worry-card {
    min-height: 0;
    padding: 22px;
  }

  .menu-card,
  .support-card {
    min-height: 0;
    padding: 0 22px 22px;
  }

  .menu-photo,
  .support-photo {
    width: calc(100% + 44px);
    margin-right: -22px;
    margin-left: -22px;
  }

  .source-grid {
    grid-auto-rows: 230px;
  }

  .proof-panel {
    padding: 24px;
  }

  .access-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    display: grid;
  }

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

  .sticky-cta {
    right: 10px;
    left: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 96px;
  }

  .sticky-cta a {
    justify-content: center;
    text-align: center;
  }
}

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