﻿  :root {
    --ink: #182235;
    --navy: #1f2f52;
    --navy-dark: #102040;
    --line: #e5e7ee;
    --soft: #f7f8fc;
    --paper: #ffffff;
    --muted: #5f6676;
    --gold: #b58a45;
    --gutter: 48px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    color: var(--muted);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.9;
    overflow-x: hidden;
  }
  img { display: block; width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }
  .container { width: min(1180px, calc(100% - var(--gutter))); margin: 0 auto; }
  .keep-inline { white-space: nowrap; }
  .hero-nowrap,
  .price-cta-prefix,
  .price-cta-main {
    white-space: nowrap;
  }
  .mobile-break { display: none; }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(16,32,64,.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: var(--navy);
    white-space: nowrap;
  }
  .brand-name {
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 14px 28px rgba(16,32,64,.18);
  }
  .brand-mark svg { width: 22px; height: 22px; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
  }
  .site-header .brand {
    color: #fff;
    gap: 5px;
  }
  .site-header .brand-mark {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-header .brand-mark img {
    width: auto;
    height: 30px;
    display: block;
  }
  .site-header .brand-name {
    color: #fff;
    font-size: 20px;
  }
  .site-header .btn-primary {
    background: #fff;
    color: var(--navy);
    box-shadow: none;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
  }
  .btn::after { content: "→"; font-weight: 700; }
  .btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 18px 40px rgba(31,47,82,.18);
  }
  .btn-outline {
    background: #fff;
    color: var(--navy);
    border-color: #bcc3d4;
  }

  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.88) 26%, rgba(255,255,255,.76) 48%, rgba(255,255,255,.40) 64%, rgba(255,255,255,.12) 100%),
      url("images/hero.jpg") center calc(50% + var(--hero-shift, 0px)) / cover no-repeat;
    transform: scale(1.02);
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.96));
  }
  .hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(540px, 1.05fr);
    gap: 38px;
    align-items: center;
    padding: 72px 0;
  }
  .hero-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--muted);
  }
  .hero h1 {
    margin: 18px 0 0;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: var(--ink);
    font-size: clamp(40px, 4.3vw, 63px);
    line-height: 1.42;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .hero-copy {
    margin: 24px 0 0;
    max-width: 440px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 2;
    white-space: nowrap;
  }
  .hero-copy-nowrap {
    white-space: nowrap;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }
  .hero-visual {
    display: none;
  }

  .section {
    padding: 80px 0;
  }
  #faq {
    padding-bottom: 30px;
  }
  .section-head {
    display: block;
    margin-bottom: 28px;
  }
  .section-head > .btn { margin-top: 18px; }
  .section-kicker {
    font-size: 12px;
    letter-spacing: 0;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .section-title {
    margin: 0;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: var(--ink);
    font-size: clamp(28px, 3.1vw, 40px);
    line-height: 1.45;
    font-weight: 600;
    text-wrap: pretty;
  }
  .section-lead {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
    max-width: 640px;
  }
  .problem-lead {
    max-width: none;
    white-space: nowrap;
  }
  .problem-lead br {
    display: none;
  }
  .problem-section {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
  }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .problem-card {
    min-height: 100%;
    padding: 24px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(18,24,38,.05);
  }
  .problem-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--navy-dark);
    color: #fff;
    font-weight: 900;
    line-height: 1;
  }
  .problem-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.65;
    text-wrap: pretty;
  }
  .problem-card h3 br {
    display: none;
  }
  .problem-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .feature-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 16px 40px rgba(18,24,38,.06);
  }
  .feature-media {
    overflow: hidden;
    border-radius: 2px;
  }
  .feature-media img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }
  .feature-copy {
    padding: 18px 18px 20px;
  }
  .feature-copy .section-title { margin-bottom: 12px; font-size: 26px; }
  .feature-title-nowrap { white-space: normal; }
  .feature-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
  }

  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
  }
  .work-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(31,47,82,.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .work-card:hover,
  .work-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(181,138,69,.45);
    box-shadow: 0 24px 48px rgba(31,47,82,.14);
  }
  .work-card:focus-visible {
    outline: 3px solid rgba(181,138,69,.24);
    outline-offset: 4px;
  }
  .work-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft);
  }
  .work-card img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .work-meta {
    display: flex;
    flex-direction: column;
    padding: 16px 18px 18px;
    min-height: 206px;
  }
  .work-category {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
  }
  .work-meta strong {
    display: block;
    font-size: 20px;
    line-height: 1.45;
    margin: 4px 0 6px;
  }
  .work-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
  }
  .work-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
  }

  .reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .reason-card {
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .reason-no {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 44px;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 10px;
  }
  .reason-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.7;
  }
  .reason-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
  }

  .price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .price-card {
    max-width: 920px;
    margin: 0 auto 48px;
    padding: 34px;
    border: 1px solid #e7dccb;
    border-radius: 8px;
    background: #fff;
    text-align: left;
    box-shadow: 0 22px 48px rgba(31,47,82,.10);
  }
  .price-card .name,
  .price-label {
    font-size: 13px;
    font-weight: 800;
    color: #8a6b34;
    letter-spacing: 0;
    text-transform: uppercase;
  }
  .price-card h3 {
    margin: 8px 0 0;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.5;
    font-weight: 600;
    max-width: 760px;
    text-wrap: pretty;
  }
  .price-card .desc {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
  }
  .price-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
  }
  .price-item {
    padding: 22px;
    border: 1px solid #ece5da;
    border-radius: 8px;
    background: #fffaf2;
  }
  .price-card .price {
    margin-top: 6px;
    font-size: clamp(42px, 6vw, 72px);
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.05;
  }
  .price-card .price span {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .42em;
    font-weight: 800;
    margin-left: 2px;
  }
  .price-card.featured {
    color: var(--ink);
  }
  .price-card.featured .desc {
    color: var(--muted);
  }
  .price-card.featured .price {
    color: var(--navy);
  }
  .price-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
  }
  .price-checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.7;
    color: #344055;
  }
  .price-checklist li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: #eef6ee;
    color: #2f7d4f;
    font-weight: 900;
    line-height: 1;
  }
  .price-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #ece5da;
  }
  .price-action p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
  }
  .price-action .btn {
    flex: 0 0 auto;
    background: #2f6f57;
    color: #fff;
    box-shadow: 0 16px 34px rgba(47,111,87,.18);
  }

  .compare-wrap {
    overflow-x: auto;
  }
  .compare-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
  }
  .compare-table th,
  .compare-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .compare-table thead th {
    background: #f8f9fc;
    font-weight: 800;
  }
  .compare-table tbody tr:last-child td { border-bottom: 0; }
  .compare-table .us {
    background: #f2f5ff;
    font-weight: 800;
    color: var(--navy);
  }
  .compare-table .strong {
    font-weight: 800;
    color: var(--navy);
  }
  .compare-head {
    margin: 34px 0 14px;
  }
  .compare-head h3 {
    margin: 0;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: var(--ink);
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.45;
    font-weight: 600;
  }

  .flow-wrap {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(18,24,38,.05);
  }
  .flow-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
  }
  .flow-item {
    position: relative;
    padding: 22px 16px 24px;
    border: 0;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
    min-height: 190px;
  }
  .flow-item:last-child {
    border-right: 0;
  }
  .flow-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy-dark);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
  }
  .flow-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 0 18px;
    object-fit: contain;
    padding: 16px;
    border: 0;
    background: transparent;
    filter: brightness(0) saturate(100%) invert(13%) sepia(28%) saturate(1594%) hue-rotate(189deg) brightness(92%) contrast(93%);
  }
  .flow-item h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.5;
  }
  .flow-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
  }

  .compare-wrap {
    overflow-x: auto;
  }
  .compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
  }
  .compare-table th,
  .compare-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .compare-table thead th {
    background: #f8f9fc;
    font-weight: 800;
  }
  .compare-table tbody tr:last-child td { border-bottom: 0; }

  .faq-list {
    border: 1px solid var(--line);
    background: #fff;
  }
  .faq-item {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }
  .faq-item:last-child { border-bottom: 0; }
  .faq-item h3 {
    margin: 0 0 6px;
    font-size: 16px;
  }
  .faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
  }

  .cta {
    padding: 40px 0 88px;
    background: #fff;
  }
  .cta-inner {
    color: var(--ink);
    padding: 0;
    display: block;
    max-width: 760px;
    text-align: center;
  }
  .cta .section-kicker {
    color: var(--muted);
    margin-bottom: 12px;
  }
  .cta h2 {
    margin: 0;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1.45;
    font-weight: 600;
    text-wrap: pretty;
  }
  .cta p {
    max-width: 620px;
    margin: 16px auto 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
  }
  .cta .btn-outline {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 18px 40px rgba(31,47,82,.18);
  }
  .footer {
    padding: 28px 0 34px;
    border-top: 1px solid rgba(255,255,255,.12);
    background: #102040;
    color: rgba(255,255,255,.86);
  }
  .footer-top {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .footer-info {
    margin-top: 12px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.8;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.84);
  }
  .footer-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 14px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
  }
  .footer .brand {
    color: #fff;
    gap: 5px;
  }
  .footer .brand-mark {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .footer .brand-mark img {
    width: auto;
    height: 30px;
    display: block;
  }
  .footer .brand-name {
    color: #fff;
    font-size: 20px;
  }

  .reveal,
  .reveal-image {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition:
      opacity .9s ease,
      transform .9s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .reveal-image {
    transform: translate3d(0, 30px, 0) scale(.97);
    transition-duration: 1s;
  }
  .reveal.is-visible,
  .reveal-image.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  @media (max-width: 1080px) {
    :root { --gutter: 40px; }
    .nav-links { display: none; }
    .hero-layout,
    .cta-inner {
      grid-template-columns: 1fr;
    }
    .hero-visual { min-height: auto; }
    .problem-grid,
    .feature-grid,
    .works-grid,
    .reason-grid,
    .price-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
      grid-template-columns: 1fr;
    }
    .flow-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .flow-item:nth-child(3n) { border-right: 0; }
    .flow-item:nth-child(n+4) { border-top: 1px solid var(--line); }
  }

  @media (max-width: 760px) {
    :root { --gutter: 28px; }
    .nav { height: 66px; }
    .brand { font-size: 18px; }
    .keep-inline { white-space: normal; }
    .site-header .brand-mark img { height: 30px; }
    .site-header .brand-name { font-size: 20px; }
    .hero { padding: 34px 0 44px; }
    .hero::before {
      background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 32%, rgba(255,255,255,.76) 100%),
        url("images/hero.jpg") center calc(0% + var(--hero-shift, 0px)) / cover no-repeat;
    }
    .hero h1 {
      font-size: clamp(23px, 6.7vw, 32px);
      line-height: 1.48;
      white-space: normal;
      overflow-wrap: normal;
    }
    .mobile-break { display: none; }
    .hero-copy {
      font-size: 14px;
      line-height: 1.9;
      white-space: normal;
    }
    .hero-copy-nowrap {
      display: inline-block;
      font-size: clamp(10px, 2.85vw, 12px);
      line-height: 1.8;
      white-space: nowrap;
    }
    .hero-actions .btn,
    .cta-inner .btn {
      width: 100%;
    }
    .problem-grid,
    .feature-grid,
    .works-grid,
    .reason-grid,
    .price-grid,
    .price-main,
    .price-checklist {
      grid-template-columns: 1fr;
    }
    .problem-card h3 br {
      display: block;
    }
    .price-card {
      padding: 24px 18px;
      margin-bottom: 36px;
    }
    .price-card h3 {
      font-size: clamp(21px, 5.6vw, 25px);
      line-height: 1.55;
    }
    .price-cta-line {
      display: inline;
    }
    .price-main {
      gap: 12px;
      margin-top: 20px;
    }
    .price-item {
      padding: 18px;
    }
    .price-action {
      display: grid;
      gap: 14px;
    }
    .price-action .btn {
      width: 100%;
    }
    .section { padding: 64px 0; }
    #faq { padding-bottom: 24px; }
    .section-head { margin-bottom: 22px; }
    .section-title { font-size: clamp(24px, 7.2vw, 32px); }
    .problem-lead {
      white-space: normal;
    }
    .problem-lead br {
      display: block;
    }
    .feature-copy { padding: 16px; }
    .feature-title-nowrap {
      font-size: 20px;
      white-space: normal;
    }
    .feature-title-nowrap br {
      display: block;
    }
    .compare-wrap {
      width: 100%;
    }
    .compare-table {
      width: 100%;
      min-width: 100%;
      font-size: 13px;
      table-layout: fixed;
    }
    .compare-table th,
    .compare-table td {
      padding: 12px 8px;
      line-height: 1.6;
      white-space: normal;
      overflow-wrap: anywhere;
    }
    .flow-steps { grid-template-columns: 1fr; }
    .flow-item {
      display: grid;
      grid-template-columns: 46px 84px 1fr;
      column-gap: 14px;
      align-items: center;
      min-height: 0;
      padding: 14px 16px;
    }
    .flow-item,
    .flow-item:nth-child(3n) {
      border-right: 0;
      border-top: 1px solid var(--line);
    }
    .flow-item:first-child { border-top: 0; }
    .flow-no {
      width: 38px;
      height: 38px;
      margin-bottom: 0;
      font-size: 12px;
    }
    .flow-image {
      width: 84px;
      aspect-ratio: 4 / 3;
      margin: 0;
      grid-column: 2;
      grid-row: 1 / span 2;
    }
    .flow-item h3 {
      grid-column: 3;
      margin: 0 0 2px;
      font-size: 16px;
      line-height: 1.35;
    }
    .flow-item p {
      grid-column: 3;
      font-size: 13px;
      line-height: 1.55;
    }
    .cta-inner {
      gap: 18px;
    }
    .cta {
      padding: 24px 0 41px;
    }
    .cta h2 {
      font-size: clamp(25px, 7vw, 32px);
    }
    .footer-top {
      display: grid;
      gap: 18px;
    }
    .footer .brand-mark img { height: 30px; }
    .footer .brand-name { font-size: 20px; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-image {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .hero::before {
      background-position: center;
    }
  }
