
:root {
  --navy: #1a1c47;
  --navy-dark: #101228;
  --navy-soft: #2b2e6e;
  --orange: #d88d2a;
  --orange-light: #f2a93c;
  --bg: #ffffff;
  --bg-alt: #f4f5f9;
  --text: #1c1f2e;
  --text-light: #5a5f76;
  --border: #e4e5ef;
  --radius: 10px;
  --max-width: 1200px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Barlow Condensed', 'Inter', sans-serif;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 4.6vw, 4rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--text-light); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 820px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
}
.lead { font-size: 1.18rem; color: var(--text-light); max-width: 640px; }
.lead.centered { max-width: 720px; margin: 0 auto 40px; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.2s ease, box-shadow 0.25s ease, color 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 28px rgba(216,141,42,0.35); }
.btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px) scale(1.03); }
.btn-ghost.btn-dark { border-color: var(--navy); color: var(--navy); }
.btn-ghost.btn-dark:hover { background: var(--navy); color: #fff; transform: translateY(-3px) scale(1.03); }

/* ---------- top bar ---------- */
.top-bar {
  background: var(--navy-dark);
  color: #aeb1d1;
  font-size: 0.8rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.top-bar-info { display: flex; gap: 24px; }
.top-bar-info a { color: #c7c9e4; font-weight: 500; }
.top-bar-info a:hover { color: var(--orange-light); }
.tb-icon { color: var(--orange); margin-right: 4px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-tag { font-weight: 500; letter-spacing: 0.2px; }
@media (max-width: 980px) {
  .top-bar-tag { display: none; }
  .top-bar-info { gap: 16px; }
}
@media (max-width: 600px) {
  .top-bar-info a:last-child { display: none; }
}

/* ---------- language switch ---------- */
.gt-hidden, .goog-te-banner-frame, .skiptranslate > iframe { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.lang-switch { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: #e6e7f5; font-size: 0.78rem; font-weight: 600;
  padding: 5px 10px; border-radius: 20px; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lang-current:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); }
.lang-flag { font-size: 0.95rem; line-height: 1; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: 10px; box-shadow: 0 20px 44px rgba(16,18,40,0.24);
  list-style: none; margin: 0; padding: 8px; min-width: 170px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.2s ease; z-index: 200;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 6px; cursor: pointer;
  color: var(--text); font-size: 0.88rem; font-weight: 500;
  transition: background 0.15s ease;
}
.lang-menu li:hover { background: var(--bg-alt); color: var(--orange); }
@media (max-width: 700px) { .top-bar-tag { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(16,18,40,0.08);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 88px;
}
.brand-logo { height: 48px; width: auto; }
.main-nav { display: flex; flex: 1; justify-content: center; }
.nav-links { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  position: relative;
  display: block;
  padding: 14px 18px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color 0.2s ease;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1);
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--orange); }
.nav-links > li > a:hover::after,
.nav-links > li.active > a::after { transform: scaleX(1); }
.caret { font-size: 0.7em; }
.header-cta {
  flex-shrink: 0; padding: 13px 26px;
  text-transform: uppercase; letter-spacing: 0.6px; font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(216,141,42,0.3);
}
@media (max-width: 1180px) {
  .header-cta { display: none; }
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(16,18,40,0.14); }
.site-header.scrolled .header-inner { height: 72px; }
.site-header.scrolled .brand-logo { height: 40px; }
.header-inner, .brand-logo { transition: height 0.25s ease; }

.has-dropdown .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  padding: 24px;
  display: flex;
  gap: 32px;
  min-width: 460px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .mega-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 10px;
}
.mega-col a {
  display: block;
  padding: 6px 0;
  color: var(--text);
  font-size: 0.92rem;
  white-space: nowrap;
}
.mega-col a:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; }

.mobile-nav {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
}
.mobile-nav .nav-links { flex-direction: column; align-items: flex-start; width: 100%; }
.mobile-nav .nav-links > li > a { color: var(--navy); }
.mobile-nav .mega-menu {
  position: static; opacity: 1; visibility: visible; transform: none;
  box-shadow: none; background: transparent; padding: 8px 0 8px 16px; flex-direction: column; gap: 8px; min-width: 0;
}
.mobile-nav .mega-col a { color: var(--text-light); }
.mobile-nav.open { display: block; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-video .hero-media video { filter: contrast(1.12) saturate(1.25) brightness(1.06); }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 30px; height: 48px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scroll-cue-move 1.8s infinite; }
@keyframes scroll-cue-move {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}
@media (max-width: 700px) { .scroll-cue { display: none; } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,10,28,0.92) 12%, rgba(14,16,38,0.55) 55%, rgba(14,16,38,0.22) 85%),
              linear-gradient(0deg, rgba(8,9,24,0.55) 0%, rgba(8,9,24,0) 32%);
}
.hero-content { position: relative; padding: 120px 24px; max-width: 860px; }
.hero-content h1 {
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  letter-spacing: 0.5px;
  text-shadow: 0 4px 34px rgba(0,0,0,0.4);
}
.hero-content .lead { color: #e2e3f2; font-size: 1.35rem; max-width: 640px; }
.hero-content .eyebrow { font-size: 1rem; letter-spacing: 4px; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 90px 0 60px;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #d7d9ee; }
.page-hero.product-hero { padding: 70px 0 40px; }
.page-hero a { color: var(--orange-light); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px) scale(0.98); transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(32px) scale(0.96); transition: opacity 0.65s cubic-bezier(.16,1,.3,1), transform 0.65s cubic-bezier(.16,1,.3,1); }
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.53s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.61s; }
.reveal-stagger.in-view > *:nth-child(n+9) { transition-delay: 0.68s; }

/* ---------- hero entrance ---------- */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: none; }
}
.hero-content > * { opacity: 0; animation: hero-fade-up 0.9s cubic-bezier(.16,1,.3,1) forwards; }
.hero-content .eyebrow { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.22s; }
.hero-content .lead { animation-delay: 0.36s; }
.hero-content .hero-actions { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .hero-content > * { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ---------- sections ---------- */
.section { padding: 80px 0; }
.section.alt-bg { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.showcase-head { display: flex; align-items: flex-end; justify-content: space-between; max-width: none; gap: 24px; }
.showcase-head .eyebrow { margin-bottom: 8px; }
@media (max-width: 700px) { .showcase-head { flex-direction: column; align-items: flex-start; } }
.section-head h2 { margin-bottom: 0; }

/* ---------- stats ---------- */
.stats { background: var(--navy-dark); color: #fff; padding: 56px 0; }
.stats.stats-alt { background: transparent; color: var(--text); padding: 0 0 80px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-alt .stats-grid { grid-template-columns: repeat(3, 1fr); }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-head); font-size: clamp(2.2rem, 3vw, 2.8rem); font-weight: 700; color: var(--orange-light); }
.stats .stat-label, .stats.stats-alt .stat-label { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.6px; }
.stats:not(.stats-alt) .stat-label { color: #b6b9d6; }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- cards ---------- */
.two-col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cover-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.45s cubic-bezier(.34,1.56,.64,1), box-shadow 0.45s ease;
}
.cover-card:hover { transform: translateY(-10px) scale(1.015); box-shadow: 0 30px 60px rgba(16,18,40,0.32); }
.cover-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: transform 0.6s cubic-bezier(.16,1,.3,1), opacity 0.35s ease; }
.cover-card:hover img { transform: scale(1.09) rotate(0.3deg); opacity: 0.7; }
.cover-card-body { position: relative; padding: 32px; color: #fff; }
.cover-card-body h3 { color: #fff; margin-bottom: 10px; }
.cover-card-body p { color: #d7d9ee; }
.link-arrow { display: inline-block; margin-top: 12px; color: var(--orange-light); font-weight: 600; transition: transform 0.25s ease; }
.cover-card:hover .link-arrow { transform: translateX(6px); }

.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.policy-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 4px solid var(--orange);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease, background 0.3s ease;
}
.policy-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 46px rgba(16,18,40,0.16); background: #fff; }
.policy-card h3 { margin-bottom: 14px; }
@media (max-width: 900px) {
  .policy-grid { grid-template-columns: 1fr; }
  .two-col-cards { grid-template-columns: 1fr; }
}

/* ---------- highlight band ---------- */
.highlight-band { background: var(--bg-alt); overflow: hidden; }
.highlight-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.highlight-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(16,18,40,0.22);
}
.highlight-media img {
  border-radius: 16px;
  aspect-ratio: 4/3.1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.highlight-media:hover img { transform: scale(1.06); }
.highlight-glow {
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(200deg, rgba(216,141,42,0) 45%, rgba(216,141,42,0.28) 100%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.highlight-media:hover .highlight-glow { opacity: 1; }
.highlight-badge {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(16,18,40,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  transform: translateY(0); transition: transform 0.4s ease;
}
.highlight-media:hover .highlight-badge { transform: translateY(-6px); }
.highlight-badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--orange-light); line-height: 1; }
.highlight-badge-label { font-size: 0.72rem; color: #d7d9ee; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.4px; }
@media (max-width: 900px) { .highlight-inner { grid-template-columns: 1fr; } }

/* ---------- video band ---------- */
.video-band { background: var(--navy-dark); }
.video-band .eyebrow { color: var(--orange-light); }
.video-band h2 { color: #fff; }
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.video-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; filter: brightness(0.72); }
.video-frame:hover .video-thumb { transform: scale(1.04); filter: brightness(0.6); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(216,141,42,0.92);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(216,141,42,0.5);
  animation: pulse-ring 2.4s infinite;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-frame:hover .video-play { background: var(--orange-light); transform: translate(-50%, -50%) scale(1.08); }
.video-play span {
  display: block; width: 0; height: 0;
  border-top: 14px solid transparent; border-bottom: 14px solid transparent;
  border-left: 22px solid #fff; margin-left: 6px;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(216,141,42,0.45); }
  70% { box-shadow: 0 0 0 22px rgba(216,141,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,141,42,0); }
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cta { text-align: center; margin: 24px 0 0; }
.video-cta a { color: var(--orange-light); font-weight: 600; }
.video-cta a:hover { color: #fff; }

/* ---------- cta ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; }
.cta-inner h2 { color: #fff; margin-bottom: 20px; }
.cta-inner p { color: #d7d9ee; max-width: 560px; margin: 0 auto 24px; }

/* ---------- facilities ---------- */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.facility-card {
  border-radius: var(--radius); overflow: hidden; background: var(--bg-alt);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease;
}
.facility-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 46px rgba(16,18,40,0.18); }
.facility-card img { height: 200px; width: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.16,1,.3,1); }
.facility-card:hover img { transform: scale(1.1); }
.facility-card h3 { padding: 16px 18px; margin: 0; font-size: 1.05rem; }
@media (max-width: 900px) { .facility-grid { grid-template-columns: 1fr; } }

/* ---------- text cards ---------- */
.text-card {
  background: var(--bg-alt); border-radius: var(--radius); padding: 32px; border-left: 4px solid var(--orange);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease;
}
.text-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 46px rgba(16,18,40,0.16); }

/* ---------- check list ---------- */
.check-list { list-style: none; margin: 24px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative; padding-left: 30px; color: var(--text-light);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 700;
}

/* ---------- certs ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.cert-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.cert-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 24px 46px rgba(16,18,40,0.16); border-color: var(--orange); }
.cert-card img { height: 90px; object-fit: contain; margin: 0 auto 14px; transition: transform 0.4s cubic-bezier(.34,1.56,.64,1); }
.cert-card:hover img { transform: scale(1.1) rotate(-2deg); }
.cert-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.cert-card p { font-size: 0.82rem; margin: 0; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- accordion-ish list ---------- */
.accordion-list { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.acc-item { border-left: 3px solid var(--orange); padding-left: 20px; }
.acc-item h4 { margin-bottom: 8px; }
.acc-item p { margin: 0; }

/* ---------- contact ---------- */
.contact-card { background: var(--bg-alt); border-radius: var(--radius); padding: 32px; transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease; }
.contact-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 46px rgba(16,18,40,0.16); }
.contact-dl { margin: 20px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.contact-dl dt { font-weight: 600; color: var(--text); }
.contact-dl dd { margin: 0; color: var(--text-light); }
.contact-dl a { color: var(--orange); }

.table-wrap { overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; background: #fff; }
.spec-table th, .spec-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  font-size: 0.9rem;
  vertical-align: top;
}
.spec-table th { background: var(--bg-alt); width: 260px; font-weight: 600; }

/* ---------- gallery ---------- */
.gallery-hero {
  position: relative; overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end; padding-bottom: 56px;
}
.gallery-hero .hero-media img { filter: saturate(1.05); }
.gallery-hero .container { position: relative; z-index: 2; }
.gallery-section { padding-top: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  grid-column: span 2;
  grid-row: span 1;
  box-shadow: 0 6px 18px rgba(16,18,40,0.08);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease;
}
.gallery-item:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(16,18,40,0.22); z-index: 1; }
.gallery-item.gi-big { grid-column: span 4; grid-row: span 2; }
.gallery-item.gi-wide { grid-column: span 4; grid-row: span 1; }
.gallery-item.gi-tall { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.16,1,.3,1); display: block; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(16,18,40,0) 55%, rgba(16,18,40,0.55) 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-zoom {
  position: absolute; right: 14px; bottom: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; opacity: 0; transform: translateY(8px);
  transition: all 0.25s ease;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item, .gallery-item.gi-big, .gallery-item.gi-wide, .gallery-item.gi-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-item.gi-big, .gallery-item.gi-tall { grid-row: span 2; }
}

.lightbox {
  display: none;
  position: fixed; inset: 0; background: rgba(10,11,26,0.94);
  z-index: 1000; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 86vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; background: none; border: none;
  color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.8rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: #d7d9ee; font-size: 0.85rem; letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- home showcase ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}
.showcase-item { position: relative; border-radius: 10px; overflow: hidden; grid-column: span 1; grid-row: span 1; transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease; }
.showcase-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(16,18,40,0.22); z-index: 1; }
.showcase-item.sc-big { grid-column: span 2; grid-row: span 2; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.16,1,.3,1); }
.showcase-item:hover img { transform: scale(1.09); }
.showcase-cta {
  grid-column: span 2; grid-row: span 1;
  background: var(--navy);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 0 32px; gap: 10px;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), background 0.3s ease;
}
.showcase-cta:hover { transform: translateY(-5px); background: var(--navy-soft); }
.showcase-cta h3 { color: #fff; margin: 0; }
.showcase-cta .link-arrow { margin-top: 0; }
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .showcase-item.sc-big { grid-column: span 2; grid-row: span 1; }
  .showcase-cta { grid-column: span 2; padding: 24px 28px; }
}

/* ---------- products ---------- */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.product-media img { border-radius: var(--radius); }
.product-copy p { color: var(--text-light); }
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; } }

.product-specs-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .product-specs-grid { grid-template-columns: 1fr; } }
.note { margin-top: 20px; font-style: italic; }

.chip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 40px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), border-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}
.chip:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 20px rgba(216,141,42,0.18); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-dark); color: #b6b9d6; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 48px;
}
.footer-logo-chip {
  display: inline-flex;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.footer-logo { height: 30px; margin-bottom: 0; }
.footer-col h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; padding: 4px 0; font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange-light); }
.footer-col p { font-size: 0.88rem; color: #9598b8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 0.82rem; text-align: center; color: #7c7fa0; }
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
