:root {
  --ink: #111111;
  --ink-soft: #4a4a4a;
  --paper: #ffffff;
  --sand: #f5f5f5;
  --sand-2: #e8e8e8;
  --forest: #111111;
  --forest-2: #1d1d1d;
  --red: #cf1f25;
  --red-dark: #a30f14;
  --line: rgba(17,17,17,0.14);
  --white: #fff;
  --shadow: 0 18px 60px rgba(0,0,0,0.12);
  --radius: 22px;
  --max: 1180px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: none; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.narrow { width: min(840px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-sm { padding: 88px 0; }
.section-dark { background: var(--forest); color: var(--white); }
.section-sand { background: var(--sand); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.section-dark .eyebrow { color: #ff6a70; }
.section-title {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.1rem);
  line-height: 1.28;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.section-title .accent-line { display: inline-block; color: var(--red-dark); }
.section-lead {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 2.05;
}
.section-dark .section-lead { color: rgba(255,255,255,.72); }
.section-heading { max-width: 790px; margin-bottom: 58px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::before { display: none; }


.services-heading-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 58px;
}
.services-heading-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}
.services-heading-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,17,.18);
  color: var(--ink-soft);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.services-heading-main {
  position: relative;
  padding: 34px 38px 32px;
  border: 1px solid rgba(17,17,17,.1);
  border-left: 4px solid var(--red);
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 50px rgba(0,0,0,.05);
}
.services-heading-main::after {
  content: "";
  position: absolute;
  inset: auto 26px 0 auto;
  width: 120px;
  height: 120px;
  border-right: 1px solid rgba(207,31,37,.12);
  border-bottom: 1px solid rgba(207,31,37,.12);
  pointer-events: none;
}
.services-heading-mini {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.services-heading-title {
  margin: 0;
  max-width: 860px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.35;
  letter-spacing: .035em;
  font-weight: 600;
  color: var(--ink);
}
.services-heading-title span {
  display: block;
  margin-top: 14px;
  color: var(--red-dark);
  font-size: .68em;
  letter-spacing: .045em;
}
.services-heading-text {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.95;
}
.services-heading-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.services-heading-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity .35s ease;
}
.site-header.scrolled,
.site-header.subpage { border-color: var(--line); box-shadow: 0 10px 35px rgba(0,0,0,.06); }
.site-header.scrolled::after,
.site-header.subpage::after { opacity: 1; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 230px; }
.brand img { width: 126px; height: auto; }
.brand-name {
  display: none;
  color: var(--ink);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .07em;
  white-space: nowrap;
}
.site-header:not(.scrolled):not(.subpage) .brand-name { color: var(--white); }
.nav-list { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--ink);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.site-header:not(.scrolled):not(.subpage) .nav-link { color: var(--white); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: var(--white) !important;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--red-dark); }
.nav-cta::after { display: none; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); transition: .25s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0d0d0d;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; transform: scale(1.02); }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.23) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.65) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-h);
}
.hero-content { max-width: 860px; padding: 110px 0 100px; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-kicker::before { content: ""; width: 48px; height: 1px; background: var(--red); }
.hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.8rem, 7.6vw, 6.65rem);
  line-height: 1.18;
  letter-spacing: .045em;
  font-weight: 600;
  text-wrap: balance;
}
.hero h1 .accent { color: #ff5f65; }
.hero-copy { max-width: 670px; margin: 30px 0 0; color: rgba(255,255,255,.8); font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-light { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); color: var(--white); backdrop-filter: blur(8px); }
.btn-light:hover { background: var(--white); color: var(--ink); }
.btn-dark { background: var(--forest); color: var(--white); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-outline:hover { border-color: var(--forest); background: var(--forest); color: var(--white); }
.btn svg, .text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-scroll {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - var(--max))/2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-scroll::before { content: ""; width: 54px; height: 1px; background: rgba(255,255,255,.5); }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.intro-copy { font-size: 1.08rem; line-height: 2.15; color: var(--ink-soft); }
.intro-copy p { margin: 0 0 18px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: var(--line); border: 1px solid var(--line); }
.stat { padding: 28px 24px; background: var(--paper); }
.stat strong { display: block; font-family: "Yu Mincho", serif; font-size: 1.8rem; color: var(--forest); }
.stat span { display: block; margin-top: 6px; color: var(--ink-soft); font-size: .78rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,28,36,.12), rgba(237,28,36,0) 70%);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(237,28,36,.22); }
.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--sand);
  color: var(--forest);
}
.icon-box svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; top: 28px; right: 28px; color: rgba(0,0,0,.25); font-size: .72rem; font-weight: 700; letter-spacing: .15em; }
.service-card h3 { margin: 26px 0 12px; font-family: "Yu Mincho", serif; font-size: 1.25rem; line-height: 1.55; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.9; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 26px; color: var(--red-dark); font-size: .82rem; font-weight: 700; }


.services-showcase {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  background: #0b0b0b;
  color: var(--white);
}
.services-showcase::before {
  content: "SERVICES";
  position: absolute;
  top: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.025);
  font-family: Arial, sans-serif;
  font-size: clamp(8rem, 20vw, 19rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  white-space: nowrap;
  pointer-events: none;
}
.services-showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.45fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: start;
}
.services-showcase-intro {
  position: sticky;
  top: calc(var(--header-h) + 42px);
  padding-top: 8px;
}
.services-showcase .eyebrow { color: #ff6a70; }
.services-showcase-count {
  display: block;
  margin: 28px 0 14px;
  color: rgba(255,255,255,.38);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
}
.services-showcase-intro h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
  line-height: 1.28;
  letter-spacing: .035em;
  font-weight: 600;
}
.services-showcase-intro h2 em {
  color: #ff646a;
  font-style: normal;
}
.services-showcase-intro > p {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: .96rem;
  line-height: 2;
}
.services-showcase-intro .btn { margin-top: 34px; }
.services-list {
  border-top: 1px solid rgba(255,255,255,.18);
}
.service-row {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px minmax(190px, .9fr) minmax(230px, 1.15fr) 44px;
  gap: 24px;
  align-items: center;
  min-height: 142px;
  padding: 24px 18px 24px 12px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.service-row:hover,
.service-row:focus-visible {
  padding-left: 24px;
  padding-right: 24px;
  border-color: transparent;
  outline: none;
}
.service-row:hover::before,
.service-row:focus-visible::before { transform: scaleY(1); }
.service-row-num {
  align-self: start;
  padding-top: 8px;
  color: rgba(255,255,255,.38);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  transition: color .3s ease;
}
.service-row-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: .035em;
  font-weight: 600;
}
.service-row-copy {
  color: rgba(255,255,255,.56);
  font-size: .86rem;
  line-height: 1.85;
  transition: color .3s ease;
}
.service-row-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.service-row-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.service-row:hover .service-row-num,
.service-row:focus-visible .service-row-num,
.service-row:hover .service-row-copy,
.service-row:focus-visible .service-row-copy { color: rgba(255,255,255,.9); }
.service-row:hover .service-row-arrow,
.service-row:focus-visible .service-row-arrow {
  background: var(--white);
  color: var(--red-dark);
  transform: translateX(4px);
}

.image-copy-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 86px; }
.image-frame { position: relative; }
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px 60px 2px 2px; }
.image-frame::after { content: ""; position: absolute; inset: 28px -28px -28px 28px; z-index: -1; background: var(--sand-2); border-radius: 2px 60px 2px 2px; }
.image-caption { margin-top: 14px; color: var(--ink-soft); font-size: .7rem; letter-spacing: .08em; }
.copy-block h2 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(2rem, 3.8vw, 3.7rem); line-height: 1.35; }
.copy-block p { margin: 26px 0 0; color: var(--ink-soft); }
.copy-block .btn { margin-top: 32px; }

.strength-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.strength-item { padding: 44px 28px 48px; border-right: 1px solid rgba(255,255,255,.18); }
.strength-item:last-child { border-right: 0; }
.strength-item .num { display: block; margin-bottom: 24px; color: #ff6a70; font-family: "Yu Mincho", serif; font-size: 2.4rem; }
.strength-item h3 { margin: 0 0 18px; font-family: "Yu Mincho", serif; font-size: 1.18rem; line-height: 1.55; }
.strength-item p { margin: 0; color: rgba(255,255,255,.67); font-size: .86rem; }

.cta-band { position: relative; overflow: hidden; background: var(--red); color: var(--white); }
.cta-band::before { content: ""; position: absolute; inset: -40% -15% auto auto; width: 520px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-copy h2 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.3; }
.cta-copy p { margin: 16px 0 0; color: rgba(255,255,255,.82); }
.cta-band .btn { flex: 0 0 auto; background: var(--white); color: var(--red-dark); }

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 80px) 0 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}
.page-hero.has-image { min-height: 600px; }
.page-hero-media, .page-hero-overlay { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.48) 65%, rgba(0,0,0,.35)); }
.page-hero::after { content: ""; position: absolute; right: -110px; bottom: -220px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.page-hero-content { position: relative; z-index: 2; max-width: 900px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: .75rem; }
.breadcrumb span::before { content: "/"; margin-right: 8px; }
.page-hero h1 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(3rem, 6vw, 5.8rem); line-height: 1.15; letter-spacing: .055em; }
.page-hero p { max-width: 670px; margin: 24px 0 0; color: rgba(255,255,255,.75); }

.message-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; align-items: start; }
.message-side { position: sticky; top: 130px; }
.message-side img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.82); }
.message-side blockquote { margin: -45px 24px 0; position: relative; padding: 28px; background: var(--forest); color: var(--white); font-family: "Yu Mincho", serif; font-size: 1.18rem; line-height: 1.75; }
.message-body h2 { margin: 0 0 34px; font-family: "Yu Mincho", serif; font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1.4; }
.message-body p { margin: 0 0 24px; color: var(--ink-soft); line-height: 2.1; }
.signature { margin-top: 42px; text-align: right; }
.signature span { display: block; color: var(--ink-soft); font-size: .8rem; }
.signature strong { display: block; margin-top: 6px; font-family: "Yu Mincho", serif; font-size: 1.25rem; }

.philosophy-box { position: relative; padding: 70px; background: var(--forest); color: var(--white); overflow: hidden; }
.philosophy-box::after { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.philosophy-quote { margin: 0 0 34px; font-family: "Yu Mincho", serif; font-size: clamp(2.2rem, 5vw, 4.7rem); line-height: 1.35; }
.philosophy-box p { max-width: 850px; margin: 0 0 16px; color: rgba(255,255,255,.75); }

.company-table { border-top: 1px solid var(--line); }
.company-row { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid var(--line); }
.company-row dt, .company-row dd { margin: 0; padding: 23px 18px; }
.company-row dt { color: var(--ink-soft); font-size: .83rem; font-weight: 700; }
.company-row dd { border-left: 1px solid var(--line); }
.map-wrap { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; }

.service-detail-list { display: grid; gap: 28px; }
.service-detail {
  display: grid;
  grid-template-columns: 130px .9fr 1.1fr;
  gap: 42px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--white);
}
.service-detail:nth-child(even) { background: var(--sand); }
.service-detail-num { color: var(--red); font-family: "Yu Mincho", serif; font-size: 3.1rem; line-height: 1; }
.service-detail-main h2 { margin: 0 0 18px; font-family: "Yu Mincho", serif; font-size: 1.65rem; line-height: 1.5; }
.service-detail-main p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.service-detail-points { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 34px; }
.service-detail-points li { break-inside: avoid; position: relative; padding: 0 0 10px 20px; color: var(--ink-soft); font-size: .86rem; }
.service-detail-points li::before { content: ""; position: absolute; left: 0; top: .78em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.photo-split figure { margin: 0; overflow: hidden; }
.photo-split img { width: 100%; height: 460px; object-fit: cover; transition: transform .5s ease; }
.photo-split figure:hover img { transform: scale(1.025); }
.photo-split figcaption { padding: 14px 0; color: var(--ink-soft); font-size: .72rem; }

.strength-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.strength-panel { min-height: 390px; padding: 50px; border: 1px solid var(--line); background: var(--white); }
.strength-panel:nth-child(2), .strength-panel:nth-child(3) { background: var(--sand); }
.strength-panel .num { color: var(--red); font-family: "Yu Mincho", serif; font-size: 3.6rem; line-height: 1; }
.strength-panel .icon-box { margin: 40px 0 22px; }
.strength-panel h2 { margin: 0 0 18px; font-family: "Yu Mincho", serif; font-size: 1.65rem; }
.strength-panel p { margin: 0; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { padding: 48px; border: 1px solid var(--line); background: var(--white); }
.contact-card .icon-box { margin-bottom: 28px; }
.contact-card h2 { margin: 0 0 14px; font-family: "Yu Mincho", serif; font-size: 1.5rem; }
.contact-card p { margin: 0; color: var(--ink-soft); }
.contact-value { display: block; margin: 24px 0; font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 700; word-break: break-all; }
.contact-note { margin-top: 30px; padding: 22px; background: var(--sand); color: var(--ink-soft); font-size: .86rem; }
.contact-main { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: start; }
.contact-copy h2 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.4; }
.contact-copy p { color: var(--ink-soft); }
.contact-visual { min-height: 430px; display: grid; place-items: center; border-radius: var(--radius); background: var(--forest); color: var(--white); overflow: hidden; position: relative; }
.contact-visual::before, .contact-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.contact-visual::before { width: 380px; height: 380px; }
.contact-visual::after { width: 250px; height: 250px; }
.contact-visual svg { position: relative; z-index: 2; width: 90px; height: 90px; fill: none; stroke: #ff6a70; stroke-width: 1.2; }

.site-footer { padding: 76px 0 28px; background: #0d0d0d; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 70px; padding-bottom: 54px; }
.footer-brand img { width: 150px; padding: 0; border-radius: 0; background: transparent; filter: none; }
.footer-brand p { max-width: 420px; margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: .83rem; }
.footer-col h3 { margin: 0 0 20px; color: rgba(255,255,255,.48); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.74); font-size: .83rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { margin: 0 0 10px; color: rgba(255,255,255,.72); font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .72rem; }

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

@media (min-width: 1100px) {
  .brand-name { display: block; }
}

@media (max-width: 980px) {
  .services-showcase { padding: 104px 0; }
  .services-showcase-layout { grid-template-columns: 1fr; gap: 54px; }
  .services-showcase-intro { position: static; max-width: 720px; }
  .service-row { grid-template-columns: 46px minmax(190px, .9fr) minmax(210px, 1.1fr) 42px; gap: 18px; }
  :root { --header-h: 76px; }
  .container, .narrow { width: min(100% - 36px, var(--max)); }
  .section { padding: 90px 0; }
  .site-header::after { opacity: 1; }
  .site-header { border-color: var(--line); }
  .brand img { width: 116px; }
  .nav-toggle { display: block; position: relative; z-index: 4; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 90px 24px 30px;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-list { width: min(520px, 100%); flex-direction: column; gap: 8px; }
  .nav-link, .site-header:not(.scrolled):not(.subpage) .nav-link { display: block; width: 100%; padding: 12px 0; color: var(--ink); font-family: "Yu Mincho", serif; font-size: 1.35rem; text-align: center; }
  .nav-cta { margin-top: 15px; font-family: inherit; font-size: 1rem; }
  .hero-content { padding: 90px 0 110px; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 5rem); }
  .intro-grid, .image-copy-grid, .message-grid, .contact-main { grid-template-columns: 1fr; gap: 54px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .strength-item:nth-child(2) { border-right: 0; }
  .strength-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .message-side { position: static; }
  .message-side img { aspect-ratio: 16/10; }
  .service-detail { grid-template-columns: 80px 1fr; gap: 28px; }
  .service-detail-points { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .services-showcase { padding: 84px 0; }
  .services-showcase::before { top: .05em; font-size: 7rem; }
  .services-showcase-layout { gap: 42px; }
  .services-showcase-intro h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .services-showcase-intro > p { margin-top: 22px; font-size: .92rem; }
  .service-row {
    grid-template-columns: 40px minmax(0, 1fr) 38px;
    gap: 14px;
    min-height: 0;
    padding: 24px 4px;
  }
  .service-row:hover,
  .service-row:focus-visible { padding-left: 14px; padding-right: 14px; }
  .service-row-num { grid-row: 1 / span 2; }
  .service-row-title { font-size: 1.16rem; line-height: 1.5; }
  .service-row-copy { grid-column: 2 / 4; font-size: .82rem; line-height: 1.75; }
  .service-row-arrow { grid-column: 3; grid-row: 1; width: 36px; height: 36px; }
  body { font-size: 15px; }
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 62px 0; }
  .site-header { height: 70px; }
  .brand img { width: 102px; }
  .nav-toggle { width: 44px; height: 44px; }
  .hero { min-height: 790px; }
  .hero-content { padding-top: 115px; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 4.2rem); line-height: 1.25; }
  .hero-copy { font-size: .92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-scroll { display: none; }
  .section-title { font-size: 2.2rem; }
  .intro-grid { gap: 34px; }
  .stat-row { grid-template-columns: 1fr; }
  .services-grid, .strength-page-grid, .contact-grid, .photo-split { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; padding: 28px; }
  .image-copy-grid { gap: 54px; }
  .image-frame::after { inset: 18px -10px -18px 18px; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .strength-item:last-child { border-bottom: 0; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .page-hero, .page-hero.has-image { min-height: 500px; padding-bottom: 55px; }
  .page-hero h1 { font-size: 3rem; }
  .philosophy-box { padding: 42px 26px; }
  .company-row { grid-template-columns: 1fr; }
  .company-row dt { padding-bottom: 4px; }
  .company-row dd { padding-top: 4px; border-left: 0; }
  .map-wrap iframe { height: 360px; }
  .service-detail { grid-template-columns: 1fr; padding: 30px 24px; }
  .service-detail-points { grid-column: auto; columns: 1; }
  .photo-split img { height: 300px; }
  .strength-panel, .contact-card { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Homepage motion system */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .7s ease, visibility .7s ease;
}
.page-loading .site-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.page-loading,
.page-loading body { overflow: hidden; }
.loader-inner {
  width: min(340px, calc(100% - 56px));
  text-align: center;
}
.loader-mark {
  position: relative;
  width: 230px;
  height: 150px;
  display: grid;
  place-items: center;
  margin: 0 auto 30px;
}
.loader-mark img {
  position: relative;
  z-index: 2;
  width: 178px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.10));
  animation: loaderLogo 1.3s cubic-bezier(.22,1,.36,1) both;
}
.loader-ring {
  position: absolute;
  inset: 5px 45px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 50%;
  animation: loaderOrbit 2.1s linear infinite;
}
.loader-ring-b {
  inset: 20px 30px;
  border-color: rgba(237,28,36,.2);
  animation-direction: reverse;
  animation-duration: 2.7s;
}
.loader-ring::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  transform: translateX(-50%);
}
.loader-ring-b::after { background: var(--red); }
.loader-line {
  height: 2px;
  overflow: hidden;
  background: var(--sand-2);
}
.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--forest), var(--red));
  transform-origin: left;
  animation: loaderProgress 1.6s cubic-bezier(.65,0,.35,1) infinite;
}
.loader-inner p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
@keyframes loaderLogo {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: none; }
}
@keyframes loaderOrbit { to { transform: rotate(360deg); } }
@keyframes loaderProgress {
  0% { transform: scaleX(0); }
  48% { transform: scaleX(1); transform-origin: left; }
  49% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.home-page .site-header { transition-duration: .55s; }
.hero-carousel {
  display: block;
  isolation: isolate;
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(.45,0,.2,1), visibility 1s;
}
.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.hero-slide .hero-media img {
  transform: scale(1.075);
  filter: saturate(.92);
  will-change: transform;
}
.hero-slide.is-active .hero-media img {
  animation: heroKenBurns 7.2s ease-out both;
}
.hero-slide:nth-child(2) .hero-media img { object-position: center 58%; }
.hero-slide:nth-child(3) .hero-media img { object-position: center 45%; }
@keyframes heroKenBurns {
  from { transform: scale(1.075) translate3d(0,0,0); }
  to { transform: scale(1.015) translate3d(0,-.8%,0); }
}
.hero-overlay-business {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.24) 60%, rgba(0,0,0,.72) 100%);
}
.hero-overlay-education {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.57) 48%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 58%, rgba(0,0,0,.7) 100%);
}
.hero-slide .hero-grid { width: min(var(--max), calc(100% - 48px)); min-height: 100%; display: flex; align-items: center; margin-inline: auto; }
.hero-slide .hero-content { position: relative; }
.hero h1,
.hero h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.8rem, 7.15vw, 6.25rem);
  line-height: 1.18;
  letter-spacing: .045em;
  font-weight: 600;
  text-wrap: balance;
}
.hero h2 { color: inherit; }
.hero h1 .accent,
.hero h2 .accent { color: #ff5f65; }
.hero-slide .hero-kicker,
.hero-slide h1,
.hero-slide h2,
.hero-slide .hero-copy,
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(28px);
}
.hero-slide.is-active .hero-kicker { animation: heroTextIn .7s .2s both; }
.hero-slide.is-active h1,
.hero-slide.is-active h2 { animation: heroTextIn .85s .34s both; }
.hero-slide.is-active .hero-copy { animation: heroTextIn .75s .5s both; }
.hero-slide.is-active .hero-actions { animation: heroTextIn .75s .62s both; }
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f65;
  box-shadow: 0 0 22px rgba(255,91,96,.85);
}
.hero-orbit-a {
  width: min(42vw, 630px);
  aspect-ratio: 1;
  right: -11vw;
  top: 14%;
  animation: slowOrbit 24s linear infinite;
}
.hero-orbit-a::after { top: 17%; left: 8%; }
.hero-orbit-b {
  width: min(24vw, 350px);
  aspect-ratio: 1;
  right: 12vw;
  bottom: -15%;
  animation: slowOrbit 18s linear infinite reverse;
}
.hero-orbit-b::after { right: 9%; bottom: 20%; }
@keyframes slowOrbit { to { transform: rotate(360deg); } }

.hero-carousel-ui {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--max))/2));
  bottom: 25px;
  display: grid;
  grid-template-columns: auto minmax(90px, 160px) auto auto;
  align-items: center;
  gap: 17px;
  color: var(--white);
}
.hero-carousel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 68px;
  font-size: .7rem;
  letter-spacing: .12em;
}
.hero-slide-current { font-size: .92rem; font-weight: 700; }
.hero-slide-total { color: rgba(255,255,255,.52); }
.hero-carousel-separator { width: 18px; height: 1px; background: rgba(255,255,255,.5); }
.hero-carousel-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.24);
}
.hero-carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-carousel-dots { display: flex; align-items: center; gap: 8px; }
.hero-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .3s ease, border-radius .3s ease, background .3s ease;
}
.hero-carousel-dots button.is-active { width: 26px; border-radius: 99px; background: var(--white); }
.hero-carousel-buttons { display: flex; gap: 7px; }
.hero-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-control:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.16); }
.hero-control svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.hero-control:first-child svg { transform: rotate(180deg); }
.pause-icon { position: relative; width: 12px; height: 14px; }
.pause-icon::before,
.pause-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 3px;
  border-radius: 2px;
  background: currentColor;
}
.pause-icon::before { left: 1px; }
.pause-icon::after { right: 1px; }
.hero-control-toggle.is-paused .pause-icon::before {
  left: 2px;
  top: 1px;
  bottom: auto;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  border-radius: 0;
  background: none;
}
.hero-control-toggle.is-paused .pause-icon::after { display: none; }

.bridge-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--forest);
  color: rgba(255,255,255,.72);
}
.bridge-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
  animation: bridgeMarquee 30s linear infinite;
}
.bridge-marquee span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bridge-marquee i { color: #ff6a70; font-style: normal; }
@keyframes bridgeMarquee { to { transform: translateX(-50%); } }

.home-page .section-sand { position: relative; overflow: hidden; }
.home-page .section-sand::before,
.home-page .section-sand::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.home-page .section-sand::before {
  width: 430px;
  height: 430px;
  top: -210px;
  right: -150px;
  border: 1px solid rgba(237,28,36,.12);
}
.home-page .section-sand::after {
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: 13%;
  background: radial-gradient(circle, rgba(0,0,0,.09), rgba(0,0,0,0) 70%);
  animation: floatShape 7s ease-in-out infinite;
}
@keyframes floatShape { 50% { transform: translateY(-24px); } }
.home-page .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.72) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .7s ease;
  pointer-events: none;
}
.home-page .service-card:hover::after { transform: translateX(130%); }
.home-page .service-card .icon-box { transition: transform .35s ease, background .35s ease, color .35s ease; }
.home-page .service-card:hover .icon-box { transform: rotate(-5deg) scale(1.08); background: var(--forest); color: var(--white); }
.home-page .image-frame { overflow: visible; }
.home-page .image-frame img { transition: transform .75s cubic-bezier(.22,1,.36,1), filter .75s ease; }
.home-page .image-frame:hover img { transform: scale(1.025); filter: saturate(1.08); }
.home-page .strength-item { transition: background .35s ease, transform .35s ease; }
.home-page .strength-item:hover { background: rgba(255,255,255,.055); transform: translateY(-7px); }
.home-page .cta-band::before { animation: ctaRing 9s linear infinite; }
@keyframes ctaRing { to { transform: rotate(360deg) scale(1.06); } }
.js .reveal { transition-delay: var(--reveal-delay, 0ms); }

@media (max-width: 980px) {
  .services-heading-panel { grid-template-columns: 1fr; gap: 18px; }
  .services-heading-side { padding: 0; }
  .services-heading-main { padding: 28px 26px; }
  .services-heading-title { font-size: clamp(1.9rem, 5.6vw, 3.4rem); }
  .hero-slide .hero-grid { width: min(100% - 36px, var(--max)); }
  .hero h1,
  .hero h2 { font-size: clamp(2.6rem, 9.4vw, 5rem); }
  .hero-carousel-ui {
    right: 18px;
    grid-template-columns: auto 100px auto;
  }
  .hero-carousel-dots { display: none; }
  .hero-orbit-a { right: -22vw; }
}

@media (max-width: 680px) {
  .services-heading-main { padding: 24px 20px; }
  .services-heading-title { font-size: clamp(1.75rem, 8vw, 2.45rem); line-height: 1.42; }
  .services-heading-title span { margin-top: 12px; }
  .services-heading-text { font-size: .94rem; line-height: 1.85; }
  .services-heading-tags { gap: 8px; }
  .services-heading-tags span { min-height: 32px; padding: 0 12px; font-size: .68rem; }
  .loader-mark { transform: scale(.88); margin-bottom: 18px; }
  .hero-slide .hero-grid { width: min(100% - 28px, var(--max)); }
  .hero h1,
  .hero h2 { font-size: clamp(2.25rem, 12.2vw, 4rem); line-height: 1.25; }
  .hero-slide .hero-content { padding: 106px 0 175px; }
  .hero-slide:nth-child(1) .hero-media img { object-position: 54% 56%; }
  .hero-slide:nth-child(2) .hero-media img { object-position: 59% center; }
  .hero-slide:nth-child(3) .hero-media img { object-position: 58% center; }
  .hero-carousel-ui {
    left: 14px;
    right: 14px;
    bottom: 25px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(0,0,0,.34);
    backdrop-filter: blur(12px);
  }
  .hero-carousel-meta { min-width: 62px; }
  .hero-carousel-buttons { gap: 5px; }
  .hero-control { width: 38px; height: 38px; }
  .hero-control-toggle { display: none; }
  .hero-orbit-a { width: 80vw; right: -38vw; top: 11%; }
  .hero-orbit-b { display: none; }
  .bridge-marquee-track { gap: 22px; padding: 13px 0; animation-duration: 24s; }
  .bridge-marquee span { font-size: .64rem; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
  .site-loader { display: none; }
  .hero-slide.is-active .hero-media img,
  .hero-slide.is-active .hero-kicker,
  .hero-slide.is-active h1,
  .hero-slide.is-active h2,
  .hero-slide.is-active .hero-copy,
  .hero-slide.is-active .hero-actions,
  .hero-orbit, .bridge-marquee-track,
  .home-page .section-sand::after,
  .home-page .cta-band::before { animation: none !important; }
  .hero-slide .hero-kicker,
  .hero-slide h1,
  .hero-slide h2,
  .hero-slide .hero-copy,
  .hero-slide .hero-actions { opacity: 1; transform: none; }
}
