:root {
  --ink: #121313;
  --ink-soft: #303332;
  --paper: #f7f7f5;
  --white: #ffffff;
  --mist: #ecebe7;
  --line: #d9d8d2;
  --muted: #686b68;
  --gold: #b29463;
  --gold-dark: #82643d;
  --sage: #64756e;
  --shadow: 0 22px 52px rgba(18, 19, 19, 0.12);
  --shadow-strong: 0 30px 86px rgba(18, 19, 19, 0.2);
  --header-height: 92px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.78;
}

body.nav-open {
  overflow: hidden;
}

.fixed-motion-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--paper) url("assets/movie/bgv-poster.jpg") center / cover no-repeat;
}

.fixed-motion-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.82) contrast(1.08) brightness(1.02);
}

.fixed-motion-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 247, 245, 0.46) 0%, rgba(247, 247, 245, 0.2) 50%, rgba(247, 247, 245, 0.38) 100%),
    linear-gradient(180deg, rgba(247, 247, 245, 0.5) 0%, rgba(247, 247, 245, 0.12) 48%, rgba(247, 247, 245, 0.58) 100%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(247, 247, 245, 0.78);
  border-bottom: 1px solid rgba(217, 216, 210, 0.74);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(178, 148, 99, 0.16), transparent 24%, transparent 72%, rgba(18, 19, 19, 0.06));
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 247, 245, 0.94);
  border-color: rgba(178, 148, 99, 0.42);
  box-shadow: 0 14px 42px rgba(18, 19, 19, 0.1);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.header-inner,
.section-inner,
.hero-inner,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-logo {
  width: 240px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(217, 216, 210, 0.78);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-nav a,
.footer-nav a {
  position: relative;
  padding: 5px 0;
}

.site-nav a {
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  overflow: hidden;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::before {
  display: none;
}

.site-nav a > span {
  position: relative;
  z-index: 2;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  background: rgba(178, 148, 99, 0.14);
}

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

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  width: auto;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(18, 19, 19, 0.76);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.header-call span,
.contact-number span {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 94px;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto auto;
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  pointer-events: none;
  background: conic-gradient(from 120deg, rgba(178, 148, 99, 0.22), rgba(100, 117, 110, 0.12), transparent, rgba(178, 148, 99, 0.18));
  opacity: 0.4;
  filter: blur(44px);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.lead-section h2,
.section-heading h2,
.strengths-copy h2,
.contact-band h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 52px;
}

.hero-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.primary-button,
.line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.primary-button {
  padding: 0 24px;
  background: var(--ink);
  color: var(--white);
}

.line-link::after {
  content: "";
  width: 44px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 108%;
  min-height: 496px;
  object-fit: cover;
  transform: translate3d(0, var(--image-parallax-y, 0px), 0) scale(1.04);
  will-change: transform;
}

.hero-visual p {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.lead-section,
.section {
  padding: 92px 0;
}

.lead-section {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(217, 216, 210, 0.86);
  border-bottom: 1px solid rgba(217, 216, 210, 0.86);
}

.lead-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.lead-section h2,
.section-heading h2,
.strengths-copy h2,
.contact-band h2 {
  font-size: 38px;
}

.lead-section p:not(.section-kicker),
.section-heading p,
.strengths-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 0 46px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.business-section {
  background: transparent;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.business-card {
  position: relative;
  min-height: 430px;
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(18, 19, 19, 0.03);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.business-card:hover {
  transform: translateY(-8px);
  border-color: rgba(178, 148, 99, 0.5);
  box-shadow: var(--shadow);
}

.business-card-featured {
  border-color: rgba(178, 148, 99, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 245, 0.84));
}

.business-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(178, 148, 99, 0.12));
}

.business-card-featured h3 {
  font-size: 23px;
}

.business-card-featured p {
  font-size: 15.5px;
}

.business-image {
  position: relative;
  height: clamp(190px, 18vw, 228px);
  margin: -30px -28px 26px;
  overflow: hidden;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.business-card-featured .business-image {
  height: clamp(190px, 18vw, 228px);
}

.business-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 19, 19, 0.18));
  pointer-events: none;
}

.business-image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translate3d(0, var(--image-parallax-y, 0px), 0) scale(1.03);
  will-change: transform;
}

.card-index,
.strength-index {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.business-card h3,
.strength-list h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.48;
}

.business-card p,
.strength-list p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.strengths-section {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(217, 216, 210, 0.86);
  border-bottom: 1px solid rgba(217, 216, 210, 0.86);
}

.strengths-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.44fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-list article {
  min-height: 218px;
  padding: 34px 24px 30px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.strength-list article:last-child {
  border-right: 1px solid var(--line);
}

.strength-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  color: var(--gold-dark);
}

.strength-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-section {
  background: transparent;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  gap: 40px;
  align-items: stretch;
}

.company-table-wrap {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(247, 247, 245, 0.8));
  border: 1px solid rgba(217, 216, 210, 0.9);
  box-shadow: 0 24px 70px rgba(18, 19, 19, 0.12);
  backdrop-filter: blur(2px);
}

.company-table-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(178, 148, 99, 0.12), transparent);
}

.company-table-wrap::after {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  z-index: 0;
  width: 74px;
  height: 74px;
  border-top: 1px solid rgba(178, 148, 99, 0.28);
  border-right: 1px solid rgba(178, 148, 99, 0.28);
  pointer-events: none;
}

.company-table {
  position: relative;
  z-index: 1;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.company-table th,
.company-table td {
  padding: 17px 20px;
  border-top: 1px solid rgba(217, 216, 210, 0.86);
  border-bottom: 1px solid rgba(217, 216, 210, 0.86);
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  vertical-align: middle;
  transition: background 180ms ease, border-color 180ms ease;
}

.company-table th {
  position: relative;
  width: 164px;
  color: var(--gold-dark);
  border-left: 1px solid rgba(217, 216, 210, 0.86);
  border-radius: 6px 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-table th::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 28px;
  background: var(--gold);
  opacity: 0.76;
  transform: translateY(-50%);
}

.company-table td {
  color: var(--ink-soft);
  border-right: 1px solid rgba(217, 216, 210, 0.86);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 8px 22px rgba(18, 19, 19, 0.04);
  font-size: 15.5px;
}

.company-table tr:hover th,
.company-table tr:hover td {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(178, 148, 99, 0.38);
}

.company-table a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(178, 148, 99, 0.34);
  text-underline-offset: 4px;
}

.company-visual {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.company-visual img {
  width: 100%;
  height: 108%;
  min-height: 410px;
  object-fit: cover;
  object-position: left center;
  transform: translate3d(0, var(--image-parallax-y, 0px), 0) scale(1.04);
  will-change: transform;
}

.company-visual figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.contact-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0;
  color: var(--white);
  background: rgba(17, 19, 19, 0.86);
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 48%;
  z-index: 0;
  width: 520px;
  height: 520px;
  pointer-events: none;
  background: conic-gradient(from 30deg, rgba(205, 180, 131, 0.26), transparent 34%, rgba(255, 255, 255, 0.12), transparent 72%);
  filter: blur(36px);
  opacity: 0.72;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.contact-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(17, 19, 19, 0.38) 0%, rgba(36, 37, 32, 0.2) 60%, rgba(75, 59, 39, 0.18) 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.contact-band .section-kicker {
  color: #cdb483;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.contact-number span {
  display: inline-flex;
  align-items: center;
  height: 20px;
  color: #cdb483;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1;
}

.site-footer {
  padding: 48px 0 38px;
  background: rgba(247, 247, 245, 0.94);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 28px 54px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: 224px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.footer-address {
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  justify-content: flex-end;
  color: var(--ink-soft);
  font-size: 13px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}


.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  align-content: center;
  gap: 2px;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: rgba(18, 19, 19, 0.88);
  border: 1px solid rgba(205, 180, 131, 0.58);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(18, 19, 19, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.back-to-top span:last-child {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


@media (max-width: 1080px) and (min-width: 761px) {
  .brand {
    min-width: 216px;
  }

  .brand-logo {
    width: 210px;
    max-height: 40px;
  }

  .header-inner {
    gap: 20px;
  }
}

@media (max-width: 1020px) {
  .header-call {
    display: none;
  }

  .hero-inner,
  .lead-grid,
  .strengths-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 36px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

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

  .strength-list article:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .strength-list article:nth-child(even) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 184px;
  }

  .brand-logo {
    width: 180px;
    max-height: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 0;
    padding: 12px;
    margin: 0;
    background: rgba(247, 247, 245, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a::before {
    width: 26px;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .lead-section,
  .section {
    padding: 68px 0;
  }

  .lead-section h2,
  .section-heading h2,
  .strengths-copy h2,
  .contact-band h2 {
    font-size: 29px;
  }


  .business-grid,
  .strength-list,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .business-card,
  .business-card-featured,
  .strength-list article {
    min-height: auto;
  }

  .business-card-featured h3 {
    font-size: 22px;
  }

  .business-image,
  .business-card-featured .business-image {
    height: 220px;
  }

  .strength-list article,
  .strength-list article:last-child,
  .strength-list article:nth-child(even),
  .strength-list article:nth-child(odd) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .company-table {
    border-spacing: 0 12px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding: 16px 18px 6px;
    border-right: 1px solid rgba(217, 216, 210, 0.86);
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
  }

  .company-table th::before {
    top: 18px;
    height: 20px;
    transform: none;
  }

  .company-table td {
    padding: 2px 18px 16px;
    border-top: 0;
    border-left: 1px solid rgba(217, 216, 210, 0.86);
    border-radius: 0 0 6px 6px;
  }

  .contact-band {
    padding: 54px 0;
  }

  .contact-number {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    padding: 0 14px;
    font-size: 25px;
  }

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

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .back-to-top span:first-child {
    font-size: 11px;
  }

  .back-to-top span:last-child {
    font-size: 20px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}



[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 640ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.business-grid [data-reveal]:nth-child(2),
.strength-list article:nth-child(2) {
  transition-delay: 80ms;
}

.business-grid [data-reveal]:nth-child(3),
.strength-list article:nth-child(3) {
  transition-delay: 150ms;
}

@media (hover: hover) {
  .primary-button:hover,
  .primary-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(18, 19, 19, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-parallax],
  [data-parallax-img],
  .hero::before,
  .contact-band::before {
    transform: none !important;
  }

  .fixed-motion-bg video {
    display: none;
  }
}

