.home-hero .hero-copy {
  text-align: center;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.view-all::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.view-all:hover {
  color: var(--accent);
}

.about-lead {
  font-size: 1.08rem;
  color: var(--body);
  max-width: 46ch;
}

.process-hero-note {
  max-width: 50ch;
}

.risk-panel {
  background: var(--bg-soft);
}

.service-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.service-tile {
  position: relative;
  min-height: 220px;
  padding: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  isolation: isolate;
}

.service-tile.wide {
  grid-row: span 2;
  min-height: 460px;
}

.service-tile.span-all {
  grid-column: 1 / -1;
  min-height: 200px;
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.45) saturate(0.7);
  transition: transform 0.7s var(--ease);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.1), rgba(10, 14, 22, 0.82));
}

.service-tile:hover img {
  transform: scale(1.05);
}

.service-tile .index {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--font-display);
  color: var(--accent);
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.service-tile p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.section-vision {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.vision-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem 4rem;
  align-items: center;
}

.vision-panels {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  min-height: 520px;
}

.vision-panels figure {
  position: relative;
  flex: 1;
  margin: 0;
  overflow: hidden;
}

.vision-panels figure:nth-child(1) {
  height: 78%;
}

.vision-panels figure:nth-child(2) {
  height: 100%;
}

.vision-panels figure:nth-child(3) {
  height: 86%;
}

.vision-panels img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-panels figure::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

.vision-panels figure:nth-child(1)::after {
  background: #8a1f2a;
  opacity: 0.45;
}

.vision-panels figure:nth-child(2)::after {
  background: #1c3b6e;
  opacity: 0.42;
}

.vision-panels figure:nth-child(3)::after {
  background: #1f5a3a;
  opacity: 0.42;
}

.vision-copy h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.3rem;
}

.vision-copy p {
  color: var(--body);
  max-width: 44ch;
}

.vision-copy .hl {
  color: var(--accent);
  font-weight: 700;
}

.line-btn {
  display: flex;
  align-items: center;
  margin-top: 2.4rem;
}

.line-btn::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--accent);
}

.line-btn .btn {
  min-width: min(100%, 280px);
}

.section-news {
  padding-top: var(--space-8);
}

.news-split {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 2rem 3rem;
  align-items: start;
}

.news-heading {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 7.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.85;
  color: #e9e9e9;
  text-transform: uppercase;
}

.news-heading small {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: none;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.news-list a:hover {
  color: var(--accent);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.55rem;
  background: var(--bg-mute);
  color: var(--muted);
  font-size: 0.68rem;
}

.news-list h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.banner-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.banner-tile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  isolation: isolate;
}

.banner-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: grayscale(0.55) brightness(0.55) saturate(0.4);
  transition: transform 0.7s var(--ease);
}

.banner-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 36, 64, 0.25), rgba(12, 20, 36, 0.55));
}

.banner-tile:hover img {
  transform: scale(1.04);
}

.banner-ghost {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
  line-height: 0.9;
}

.banner-tile h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.banner-tile p {
  margin-top: 0.35rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.banner-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.section-contact {
  background: var(--bg);
}

.contact-intro {
  max-width: 52ch;
  margin-bottom: 2.4rem;
}

.contact-intro h2 {
  font-family: var(--font-sans);
  font-size: var(--fs-2xl);
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 168px;
  padding: 1.4rem 1rem;
  background: var(--bg-soft);
  text-align: center;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}

.partner-card:hover {
  background: #e9e9e9;
}

.partner-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.partner-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-form-link {
  margin-top: 1.6rem;
}

@media (max-width: 980px) {
  .service-mosaic,
  .vision-split,
  .news-split,
  .banner-pair,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .service-tile.wide,
  .service-tile.span-all {
    grid-row: auto;
    grid-column: auto;
    min-height: 240px;
  }

  .vision-panels {
    min-height: 280px;
  }

  .vision-panels figure:nth-child(1),
  .vision-panels figure:nth-child(2),
  .vision-panels figure:nth-child(3) {
    height: 100%;
  }

  .banner-tile {
    min-height: 280px;
  }

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

@media (max-width: 640px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .line-btn {
    display: block;
  }

  .line-btn::before {
    display: block;
    width: 48px;
    margin-bottom: 0;
  }

  .line-btn .btn {
    width: 100%;
  }
}
