:root {
  --ink: #12151c;
  --muted: #657081;
  --line: #dfe4ea;
  --paper: #f7f5ef;
  --white: #ffffff;
  --navy: #101d35;
  --teal: #1b7c7d;
  --rose: #c05a76;
  --gold: #c79c4b;
  --shadow: 0 24px 70px rgba(16, 29, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  line-break: strict;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 11, 24, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-logo-wide {
  width: clamp(190px, 18vw, 280px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.header-cta,
.button.primary,
.contact-form button {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 29, 53, 0.16);
}

.header-cta,
.button,
.contact-form button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta:hover,
.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.13) 45%, transparent 53%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.34;
  transform: translateX(-24%);
  animation: heroLightSweep 12s ease-in-out infinite;
}

.hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000 78%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 78%, transparent);
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 36%, rgba(0, 157, 221, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(7, 11, 24, 0.96), rgba(10, 18, 38, 0.88) 48%, rgba(10, 18, 38, 0.5)),
    linear-gradient(0deg, rgba(7, 11, 24, 0.9), rgba(7, 11, 24, 0.08) 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--hero-drift, 0));
  transition: transform 0.08s linear;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: clamp(280px, 24vw, 420px) minmax(620px, 900px);
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 5vw, 84px);
  width: 100%;
  padding: clamp(88px, 10vw, 128px) clamp(26px, 5vw, 72px) clamp(96px, 9vw, 130px);
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
  text-align: center;
}

.hero-brand-block {
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 12px;
  transform: translateY(-8px);
}

.hero-logo-complete {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.42));
  animation: heroLogoIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-brand-line {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(0.66rem, 0.78vw, 0.82rem);
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  animation: heroFadeUp 780ms 180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.45vw, 4.45rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.4vw, 3.15rem);
  line-height: 1.24;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.45;
}

.lead {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  text-wrap: pretty;
}

.lead span {
  display: block;
}

.hero-title span,
.section-heading h2 span {
  display: block;
}

.hero-title span {
  white-space: nowrap;
}

.hero-title span,
.lead span {
  animation: heroFadeUp 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-title span:nth-child(1) {
  animation-delay: 160ms;
}

.hero-title span:nth-child(2) {
  animation-delay: 260ms;
}

.lead span:nth-child(1) {
  animation-delay: 390ms;
}

.lead span:nth-child(2) {
  animation-delay: 470ms;
}

.lead span:nth-child(3) {
  animation-delay: 550ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-self: end;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  --hero-actions-x: clamp(48px, 6vw, 118px);
  transform: translateX(var(--hero-actions-x));
  animation: heroActionsIn 820ms 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.section,
.section-band,
.commerce,
.vision,
.contact {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
  background: var(--paper);
}

.intro p:last-child {
  margin: 32px 0 0;
  color: #3c4657;
  font-size: 1.08rem;
}

.visual-showcase {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #0b1424;
}

.visual-showcase .section-heading {
  margin-bottom: 34px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-card:hover {
  border-color: rgba(199, 156, 75, 0.46);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.visual-card:hover img {
  transform: scale(1.045);
}

.visual-card:nth-child(1) img {
  object-position: center 46%;
}

.visual-card:nth-child(2) img {
  object-position: center center;
}

.visual-card:nth-child(3) img {
  object-position: center center;
}

.visual-card div {
  padding: 24px;
}

.visual-kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card h3 {
  color: var(--white);
}

.visual-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: var(--navy);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(199, 156, 75, 0.42);
  box-shadow: 0 20px 54px rgba(16, 29, 53, 0.22);
  transform: translateY(-5px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rose);
  font-weight: 900;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card.accent {
  background: var(--navy);
  border-color: var(--navy);
}

.commerce {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 520px);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background: #f2f7f7;
}

.commerce-copy p {
  color: #3f4a5a;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(27, 124, 125, 0.2);
  border-radius: 999px;
  color: #205b5d;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.commerce-panel {
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.commerce-panel h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.plan {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.plan p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.strength-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.strength-main {
  position: sticky;
  top: 96px;
  padding: 34px;
  border-left: 5px solid var(--teal);
  background: var(--paper);
}

.strength-main p {
  margin-bottom: 0;
  color: #3f4a5a;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.process-list li:hover {
  border-color: rgba(27, 124, 125, 0.35);
  box-shadow: 0 14px 34px rgba(16, 29, 53, 0.12);
  transform: translateX(6px);
}

.process-list span {
  color: var(--rose);
  font-weight: 900;
}

.flow-visual {
  width: min(100%, 1120px);
  margin: clamp(34px, 5vw, 58px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #07101f;
  box-shadow: var(--shadow);
}

.flow-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.vision {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(92px, 15vw, 240px);
  align-items: start;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    linear-gradient(120deg, rgba(16, 29, 53, 0.82), rgba(16, 29, 53, 0.66)),
    url("./lunacrest-logo-vision.jpg");
  background-position:
    center,
    center 48%;
  background-repeat: no-repeat;
  background-size:
    cover,
    min(920px, 54vw) auto;
}

.vision > div:last-child {
  justify-self: end;
}

.vision-statement {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.46rem, 2.2vw, 2.18rem);
  font-weight: 800;
  line-height: 1.55;
  text-wrap: balance;
}

.vision-statement span {
  display: block;
}

.philosophy {
  display: grid;
  justify-items: center;
  gap: clamp(26px, 4vw, 40px);
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  text-align: center;
  background: var(--paper);
}

.philosophy .section-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.philosophy .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.philosophy-copy {
  max-width: 980px;
  color: #364153;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 2;
  text-align: left;
  text-wrap: pretty;
}

.philosophy-copy p {
  margin-bottom: 18px;
}

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

.company dl {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.company dt {
  color: var(--muted);
  font-weight: 800;
}

.company dd {
  margin: 0;
}

.recruit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(420px, 760px);
  justify-content: center;
  gap: clamp(46px, 7vw, 112px);
  align-items: start;
  overflow: hidden;
  padding: clamp(86px, 9vw, 126px) clamp(28px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 168, 232, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(9, 16, 31, 0.96), rgba(16, 29, 53, 0.92));
  background-position:
    center,
    center;
  background-repeat: no-repeat;
  background-size:
    cover,
    cover;
}

.recruit::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.12;
  pointer-events: none;
}

.recruit .section-heading,
.recruit-copy {
  position: relative;
  z-index: 1;
}

.recruit .section-heading {
  max-width: 390px;
  margin-bottom: 0;
  padding-top: 4px;
}

.recruit .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.5vw, 3.28rem);
  line-height: 1.26;
  text-wrap: balance;
}

.recruit-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.28vw, 1.08rem);
  line-height: 2.05;
  text-wrap: pretty;
}

.recruit-lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  font-weight: 800;
  line-height: 1.8;
}

.recruit-copy p {
  margin-bottom: clamp(18px, 2vw, 24px);
}

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

.recruit-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 42px);
}

.recruit-actions .button {
  min-width: 148px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(32px, 6vw, 82px);
  color: var(--white);
  background: #173b46;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #2e3848;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cfd7df;
  border-radius: 4px;
  font: inherit;
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #526174 50%),
    linear-gradient(135deg, #526174 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px,
    100% 0;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px,
    2.5em 2.5em;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.75;
}

.form-hp {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: -4px 0 0;
  color: #2f6f70;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.6;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .visual-card.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.motion-ready .service-card.reveal.is-visible:hover {
  transform: translateY(-5px);
}

.motion-ready .process-list li.reveal.is-visible:hover {
  transform: translateX(6px);
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroActionsIn {
  from {
    opacity: 0;
    transform: translateX(var(--hero-actions-x)) translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateX(var(--hero-actions-x)) translateY(0);
  }
}

@keyframes heroLightSweep {
  0%,
  48% {
    transform: translateX(-36%);
    opacity: 0;
  }

  58% {
    opacity: 0.36;
  }

  100% {
    transform: translateX(42%);
    opacity: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    transform: none;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #0b111d;
}

.footer p,
.footer small {
  margin: 0;
}

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

  .nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
    padding: 80px 22px 150px;
  }

  .hero-brand-block {
    width: min(360px, 70vw);
    transform: none;
  }

  .hero-actions {
    justify-self: center;
    --hero-actions-x: 0px;
    transform: translateX(0);
  }

  .intro,
  .commerce,
  .strength-layout,
  .vision,
  .philosophy,
  .recruit,
  .contact {
    grid-template-columns: 1fr;
  }

  .vision {
    background-position:
      center,
      center 54%;
    background-size:
      cover,
      min(760px, 86vw) auto;
  }

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

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

  .visual-card {
    grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
  }

  .visual-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .strength-main {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-wide {
    width: 174px;
    height: 40px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    gap: 24px;
    padding: 56px 18px 96px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .hero-title span:nth-child(2) {
    max-width: none;
  }

  .hero-brand-block {
    width: min(300px, 78vw);
    gap: 8px;
  }

  .hero-brand-line {
    font-size: 0.58rem;
    line-height: 1.35;
  }

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

  .visual-card {
    grid-template-columns: 1fr;
  }

  .visual-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-card {
    min-height: auto;
  }

  .company dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer {
    display: block;
  }
}
