@font-face {
  font-family: "Kanit";
  src: url("assets/fonts/kanit/Kanit-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("assets/fonts/kanit/Kanit-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("assets/fonts/kanit/Kanit-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("assets/fonts/kanit/Kanit-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("assets/fonts/kanit/Kanit-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("assets/fonts/kanit/Kanit-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #12313d;
  --muted: #5b7080;
  --line: #d7e8ea;
  --paper: #ffffff;
  --soft: #f1fbf9;
  --blue: #1177a8;
  --teal: #00a79d;
  --red: #ff003d;
  --green: #43a878;
  --shadow: 0 18px 50px rgba(18, 49, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: #fbfefd;
  color: var(--ink);
  font-family: "Kanit", "Noto Sans Thai", "Segoe UI", Tahoma, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: rgba(215, 232, 234, 0.72);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--red));
  box-shadow: 0 0 18px rgba(0, 167, 157, 0.44);
}

main section {
  scroll-margin-top: 110px;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 232, 234, 0.95);
  backdrop-filter: blur(16px);
  transition: box-shadow 260ms ease, background 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(215, 232, 234, 1);
  box-shadow: 0 10px 32px rgba(18, 49, 61, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 112px;
  height: 78px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 260ms ease;
}

.brand:hover img {
  transform: scale(1.04);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.primary-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.icon-link,
.menu-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  padding: 10px 16px;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.button svg,
.icon-link svg,
.menu-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover,
.icon-link:hover,
.menu-button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--teal);
  color: white;
}

.button-light {
  background: white;
  color: var(--ink);
}

.button-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.icon-link,
.menu-button {
  width: 42px;
  background: #e8f7f6;
  color: var(--teal);
}

.menu-button {
  display: none;
}

.mobile-menu {
  display: none;
}

.story-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 28;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.story-rail a {
  position: relative;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 2px solid rgba(0, 167, 157, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(18, 49, 61, 0.1);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.story-rail a span {
  position: absolute;
  right: 22px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

.story-rail a:hover,
.story-rail a.is-active {
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.3);
}

.story-rail a:hover span,
.story-rail a.is-active span {
  opacity: 1;
  transform: translateX(0);
}

.hero {
  min-height: calc(100svh - 88px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #062c34;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.24) 44%, transparent 58%);
  transform: translateX(-100%);
  animation: heroSweep 6.5s ease-in-out 1.2s infinite;
}

.hero picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero picture,
.hero picture img {
  width: 100%;
  height: calc(100svh - 88px);
  min-height: 650px;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.2) contrast(1.08);
  opacity: 0.78;
  transform: scale(1.04);
  animation: heroImageDrift 14s ease-in-out infinite alternate;
}

.hero-cell-canvas,
.hero-cell-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-cell-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.hero-cell-field {
  overflow: hidden;
}

.cell {
  position: absolute;
  display: block;
  width: 210px;
  height: 92px;
  border: 1px solid rgba(221, 255, 255, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 42%, rgba(255, 255, 255, 0.34), rgba(0, 210, 205, 0.1) 42%, transparent 72%);
  box-shadow: 0 0 34px rgba(141, 255, 246, 0.18);
  opacity: 0.58;
  transform: rotate(-18deg);
  animation: cellFloat 13s ease-in-out infinite alternate;
}

.cell::before,
.cell::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(221, 255, 255, 0.24);
  border-radius: 50%;
}

.cell::before {
  inset: 16px 38px;
}

.cell::after {
  inset: 34px 76px;
  background: rgba(255, 255, 255, 0.16);
}

.cell-a {
  top: 10%;
  right: 15%;
}

.cell-b {
  right: -60px;
  bottom: 24%;
  width: 280px;
  height: 120px;
  animation-delay: -4s;
}

.cell-c {
  bottom: 4%;
  left: 38%;
  width: 190px;
  height: 86px;
  animation-delay: -7s;
}

.cell-d {
  top: 21%;
  left: -48px;
  width: 240px;
  height: 104px;
  animation-delay: -9s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 34px;
  padding: 100px max(24px, calc((100vw - 1180px) / 2)) 46px;
  background:
    radial-gradient(circle at 68% 46%, rgba(122, 255, 245, 0.22), transparent 25%),
    linear-gradient(90deg, rgba(4, 35, 44, 0.94) 0%, rgba(0, 116, 128, 0.66) 48%, rgba(245, 255, 253, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(7, 47, 60, 0.44) 100%);
}

.hero-content {
  max-width: 720px;
  min-width: 0;
  color: white;
  animation: heroContentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both 120ms;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-strip .eyebrow {
  color: var(--red);
  text-shadow: 0 1px 0 white;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-content p {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.42);
  animation: heroContentIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both 420ms;
}

.hero-metrics div {
  min-height: 104px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(12px);
  transition: background 220ms ease, transform 220ms ease;
}

.hero-metrics div:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 5px;
  font-size: 34px;
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.78);
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  animation: cueFloat 2.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
}

.section,
.intro-band,
.anniversary-story,
.award-strip,
.contact-strip {
  padding: 92px 0;
}

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

.intro-band {
  background: var(--paper);
}

.ecosystem-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 167, 157, 0.14), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(17, 119, 168, 0.12), transparent 30%),
    linear-gradient(135deg, #f9fffd 0%, #eefafa 100%);
}

.ecosystem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 167, 157, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 167, 157, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 76%);
}

.ecosystem-wrap {
  position: relative;
  z-index: 1;
}

.ecosystem-orbit {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 18%, rgba(255, 255, 255, 0.62) 19% 30%, transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 250, 250, 0.82));
  box-shadow: var(--shadow);
}

.ecosystem-orbit::before,
.ecosystem-orbit::after {
  content: "";
  position: absolute;
  inset: 80px 130px;
  border: 1px solid rgba(0, 167, 157, 0.24);
  border-radius: 50%;
  animation: orbitSpin 28s linear infinite;
}

.ecosystem-orbit::after {
  inset: 128px 220px;
  border-color: rgba(17, 119, 168, 0.22);
  animation-duration: 22s;
  animation-direction: reverse;
}

.ecosystem-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 260px;
  min-height: 260px;
  place-items: center;
  padding: 26px;
  border: 1px solid rgba(215, 232, 234, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(18, 49, 61, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
}

.ecosystem-core img {
  width: 132px;
  mix-blend-mode: multiply;
}

.ecosystem-core strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.orbit-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(215, 232, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(18, 49, 61, 0.1);
  transform: translate(-50%, -50%);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.orbit-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.orbit-card h3 {
  margin: 14px 0 8px;
  color: #050b0f;
  font-size: 21px;
}

.orbit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.orbit-card:hover {
  border-color: rgba(255, 0, 61, 0.38);
  box-shadow: 0 22px 48px rgba(18, 49, 61, 0.14);
  transform: translate(-50%, -54%);
}

.orbit-card-1 {
  top: 18%;
  left: 28%;
  animation: cardDrift 7s ease-in-out infinite alternate;
}

.orbit-card-2 {
  top: 19%;
  left: 72%;
  animation: cardDrift 7.8s ease-in-out -1s infinite alternate;
}

.orbit-card-3 {
  top: 50%;
  left: 84%;
  animation: cardDrift 8.4s ease-in-out -2s infinite alternate;
}

.orbit-card-4 {
  top: 80%;
  left: 70%;
  animation: cardDrift 7.2s ease-in-out -3s infinite alternate;
}

.orbit-card-5 {
  top: 80%;
  left: 30%;
  animation: cardDrift 8s ease-in-out -4s infinite alternate;
}

.orbit-card-6 {
  top: 50%;
  left: 16%;
  animation: cardDrift 7.6s ease-in-out -5s infinite alternate;
}

.anniversary-story {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 167, 157, 0.13), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255, 0, 61, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4fffd 56%, #eef8fb 100%);
}

.anniversary-wrap {
  display: grid;
  gap: 34px;
}

.anniversary-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.anniversary-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.anniversary-mark::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto;
  height: 62%;
  background: linear-gradient(100deg, rgba(0, 167, 157, 0.16), rgba(17, 119, 168, 0.08), transparent);
  transform: rotate(-8deg);
}

.anniversary-mark img {
  position: relative;
  width: min(250px, 72%);
  border-radius: 8px;
}

.anniversary-copy > p,
.anniversary-statement > div:last-child p {
  color: var(--muted);
  font-size: 18px;
}

.anniversary-copy h2 {
  max-width: 860px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
}

.anniversary-statement {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.anniversary-statement h3 {
  margin-bottom: 0;
  color: #050b0f;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

.anniversary-statement > div:first-child span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.anniversary-statement > div:last-child p {
  max-width: 820px;
  margin-top: 18px;
  margin-bottom: 0;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.anniversary-pillars {
  margin-top: 0;
}

.story-points article,
.journey-timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(18, 49, 61, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.story-points article:hover,
.journey-timeline article:hover,
.mission-card:hover,
.feature-card:hover,
.media-card:hover,
.news-card:hover,
.compact-card:hover,
.visual-card:hover {
  border-color: rgba(0, 167, 157, 0.42);
  box-shadow: 0 18px 46px rgba(18, 49, 61, 0.12);
  transform: translateY(-5px);
}

.story-points span {
  display: inline-flex;
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.story-points h3,
.journey-timeline h3 {
  margin-top: 14px;
  font-size: 20px;
}

.story-points p,
.journey-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.anniversary-timeline {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 26px;
  box-shadow: 0 16px 46px rgba(18, 49, 61, 0.08);
}

.anniversary-timeline h3 {
  max-width: 760px;
  font-size: clamp(28px, 3.5vw, 44px);
}

.anniversary-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(215, 232, 234, 0.95);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 167, 157, 0.18), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(255, 0, 61, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eefaf9 100%);
  padding: 22px;
}

.anniversary-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 167, 157, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 167, 157, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.cinema-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #071f27;
  box-shadow: 0 22px 54px rgba(18, 49, 61, 0.16);
}

.cinema-scene {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}

.cinema-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(3, 18, 25, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 167, 157, 0.12), transparent 44%);
}

.cinema-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.cinema-scene-1 img {
  object-fit: contain;
  padding: 58px;
  background: linear-gradient(135deg, #ffffff 0%, #eefaf9 100%);
}

.cinema-scene figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  color: white;
}

.cinema-scene figcaption span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #ff5b78;
  font-weight: 900;
}

.cinema-scene figcaption strong {
  display: block;
  max-width: 560px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.cinema-story {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.cinema-chapter {
  border: 1px solid rgba(215, 232, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 18px;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.cinema-chapter span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.cinema-chapter strong {
  display: block;
  color: #050b0f;
  font-size: 18px;
  line-height: 1.25;
}

.cinema-chapter p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cinema-track {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  height: 8px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(0, 167, 157, 0.17);
}

.cinema-track-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--red));
}

.cinema-track i {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 167, 157, 0.14);
  transform: translate(-50%, -50%);
}

.cinema-track i:nth-child(2) {
  left: 0;
}

.cinema-track i:nth-child(3) {
  left: 33.33%;
}

.cinema-track i:nth-child(4) {
  left: 66.66%;
}

.cinema-track i:nth-child(5) {
  left: 100%;
  background: var(--red);
}

.anniversary-cinema.is-visible .cinema-scene {
  animation: cinemaScene 20s ease-in-out infinite;
}

.anniversary-cinema.is-visible .cinema-scene img {
  animation: cinemaImageDrift 20s ease-in-out infinite;
}

.anniversary-cinema.is-visible .cinema-scene-2,
.anniversary-cinema.is-visible .cinema-scene-2 img {
  animation-delay: 5s;
}

.anniversary-cinema.is-visible .cinema-scene-3,
.anniversary-cinema.is-visible .cinema-scene-3 img {
  animation-delay: 10s;
}

.anniversary-cinema.is-visible .cinema-scene-4,
.anniversary-cinema.is-visible .cinema-scene-4 img {
  animation-delay: 15s;
}

.anniversary-cinema.is-visible .cinema-chapter {
  animation: chapterFocus 20s ease-in-out infinite;
}

.anniversary-cinema.is-visible .cinema-chapter:nth-child(2) {
  animation-delay: 5s;
}

.anniversary-cinema.is-visible .cinema-chapter:nth-child(3) {
  animation-delay: 10s;
}

.anniversary-cinema.is-visible .cinema-chapter:nth-child(4) {
  animation-delay: 15s;
}

.anniversary-cinema.is-visible .cinema-track-fill {
  animation: cinemaProgress 20s linear infinite;
}

.anniversary-motion {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(215, 232, 234, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 167, 157, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(17, 119, 168, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fffd 0%, #e9f8f8 100%);
}

.motion-map {
  position: absolute;
  inset: 0;
  min-width: 980px;
}

.motion-rail {
  position: absolute;
  right: 8%;
  bottom: 92px;
  left: 8%;
  height: 8px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(0, 167, 157, 0.18);
}

.motion-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--red));
}

.motion-runner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  border: 6px solid white;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(255, 0, 61, 0.15), 0 16px 30px rgba(18, 49, 61, 0.2);
  transform: translate(-50%, -50%);
}

.motion-node {
  position: absolute;
  width: 210px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(215, 232, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(18, 49, 61, 0.1);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
}

.motion-node::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -36px;
  width: 18px;
  height: 18px;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(0, 167, 157, 0.18);
}

.motion-node span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.motion-node strong {
  display: block;
  color: #050b0f;
  font-size: 21px;
  line-height: 1.15;
}

.motion-node p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.motion-node-1 {
  bottom: 130px;
  left: 6%;
}

.motion-node-2 {
  bottom: 172px;
  left: 31%;
}

.motion-node-3 {
  bottom: 130px;
  left: 56%;
}

.motion-node-4 {
  bottom: 172px;
  left: 77%;
}

.motion-orbit {
  position: absolute;
  border: 1px solid rgba(0, 167, 157, 0.24);
  border-radius: 999px;
  opacity: 0.66;
}

.motion-orbit-one {
  top: 38px;
  left: 7%;
  width: 270px;
  height: 92px;
  transform: rotate(-10deg);
}

.motion-orbit-two {
  top: 34px;
  right: 8%;
  width: 330px;
  height: 112px;
  transform: rotate(8deg);
}

.anniversary-motion.is-visible .motion-progress {
  animation: progressDraw 7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.anniversary-motion.is-visible .motion-runner {
  animation: runnerMove 7s cubic-bezier(0.2, 0.8, 0.2, 1) both, runnerPulse 1.8s ease-in-out 7s infinite;
}

.anniversary-motion.is-visible .motion-node {
  animation: nodePop 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.anniversary-motion.is-visible .motion-node-1 {
  animation-delay: 450ms;
}

.anniversary-motion.is-visible .motion-node-2 {
  animation-delay: 1.8s;
}

.anniversary-motion.is-visible .motion-node-3 {
  animation-delay: 3.2s;
}

.anniversary-motion.is-visible .motion-node-4 {
  animation-delay: 4.7s;
}

.anniversary-motion.is-visible .motion-orbit-one {
  animation: orbitDrift 8s ease-in-out infinite alternate;
}

.anniversary-motion.is-visible .motion-orbit-two {
  animation: orbitDrift 9s ease-in-out 800ms infinite alternate-reverse;
}

.timeline-frame {
  position: relative;
  overflow-x: auto;
  border: 1px solid rgba(215, 232, 234, 0.9);
  border-radius: 8px;
  background: white;
}

.timeline-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.76) 44%, transparent 58%);
  transform: translateX(-120%);
}

.anniversary-timeline.is-visible .timeline-frame::after {
  animation: timelineSweep 5.8s ease-in-out 900ms infinite;
}

.timeline-frame img {
  width: 100%;
  min-width: 868px;
  border-radius: 8px;
  background: white;
  transform-origin: center;
}

.anniversary-timeline.is-visible .timeline-frame img {
  animation: timelinePan 12s ease-in-out infinite alternate;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.intro-grid h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.intro-grid p:last-child,
.diagnostic-content p,
.award-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.intro-stats span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fffd;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
}

.intro-stats strong {
  display: block;
  color: var(--red);
  font-size: 32px;
  line-height: 1;
}

.section-muted {
  background:
    linear-gradient(180deg, #f4fcfb 0%, #eef8fb 100%);
}

.section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(34px, 4.8vw, 64px);
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.journey-timeline article {
  position: relative;
  overflow: hidden;
}

.journey-timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey-timeline article.is-visible::before {
  transform: scaleY(1);
}

.journey-timeline span {
  display: inline-flex;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.mission-card-grid,
.solution-grid,
.health-grid,
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mission-card {
  min-height: 610px;
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(215, 232, 234, 0.95);
  border-radius: 8px;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 16px 46px rgba(18, 49, 61, 0.06);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.mission-card > div {
  min-width: 0;
  padding: 34px 36px 38px;
}

.mission-card h3 {
  max-width: 360px;
  margin-bottom: 18px;
  color: #050b0f;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.18;
}

.mission-card p {
  max-width: 360px;
  color: #0f1a20;
  font-size: 18px;
  line-height: 1.55;
}

.mission-card img {
  order: -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 260px;
  margin: 0;
  object-fit: cover;
  object-position: center;
  background: #e7f8f6;
  filter: saturate(0.9) contrast(0.98);
  opacity: 1;
  transform: scale(1.01);
  transition: filter 420ms ease, opacity 420ms ease, transform 420ms ease;
}

.mission-card:hover img {
  filter: saturate(1.05) contrast(1.02);
  opacity: 1;
  transform: scale(1.06);
}

.mission-card:nth-child(1) img {
  height: 260px;
  object-position: center;
}

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

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

.feature-card,
.media-card,
.news-card,
.compact-card,
.visual-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(23, 32, 42, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  padding: 0;
  background: #e7f8f6;
}

.feature-card div,
.media-card,
.news-card div {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-card p,
.media-card p,
.news-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
}

.split-feature,
.service-layout,
.r2r-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.split-feature p,
.r2r-content p {
  color: var(--muted);
  font-size: 18px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.product-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 12px 14px;
  color: #0f6d72;
  font-weight: 750;
}

.visual-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #e7f8f6;
}

.product-visual img {
  height: 340px;
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(135deg, #0e8f9a 0%, #18afa8 100%);
}

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

.visual-card strong,
.visual-card span {
  display: block;
}

.visual-card span {
  margin-top: 6px;
  color: var(--muted);
}

.health-club-layout {
  display: grid;
  gap: 22px;
}

.health-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 167, 157, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f1fffd 100%);
  box-shadow: var(--shadow);
}

.health-hero-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.health-hero-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.health-hero-card h3 {
  max-width: 640px;
  color: #050b0f;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
}

.health-hero-card p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.health-certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.health-certificates span {
  border: 1px solid rgba(0, 167, 157, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 13px;
  color: #0f6d72;
  font-size: 13px;
  font-weight: 850;
}

.health-program-card img {
  height: 180px;
}

.health-article-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.health-article-strip > div,
.health-article-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(18, 49, 61, 0.06);
}

.health-article-strip > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: #12313d;
}

.health-article-strip > div h3 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(24px, 3vw, 36px);
}

.health-article-strip article {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
}

.health-article-strip article img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.health-article-strip article div {
  padding: 22px;
}

.health-article-strip h4 {
  margin: 0;
  color: #050b0f;
  font-size: 18px;
  line-height: 1.35;
}

.service-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.service-layout .image-panel img {
  aspect-ratio: 16 / 9;
  object-position: left center;
}

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

.compact-card {
  padding: 22px;
}

.compact-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  color: var(--teal);
}

.compact-card h3 {
  font-size: 20px;
}

.compact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-panel:hover img,
.news-card:hover img,
.media-card:hover img,
.visual-card:hover img {
  transform: scale(1.04);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 9px 13px;
  color: #0f6d72;
  font-size: 14px;
  font-weight: 750;
}

.r2r-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.r2r-content .button {
  margin-top: 12px;
}

.r2r-media {
  position: relative;
}

.r2r-media img:first-child {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 700ms ease;
}

.r2r-media:hover img:first-child {
  transform: scale(1.025);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.04) translate3d(-10px, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(10px, -6px, 0);
  }
}

@keyframes heroSweep {
  0%,
  45% {
    transform: translateX(-105%);
  }
  70%,
  100% {
    transform: translateX(105%);
  }
}

@keyframes cellFloat {
  from {
    transform: translate3d(-18px, 10px, 0) rotate(-18deg) scale(0.96);
  }
  to {
    transform: translate3d(22px, -16px, 0) rotate(10deg) scale(1.08);
  }
}

@keyframes cueFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes cardDrift {
  from {
    margin-top: -8px;
  }
  to {
    margin-top: 10px;
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes progressDraw {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes runnerMove {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

@keyframes runnerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(255, 0, 61, 0.15), 0 16px 30px rgba(18, 49, 61, 0.2);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(255, 0, 61, 0.04), 0 16px 30px rgba(18, 49, 61, 0.2);
  }
}

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

@keyframes orbitDrift {
  to {
    transform: translate3d(18px, -8px, 0) rotate(-4deg);
  }
}

@keyframes timelineSweep {
  0%,
  35% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes timelinePan {
  from {
    transform: translateX(0) scale(1);
  }
  to {
    transform: translateX(-16px) scale(1.018);
  }
}

@keyframes cinemaScene {
  0%,
  23% {
    opacity: 1;
  }
  27%,
  100% {
    opacity: 0;
  }
}

@keyframes cinemaImageDrift {
  0% {
    transform: scale(1.06) translate3d(-10px, 0, 0);
  }
  23% {
    transform: scale(1.13) translate3d(12px, -8px, 0);
  }
  27%,
  100% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
}

@keyframes chapterFocus {
  0%,
  23% {
    border-color: rgba(255, 0, 61, 0.42);
    box-shadow: 0 16px 34px rgba(18, 49, 61, 0.12);
    transform: translateX(-6px);
  }
  27%,
  100% {
    border-color: rgba(215, 232, 234, 0.95);
    box-shadow: none;
    transform: translateX(0);
  }
}

@keyframes cinemaProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-34%);
  }
}

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

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

  .hero picture img {
    transform: none;
  }

  .cell,
  .hero-cell-canvas {
    display: none;
  }

  .ecosystem-orbit::before,
  .ecosystem-orbit::after,
  .orbit-card,
  .news-marquee {
    animation: none;
  }

  .motion-progress {
    width: 100%;
  }

  .motion-runner {
    left: 100%;
  }

  .motion-node {
    opacity: 1;
    transform: none;
  }

  .cinema-scene:first-child {
    opacity: 1;
  }

  .cinema-track-fill {
    width: 100%;
  }
}

.media-card {
  padding: 0;
}

.media-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #e7f8f6;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 20px;
}

#news {
  overflow: hidden;
}

.news-marquee {
  display: flex;
  gap: 30px;
  width: max-content;
  margin-bottom: 22px;
  color: rgba(18, 49, 61, 0.12);
  font-size: clamp(42px, 8vw, 108px);
  font-weight: 950;
  line-height: 0.95;
  white-space: nowrap;
  animation: marqueeMove 26s linear infinite;
}

.news-marquee span {
  display: inline-flex;
}

.activity-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 24px;
}

.activity-filters span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 9px 14px;
  color: #0f6d72;
  font-size: 13px;
  font-weight: 850;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  min-height: 240px;
}

.news-card-large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

.news-card-large img {
  height: 360px;
  min-height: 360px;
}

.news-card:not(.news-card-large) img {
  object-position: center top;
}

.news-card h3 {
  font-size: 19px;
}

.news-card-large h3 {
  font-size: 28px;
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.activity-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.activity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 49, 61, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.activity-card:hover {
  border-color: rgba(0, 167, 157, 0.42);
  box-shadow: 0 18px 46px rgba(18, 49, 61, 0.12);
  transform: translateY(-5px);
}

.activity-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.activity-card:hover img {
  transform: scale(1.04);
}

.activity-card div {
  padding: 18px;
}

.activity-card h3 {
  margin-bottom: 0;
  font-size: 17px;
}

.award-strip {
  background: white;
}

.award-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: center;
}

.award-grid img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.contact-strip {
  background:
    linear-gradient(135deg, #0b6f78 0%, #12313d 62%, #126c8f 100%);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.contact-grid > * {
  min-width: 0;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.site-footer {
  background: #f0f4f6;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 42px;
  padding: 54px 0;
}

.footer-logo {
  width: 180px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 16px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 980px) {
  .primary-nav,
  .header-actions .button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    background: white;
    font-weight: 750;
  }

  .hero picture,
  .hero picture img {
    height: 720px;
    min-height: 720px;
  }

  .hero-overlay {
    padding-top: 88px;
    background: linear-gradient(180deg, rgba(8, 19, 30, 0.22) 0%, rgba(8, 19, 30, 0.86) 58%, rgba(8, 19, 30, 0.94) 100%);
  }

  .hero-metrics,
  .anniversary-hero,
  .anniversary-statement,
  .intro-grid,
  .health-hero-card,
  .health-article-strip,
  .diagnostic-layout,
  .split-feature,
  .service-layout,
  .r2r-layout,
  .award-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    display: none;
  }

  .solution-grid,
  .mission-card-grid,
  .health-grid,
  .service-cards,
  .story-points,
  .journey-timeline,
  .activity-rail,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .story-rail {
    display: none;
  }

  .ecosystem-orbit {
    display: grid;
    min-height: auto;
    gap: 14px;
    padding: 18px;
  }

  .ecosystem-orbit::before,
  .ecosystem-orbit::after {
    display: none;
  }

  .ecosystem-core,
  .orbit-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    border-radius: 8px;
    transform: none;
  }

  .ecosystem-core {
    min-height: 210px;
  }

  .orbit-card:hover {
    transform: translateY(-3px);
  }

  .mission-card {
    min-height: auto;
    padding: 0;
  }

  .mission-card img {
    height: 280px;
  }

  .mission-card > div {
    padding: 30px 32px 34px;
  }

  .mission-card h3 {
    font-size: 34px;
  }

  .mission-card p {
    font-size: 18px;
  }

  .health-hero-card > img {
    min-height: 320px;
  }

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

  .news-card img,
  .news-card-large img {
    height: 260px;
  }

  .anniversary-mark {
    min-height: 280px;
  }

  .anniversary-cinema {
    grid-template-columns: 1fr;
  }

  .cinema-stage {
    min-height: 360px;
  }

  .anniversary-statement {
    gap: 18px;
    padding: 32px 0;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 92px;
    height: 66px;
  }

  .hero {
    min-height: 1040px;
  }

  .hero picture,
  .hero picture img {
    height: 1040px;
    min-height: 1040px;
  }

  .hero-overlay {
    align-content: center;
    padding: 98px 16px 36px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section,
  .intro-band,
  .anniversary-story,
  .award-strip,
  .contact-strip {
    padding: 64px 0;
  }

  .anniversary-mark {
    min-height: auto;
    padding: 28px;
  }

  .anniversary-mark img {
    width: 190px;
  }

  .anniversary-wrap {
    gap: 24px;
  }

  .anniversary-copy h2 {
    font-size: 42px;
  }

  .anniversary-statement h3 {
    font-size: 38px;
  }

  .anniversary-timeline {
    padding: 16px;
  }

  .anniversary-cinema {
    padding: 14px;
  }

  .cinema-stage {
    min-height: 300px;
  }

  .cinema-scene-1 img {
    padding: 38px;
  }

  .cinema-scene figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .cinema-scene figcaption strong {
    font-size: 34px;
  }

  .anniversary-motion {
    min-height: 540px;
    overflow-x: auto;
  }

  .motion-map {
    min-width: 820px;
  }

  .motion-node {
    width: 178px;
  }

  .motion-node-1 {
    left: 5%;
  }

  .motion-node-2 {
    left: 29%;
  }

  .motion-node-3 {
    left: 53%;
  }

  .motion-node-4 {
    left: 75%;
  }

  .timeline-frame img {
    min-width: 760px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .mission-card img,
  .feature-card img {
    height: 230px;
  }

  .mission-card > div,
  .feature-card div {
    padding: 26px;
  }

  .health-hero-card > div {
    padding: 28px;
  }

  .health-hero-card > img {
    min-height: 260px;
  }

  .health-article-strip article {
    grid-template-columns: 1fr;
  }

  .health-article-strip article img {
    height: 210px;
  }

  .contact-actions .button {
    width: 100%;
  }
}
