:root {
  --navy: #061d47;
  --navy-2: #0a2b62;
  --blue: #005bad;
  --cyan: #00a5df;
  --ink: #101a2b;
  --slate: #536176;
  --line: #dbe2eb;
  --paper: #f4f7fa;
  --white: #ffffff;
  --container: 1240px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(84px, 10vw, 150px); }

.skip-link {
  position: fixed; left: 20px; top: -60px; z-index: 1000;
  padding: 12px 18px; color: var(--white); background: var(--blue);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  color: var(--white); transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled { background: rgba(6,29,71,.96); box-shadow: 0 12px 32px rgba(3,16,39,.14); backdrop-filter: blur(16px); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: flex; align-items: center; width: 205px; }
.brand img { width: 205px; height: auto; filter: drop-shadow(0 5px 10px rgba(0,0,0,.22)); transition: transform .25s ease, filter .25s ease; }
.brand:hover img, .brand:focus-visible img { transform: translateY(-1px); filter: drop-shadow(0 7px 13px rgba(0,0,0,.28)) brightness(1.04); }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); font-size: .92rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; padding-block: 12px; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; inset: auto 0 6px; height: 2px; background: var(--cyan);
  transform: scaleX(0); transform-origin: right; transition: transform .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 20px; border: 1px solid rgba(255,255,255,.52); transition: background .25s ease, color .25s ease; }
.nav-cta:hover, .nav-cta:focus-visible { color: var(--navy); background: var(--white); }
.menu-toggle { display: none; border: 0; color: var(--white); background: transparent; }

.hero { position: relative; min-height: 830px; height: 100svh; color: var(--white); overflow: hidden; background: var(--navy); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,18,43,.94) 0%, rgba(5,27,63,.78) 41%, rgba(5,24,55,.18) 76%, rgba(5,24,55,.1) 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 160px 160px; mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: var(--header-h); padding-bottom: 130px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: #bfeeff; font-size: .78rem; line-height: 1.2; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--cyan); }
.eyebrow.dark { color: var(--blue); }
.eyebrow.light { color: #bfeeff; }
.hero h1 { max-width: 980px; margin: 0; font-size: clamp(3.2rem, 6.3vw, 6.3rem); line-height: .96; letter-spacing: -.055em; font-weight: 690; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.82); }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.83); font-size: clamp(1.05rem, 1.35vw, 1.24rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 14px 23px; border: 1px solid transparent; font-size: .93rem; font-weight: 700; transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { color: var(--navy); background: var(--white); }
.button-primary:hover { background: var(--cyan); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.15); }
.hero-bottom { position: absolute; inset: auto 0 0; z-index: 3; border-top: 1px solid rgba(255,255,255,.2); background: rgba(4,23,54,.55); backdrop-filter: blur(12px); }
.hero-proof { min-height: 96px; display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-proof > div { display: flex; flex-direction: column; justify-content: center; gap: 1px; padding: 20px 28px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-proof > div:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.hero-proof strong { font-size: .94rem; }
.hero-proof span { color: rgba(255,255,255,.66); font-size: .82rem; }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: .28fr 1.3fr .9fr; gap: clamp(32px, 5vw, 86px); align-items: start; }
.section-index { color: #c6d0dc; font-size: 1rem; font-weight: 750; }
h2 { margin: 0; font-size: clamp(2.35rem, 4.3vw, 4.5rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 680; }
.intro-detail { padding-top: 42px; color: var(--slate); font-size: 1.08rem; }
.intro-detail p { margin: 0 0 30px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--blue); font-weight: 750; border-bottom: 1px solid #aac9e8; padding-bottom: 5px; }

.products { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading > p { max-width: 480px; margin: 0 0 6px; color: var(--slate); font-size: 1.03rem; }
.product-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: repeat(2, minmax(285px, 1fr)); gap: 18px; min-height: 700px; }
.product-card { position: relative; min-height: 290px; overflow: hidden; color: var(--white); background: var(--navy); }
.product-card-large { grid-row: 1 / 3; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1); }
.product-card-large img { image-rendering: auto; }
.product-card:hover img { transform: scale(1.04); }
.product-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 22%, rgba(3,17,40,.86) 100%); }
.product-content { position: absolute; inset: auto 0 0; padding: clamp(24px, 3vw, 42px); }
.product-content > span { display: block; margin-bottom: 12px; color: #bfeeff; font-size: .75rem; font-weight: 750; letter-spacing: .15em; }
.product-content h3 { margin: 0; font-size: clamp(1.75rem, 3vw, 3.2rem); line-height: 1.05; letter-spacing: -.035em; }
.product-content p { max-width: 520px; margin: 12px 0 18px; color: rgba(255,255,255,.76); }
.product-content a { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; font-size: .88rem; }
.product-content a b { color: var(--cyan); font-size: 1.15rem; }

.technology { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.technology::before { content: ""; position: absolute; width: 620px; height: 620px; right: -220px; top: -280px; border: 120px solid rgba(0,165,223,.08); border-radius: 50%; }
.technology-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 10vw, 160px); align-items: center; }
.technology-copy > p:not(.eyebrow) { max-width: 570px; margin: 28px 0 34px; color: rgba(255,255,255,.7); font-size: 1.03rem; }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.42); }
.button-outline:hover { color: var(--navy); border-color: var(--white); background: var(--white); }
.technology-list { border-top: 1px solid rgba(255,255,255,.22); }
.tech-item { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.tech-item > span { padding-top: 3px; color: var(--cyan); font-size: .8rem; font-weight: 800; }
.tech-item h3 { margin: 0 0 5px; font-size: 1.3rem; }
.tech-item p { margin: 0; color: rgba(255,255,255,.65); }

.process { background: var(--white); }
.process-list { counter-reset: item; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 70px 0 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 250px; padding: 30px 24px 20px 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: 24px; }
.process-list li:last-child { border-right: 0; }
.process-list span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: var(--white); background: var(--blue); border-radius: 50%; font-size: .76rem; font-weight: 800; }
.process-list h3 { margin: 42px 0 10px; font-size: 1.35rem; }
.process-list p { margin: 0; color: var(--slate); }

.heritage { overflow: hidden; background: var(--paper); }
.heritage-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.heritage-media { position: relative; min-height: 580px; }
.heritage-media img:first-child { position: absolute; left: 0; top: 0; width: 52%; height: 77%; object-fit: cover; filter: saturate(.75); }
.heritage-media img:nth-child(2) { position: absolute; right: 0; bottom: 0; width: 59%; height: 63%; object-fit: cover; filter: saturate(.75); box-shadow: -20px -20px 0 var(--paper); }
.heritage-label { position: absolute; left: 18px; bottom: 12px; padding: 12px 16px; color: var(--white); background: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.heritage-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--slate); font-size: 1.03rem; }
.market-list { display: flex; flex-wrap: wrap; gap: 8px; }
.market-list span { padding: 8px 12px; border: 1px solid #cad3de; background: rgba(255,255,255,.5); font-size: .82rem; font-weight: 700; }

.contact { color: var(--white); background: linear-gradient(135deg, #071d45 0%, #0b3474 100%); }
.contact-shell { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(70px, 11vw, 170px); }
.contact-main > p:not(.eyebrow) { max-width: 610px; margin: 28px 0 32px; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.button-white { color: var(--navy); background: var(--white); }
.button-white:hover { background: #bfeeff; }
.phone-link { font-size: 1.08rem; font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.5); }
.contact-details { border-top: 1px solid rgba(255,255,255,.24); }
.contact-details > div { display: flex; flex-direction: column; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.contact-details span { margin-bottom: 8px; color: #a8c7eb; font-size: .76rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a, .contact-details address { font-style: normal; line-height: 1.65; }
.contact-details a:hover { color: #bfeeff; }

.site-footer { color: rgba(255,255,255,.65); background: #031126; }
.footer-inner { min-height: 116px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 36px; font-size: .81rem; }
.footer-brand { color: var(--white); font-size: 1.2rem; font-weight: 850; letter-spacing: .08em; }
.footer-brand span { color: var(--cyan); font-size: .55em; vertical-align: super; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .2s; }

@media (max-width: 920px) {
  :root { --header-h: 78px; }
  .brand { width: 170px; }
  .brand img { width: 170px; }
  .menu-toggle { position: relative; z-index: 102; display: flex; align-items: center; gap: 12px; padding: 12px 0 12px 12px; font: inherit; font-size: .86rem; font-weight: 700; cursor: pointer; }
  .menu-icon { width: 28px; display: flex; flex-direction: column; gap: 7px; }
  .menu-icon i { width: 100%; height: 2px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; padding: 88px 24px 40px; color: var(--white); background: var(--navy); transform: translateX(100%); transition: transform .35s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a:not(.nav-cta) { width: 100%; padding: 10px 0; font-size: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.14); }
  .nav-cta { margin-top: 14px; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,18,43,.96) 0%, rgba(5,27,63,.82) 63%, rgba(5,24,55,.38) 100%); }
  .hero-proof > div { padding-inline: 14px; }
  .hero-proof > div:last-child { display: none; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-index { display: none; }
  .intro-detail { max-width: 650px; padding-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .product-card, .product-card-large { grid-row: auto; min-height: 460px; }
  .product-card:not(.product-card-large) { min-height: 360px; }
  .technology-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(3), .process-list li:nth-child(4) { border-top: 1px solid var(--line); }
  .heritage-grid, .contact-shell { grid-template-columns: 1fr; }
  .heritage-media { min-height: 520px; }
  .footer-inner { grid-template-columns: 1fr auto; padding-block: 30px; }
  .footer-inner > p { order: 3; margin: 0; }
  .footer-links { order: 4; justify-content: flex-end; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 76px; }
  .hero { min-height: 780px; }
  .hero-content { padding-bottom: 146px; }
  .hero h1 { font-size: clamp(2.8rem, 13.2vw, 4.5rem); }
  .hero-lead { margin-top: 24px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-bottom { background: rgba(4,23,54,.76); }
  .hero-proof { min-height: 112px; }
  .hero-proof > div { padding: 16px 12px; }
  .hero-proof span { font-size: .74rem; line-height: 1.35; }
  h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .section-heading { margin-bottom: 38px; }
  .product-card, .product-card-large, .product-card:not(.product-card-large) { min-height: 430px; }
  .product-card img { min-width: 100%; }
  .product-content { padding: 24px; }
  .process-list { grid-template-columns: 1fr; margin-top: 42px; }
  .process-list li, .process-list li:not(:first-child) { min-height: 0; padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-list li:first-child { border-top: 0; }
  .process-list h3 { margin-top: 20px; }
  .heritage-media { min-height: 430px; }
  .heritage-media img:first-child { width: 58%; height: 72%; }
  .heritage-media img:nth-child(2) { width: 65%; height: 58%; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner > p, .footer-links { order: initial; justify-content: flex-start; }
  .footer-links { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .photo-slider-viewport { scroll-behavior: auto !important; }
}

/* Multi-page site */
.site-header.is-solid { background: rgba(6,29,71,.98); box-shadow: 0 12px 32px rgba(3,16,39,.14); }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.subpage-main { padding-top: var(--header-h); }
.subpage-hero {
  position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden;
  color: var(--white); background: linear-gradient(135deg, var(--navy), #0c397b);
}
.subpage-hero.has-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,18,43,.96) 0%, rgba(5,27,63,.78) 50%, rgba(5,24,55,.18) 100%);
}
.subpage-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.subpage-hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 150px 150px;
}
.subpage-hero-content { position: relative; z-index: 2; padding-block: 84px 74px; text-align: left; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 8px; margin-bottom: 30px; color: rgba(255,255,255,.64); font-size: .8rem; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs i { font-style: normal; color: var(--cyan); }
.subpage-hero h1 { max-width: 930px; margin: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .98; letter-spacing: -.055em; }
.subpage-hero-content > p:not(.eyebrow) { max-width: 700px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.subpage-hero .hero-number { position: absolute; right: 5vw; bottom: 32px; z-index: 2; color: rgba(255,255,255,.08); font-size: clamp(8rem, 20vw, 18rem); line-height: .8; font-weight: 800; letter-spacing: -.08em; }

.page-section { padding-block: clamp(76px, 9vw, 132px); }
.page-section.soft { background: var(--paper); }
.page-section.navy { color: var(--white); background: var(--navy); }
.company-page .page-section { --container: 1320px; }
.company-page .lead-grid { gap: clamp(32px, 4.5vw, 68px); }
.company-page #zaplecze .media-split { grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 3.5vw, 52px); }
.company-page #zaplecze .factory-gallery-head { gap: clamp(24px, 3vw, 46px); }
.company-page .section-heading { gap: clamp(24px, 3vw, 44px); }
.company-page .card-grid { gap: 14px; }
.lead-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.lead-grid h2 { max-width: 690px; }
.lead-copy { color: var(--slate); font-size: 1.08rem; }
.lead-copy p:first-child { margin-top: 0; }
.lead-copy p:last-child { margin-bottom: 0; }
.lead-copy strong { color: var(--ink); }
.lead-copy .text-link { margin-top: 20px; }

.media-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(52px, 8vw, 116px); align-items: center; }
.media-split.reverse { grid-template-columns: .95fr 1.05fr; }
.media-split.reverse .media-frame { order: 2; }
.media-frame { position: relative; min-height: 520px; overflow: hidden; background: #d9e1ea; }
.media-frame img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.48); pointer-events: none; }
.media-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--slate); }
.media-copy ul { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.media-copy li { position: relative; padding-left: 24px; color: var(--slate); }
.media-copy li::before { content: ""; position: absolute; left: 0; top: .72em; width: 9px; height: 2px; background: var(--cyan); }

.factory-gallery-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 112px); align-items: end; margin-top: clamp(64px, 8vw, 108px); padding-top: 34px; border-top: 1px solid var(--line); }
.factory-gallery-head h3 { max-width: 640px; margin: 0; font-size: clamp(2rem, 3.8vw, 3.6rem); line-height: 1.06; letter-spacing: -.045em; }
.factory-gallery-head > p { margin: 0; color: var(--slate); }
.photo-slider { --slider-height: clamp(410px, 50vw, 680px); margin-top: 40px; }
.realization-photo-slider { margin-top: 52px; }
.photo-slider-viewport { overflow-x: auto; border: 1px solid rgba(110,129,153,.32); background: #d7dee8; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; cursor: grab; }
.photo-slider-viewport::-webkit-scrollbar { display: none; }
.photo-slider-viewport:active { cursor: grabbing; }
.photo-slider-viewport:focus-visible { outline: 3px solid rgba(0,165,223,.48); outline-offset: 3px; }
.photo-slider-track { display: flex; }
.photo-slide { position: relative; flex: 0 0 100%; min-width: 0; height: var(--slider-height); margin: 0; overflow: hidden; background: #d7dee8; scroll-snap-align: start; scroll-snap-stop: always; }
.photo-slide-media { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; }
.photo-slide-media::after { content: ""; position: absolute; inset: 36% 0 0; background: linear-gradient(180deg, transparent, rgba(3,18,43,.82)); pointer-events: none; }
.photo-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1), filter .7s ease; }
.photo-slide-media > span { position: absolute; right: 18px; top: 18px; z-index: 2; padding: 8px 12px; color: var(--white); background: rgba(6,29,71,.76); font-size: .7rem; font-weight: 760; letter-spacing: .03em; opacity: 0; transform: translateY(-5px); transition: opacity .25s ease, transform .25s ease; backdrop-filter: blur(9px); }
.photo-slide-media:hover img, .photo-slide-media:focus-visible img { transform: scale(1.025); filter: contrast(1.025); }
.photo-slide-media:hover > span, .photo-slide-media:focus-visible > span { opacity: 1; transform: translateY(0); }
.photo-slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; max-width: 760px; padding: clamp(25px, 4vw, 48px); color: var(--white); pointer-events: none; }
.photo-slide figcaption strong { display: block; font-size: clamp(1.6rem, 3.2vw, 3rem); line-height: 1.06; letter-spacing: -.035em; }
.photo-slide figcaption small { display: block; max-width: 610px; margin-top: 10px; color: rgba(255,255,255,.78); font-size: clamp(.82rem, 1.2vw, .98rem); line-height: 1.55; }
.photo-slider-controls { min-height: 76px; display: grid; grid-template-columns: auto minmax(120px, 1fr) auto; gap: 24px; align-items: center; padding: 13px 14px 13px 20px; border: 1px solid var(--line); border-top: 0; background: rgba(255,255,255,.92); }
.photo-slider-status { min-width: 62px; display: flex; align-items: baseline; gap: 6px; color: #8491a2; font-size: .74rem; font-weight: 760; letter-spacing: .06em; }
.photo-slider-status strong { color: var(--blue); font-size: 1.18rem; line-height: 1; }
.photo-slider-progress { height: 2px; overflow: hidden; background: #d6dee8; }
.photo-slider-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transform-origin: left center; transition: transform .45s cubic-bezier(.2,.65,.25,1); }
.photo-slider-actions { display: flex; align-items: center; gap: 7px; }
.photo-slider-actions button { min-width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 14px; border: 1px solid #c8d3df; color: var(--navy); background: var(--white); font: inherit; font-size: .73rem; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
.photo-slider-actions button:hover, .photo-slider-actions button:focus-visible { color: var(--white); border-color: var(--blue); background: var(--blue); }
.photo-slider-actions button:active { transform: scale(.96); }
.photo-slider-actions button:focus-visible { outline: 3px solid rgba(0,165,223,.35); outline-offset: 2px; }
.photo-slider-arrow { padding: 0 !important; }
.photo-slider-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.photo-slider-toggle-mark { width: 9px; height: 12px; border-right: 3px solid currentColor; border-left: 3px solid currentColor; }
.photo-slider-toggle[aria-pressed="true"] .photo-slider-toggle-mark { width: 0; height: 0; border-top: 6px solid transparent; border-right: 0; border-bottom: 6px solid transparent; border-left: 9px solid currentColor; }
.photo-slider.is-single .photo-slider-toggle, .photo-slider.is-single .photo-slider-arrow { display: none; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { min-height: 154px; display: flex; flex-direction: column; justify-content: center; padding: 28px; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat strong { color: var(--blue); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; letter-spacing: -.04em; }
.stat span { margin-top: 10px; color: var(--slate); font-size: .88rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card { position: relative; min-height: 310px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.info-card:hover { transform: translateY(-5px); border-color: #aabbd0; box-shadow: 0 24px 50px rgba(18,36,62,.09); }
.info-card > span { color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.info-card.has-icon { min-height: 390px; }
.info-card-icon { position: relative; width: 78px; height: 78px; display: grid; place-items: center; margin-top: 34px; color: var(--navy); border: 1px solid #cbd9e8; background: linear-gradient(145deg, #f8fcff, #e8f3fb); transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease; }
.info-card-icon::before { content: ""; position: absolute; right: -1px; top: -1px; width: 21px; height: 3px; background: var(--cyan); }
.info-card-icon svg { width: 47px; height: 47px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-card-icon .icon-accent { stroke: var(--cyan); stroke-width: 2.5; }
.info-card.has-icon:hover .info-card-icon { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-3px); }
.info-card.has-icon:hover .info-card-icon .icon-accent { stroke: #7bdfff; }
.info-card h3 { margin: auto 0 12px; font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.14; letter-spacing: -.025em; }
.info-card p { margin: 0; color: var(--slate); }
.info-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--blue); font-weight: 750; }
.info-card a::after { content: "↗"; color: var(--cyan); }
.info-card.dark { color: var(--white); border-color: rgba(255,255,255,.14); background: var(--navy-2); }
.info-card.dark p { color: rgba(255,255,255,.67); }
.info-card.dark h3 { margin-top: 42px; }
.info-card.dark a { color: var(--white); }
.info-card.dark .info-card-icon { color: var(--white); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }

.offer-catalog { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 54px; }
.offer-tile { position: relative; min-height: 430px; grid-column: span 6; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--navy); }
.offer-tile:nth-child(3), .offer-tile:nth-child(4), .offer-tile:nth-child(5) { grid-column: span 4; min-height: 360px; }
.offer-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.offer-tile:nth-child(1) img { object-position: 58% center; }
.offer-tile:nth-child(2) img { object-position: 56% center; }
.offer-tile:nth-child(3) img { object-position: 67% center; }
.offer-tile:nth-child(4) img { object-position: 67% center; }
.offer-tile:nth-child(5) img { object-position: 66% center; }
.offer-tile:hover img { transform: scale(1.04); }
.offer-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,18,43,.05), rgba(3,18,43,.9)); }
.offer-tile-content { position: relative; z-index: 1; width: 100%; padding: 30px; }
.offer-tile-content span { color: #bfeeff; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.offer-tile-content h3 { margin: 10px 0 8px; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.05; }
.offer-tile-content p { max-width: 500px; margin: 0 0 20px; color: rgba(255,255,255,.74); }
.offer-tile-content a { font-weight: 750; }

.spec-band { color: var(--white); background: linear-gradient(135deg, #071d45, #0c397b); }
.spec-band-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.spec-list div { padding: 26px 20px 26px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.spec-list div:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.2); }
.spec-list strong { display: block; margin-bottom: 5px; }
.spec-list span { color: rgba(255,255,255,.62); font-size: .9rem; }
.language-list .language-item { display: grid; grid-template-columns: 58px 1fr; gap: 16px; align-items: center; min-height: 112px; padding-block: 22px; }
.language-icon, .spec-list .language-icon { position: relative; width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.06); transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease; }
.language-icon::before { content: ""; position: absolute; right: -1px; top: -1px; width: 18px; height: 3px; background: var(--cyan); }
.language-icon svg { width: 38px; height: 38px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.language-icon .icon-accent { stroke: var(--cyan); stroke-width: 2.5; }
.language-icon svg text { fill: currentColor; stroke: none; }
.language-copy, .spec-list .language-copy { color: inherit; font-size: inherit; }
.language-copy strong { margin: 0; }
.language-copy small { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: .9rem; }
.language-item:hover .language-icon { color: var(--navy); border-color: var(--cyan); background: var(--cyan); transform: translateY(-2px); }
.language-item:hover .language-icon .icon-accent { stroke: var(--navy); }

.sales-page .card-grid { gap: 22px; }
.sales-page .info-card { min-height: 420px; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f4f9fd 100%); }
.sales-page .info-card::after { content: ""; position: absolute; right: -72px; top: -78px; width: 190px; height: 190px; border: 1px solid rgba(0,91,173,.08); border-radius: 50%; pointer-events: none; }
.sales-page .info-card > * { position: relative; z-index: 1; }
.sales-page .info-card-icon { width: 90px; height: 90px; color: var(--white); border-color: #163d72; background: linear-gradient(145deg, var(--navy), #0b4c91); box-shadow: 0 18px 34px rgba(6,29,71,.16); }
.sales-page .info-card-icon::before { width: 28px; height: 4px; }
.sales-page .info-card-icon svg { width: 55px; height: 55px; }
.sales-page .info-card-icon .icon-accent { stroke: #64dcff; }
.sales-page .info-card.has-icon:hover .info-card-icon { border-color: var(--cyan); background: linear-gradient(145deg, #09265a, var(--blue)); }
.sales-page .language-list .language-item { min-height: 128px; gap: 20px; }
.sales-page .language-icon { width: 68px; height: 68px; border-color: rgba(100,220,255,.44); background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035)); box-shadow: 0 14px 28px rgba(1,14,36,.18); }
.sales-page .language-icon::before { width: 24px; height: 4px; }
.sales-page .language-icon svg { width: 44px; height: 44px; }
.sales-page .language-copy strong { font-size: 1.03rem; }

.download-list { margin-top: 48px; border-top: 1px solid var(--line); }
.download-row { display: grid; grid-template-columns: 82px 1fr auto; gap: 22px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.download-row > span { color: var(--blue); font-size: .78rem; font-weight: 800; }
.download-row h3 { margin: 0 0 4px; font-size: 1.16rem; }
.download-row p { margin: 0; color: var(--slate); font-size: .9rem; }
.download-row a { padding: 10px 14px; border: 1px solid #bdc8d5; color: var(--blue); font-size: .86rem; font-weight: 750; }
.download-row a:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.notice-box { margin-top: 36px; padding: 24px 28px; border-left: 4px solid var(--cyan); color: var(--slate); background: #e9f3fa; }

.certificate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.certificate-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: center; padding: 28px; border: 1px solid var(--line); background: var(--white); }
.certificate-card img { width: 180px; height: 240px; object-fit: cover; object-position: top; border: 1px solid var(--line); }
.certificate-card h3 { margin: 0 0 10px; }
.certificate-card p { margin: 0; color: var(--slate); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.news-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.news-card time { color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.news-card h3 { margin: 44px 0 14px; font-size: 1.45rem; line-height: 1.2; }
.news-card p { margin: 0; color: var(--slate); }
.archive-label { display: inline-flex; margin-top: 22px; padding: 6px 10px; align-self: flex-start; color: #607085; background: #edf1f5; font-size: .72rem; font-weight: 750; text-transform: uppercase; }

.contact-page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); }
.contact-quick { display: grid; gap: 16px; margin-top: 34px; }
.contact-quick a { font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 700; letter-spacing: -.02em; }
.contact-departments { border-top: 1px solid var(--line); }
.department { display: grid; grid-template-columns: 58px .9fr 1.25fr; gap: 20px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.department-icon { position: relative; width: 58px; height: 58px; display: grid; place-items: center; color: var(--navy); border: 1px solid #cbd9e8; background: linear-gradient(145deg, #f8fcff, #e8f3fb); transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease; }
.department-icon::before { content: ""; position: absolute; right: -1px; top: -1px; width: 18px; height: 3px; background: var(--cyan); }
.department-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.department-icon .icon-accent { stroke: var(--cyan); stroke-width: 2.5; }
.department:hover .department-icon { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-2px); }
.department:hover .department-icon .icon-accent { stroke: #7bdfff; }
.department h3 { margin: 0; padding-top: 13px; font-size: 1rem; }
.department-links { display: flex; flex-direction: column; padding-top: 9px; color: var(--slate); }
.department-links a { overflow-wrap: anywhere; }
.department a:hover { color: var(--blue); }
.map-card { margin-top: 52px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 30px; color: var(--white); background: var(--navy); }
.map-card address { font-style: normal; }
.map-card .button { color: var(--navy); background: var(--white); }

.cta-strip { color: var(--white); background: var(--blue); }
.cta-strip-inner { min-height: 300px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-strip h2 { max-width: 760px; }
.cta-strip p { max-width: 650px; margin: 18px 0 0; color: rgba(255,255,255,.76); }
.cta-strip .button { color: var(--navy); background: var(--white); }

.site-footer.extended { padding-block: 66px 30px; }
.footer-map { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 50px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-about p { max-width: 290px; margin: 16px 0 0; color: rgba(255,255,255,.52); }
.footer-column { display: flex; flex-direction: column; gap: 8px; }
.footer-column strong { margin-bottom: 10px; color: var(--white); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-column a:hover { color: var(--white); }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; padding-top: 26px; color: rgba(255,255,255,.42); font-size: .78rem; }

.not-found { min-height: 100svh; display: grid; place-items: center; padding: 40px; color: var(--white); text-align: center; background: var(--navy); }
.not-found strong { display: block; color: rgba(255,255,255,.1); font-size: clamp(9rem, 25vw, 20rem); line-height: .7; }
.not-found h1 { margin: 34px 0 12px; font-size: clamp(2rem, 5vw, 4rem); }
.not-found p { max-width: 580px; margin: 0 auto 28px; color: rgba(255,255,255,.66); }

/* Product hubs and system pages */
.page-section[id] { scroll-margin-top: calc(var(--header-h) + 64px); }
.section-jump { position: sticky; top: var(--header-h); z-index: 45; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.section-jump-inner { min-height: 68px; display: flex; align-items: center; gap: 34px; }
.section-jump strong { flex: 0 0 auto; color: var(--navy); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.section-jump-inner > div { display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.section-jump-inner > div::-webkit-scrollbar { display: none; }
.section-jump a { flex: 0 0 auto; padding: 8px 13px; color: var(--slate); border: 1px solid transparent; font-size: .82rem; font-weight: 700; }
.section-jump a:hover, .section-jump a:focus-visible { color: var(--blue); border-color: #bfd1e3; background: #f6fbff; }

.system-card-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.system-card { grid-column: span 2; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); transition: transform .3s ease, box-shadow .3s ease; }
.system-card:nth-child(1), .system-card:nth-child(2) { grid-column: span 3; }
.system-card-grid.three .system-card, .system-card-grid.three .system-card:nth-child(1), .system-card-grid.three .system-card:nth-child(2) { grid-column: span 2; }
.system-card-grid.four .system-card, .system-card-grid.four .system-card:nth-child(1), .system-card-grid.four .system-card:nth-child(2) { grid-column: span 3; }
.system-card:hover { transform: translateY(-5px); box-shadow: 0 26px 55px rgba(17,42,73,.09); }
.system-card-media { min-height: 330px; display: grid; place-items: center; overflow: hidden; background: #f2f4f5; }
.system-card-media img { width: 100%; height: 330px; object-fit: contain; transition: transform .45s ease; }
.system-card:hover .system-card-media img { transform: scale(1.025); }
.system-card-copy { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.system-card-copy > span { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.system-card h3 { margin: 18px 0 10px; font-size: clamp(1.5rem, 2.4vw, 2.25rem); line-height: 1.05; letter-spacing: -.035em; }
.system-card p { margin: 0; color: var(--slate); }
.system-card-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0; }
.system-card-meta b { padding: 7px 10px; color: #415269; background: #edf2f6; font-size: .74rem; font-weight: 750; }
.system-card .text-link { align-self: flex-start; margin-top: auto; }

.technical-gallery .section-heading > p, .page-section.navy .section-heading > p { color: rgba(255,255,255,.67); }
.technical-gallery h2, .page-section.navy h2 { color: var(--white); }
.cross-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cross-section-grid.four { grid-template-columns: repeat(4, 1fr); }
.cross-card { margin: 0; overflow: hidden; color: var(--white); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.055); }
.cross-card img { width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; background: #f4f4f2; }
.cross-card figcaption { padding: 26px; }
.cross-card span { display: block; margin-bottom: 8px; color: #94dcf7; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.cross-card strong { display: block; font-size: 1.35rem; }
.cross-card p { margin: 9px 0 0; color: rgba(255,255,255,.62); }
.source-note { margin: 24px 0 0; color: rgba(255,255,255,.52); font-size: .82rem; }
.source-note a { color: #c7f0ff; border-bottom: 1px solid rgba(199,240,255,.4); }

.component-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.component-card { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.component-card > span { color: var(--cyan); font-size: .77rem; font-weight: 850; }
.component-card h3 { margin: 54px 0 12px; font-size: 1.5rem; }
.component-card p { margin: 0; color: var(--slate); }
.component-grid.detailed { margin-top: 8px; }
.component-card.detailed { min-height: 290px; display: flex; flex-direction: column; }
.component-card-index { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.component-card-index span { color: var(--cyan); font-size: .77rem; font-weight: 850; }
.component-card-index small { max-width: 150px; color: #778499; font-size: .68rem; line-height: 1.35; font-weight: 800; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.component-card.detailed h3 { margin: 42px 0 12px; }
.component-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 30px; color: var(--white); border: 1px solid var(--navy); background: var(--navy); }
.component-outcomes article { min-height: 225px; padding: 29px; border-right: 1px solid rgba(255,255,255,.14); }
.component-outcomes article:last-child { border-right: 0; }
.component-outcomes span { color: #9fe5fb; font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.component-outcomes h3 { margin: 43px 0 10px; color: var(--white); font-size: 1.25rem; line-height: 1.25; }
.component-outcomes p { margin: 0; color: rgba(255,255,255,.66); font-size: .91rem; }

.choice-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 8vw, 120px); align-items: start; }
.choice-copy { position: sticky; top: calc(var(--header-h) + 100px); }
.choice-copy > p:not(.eyebrow) { margin: 26px 0 0; color: var(--slate); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.choice-card { min-height: 250px; padding: 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.choice-card > span { color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .14em; }
.choice-card h3 { margin: 58px 0 10px; font-size: 1.32rem; line-height: 1.2; }
.choice-card p { margin: 0; color: var(--slate); font-size: .92rem; }

.finish-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.finish-grid > div:first-child > p:not(.eyebrow) { margin: 26px 0; color: var(--slate); }
.swatch-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.swatch-list > div { border: 1px solid var(--line); background: var(--white); }
.swatch-list i { display: block; aspect-ratio: 1.35 / 1; background: var(--swatch); }
.swatch-list .split-swatch { background: linear-gradient(90deg, #f2f1eb 50%, #343a3f 50%); }
.swatch-list span { display: block; padding: 12px; color: var(--slate); font-size: .78rem; font-weight: 700; }
.finish-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.finish-group { overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.finish-group-core { grid-column: 1 / -1; }
.finish-group > header { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: end; padding: 28px; border-bottom: 1px solid var(--line); }
.finish-group > header span { color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.finish-group > header h3 { max-width: 470px; margin: 18px 0 0; font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.12; }
.finish-group > header p { margin: 0; color: var(--slate); font-size: .91rem; }
.finish-swatch-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.finish-group-core .finish-swatch-grid { grid-template-columns: repeat(3, 1fr); }
.finish-swatch { min-width: 0; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.finish-group-core .finish-swatch:nth-child(3n), .finish-group:not(.finish-group-core) .finish-swatch:nth-child(2n) { border-right: 0; }
.finish-group-core .finish-swatch:nth-last-child(-n+3), .finish-group:not(.finish-group-core) .finish-swatch:nth-last-child(-n+2) { border-bottom: 0; }
.finish-chip { position: relative; display: block; overflow: hidden; aspect-ratio: 1.6 / 1; margin-bottom: 13px; background: var(--tone); box-shadow: inset 0 0 0 1px rgba(8,29,59,.08); }
.finish-chip.solid { background: linear-gradient(135deg, rgba(255,255,255,.24), transparent 48%), var(--tone); }
.finish-chip.wood { background-color: var(--tone); background-image: repeating-linear-gradient(104deg, transparent 0 13px, color-mix(in srgb, var(--accent) 28%, transparent) 14px 16px, transparent 17px 29px), linear-gradient(115deg, rgba(255,255,255,.22), transparent 38%, rgba(0,0,0,.08)); }
.finish-chip.wood::after { content: ""; position: absolute; inset: 0; opacity: .45; background: repeating-radial-gradient(ellipse at -20% 50%, transparent 0 20px, var(--accent) 21px 22px, transparent 23px 40px); mix-blend-mode: multiply; }
.finish-chip.metal { background: radial-gradient(circle at 25% 18%, rgba(255,255,255,.32) 0 1px, transparent 1.5px), radial-gradient(circle at 72% 64%, rgba(255,255,255,.18) 0 1px, transparent 1.5px), linear-gradient(135deg, rgba(255,255,255,.2), transparent 45%, rgba(0,0,0,.12)), var(--tone); background-size: 8px 8px, 11px 11px, auto, auto; }
.finish-swatch strong { display: block; overflow-wrap: anywhere; color: var(--navy); font-size: .91rem; line-height: 1.3; }
.finish-swatch > span { display: block; margin-top: 3px; color: #7a8798; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.finish-options { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 30px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.finish-options article { min-height: 220px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.finish-options span { color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.finish-options h3 { margin: 42px 0 10px; font-size: 1.25rem; line-height: 1.25; }
.finish-options p { margin: 0; color: var(--slate); font-size: .91rem; }
.finish-note { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-top: 24px; padding: 23px 28px; border-left: 3px solid var(--cyan); background: var(--white); }
.finish-note p { max-width: 880px; margin: 0; color: var(--slate); font-size: .9rem; }
.finish-note strong { color: var(--navy); }
.finish-note .text-link { flex: 0 0 auto; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 48px rgba(21,46,75,.05); }
.comparison-table { width: 100%; min-width: 920px; border-collapse: collapse; text-align: left; }
.comparison-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.comparison-table th, .comparison-table td { padding: 20px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table thead th { color: var(--white); background: var(--navy); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.comparison-table thead th:first-child { background: var(--blue); }
.comparison-table tbody th { min-width: 150px; color: var(--navy); background: #f4f8fb; }
.comparison-table tbody tr:hover td, .comparison-table tbody tr:hover th { background: #edf7fc; }
.comparison-table td { color: var(--slate); font-size: .91rem; }
.table-note { margin: 18px 0 0; color: #68768a; font-size: .8rem; }

.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.catalog-grid.single { grid-template-columns: minmax(0, 780px); }
.catalog-card { min-height: 390px; display: grid; grid-template-columns: .82fr 1.18fr; border: 1px solid var(--line); background: var(--white); }
.catalog-cover { display: grid; place-items: center; padding: 24px; background: #f1f3f5; }
.catalog-cover img { width: 100%; max-height: 340px; object-fit: contain; mix-blend-mode: multiply; }
.catalog-card-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 30px; }
.catalog-card-copy > span { color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.catalog-card h3 { margin: 46px 0 10px; font-size: 1.65rem; line-height: 1.1; }
.catalog-card p { margin: 0 0 24px; color: var(--slate); }
.catalog-card .button { margin-top: auto; }
.button-outline-blue { color: var(--blue); border-color: #a8bed3; background: transparent; }
.button-outline-blue:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.button-blue { color: var(--white); background: var(--blue); }
.button-blue:hover { background: var(--navy); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 140px); align-items: start; }
.faq-list { border-top: 1px solid #cdd7e2; }
.faq-list details { border-bottom: 1px solid #cdd7e2; }
.faq-list summary { position: relative; display: flex; justify-content: space-between; gap: 24px; padding: 24px 52px 24px 0; color: var(--navy); font-size: 1.06rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 4px; top: 19px; width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); border: 1px solid #afc2d5; border-radius: 50%; transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -2px 48px 24px 0; color: var(--slate); }

.feature-media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-media-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.055); }
.feature-media-card img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; background: #f1f2f3; }
.feature-media-card > div { display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.feature-media-card span { color: #9ae5ff; font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.feature-media-card h3 { margin: 14px 0 10px; font-size: 1.65rem; }
.feature-media-card p { margin: 0; color: rgba(255,255,255,.62); }
.wide-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.wide-gallery figure { position: relative; min-height: 390px; margin: 0; overflow: hidden; }
.wide-gallery img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.wide-gallery figcaption { position: absolute; inset: auto 18px 18px; padding: 10px 13px; color: var(--white); background: rgba(6,29,71,.86); font-size: .78rem; font-weight: 700; backdrop-filter: blur(8px); }
.profile-gallery figure { background: #f2f4f5; }
.profile-gallery img { object-fit: contain; }

.feature-media-grid.light { grid-template-columns: repeat(3, 1fr); }
.feature-media-grid.light .feature-media-card { grid-template-columns: 1fr; color: var(--ink); border-color: var(--line); background: var(--white); }
.feature-media-grid.light .feature-media-card img { min-height: 250px; height: 250px; object-fit: contain; }
.feature-media-grid.light .feature-media-card > div { min-height: 245px; }
.feature-media-grid.light .feature-media-card span { color: var(--blue); }
.feature-media-grid.light .feature-media-card p { color: var(--slate); }

.opening-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.opening-card { min-height: 220px; display: grid; grid-template-columns: 86px 1fr; border: 1px solid var(--line); background: var(--white); }
.opening-card > strong { display: grid; place-items: center; color: var(--white); background: var(--blue); font-size: 1.45rem; }
.opening-card > div { display: flex; flex-direction: column; justify-content: center; padding: 26px; }
.opening-card h3 { margin: 0 0 8px; font-size: 1.23rem; line-height: 1.2; }
.opening-card p { margin: 0; color: var(--slate); font-size: .9rem; }
.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 54px; }
.decision-card { padding: clamp(30px, 4vw, 50px); color: var(--white); background: var(--navy); }
.decision-card:nth-child(2) { background: var(--blue); }
.decision-card h3 { margin: 0 0 26px; font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.12; }
.decision-card ul { display: grid; gap: 9px; padding-left: 20px; margin: 0; color: rgba(255,255,255,.7); }

.product-detail-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.product-render-panel { margin: 0; border: 1px solid var(--line); background: #f2f4f5; }
.product-render-panel img { width: 100%; min-height: 580px; object-fit: contain; }
.product-render-panel figcaption { padding: 12px 16px; color: #768397; border-top: 1px solid var(--line); font-size: .74rem; }
.product-detail-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--slate); }
.product-detail-copy ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.product-detail-copy li { position: relative; padding-left: 23px; color: var(--slate); }
.product-detail-copy li::before { content: ""; position: absolute; left: 0; top: .72em; width: 9px; height: 2px; background: var(--cyan); }
.detail-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-grid > div { min-height: 130px; display: flex; flex-direction: column; justify-content: center; padding: 24px; border-right: 1px solid var(--line); }
.metric-grid > div:first-child { padding-left: 0; }
.metric-grid > div:last-child { border-right: 0; }
.metric-grid span { color: var(--slate); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.metric-grid strong { margin-top: 7px; color: var(--blue); font-size: clamp(1.18rem, 2vw, 1.65rem); line-height: 1.15; }
.detail-secondary .product-detail-image { background: #f2f4f5; }
.detail-secondary .product-detail-image img { object-fit: contain; }

@media (max-width: 920px) {
  .subpage-hero { min-height: 510px; }
  .subpage-hero.has-image::after { background: linear-gradient(90deg, rgba(3,18,43,.95), rgba(5,27,63,.7)); }
  .lead-grid, .media-split, .media-split.reverse, .spec-band-inner, .contact-page-grid { grid-template-columns: 1fr; }
  .company-page .lead-grid, .company-page #zaplecze .media-split, .company-page #zaplecze .factory-gallery-head, .company-page .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .media-split.reverse .media-frame { order: initial; }
  .factory-gallery-head { grid-template-columns: 1fr; align-items: start; }
  .photo-slider { --slider-height: clamp(360px, 62vw, 580px); }
  .media-frame, .media-frame img { min-height: 440px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-tile, .offer-tile:nth-child(3), .offer-tile:nth-child(4), .offer-tile:nth-child(5) { grid-column: span 6; }
  .certificate-grid { grid-template-columns: 1fr; }
  .footer-map { grid-template-columns: repeat(2, 1fr); }
  .section-jump strong { display: none; }
  .section-jump-inner { min-height: 60px; }
  .system-card { grid-column: span 3; }
  .system-card:nth-child(1), .system-card:nth-child(2) { grid-column: span 3; }
  .system-card-grid.three .system-card, .system-card-grid.three .system-card:nth-child(1), .system-card-grid.three .system-card:nth-child(2) { grid-column: span 3; }
  .system-card-grid.four .system-card, .system-card-grid.four .system-card:nth-child(1), .system-card-grid.four .system-card:nth-child(2) { grid-column: span 3; }
  .cross-section-grid, .cross-section-grid.four, .component-grid, .opening-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-layout, .finish-grid, .faq-layout, .product-detail-layout { grid-template-columns: 1fr; }
  .component-outcomes { grid-template-columns: 1fr; }
  .component-outcomes article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .component-outcomes article:last-child { border-bottom: 0; }
  .component-outcomes h3 { margin-top: 28px; }
  .finish-groups { grid-template-columns: 1fr; }
  .finish-group-core { grid-column: auto; }
  .finish-group > header { grid-template-columns: 1fr; align-items: start; }
  .finish-group-core .finish-swatch-grid { grid-template-columns: repeat(3, 1fr); }
  .choice-copy { position: static; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-grid.single { grid-template-columns: 1fr; }
  .feature-media-card { grid-template-columns: 1fr; }
  .feature-media-card img { min-height: 320px; }
  .feature-media-grid.light { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid > div:nth-child(2) { border-right: 0; }
  .metric-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .metric-grid > div:nth-child(3) { padding-left: 0; }
}

@media (max-width: 620px) {
  .subpage-hero { min-height: 470px; }
  .subpage-hero-content { padding-block: 68px 54px; }
  .subpage-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .subpage-hero .hero-number { display: none; }
  .media-frame, .media-frame img { min-height: 350px; }
  .stats-row, .card-grid, .card-grid.two, .news-grid, .spec-list { grid-template-columns: 1fr; }
  .stat { min-height: 125px; padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .spec-list div:nth-child(even) { padding-left: 0; border-left: 0; }
  .offer-catalog { grid-template-columns: 1fr; }
  .offer-tile, .offer-tile:nth-child(3), .offer-tile:nth-child(4), .offer-tile:nth-child(5) { grid-column: auto; min-height: 410px; }
  .company-page .lead-grid, .company-page #zaplecze .media-split, .company-page #zaplecze .factory-gallery-head, .company-page .section-heading { gap: 24px; }
  .photo-slider { --slider-height: clamp(300px, 76vw, 430px); margin-top: 30px; }
  .realization-photo-slider { margin-top: 42px; }
  .photo-slide figcaption { padding: 24px; }
  .photo-slide figcaption strong { font-size: clamp(1.45rem, 7vw, 2.2rem); }
  .photo-slider-controls { grid-template-columns: auto 1fr; gap: 12px 16px; min-height: 0; padding: 14px; }
  .photo-slider-progress { grid-column: 1 / -1; grid-row: 2; }
  .photo-slider-actions { justify-self: end; }
  .photo-slider-actions button { min-width: 44px; height: 44px; }
  .photo-slider-toggle { padding-inline: 12px !important; }
  .download-row { grid-template-columns: 54px 1fr; }
  .download-row a { grid-column: 2; justify-self: start; }
  .certificate-card { grid-template-columns: 1fr; }
  .certificate-card img { width: 100%; height: 360px; object-fit: contain; background: var(--paper); }
  .department { grid-template-columns: 54px 1fr; gap: 7px 16px; }
  .department-icon { grid-row: 1 / 3; width: 54px; height: 54px; }
  .department-icon svg { width: 33px; height: 33px; }
  .department h3 { grid-column: 2; padding-top: 2px; }
  .department-links { grid-column: 2; padding-top: 0; }
  .map-card, .cta-strip-inner { grid-template-columns: 1fr; }
  .cta-strip-inner { padding-block: 60px; }
  .footer-map { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; }
  .section-jump .container { width: 100%; padding-inline: 16px; }
  .system-card-grid, .cross-section-grid, .cross-section-grid.four, .component-grid, .choice-grid, .feature-media-grid, .wide-gallery, .opening-grid, .decision-grid { grid-template-columns: 1fr; }
  .system-card, .system-card:nth-child(1), .system-card:nth-child(2) { grid-column: auto; }
  .system-card-grid.three .system-card, .system-card-grid.three .system-card:nth-child(1), .system-card-grid.three .system-card:nth-child(2) { grid-column: auto; }
  .system-card-grid.four .system-card, .system-card-grid.four .system-card:nth-child(1), .system-card-grid.four .system-card:nth-child(2) { grid-column: auto; }
  .system-card-media, .system-card-media img { height: 300px; min-height: 300px; }
  .component-card { min-height: 220px; }
  .component-card h3 { margin-top: 36px; }
  .swatch-list { grid-template-columns: repeat(2, 1fr); }
  .finish-group-core .finish-swatch-grid { grid-template-columns: repeat(2, 1fr); }
  .finish-group-core .finish-swatch:nth-child(3n) { border-right: 1px solid var(--line); }
  .finish-group-core .finish-swatch:nth-child(2n) { border-right: 0; }
  .finish-group-core .finish-swatch:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .finish-group-core .finish-swatch:nth-last-child(-n+2) { border-bottom: 0; }
  .finish-options { grid-template-columns: 1fr; }
  .finish-options article { min-height: auto; }
  .finish-options h3 { margin-top: 30px; }
  .finish-note { align-items: flex-start; flex-direction: column; gap: 18px; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-cover { min-height: 330px; }
  .catalog-cover img { max-height: 290px; }
  .catalog-card h3 { margin-top: 28px; }
  .feature-media-card img, .wide-gallery img, .wide-gallery figure { min-height: 300px; }
  .opening-card { grid-template-columns: 68px 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid > div, .metric-grid > div:first-child, .metric-grid > div:nth-child(3) { min-height: 104px; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-grid > div:last-child { border-bottom: 0; }
  .product-render-panel img { min-height: 420px; }
  .detail-actions { align-items: flex-start; flex-direction: column; }
}

/* Mobile and tablet polish across the complete site */
@media (max-width: 1180px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .section-heading { gap: 36px; }
  .system-card-media, .system-card-media img { min-height: 300px; height: 300px; }
  .catalog-card { min-height: 360px; }
  .footer-map { gap: 34px; }
}

@media (max-width: 760px) {
  :root { --header-h: 74px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header .header-inner { min-height: var(--header-h); }
  .brand, .brand img { width: 158px; }
  .page-section { padding-block: 72px; }
  .subpage-hero { min-height: 450px; }
  .subpage-hero-content { padding-block: 62px 50px; }
  .subpage-hero-content > p:not(.eyebrow) { line-height: 1.55; }
  .section-heading { margin-bottom: 38px; }
  .section-jump-inner { padding-block: 5px; }
  .section-jump a { min-height: 44px; display: inline-flex; align-items: center; }
  .comparison-wrap { margin-inline: -18px; border-right: 0; border-left: 0; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 780px; }
  .comparison-table th, .comparison-table td { padding: 16px 14px; }
  .catalog-card-copy, .system-card-copy { padding: 24px; }
  .catalog-card .button { width: 100%; }
  .feature-media-grid.light { grid-template-columns: 1fr; }
  .feature-media-grid.light .feature-media-card > div { min-height: 205px; }
  .product-detail-layout { gap: 42px; }
  .footer-map { gap: 30px; }
  .footer-column a { min-height: 34px; display: flex; align-items: center; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-toggle-label { display: none; }
  .menu-toggle { min-width: 44px; min-height: 44px; justify-content: flex-end; }
  .subpage-hero { min-height: 420px; }
  .subpage-hero h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .breadcrumbs { gap: 6px; margin-bottom: 22px; font-size: .72rem; }
  .eyebrow { margin-bottom: 17px; font-size: .7rem; }
  .page-section { padding-block: 62px; }
  h2 { font-size: clamp(2rem, 10.5vw, 3rem); }
  .media-frame, .media-frame img { min-height: 300px; }
  .info-card, .component-card { min-height: 205px; padding: 24px; }
  .info-card.has-icon { min-height: 340px; }
  .info-card-icon { width: 68px; height: 68px; margin-top: 27px; }
  .info-card-icon svg { width: 41px; height: 41px; }
  .sales-page .info-card { min-height: 360px; }
  .sales-page .info-card-icon { width: 74px; height: 74px; }
  .sales-page .info-card-icon svg { width: 45px; height: 45px; }
  .sales-page .language-list .language-item { min-height: 108px; gap: 15px; }
  .sales-page .language-icon { width: 58px; height: 58px; }
  .sales-page .language-icon svg { width: 38px; height: 38px; }
  .component-card.detailed { min-height: 235px; }
  .component-card.detailed h3 { margin-top: 32px; }
  .offer-tile, .offer-tile:nth-child(3), .offer-tile:nth-child(4), .offer-tile:nth-child(5) { min-height: 370px; }
  .system-card-media, .system-card-media img { min-height: 260px; height: 260px; }
  .cross-card figcaption { padding: 22px; }
  .finish-group > header { padding: 22px; }
  .finish-swatch { padding: 10px; }
  .finish-swatch strong { font-size: .82rem; }
  .finish-options article { padding: 23px; }
  .finish-note { padding: 21px 22px; }
  .choice-card { min-height: 215px; padding: 23px; }
  .choice-card h3 { margin-top: 42px; }
  .catalog-cover { min-height: 280px; padding: 18px; }
  .catalog-card-copy { padding: 22px; }
  .catalog-card h3 { font-size: 1.5rem; }
  .faq-list summary { padding-block: 20px; font-size: 1rem; }
  .faq-list summary span { top: 16px; }
  .product-render-panel img { min-height: 330px; }
  .detail-actions, .detail-actions .button { width: 100%; }
  .comparison-wrap { margin-inline: -14px; }
  .comparison-table { min-width: 720px; }
  .cta-strip .button { width: 100%; }
  .contact-quick a { overflow-wrap: anywhere; }
  .photo-slider { --slider-height: 300px; }
  .photo-slide-media > span { right: 12px; top: 12px; }
  .photo-slide figcaption { padding: 20px; }
  .photo-slider-toggle { font-size: .68rem; }
}

@media (hover: none) {
  .system-card:hover, .info-card:hover, .button:hover { transform: none; }
  .product-card:hover img, .offer-tile:hover img, .system-card:hover .system-card-media img { transform: none; }
  .photo-slide-media:hover img { transform: none; filter: none; }
  .photo-slide-media > span { opacity: 1; transform: none; }
}
