:root {
  --color-black: #070707;
  --color-black-soft: #101010;
  --color-charcoal: #171717;
  --color-white: #f4f3ef;
  --color-white-pure: #ffffff;
  --color-gray: #9b9b9b;
  --color-gray-light: #d7d7d7;
  --color-border: rgba(255, 255, 255, 0.16);
  --color-accent: #bd1231;
  --black: var(--color-black);
  --ink: #151515;
  --paper: var(--color-white);
  --white: var(--color-white-pure);
  --muted: rgba(255, 255, 255, 0.72);
  --body: #676767;
  --line: var(--color-border);
  --light-line: rgba(0, 0, 0, 0.22);
  --red: var(--color-accent);
  --font-heading-ja: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-body-ja: "Noto Sans JP", sans-serif;
  --font-display-en: "Inter Tight", sans-serif;
  --font-ja: var(--font-body-ja);
  --font-en: var(--font-display-en);
  --text-hero: clamp(4.5rem, 7vw, 7rem);
  --text-section-lg: clamp(2.25rem, 3.8vw, 3.8rem);
  --text-body-md: clamp(0.9375rem, 1vw, 1rem);
  --leading-heading: 1.2;
  --leading-body: 1.9;
  --side-space: clamp(24px, 6vw, 88px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-ja);
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading-ja);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 178px;
  align-items: stretch;
  min-height: 72px;
  color: var(--white);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 8px 0 8px 24px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  padding: 3px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.brand:hover .brand-logo {
  border-color: #e2ba29;
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 38px);
  padding-right: 30px;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--red);
}

.menu-button {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-link::after {
  content: "->";
  font-family: var(--font-en);
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: min(760px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, #030303 0%, #050505 36%, rgba(5, 5, 5, 0.2) 70%, rgba(5, 5, 5, 0) 100%),
    #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.96) saturate(0.28) contrast(1.15) brightness(0.9);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: sepia(0.72) saturate(3.2) hue-rotate(-20deg) contrast(1.18) brightness(0.92);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.88) 30%, rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 58%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1120px, calc(100% - 120px));
  min-height: min(760px, 100svh);
  margin-inline: auto;
  padding: clamp(140px, 18vh, 190px) 0 78px;
  text-align: center;
}

.hero-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.1em;
  margin: 0;
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  white-space: nowrap;
  text-align: center;
}

.hero-title::before {
  display: none;
}

.hero-title__typewriter {
  display: inline-block;
}

.hero-title__cursor {
  display: none;
  width: 3px;
  height: 0.78em;
  margin-left: 0.08em;
  background: var(--red);
  transform: translateY(-0.06em);
}

.hero.is-type-active .hero-title__cursor {
  display: inline-block;
}

.hero.is-cursor-blinking .hero-title__cursor {
  animation: hero-cursor-blink 0.42s steps(1) 3;
}

.hero.is-type-complete .hero-title__cursor {
  display: none;
}

.hero.is-type-active .hero-bg {
  animation: hero-image-in 1.1s ease both;
}

.hero-intro,
.scroll-mark,
.hero-statement,
.hero-body,
.hero-cta {
  display: none !important;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 45px 76px 50px;
  background: var(--paper);
  color: var(--ink);
}

.principles article {
  min-height: 150px;
  padding: 0 54px 0 0;
}

.principles article + article {
  padding-left: 52px;
  border-left: 1px solid var(--light-line);
}

.principles p,
.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.principles h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.principles span {
  display: block;
  margin-top: 22px;
  color: var(--body);
  font-size: 0.72rem;
  line-height: 2.18;
}

.values {
  position: relative;
  min-height: 0;
  padding: 70px var(--side-space) 78px;
  background: #030303;
  overflow: hidden;
}

.values::after {
  content: "";
  display: none;
}

.values-inner {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.values h2 {
  max-width: 12em;
  margin: 0 auto 30px;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.value-list article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  padding: 30px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 18%, rgba(189, 18, 49, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.03);
  text-align: center;
}

.value-list span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.value-list h3 {
  margin: 0;
  max-width: 8em;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.value-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  line-height: 1.8;
  max-width: 14em;
}

.about {
  display: block;
  padding: 68px 76px 76px;
  background: var(--paper);
  color: var(--ink);
}

.about-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.about-copy h2 {
  display: block;
  margin: 0 auto;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.06em;
  text-wrap: balance;
  min-height: 1.08em;
}

.about-title__typewriter {
  display: inline-block;
}

.about-copy p:not(.section-label) {
  margin: 24px auto 0;
  color: var(--body);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 2.05;
  max-width: 46em;
}

.about-copy a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 28px auto 0;
  padding: 12px 38px;
  border: 1px solid #777;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
}

.about-copy a::after {
  content: "->";
  font-family: var(--font-en);
}

.services {
  background: var(--paper);
  color: var(--ink);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 0.62fr) minmax(150px, 0.24fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(72px, 10vw, 128px) var(--side-space);
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.athlemate-card {
  color: var(--white);
  background: var(--black);
  border-top-color: rgba(255, 255, 255, 0.16);
}

.service-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.06em;
}

.service-copy p:not(.section-label) {
  margin: 24px 0 0;
  max-width: 42em;
  color: var(--body);
  font-size: 0.94rem;
  line-height: 2.05;
}

.athlemate-card .service-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.7);
}

.service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.service-card li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  color: #343434;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-image {
  margin: 0;
  min-height: 315px;
  overflow: hidden;
  background: #101010;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.78);
}

.service-steps {
  display: grid;
  align-content: center;
  gap: 18px;
  color: var(--red);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.65;
}

.service-steps span {
  position: relative;
  display: block;
  padding-bottom: 28px;
}

.service-steps span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 22px;
  background: var(--red);
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.dashboard img {
  grid-column: 1 / -1;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.dashboard div {
  min-height: 160px;
  padding: 22px;
  background: #0d0d0d;
}

.dashboard span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-en);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}

.dashboard strong {
  display: block;
  margin-top: 34px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.85;
}

.message-section,
.numbers-section,
.company-section,
.news-section,
.contact-section {
  border-top: 1px solid var(--line);
}

.message-section,
.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 7vw, 92px) var(--side-space);
  background: #060606;
}

.message-copy h2,
.contact-message h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.message-copy .message-body p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 2;
}

.message-section {
  display: block;
  min-height: 0;
  padding: 92px var(--side-space) 86px;
}

.message-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
}

.message-copy--full {
  max-width: 860px;
}

.message-copy--full h2 {
  max-width: 16.5em;
  margin-inline: auto;
  text-align: center;
}

.message-copy--full .message-body {
  max-width: 46em;
  margin: 28px auto 0;
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 2.05;
  text-align: center;
}

.message-copy--full .message-body p {
  margin: 0 0 16px;
}

.message-sign {
  display: grid;
  gap: 6px;
  justify-items: center;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.message-sign strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.message-sign span {
  color: var(--text-white);
  font-family: var(--font-heading-ja);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.message-image,
.company-image {
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  background: #111;
}

.message-image img,
.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.78);
}

.numbers-section {
  padding: clamp(54px, 7vw, 88px) var(--side-space);
  background: var(--black);
  text-align: center;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 90px);
  width: min(760px, 100%);
  margin: 18px auto;
}

.number-grid strong {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(4.2rem, 9vw, 7.5rem);
  line-height: 0.85;
}

.number-grid span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-en);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.numbers-section h2 {
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.company-info dl {
  display: grid;
  gap: 14px;
  margin: 0;
  width: min(680px, 100%);
}

.company-info div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.8;
}

.company-info dt {
  color: rgba(255, 255, 255, 0.52);
}

.company-info dd {
  margin: 0;
}

.news-section {
  padding: clamp(52px, 7vw, 84px) var(--side-space);
  background: var(--black);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.news-list a {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.news-list a:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.news-list span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.news-list strong {
  display: block;
  margin-top: 42px;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  padding: clamp(58px, 8vw, 100px) var(--side-space);
  background: #050505;
}

.contact-message span {
  display: block;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-cards article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.contact-cards p {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-cards h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.55;
}

.contact-cards span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  line-height: 1.85;
}

.contact-cards a {
  align-self: end;
  display: inline-flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
  margin-top: 28px;
  padding: 13px 18px;
  background: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-cards a::after {
  content: "->";
  font-family: var(--font-en);
}

.principles article,
.values-inner,
.about-copy,
.service-copy,
.message-copy,
.company-info,
.news-section,
.contact-message,
.dashboard {
  animation: fade-up 0.7s ease both;
}

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

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(150px);
  }
}

@keyframes hero-image-in {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-cursor-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr 60px;
    background: var(--black);
    min-height: 68px;
  }

  .brand {
    padding: 8px 0 8px 20px;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 28px 24px;
    background: rgba(8, 8, 8, 0.98);
    transform: translateX(100%);
    transition: transform 0.24s ease;
  }

  .site-header.is-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.2rem;
  }

  .contact-link {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-bg {
    inset: 0;
  }

  .hero-bg img,
  .hero-video {
    object-position: center center;
  }

  .hero-copy {
    width: min(920px, calc(100% - 48px));
    min-height: 740px;
    padding: 132px 24px 68px;
  }

  .principles,
  .about,
  .service-card,
  .message-section,
  .company-section,
  .contact-section {
    grid-template-columns: 1fr;
    padding: 42px 24px;
  }

  .dashboard,
  .service-card ul,
  .news-list,
  .contact-cards,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    gap: 28px;
  }

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

  .service-steps span {
    padding: 0 10px 0 0;
  }

  .service-steps span:not(:last-child)::after {
    left: auto;
    right: -5px;
    bottom: 50%;
    width: 20px;
    height: 1px;
  }

  .company-info div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .principles article,
  .principles article + article {
    padding: 0 0 30px;
    border-left: 0;
    border-bottom: 1px solid var(--light-line);
  }

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

  .value-list article {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 1fr 58px;
    min-height: 64px;
  }

  .brand {
    padding: 7px 0 7px 16px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    padding: 2px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .menu-button span {
    width: 25px;
    margin-block: 5px;
  }

  .site-nav {
    inset: 64px 0 0;
    padding: 18px 22px 32px;
  }

  .site-nav a {
    padding: 14px 0;
    font-size: 1rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    width: calc(100% - 24px);
    min-height: 100svh;
    padding: 92px 12px 58px;
  }

  .hero-title {
    min-height: 1.1em;
    font-size: clamp(1.7rem, 8.1vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.075em;
    white-space: nowrap;
  }

  .hero-video {
    object-position: 54% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.12) 88%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.38));
  }

  .hero-title::before,
  .scroll-mark {
    display: none;
  }

  .desktop-break {
    display: none;
  }

  .hero-statement {
    margin-top: 30px;
    font-size: 0.98rem;
  }

  .hero-body {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .hero-cta {
    width: 100%;
  }

  .about {
    padding: 64px 20px 68px;
  }

  .about-copy h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.35rem);
    line-height: 1.28;
  }

  .about-copy p:not(.section-label) {
    font-size: 0.92rem;
    line-height: 1.95;
  }

  .message-section {
    padding: 76px 20px 72px;
  }

  .message-copy--full h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.2rem);
    line-height: 1.35;
  }

  .message-copy--full .message-body {
    margin-top: 22px;
    font-size: 0.88rem;
    line-height: 1.95;
  }

  .message-sign {
    margin-top: 28px;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list article {
    min-height: 0;
    border-radius: 32px;
  }

  .service-copy h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.45rem);
    line-height: 1.3;
  }

  .contact-cards article {
    min-height: auto;
    padding-inline: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

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