:root {
  --navy: #0b1720;
  --navy-2: #0d2b4f;
  --black: #080a0d;
  --ink: #15202f;
  --muted: #657181;
  --silver: #d8dde4;
  --aluminum: #eef1f5;
  --line: #dce2ea;
  --white: #ffffff;
  --accent: #c79a32;
  --paper: #f2f0e9;
  --max: 1296px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(7, 26, 51, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--navy), #111);
  border-radius: 7px;
  font-size: 15px;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}
.nav-links a { color: #263448; }
.nav-links a:hover { color: var(--navy); }
.header-phone { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; color: var(--navy); font-size: 15px; white-space: nowrap; }
.header-phone span { color: var(--accent); font-size: 20px; line-height: 1; transform: rotate(-12deg); }
.header-phone:hover { color: var(--accent); }
.mobile-call-bar { display: none; }
.nav-group { position: relative; }
.nav-group > a::after { content: " +"; color: var(--accent); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  width: 250px;
  display: none;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.nav-dropdown a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
}
.nav-dropdown a:hover { background: #f3f6f9; }
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: #0c2647; }
.btn-accent { background: var(--accent); color: #101820; }
.btn-accent:hover { background: #d4aa49; }
.btn-light { background: white; color: var(--navy); border-color: rgba(255,255,255,.75); }
.btn-outline { border-color: var(--line); background: white; color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,14,22,.92), rgba(5,14,22,.66) 42%, rgba(5,14,22,.16));
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 690px;
  padding: 76px 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 { margin: 0; color: var(--navy); font-family: Inter, Arial, Helvetica, sans-serif; line-height: 1.08; letter-spacing: 0; }
.hero h1 {
  color: white;
  font-size: clamp(44px, 6.5vw, 82px);
  max-width: 830px;
}
.hero-kicker {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 650;
  line-height: 1.35;
}
.hero-copy {
  max-width: 660px;
  margin: 14px 0 28px;
  color: #e8edf3;
  font-size: 18px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 720px);
  margin-top: 30px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.2);
}
.proof-item { padding: 15px; background: rgba(6, 20, 38, .62); }
.proof-item strong { display: block; font-size: 20px; }
.proof-item span { color: #cbd4de; font-size: 13px; }
.shutter-animation {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .46;
  transform: translateY(calc((1 - var(--shutter-progress, 0)) * -62%));
  transition: transform .12s linear;
  background:
    repeating-linear-gradient(to bottom,
      rgba(215, 221, 229, .72) 0 8px,
      rgba(54, 65, 78, .72) 8px 11px,
      rgba(12, 24, 41, .48) 11px 24px);
}

.section { padding: 92px 0; background: white; }
.section.alt { background: #f3f6f9; }
.section.dark { background: var(--navy); color: white; }
.section.dark h2, .section.dark h3 { color: white; }
.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 760px;
}
.section-head.center { text-align: center; margin-inline: auto; }
.section h2, .page-hero h1 { font-size: clamp(32px, 5vw, 52px); }
.lead { margin: 0; color: var(--muted); font-size: 18px; }
.section.dark .lead { color: #cbd4de; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7, 26, 51, .06);
}
.card-body { padding: 22px; }
.card h3 { font-size: 21px; margin-bottom: 9px; }
.card p { margin: 0 0 16px; color: var(--muted); }
.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--aluminum);
}
.link-arrow { color: var(--navy); font-weight: 850; }

.systems-section { background: var(--paper); }
.systems-section .section-head { max-width: 860px; margin-bottom: 46px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: #fff;
  border: 1px solid #d8d4c8;
  border-radius: 6px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(11,23,32,.1); }
.product-card img,
.product-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 3px;
  background: #c8c3b5;
}
.product-visual {
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: white;
  background: linear-gradient(145deg, #8a7350, #28323a);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-visual--blinds {
  background: repeating-linear-gradient(100deg, #d9d4c8 0 12px, #f5f2ea 12px 27px, #9a9488 27px 29px);
  color: var(--navy);
}
.product-index { color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.product-card h3 { margin: 10px 0 12px; font-size: 22px; }
.product-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.product-card .link-arrow { margin-top: auto; font-size: 13px; }
.product-card--coming { background: #e7e2d7; }

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.feature-list li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  font-weight: 700;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.solutions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.2);
}
.solution { padding: 28px; background: rgba(255,255,255,.06); }
.solution p { color: #d6dde6; }

.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px 20px;
  background: white;
}
.faq summary { cursor: pointer; font-weight: 800; color: var(--navy); }
.faq p { margin: 12px 0 0; color: var(--muted); }

.page-hero {
  padding: 86px 0 64px;
  color: white;
  background: linear-gradient(135deg, var(--navy), #0a0d12);
}

/* Product template */
.product-hero { padding: 42px 0 0; background: var(--paper); }
.product-hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 650px; background: #fff; border: 1px solid #ded9cd; }
.product-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 72px); }
.product-hero-copy h1 { max-width: 560px; font-size: clamp(48px, 6vw, 78px); }
.product-hero-copy > p:not(.eyebrow):not(.product-tagline) { max-width: 560px; color: var(--muted); font-size: 17px; }
.product-tagline { margin: 22px 0 8px; color: var(--navy); font-size: clamp(22px, 2.6vw, 31px); font-weight: 650; line-height: 1.3; }
.product-trust { display: grid; gap: 2px; margin-top: 28px; padding: 16px 18px; border-left: 3px solid var(--accent); background: #f5f2ea; }
.product-trust span { color: var(--muted); font-size: 13px; }
.product-hero-media { position: relative; min-height: 540px; margin: 0; overflow: hidden; background: var(--navy); }
.product-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.product-hero-media figcaption { position: absolute; right: 18px; bottom: 18px; padding: 8px 10px; color: #fff; background: rgba(5,11,20,.72); font-size: 12px; }
.benefit-bar { background: #fff; border-block: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.benefit-grid > div { display: grid; gap: 3px; min-height: 126px; padding: 24px 18px; border-right: 1px solid var(--line); }
.benefit-grid > div:first-child { border-left: 1px solid var(--line); }
.benefit-grid span, .application-grid span { color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.benefit-grid small { color: var(--muted); line-height: 1.35; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }
.application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.application-grid article { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.application-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.application-grid article div { padding: 22px; }
.application-grid h3 { margin: 8px 0; font-size: 23px; }
.application-grid p { margin: 0; color: var(--muted); }
.spec-section { padding: 68px 0; color: #dce4ec; background: var(--navy); }
.spec-section h2, .spec-section h3 { color: #fff; }
.spec-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.05fr; gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.spec-grid > div { padding: 28px; background: var(--navy); }
.spec-grid p { color: #bdc8d4; }
.swatches { display: flex; gap: 10px; margin: 20px 0; }
.swatch { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; }
.anthracite { background: #2e3438; } .black { background: #08090a; } .bronze { background: #6d4823; } .white { background: #f7f7f4; } .silver { background: #b9bec3; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border: 1px solid var(--line); list-style: none; }
.process-grid li { display: grid; gap: 8px; min-height: 190px; padding: 22px; border-right: 1px solid var(--line); }
.process-grid li:last-child { border: 0; }
.process-grid b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: #101820; background: var(--accent); }
.process-grid span { color: var(--muted); font-size: 14px; }
.faq-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; align-items: start; }
.quote-section { background: var(--paper); }
.page-hero h1 { color: white; max-width: 900px; }
.page-hero p { max-width: 760px; color: #dbe3ec; font-size: 18px; }
.breadcrumb { color: #c4ced9; font-size: 14px; margin-bottom: 14px; }

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.contact-info {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}
.contact-info h2 { color: white; }
.contact-info a { color: white; font-weight: 800; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.full { grid-column: 1 / -1; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 800; color: #314055; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd7e2;
  border-radius: 7px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 14px;
  border-radius: 7px;
  color: #063b20;
  background: #dff5e9;
  font-weight: 800;
}
.form-success.show { display: block; }

.geo-answer { background: #fff; }
.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.answer-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
}
.answer-grid h3 { margin-bottom: 12px; font-size: 21px; }
.answer-grid p { margin: 0; color: var(--muted); font-size: 16px; }
.service-faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.service-faq-list details { align-self: start; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service-faq-list details:last-child { grid-column: 1 / -1; }
.service-faq-list summary { position: relative; padding: 18px 48px 18px 20px; cursor: pointer; color: var(--navy); font-size: 17px; font-weight: 800; list-style: none; }
.service-faq-list summary::-webkit-details-marker { display: none; }
.service-faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 20px; color: var(--accent); font-size: 24px; font-weight: 500; transform: translateY(-50%); }
.service-faq-list details[open] summary::after { content: "−"; }
.service-faq-list p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: 16px; }
.related-services { padding-top: 72px; }
.service-link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.service-link-card { min-height: 126px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.service-link-card:hover { border-color: var(--accent); box-shadow: 0 12px 30px rgba(7,26,51,.08); transform: translateY(-2px); }
.service-link-card strong { color: var(--navy); font-size: 18px; }
.service-link-card span { display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
.service-link-card b { color: var(--accent); font-size: 18px; }

.cta-band {
  padding: 46px 0;
  background: var(--navy);
  color: white;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta-inner h2 { color: white; font-size: clamp(28px, 4vw, 42px); }
.cta-inner p { color: #d3dce6; margin: 10px 0 0; }

/* Premium editorial service page */
.brand-logo { width: auto; height: 54px; overflow: visible; }
.brand-logo-crop { position: relative; display: block; width: 48px; height: 48px; overflow: hidden; background: #fff; }
.brand-logo-crop img { position: absolute; top: -1px; left: 50%; width: 138px; max-width: none; height: auto; transform: translateX(-50%); }
.nav-links .btn-primary { color: #fff; }

.service-hero-premium {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.service-hero-image,
.service-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-hero-image { object-fit: cover; object-position: center; transform: scale(1.015); }
.service-hero-shade {
  background:
    linear-gradient(90deg, rgba(4,12,19,.91) 0%, rgba(4,12,19,.67) 38%, rgba(4,12,19,.14) 70%),
    linear-gradient(0deg, rgba(4,12,19,.58), transparent 48%);
}
.service-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 56px;
  align-items: end;
  padding-top: 11vh;
  padding-bottom: 12vh;
}
.service-hero-copy { max-width: 840px; }
.service-hero-copy .breadcrumb { margin-bottom: clamp(48px, 8vh, 92px); color: rgba(255,255,255,.7); }
.service-hero-copy h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(58px, 7.1vw, 110px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .88;
}
.service-hero-copy h1 em,
.service-cta-editorial h2 em { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.service-hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0 30px; color: rgba(255,255,255,.85); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.45; }
.service-hero-copy .btn-accent { gap: 24px; min-height: 56px; padding-inline: 24px; }
.service-text-link { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.5); color: #fff; font-weight: 750; }
.service-hero-index { display: grid; gap: 0; margin: 0 0 7px; padding: 0; border-top: 1px solid rgba(255,255,255,.4); list-style: none; }
.service-hero-index li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.service-hero-index b { color: var(--accent); font-size: 12px; letter-spacing: .1em; }
.service-hero-index span { color: #fff; font-size: 14px; font-weight: 700; }
.service-scroll-cue { position: absolute; z-index: 3; right: 34px; bottom: 26px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; writing-mode: vertical-rl; }
.service-scroll-cue i { width: 1px; height: 54px; background: linear-gradient(#fff, transparent); }

.service-intro-editorial,
.service-cases-section,
.service-gallery-section,
.service-options-section { padding: clamp(82px, 11vw, 154px) 0; background: #f5f2eb; }
.systems-catalog { padding: clamp(88px, 11vw, 156px) 0; color: #fff; background: var(--navy); }
.systems-catalog-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.systems-catalog-head .service-section-number { color: rgba(255,255,255,.5); }
.systems-catalog-head .eyebrow { margin-top: 34px; }
.systems-catalog-head h2 { margin: 0; max-width: 880px; font-size: clamp(46px, 6.2vw, 86px); font-weight: 540; letter-spacing: -.055em; line-height: .94; }
.systems-catalog-head h2 em { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.systems-catalog-head > p { max-width: 470px; margin: 0 0 4px; color: #b9c5cc; font-size: 18px; line-height: 1.65; }
.systems-catalog-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 22px; }
.system-catalog-card { grid-column: span 6; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 330px; overflow: hidden; color: #fff; background: #0d2533; border: 1px solid rgba(255,255,255,.12); transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.system-catalog-card:nth-child(4n + 2), .system-catalog-card:nth-child(4n + 3) { grid-template-columns: .9fr 1.1fr; }
.system-catalog-card:hover { color: #fff; background: #112e3e; border-color: rgba(204,147,38,.72); transform: translateY(-6px); }
.system-catalog-media { position: relative; min-height: 330px; overflow: hidden; }
.system-catalog-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 50%, rgba(3,16,24,.28)); }
.system-catalog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.2,1); }
.system-catalog-card:hover img { transform: scale(1.045); }
.system-catalog-media span { position: absolute; z-index: 2; top: 20px; left: 20px; display: grid; width: 44px; height: 44px; place-items: center; color: #071a26; background: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.system-catalog-copy { display: flex; flex-direction: column; padding: 34px 30px 28px; }
.system-catalog-copy small { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.system-catalog-copy h3 { margin: 20px 0 14px; color: #fff; font-size: clamp(23px, 2vw, 31px); letter-spacing: -.035em; line-height: 1.02; }
.system-catalog-copy p { margin: 0; color: #b9c5cc; font-size: 15px; line-height: 1.65; }
.system-catalog-copy b { display: flex; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 30px; color: #fff; font-size: 13px; letter-spacing: .055em; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,.12); }
.system-catalog-copy i { color: var(--accent); font-size: 18px; font-style: normal; font-weight: 400; }
.service-intro-grid { display: grid; grid-template-columns: 150px 1fr 1.12fr; gap: 56px; align-items: start; margin-bottom: 72px; }
.service-section-number { color: #8b8274; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-intro-grid h2,
.service-film-heading h2,
.service-cases-head h2,
.service-gallery-head h2,
.service-options-grid h2 { font-size: clamp(44px, 6.5vw, 86px); font-weight: 540; letter-spacing: -.055em; line-height: .94; }
.service-large-copy { margin: 0; color: #28323a; font-size: clamp(21px, 2vw, 29px); line-height: 1.42; }
.service-detail-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.service-detail-row span { padding: 9px 12px; border: 1px solid #c9c2b5; border-radius: 999px; color: #625c51; font-size: 12px; font-weight: 750; }
.service-photo-pair { display: grid; grid-template-columns: 1.48fr .52fr; gap: 20px; align-items: end; }
.service-photo-pair figure { position: relative; margin: 0; overflow: hidden; background: #d7d1c6; }
.service-photo-main img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-photo-detail { margin-bottom: -82px !important; }
.service-photo-detail img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.service-photo-pair figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 2px; padding: 18px; color: #fff; background: linear-gradient(transparent, rgba(4,12,19,.78)); }
.service-photo-pair figcaption span { color: rgba(255,255,255,.72); font-size: 13px; }

.service-film-section { padding: clamp(100px, 12vw, 170px) 0; color: #fff; background: #07141d; }
.service-film-heading { display: grid; grid-template-columns: 150px 1fr .8fr; gap: 56px; align-items: end; margin-bottom: 48px; }
.service-film-heading h2 { color: #fff; }
.service-film-heading > p { max-width: 440px; margin: 0; color: #aeb9c2; font-size: 17px; }
.service-film-section .service-section-number { color: #85939d; }
.service-film-frame { position: relative; min-height: min(66vw, 760px); overflow: hidden; background: #142630; }
.service-film-frame > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) brightness(.65); transform: scale(1.01); }
.service-film-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); pointer-events: none; }
.service-film-overlay { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; justify-content: center; }
.service-play { display: grid; width: 98px; height: 98px; place-items: center; padding-left: 6px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; color: #fff; background: rgba(4,12,19,.18); backdrop-filter: blur(8px); font-size: 22px; }
.service-film-overlay > div { position: absolute; left: 28px; bottom: 26px; display: grid; }
.service-film-overlay b { font-size: 18px; }
.service-film-overlay small { color: rgba(255,255,255,.65); }
.service-film-overlay time { position: absolute; right: 28px; bottom: 28px; color: #fff; font-size: 13px; font-weight: 800; }

.built-in-state-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.built-in-state-grid figure { position: relative; min-height: clamp(420px, 44vw, 680px); margin: 0; overflow: hidden; background: #142630; }
.built-in-state-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.built-in-state-grid figure:hover img { transform: scale(1.025); }
.built-in-state-grid figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 4px; padding: 60px 28px 26px; color: #fff; background: linear-gradient(transparent, rgba(4,12,19,.86)); }
.built-in-state-grid figcaption b { font-size: 22px; }
.built-in-state-grid figcaption span { color: rgba(255,255,255,.76); font-size: 15px; }

.service-cases-section { background: #fff; }
.service-cases-head { display: grid; grid-template-columns: 1.15fr .65fr; gap: 80px; align-items: end; margin-bottom: 62px; }
.service-cases-head .eyebrow { margin-top: 34px; }
.service-cases-head > p { margin: 0 0 4px; color: var(--muted); font-size: 18px; }
.service-case-feature { display: grid; grid-template-columns: 1.35fr .65fr; min-height: 660px; background: #07141d; }
.service-case-image { position: relative; min-height: 580px; overflow: hidden; }
.service-case-image img { width: 100%; height: 100%; object-fit: cover; }
.service-case-image > span { position: absolute; top: 24px; left: 24px; padding: 8px 11px; color: #fff; background: rgba(4,12,19,.7); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-case-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 72px); color: #c7d0d7; }
.service-case-copy h3 { color: #fff; font-family: inherit; font-size: clamp(40px, 5vw, 68px); font-weight: 540; line-height: .98; }
.service-case-copy > p:not(.eyebrow) { font-size: 17px; }
.service-case-copy dl { margin: 34px 0; border-top: 1px solid rgba(255,255,255,.16); }
.service-case-copy dl div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.service-case-copy dt { color: #7f909c; font-size: 12px; text-transform: uppercase; }
.service-case-copy dd { margin: 0; color: #fff; }
.service-arrow-link { display: inline-flex; justify-content: space-between; gap: 30px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-weight: 800; }
.service-case-copy .service-arrow-link { color: #fff; }
.service-arrow-link span { color: var(--accent); }
.service-case-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.service-case-row article { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 330px; background: #f2efe7; }
.service-case-row img { width: 100%; height: 100%; object-fit: cover; }
.service-case-row article > div { display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.service-case-row span { color: #8c816e; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.service-case-row h3 { margin: 16px 0 12px; font-family: inherit; font-size: 31px; font-weight: 540; }
.service-case-row p { margin: 0; color: var(--muted); }

.service-gallery-section { overflow: hidden; padding-bottom: clamp(90px, 10vw, 140px); background: #e9e4da; }
.service-gallery-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 46px; }
.service-gallery-head .service-section-number { margin-bottom: 22px; }
.service-gallery-strip { display: grid; grid-template-columns: 1.15fr .72fr 1.25fr .86fr; gap: 14px; width: min(1680px, calc(100% - 32px)); margin: 0 auto; }
.service-gallery-strip figure { margin: 0; overflow: hidden; }
.service-gallery-strip figure:nth-child(even) { margin-top: 72px; }
.service-gallery-strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.service-gallery-strip figure:hover img { transform: scale(1.035); }

.service-options-section { background: #fff; }
.service-options-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.service-options-grid .eyebrow { margin-top: 34px; }
.service-option-list { border-top: 1px solid var(--line); }
.service-option-list article { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-option-list article > b { color: var(--accent); font-size: 13px; }
.service-option-list h3 { margin-bottom: 9px; font-size: 25px; }
.service-option-list p { max-width: 560px; margin: 0; color: var(--muted); font-size: 16px; }

.service-cta-editorial { padding: clamp(90px, 12vw, 170px) 0; color: #fff; background: linear-gradient(120deg, #07141d 0 72%, #a87918 72%); }
.service-cta-editorial h2 { max-width: 1040px; color: #fff; font-size: clamp(58px, 8vw, 118px); letter-spacing: -.06em; line-height: .88; }
.service-cta-editorial .container > div { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; margin-top: 50px; }
.service-cta-editorial .container > div p { max-width: 570px; margin: 0; color: #bdc7ce; font-size: 18px; }

.service-hero-premium + .service-intro-editorial + .service-film-section + .service-cases-section + .service-gallery-section + .service-options-section + .service-cta-editorial + .geo-answer { border-top: 1px solid #d8d2c8; }
.service-cta-editorial ~ .geo-answer,
.service-cta-editorial ~ .service-faq,
.service-cta-editorial ~ .related-services { padding-block: 78px; }

.site-footer {
  padding: 54px 0 28px;
  color: #d9e0e9;
  background: #050b14;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
}
.footer-grid h3 { color: white; font-size: 16px; margin-bottom: 12px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid a { color: #d9e0e9; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #aeb8c5;
  font-size: 14px;
}

@media (max-width: 980px) {
  .header-phone { margin-left: auto; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-group { width: 100%; }
  .nav-dropdown {
    position: static;
    display: grid;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    box-shadow: none;
    background: #f7f9fb;
  }
  .grid-3, .grid-4, .product-grid, .split, .contact-panel, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .product-hero-grid, .faq-wrap { grid-template-columns: 1fr; }
  .product-hero-media { min-height: 480px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid li { border-bottom: 1px solid var(--line); }
  .service-link-grid { grid-template-columns: 1fr 1fr; }
  .service-hero-layout { grid-template-columns: 1fr; }
  .service-hero-index { display: none; }
  .service-intro-grid, .service-film-heading { grid-template-columns: 100px 1fr; }
  .service-intro-grid > :last-child, .service-film-heading > :last-child { grid-column: 2; }
  .service-case-feature { grid-template-columns: 1fr; }
  .service-case-copy { min-height: 460px; }
  .service-case-row article { grid-template-columns: 1fr; }
  .service-case-row img { aspect-ratio: 16 / 10; }
  .service-options-grid { gap: 60px; }
  .systems-catalog-head { grid-template-columns: 1fr; gap: 28px; }
  .system-catalog-card { grid-column: span 12; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 24px, var(--max)); }
  .nav { gap: 10px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-phone { width: 42px; height: 42px; justify-content: center; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; }
  .header-phone strong { display: none; }
  .mobile-call-bar { position: fixed; z-index: 1000; right: 12px; bottom: max(12px,env(safe-area-inset-bottom)); left: 12px; min-height: 58px; display: grid; grid-template-columns: 34px 1fr auto; gap: 1px 11px; align-items: center; padding: 10px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; color: #fff; background: linear-gradient(135deg,var(--navy),#123252); box-shadow: 0 14px 34px rgba(0,0,0,.32); }
  .mobile-call-bar > span { grid-row: 1 / 3; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #111; background: var(--accent); font-size: 19px; transform: rotate(-12deg); }
  .mobile-call-bar small { align-self: end; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.1; }
  .mobile-call-bar strong { grid-column: 2 / 4; align-self: start; font-size: 18px; line-height: 1.15; letter-spacing: .02em; }
  .hero { min-height: 720px; }
  .hero-inner { padding: 48px 0; }
  .hero-copy { font-size: 15px; }
  .hero-proof, .grid-2, .grid-3, .grid-4, .product-grid, .split, .solutions, .contact-panel, .footer-grid, .contact-form { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .page-hero { padding: 62px 0 48px; }
  .footer-bottom { flex-direction: column; }
  .product-hero { padding-top: 0; }
  .product-hero-grid, .benefit-grid, .application-grid, .spec-grid, .process-grid { grid-template-columns: 1fr; }
  .product-hero-copy { padding: 40px 22px; }
  .product-hero-copy h1 { font-size: 45px; }
  .product-hero-media { min-height: 380px; }
  .benefit-grid > div { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-grid li { min-height: auto; }
  .answer-grid, .service-faq-list, .service-link-grid { grid-template-columns: 1fr; }
  .answer-grid article { min-height: auto; }
  .service-faq-list details:last-child { grid-column: auto; }
  .brand-logo { height: 45px; }
  .brand-logo-crop { width: 42px; height: 42px; }
  .brand-logo-crop img { width: 122px; }
  .service-hero-premium { min-height: calc(100svh - 74px); }
  .service-hero-image { object-position: 58% center; }
  .service-hero-shade { background: linear-gradient(0deg, rgba(4,12,19,.95), rgba(4,12,19,.28) 78%); }
  .service-hero-layout { padding-top: 90px; padding-bottom: 96px; }
  .service-hero-copy .breadcrumb { margin-bottom: 52px; }
  .service-hero-copy h1 { font-size: clamp(49px, 14vw, 66px); }
  .service-hero-copy > p:not(.eyebrow) { margin-block: 22px; font-size: 17px; }
  .service-hero-copy .btn-row { align-items: flex-start; flex-direction: column; }
  .service-scroll-cue { right: 12px; bottom: 18px; }
  .service-intro-grid, .service-film-heading, .service-cases-head, .service-options-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-intro-grid > :last-child, .service-film-heading > :last-child { grid-column: auto; }
  .service-intro-grid { margin-bottom: 44px; }
  .service-photo-pair { grid-template-columns: 1fr; }
  .service-photo-detail { display: none; }
  .service-photo-main img { aspect-ratio: 4 / 5; }
  .service-film-frame { min-height: 72vh; }
  .service-play { width: 78px; height: 78px; }
  .built-in-state-grid { grid-template-columns: 1fr; gap: 14px; }
  .built-in-state-grid figure { min-height: 62vh; }
  .service-case-feature { min-height: 0; }
  .service-case-image { min-height: 520px; }
  .service-case-copy { min-height: 430px; padding: 34px 24px; }
  .service-case-row { grid-template-columns: 1fr; }
  .service-gallery-head { align-items: flex-start; flex-direction: column; }
  .service-gallery-strip { grid-template-columns: 1.25fr .8fr .96fr .78fr; width: max-content; margin-left: 12px; }
  .service-gallery-strip figure { width: 72vw; }
  .service-gallery-strip figure:nth-child(even) { width: 58vw; margin-top: 44px; }
  .service-options-grid { gap: 50px; }
  .systems-catalog { padding-block: 78px; }
  .systems-catalog-head { margin-bottom: 42px; }
  .systems-catalog-head h2 { font-size: clamp(40px, 13vw, 58px); }
  .systems-catalog-grid { gap: 16px; }
  .system-catalog-card, .system-catalog-card:nth-child(4n + 2), .system-catalog-card:nth-child(4n + 3) { grid-template-columns: 1fr; }
  .system-catalog-media { min-height: 240px; }
  .system-catalog-copy { min-height: 280px; padding: 28px 24px 24px; }
  .service-cta-editorial { background: #07141d; }
  .service-cta-editorial h2 { font-size: clamp(50px, 14vw, 72px); }
  .service-cta-editorial .container > div { grid-template-columns: 1fr; margin-top: 34px; }
}

/* Unified header + footer */
.shell { width: min(calc(100% - 72px), 1380px); margin-inline: auto; }
.site-header { position: sticky; z-index: 100; top: 0; height: 76px; min-height: 76px; background: rgba(255,255,255,.96); border-bottom: 1px solid #e8e4dc; backdrop-filter: blur(18px); }
.site-header .nav { width: min(calc(100% - 72px), 1380px); min-height: 76px; gap: 38px; }
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-crop { display: block; width: 98px; height: 64px; background: transparent; }
.logo-crop img { width: 98px; height: 64px; object-fit: contain; }
.logo--light .logo-crop { width: 132px; height: 82px; overflow: visible; background: transparent; }
.logo--light .logo-crop img { position: static; width: 132px; height: 82px; object-fit: contain; }
.nav-details { margin-left: auto; }
.site-header .nav-links { position: static; display: flex; align-items: center; gap: 28px; padding: 0; border: 0; box-shadow: none; background: transparent; font-size: 14px; font-weight: 650; text-transform: uppercase; letter-spacing: .035em; }
.site-header .nav-links > a { padding: 0; border: 0; color: #18232b; }
.site-header .nav-links > a:hover { color: var(--accent); }
.nav-toggle { display: none; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; margin-left: 0; color: var(--navy); font-size: 15px; letter-spacing: .015em; white-space: nowrap; }
.nav-phone span {
  display: inline-block;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  transform: rotate(-12deg);
  transform-origin: 50% 85%;
  animation: phone-attention-bounce 2.8s ease-in-out infinite;
  will-change: transform;
}
.nav-phone:hover { color: var(--accent); }
.site-header .nav-quote { min-width: 175px; margin-left: 0; color: #111; font-size: 13px; text-transform: uppercase; }
.mega-nav { position: relative; align-self: stretch; display: flex; align-items: center; }
.mega-trigger { display: flex; align-items: center; gap: 5px; color: #18232b; }
.mega-trigger i { color: #7f735e; font-style: normal; transition: transform .2s ease; }
.mega-panel { position: fixed; z-index: 105; top: 76px; right: 0; left: 0; display: grid; grid-template-columns: 1.25fr .9fr 1.1fr; gap: 1px; width: min(calc(100% - 40px), 1240px); margin: 0 auto; overflow: hidden; opacity: 0; visibility: hidden; pointer-events: none; color: #fff; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 30px 70px rgba(2,10,16,.3); text-transform: none; letter-spacing: 0; transition: opacity .22s ease, visibility .22s ease; }
.mega-nav:hover .mega-panel, .mega-nav:focus-within .mega-panel, .mega-nav.is-active .mega-panel { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-nav:hover .mega-trigger, .mega-nav:focus-within .mega-trigger, .mega-nav.is-active .mega-trigger { color: var(--accent); }
.mega-nav:hover .mega-trigger i, .mega-nav:focus-within .mega-trigger i, .mega-nav.is-active .mega-trigger i { transform: rotate(180deg); }
.mega-column { display: flex; flex-direction: column; gap: 7px; padding: 34px; background: var(--navy); }
.mega-column--products { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
.mega-column--products .mega-label { grid-column: 1 / -1; }
.site-header .nav-links .mega-column a { display: block; padding: 5px 0; color: #fff; border: 0; border-radius: 0; font-size: 16px; font-weight: 650; text-transform: none; transition: color .2s ease, transform .2s ease; }
.site-header .nav-links .mega-column a:hover { color: #dfa92f; background: transparent; transform: translateX(3px); }
.mega-label { margin-bottom: 11px; color: #dfa92f; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mega-label--second { margin-top: 23px; }
.mega-all-systems { display: flex !important; justify-content: space-between; margin-top: 14px; padding-top: 15px !important; color: #dfa92f !important; border-top: 1px solid rgba(255,255,255,.18) !important; }
.mega-column p { margin: 0; color: #aebbc3; font-size: 13px; line-height: 1.75; }
.mega-feature { position: relative; min-width: 0; min-height: 305px; overflow: hidden; contain: layout paint; background: #10232e; }
.mega-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,13,20,.88), rgba(4,13,20,.05) 65%); }
.mega-feature img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; animation: mega-image-in .28s ease; transition: opacity .18s ease, transform .55s ease; }
.mega-feature img.is-changing { opacity: .25; }
.mega-feature:hover img { transform: scale(1.035); }
.mega-feature span { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; justify-content: space-between; color: #fff; font-size: 17px; font-weight: 750; text-transform: none; }
.mega-feature b { color: #dfa92f; }
@keyframes mega-image-in { from { opacity: .25; transform: scale(1.018); } to { opacity: 1; transform: scale(1); } }
@keyframes phone-attention-bounce {
  0%, 28%, 100% { transform: rotate(-12deg) translateY(0) scale(1); }
  7% { transform: rotate(-16deg) translateY(-7px) scale(1.12); }
  14% { transform: rotate(-8deg) translateY(0) scale(1); }
  21% { transform: rotate(-14deg) translateY(-4px) scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-phone span { animation: none; }
}

.site-footer.unified-footer { padding: 49px 0 20px; color: #d7dfe3; background: #071722; }
.unified-footer .footer-grid { display: grid; grid-template-columns: 1.55fr 1.2fr .8fr 1fr 1.05fr; gap: 55px; }
.unified-footer .footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 14px; }
.unified-footer .footer-grid h3 { margin: 0 0 12px; color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.unified-footer .footer-grid a:hover { color: var(--accent); }
.unified-footer .footer-brand p { margin: 25px 0; color: #dce3e7; font-size: 14px; line-height: 1.7; }
.unified-footer .footer-brand small { color: #fff; font-size: 13px; }
.unified-footer .footer-contact > a, .unified-footer .footer-contact > span { display: flex; align-items: center; gap: 10px; }
.unified-footer .socials { display: flex; gap: 15px; margin-top: 17px; color: #fff; font-size: 15px; }
.unified-footer .footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); color: #c6cfd4; font-size: 12px; }
.unified-footer .footer-bottom > span:last-child { display: flex; gap: 38px; }
.site-credit { margin-left: 12px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }
.site-credit:hover { color: #dfa92f; }

/* Editorial information pages */
.info-page { background: #f4f2ed; }
.info-hero { position: relative; min-height: 620px; display: flex; align-items: flex-end; padding: 110px 0 86px; overflow: hidden; color: #fff; background-color: #0a1a24; background-position: center; background-size: cover; isolation: isolate; }
.info-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(4,15,23,.9),rgba(4,15,23,.52) 52%,rgba(4,15,23,.18)); }
.info-hero--areas { background-image: url('/assets/images/hero-house.webp'); }
.info-hero--about { background-image: url('/assets/images/hero-shutters.webp'); }
.info-hero--faq { background-image: url('/assets/images/product-motorized.webp'); }
.info-hero .container { width: min(calc(100% - 72px), 1260px); margin-inline: auto; }
.info-hero .breadcrumb { margin-bottom: 70px; color: rgba(255,255,255,.65); font-size: 13px; }
.info-hero .eyebrow, .info-section .eyebrow, .info-cta .eyebrow { margin-bottom: 18px; color: #dfa92f; }
.info-hero h1 { max-width: 900px; margin: 0; color: #fff; font-size: clamp(58px,7.2vw,110px); font-weight: 500; line-height: .92; letter-spacing: -.058em; }
.info-hero__lead { max-width: 720px; margin: 32px 0 30px; color: rgba(255,255,255,.86); font-size: 21px; line-height: 1.55; }
.info-section { padding: 105px 0; }
.info-intro, .about-story, .faq-page-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; margin-bottom: 64px; }
.info-intro h2, .about-story h2, .faq-page-layout h2 { font-size: clamp(42px,5vw,70px); line-height: .98; letter-spacing: -.05em; }
.info-intro > p, .about-story > div:last-child, .faq-page-layout > div:first-child > p { color: #454b50; font-size: 19px; line-height: 1.75; }
.area-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #cbc6ba; border-left: 1px solid #cbc6ba; }
.area-grid article { min-height: 260px; padding: 28px; border-right: 1px solid #cbc6ba; border-bottom: 1px solid #cbc6ba; }
.area-grid article > span { color: #b88019; font-family: inherit; font-size: 34px; }
.area-grid h3 { margin: 46px 0 12px; font-size: 24px; }
.area-grid p { color: #5e6264; font-size: 15px; line-height: 1.6; }
.area-grid__cta { color: #fff; background: #071722; }
.area-grid__cta p { color: #c9d2d7; }
.area-grid__cta a, .text-link { color: #d49a26; font-weight: 750; }
.about-story { margin-bottom: 0; }
.about-story p { margin: 0 0 25px; }
.about-values { color: #fff; background: #071722; }
.about-values .container { display: grid; grid-template-columns: repeat(3,1fr); }
.about-values article { min-height: 300px; padding: 55px 50px; border-left: 1px solid rgba(255,255,255,.14); }
.about-values article:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.about-values b { color: #d49a26; font-family: inherit; font-size: 38px; font-weight: 500; }
.about-values h3 { margin: 65px 0 12px; color: #fff; font-size: 25px; }
.about-values p { color: #bdc8ce; }
.faq-page-layout { align-items: start; margin-bottom: 0; }
.faq-page-layout > div:first-child { position: sticky; top: 120px; }
.faq-page-list { border-top: 1px solid #c9c4b9; }
.faq-page-list details { border-bottom: 1px solid #c9c4b9; }
.faq-page-list summary { display: flex; justify-content: space-between; gap: 25px; padding: 28px 0; cursor: pointer; list-style: none; font-size: 21px; font-weight: 750; }
.faq-page-list summary::-webkit-details-marker { display: none; }
.faq-page-list summary span { color: #c58b20; font-size: 26px; font-weight: 400; transition: transform .2s ease; }
.faq-page-list details[open] summary span { transform: rotate(45deg); }
.faq-page-list details p { max-width: 720px; margin: -8px 0 28px; color: #535a5e; font-size: 17px; line-height: 1.7; }
.info-cta { padding: 95px 0; color: #fff; background: linear-gradient(115deg,#9d6814,#d39a27); }
.info-cta .container { position: relative; }
.info-cta h2 { max-width: 850px; margin: 0; color: #fff; font-size: clamp(46px,6vw,82px); line-height: .98; letter-spacing: -.05em; }
.info-cta .btn { position: absolute; right: 0; bottom: 0; }

@media (max-width: 1280px) {
  .site-header .nav { gap: 19px; }
  .logo-crop, .logo-crop img { width: 88px; height: 58px; }
  .site-header .nav-links { gap: 18px; font-size: 12px; }
  .site-header .nav-quote { min-width: 150px; padding-inline: 16px; }
}

@media (max-width: 1080px) {
  .shell, .site-header .nav { width: min(calc(100% - 40px), 1380px); }
  .site-header .nav-links { gap: 17px; }
  .nav-phone strong { display: none; }
  .nav-phone { width: 42px; height: 42px; justify-content: center; border: 1px solid #dfd8ca; border-radius: 50%; }
  .site-header .nav-quote { display: none; }
  .unified-footer .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .unified-footer .footer-grid > div:nth-child(4), .unified-footer .footer-grid > div:nth-child(5) { margin-top: 15px; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .info-intro, .about-story, .faq-page-layout { gap: 50px; }
}

@media (max-width: 760px) {
  .shell, .site-header .nav { width: min(calc(100% - 30px), 1380px); }
  .site-header { height: 68px; min-height: 68px; }
  .site-header .nav { min-height: 68px; gap: 8px; }
  .logo-crop, .logo-crop img { width: 76px; height: 52px; }
  .nav-details { order: 3; margin-left: 0; }
  .nav-phone { order: 2; margin-left: auto; }
  .nav-toggle { width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; }
  .nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; width: 22px; height: 2px; display: block; background: var(--ink); }
  .nav-toggle span { margin-block: 5px; }
  .site-header .nav-links { position: absolute; top: 68px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100vh - 68px); padding: 12px 20px 28px; overflow-y: auto; background: #fff; border-top: 1px solid #eee; box-shadow: 0 20px 30px rgba(0,0,0,.12); }
  .nav-details.is-open > .nav-links { display: flex; }
  .site-header .nav-links > a, .mega-trigger { padding: 13px 0; border-bottom: 1px solid #eee; }
  .mega-nav { display: block; align-self: auto; }
  .mega-panel { position: static; grid-template-columns: 1fr; width: 100%; max-height: none; margin: 0; opacity: 1; visibility: visible; pointer-events: auto; border: 0; box-shadow: none; transform: none; }
  .mega-column { padding: 22px; }
  .mega-column--products { grid-template-columns: 1fr; }
  .mega-column--products .mega-label { grid-column: auto; }
  .site-header .nav-links .mega-column a { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .mega-feature { display: none; }
  .unified-footer .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .unified-footer .footer-grid > div:nth-child(4), .unified-footer .footer-grid > div:nth-child(5) { margin-top: 0; }
  .unified-footer .footer-bottom, .unified-footer .footer-bottom > span:last-child { align-items: flex-start; flex-direction: column; gap: 12px; }
  .site-credit { display: block; width: max-content; margin: 8px 0 0; }
  .info-hero { min-height: 560px; padding: 75px 0 60px; }
  .info-hero .container { width: min(calc(100% - 30px),1260px); }
  .info-hero .breadcrumb { margin-bottom: 45px; }
  .info-hero h1 { font-size: clamp(46px,14vw,68px); }
  .info-hero__lead { font-size: 17px; }
  .info-section { padding: 68px 0; }
  .info-intro, .about-story, .faq-page-layout { grid-template-columns: 1fr; gap: 35px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-grid article { min-height: 230px; }
  .about-values .container { grid-template-columns: 1fr; }
  .about-values article, .about-values article:last-child { min-height: 250px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .faq-page-layout > div:first-child { position: static; }
  .info-cta { padding: 70px 0; }
  .info-cta .btn { position: static; margin-top: 32px; }
}

/* Real North Shutters project media */
.service-film-frame--video { min-height: 0; padding: 0; background: #03090d; }
.service-film-frame--video video { display: block; width: 100%; max-height: 78vh; aspect-ratio: 16 / 9; object-fit: contain; background: #03090d; }
.service-video-caption { display: flex; justify-content: space-between; gap: 24px; padding: 18px 22px; color: #dce4e8; border-top: 1px solid rgba(255,255,255,.14); }
.service-video-caption b { color: #fff; }
.service-video-caption span { color: #93a1aa; }
.service-gallery-strip:has(figure:nth-child(5)) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-gallery-strip:has(figure:nth-child(5)) figure:nth-child(n) { margin-top: 0; }
.service-gallery-strip:has(figure:nth-child(5)) figure:nth-child(3n + 2) { transform: translateY(42px); }

.project-gallery-hero { padding: clamp(95px, 12vw, 175px) 0 clamp(70px, 9vw, 125px); color: #fff; background: radial-gradient(circle at 80% 15%, #18394b 0, #081923 40%, #050f16 75%); }
.project-gallery-hero h1 { max-width: 1050px; margin: 12px 0 30px; color: #fff; font-size: clamp(60px, 8vw, 120px); font-weight: 520; line-height: .9; letter-spacing: -.065em; }
.project-gallery-hero h1 em { color: #d49a26; font-style: normal; }
.project-gallery-hero > .container > p:last-child { max-width: 720px; color: #c7d1d6; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.project-gallery-section { padding: 34px 0 120px; background: #f4f1eb; }
.project-gallery-toolbar { position: sticky; z-index: 20; top: 76px; display: flex; gap: 9px; padding-top: 18px; padding-bottom: 18px; overflow-x: auto; background: rgba(244,241,235,.94); backdrop-filter: blur(14px); }
.project-gallery-toolbar button { flex: 0 0 auto; padding: 11px 17px; color: #28343b; border: 1px solid #c9c2b5; background: transparent; font: inherit; font-size: 13px; font-weight: 750; cursor: pointer; }
.project-gallery-toolbar button:hover, .project-gallery-toolbar button.is-active { color: #071722; border-color: #d49a26; background: #d49a26; }
.real-project-grid { columns: 4 250px; column-gap: 16px; margin-top: 30px; }
.real-project-card { position: relative; display: inline-block; width: 100%; margin: 0 0 16px; overflow: hidden; color: #fff; background: #0b1e29; break-inside: avoid; }
.real-project-card[hidden] { display: none; }
.real-project-card img { display: block; width: 100%; height: auto; min-height: 210px; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.real-project-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(3,11,16,.92), transparent); pointer-events: none; }
.real-project-card > span { position: absolute; z-index: 2; right: 18px; bottom: 17px; left: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; }
.real-project-card b { font-size: 15px; }
.real-project-card small { color: #e0aa38; font-weight: 750; }
.real-project-card:hover img { filter: saturate(1.08); transform: scale(1.035); }
.project-video-section { padding: 115px 0; color: #fff; background: #071722; }
.project-video-section h2 { color: #fff; font-size: clamp(45px, 6vw, 82px); letter-spacing: -.055em; }
.project-video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.project-video-card { overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #0d2634; }
.project-video-card video { display: block; width: 100%; max-height: 520px; aspect-ratio: 16 / 9; object-fit: contain; background: #02070a; }
.project-video-card > div { display: flex; flex-direction: column; gap: 5px; padding: 18px 20px; }
.project-video-card span { color: #9cabb3; font-size: 14px; }
.project-video-card .project-video-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 13px; padding-top: 13px; color: #fff; border-top: 1px solid rgba(255,255,255,.2); font-size: 13px; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; transition: color .2s ease; }
.project-video-card .project-video-link i { color: var(--accent); font-size: 18px; font-style: normal; transition: transform .2s ease; }
.project-video-card .project-video-link:hover { color: var(--accent); }
.project-video-card .project-video-link:hover i { transform: translate(3px, -3px); }

/* Insect-screen product page */
.screen-types-section { padding: clamp(90px, 11vw, 150px) 0; color: #fff; background: #071722; }
.screen-types-section .service-gallery-head { align-items: end; }
.screen-types-section .service-gallery-head h2 { max-width: 760px; color: #fff; font-size: clamp(48px, 6vw, 86px); line-height: .95; letter-spacing: -.055em; }
.screen-types-section .service-gallery-head > p { max-width: 430px; color: #aebbc2; font-size: 17px; line-height: 1.65; }
.screen-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.screen-type-grid article { min-height: 285px; padding: 30px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); transition: color .25s ease, background .25s ease; }
.screen-type-grid article:hover { color: #071722; background: #d49a26; }
.screen-type-grid b { color: #d49a26; font-size: 15px; }
.screen-type-grid article:hover b { color: #071722; }
.screen-type-grid h3 { margin: 72px 0 14px; color: inherit; font-size: clamp(24px, 2vw, 32px); line-height: 1.05; }
.screen-type-grid p { max-width: 330px; color: #aebbc2; line-height: 1.6; }
.screen-type-grid article:hover p { color: #24323a; }

@media (max-width: 760px) {
  .service-video-caption { flex-direction: column; gap: 5px; font-size: 13px; }
  .service-gallery-strip:has(figure:nth-child(5)) { display: flex; width: max-content; }
  .service-gallery-strip:has(figure:nth-child(5)) figure:nth-child(n) { width: 72vw; transform: none; }
  .project-gallery-hero { padding-top: 80px; }
  .project-gallery-hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .project-gallery-toolbar { top: 68px; }
  .real-project-grid { columns: 2 145px; column-gap: 10px; }
  .real-project-card { margin-bottom: 10px; }
  .real-project-card img { min-height: 150px; }
  .real-project-card > span { right: 12px; bottom: 12px; left: 12px; }
  .real-project-card small { display: none; }
  .project-video-grid { grid-template-columns: 1fr; }
  .screen-types-section .service-gallery-head { align-items: start; flex-direction: column; }
  .screen-type-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .screen-type-grid article { min-height: 235px; }
}

/* Application hub pages */
.application-page { color: #071722; background: #f4f1eb; }
.application-hero { position: relative; min-height: calc(100svh - 78px); overflow: hidden; color: #fff; background: #071722; }
.application-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.application-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,12,18,.94) 0%, rgba(2,12,18,.73) 43%, rgba(2,12,18,.13) 78%), linear-gradient(0deg, rgba(2,12,18,.48), transparent 52%); }
.application-hero-inner { position: relative; z-index: 1; display: flex; min-height: calc(100svh - 78px); padding-top: clamp(85px, 12vh, 145px); padding-bottom: 55px; flex-direction: column; justify-content: center; }
.application-hero-inner .breadcrumb { position: absolute; top: 38px; left: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.application-hero-inner .eyebrow { color: #e0aa38; }
.application-hero-inner h1 { max-width: 900px; margin: 16px 0 26px; color: #fff; font-size: clamp(62px, 7.3vw, 116px); font-weight: 540; line-height: .88; letter-spacing: -.067em; }
.application-hero-inner h1 em { display: block; color: #d49a26; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.application-hero-inner > p { max-width: 720px; margin: 0; color: #d8e0e4; font-size: clamp(18px, 1.55vw, 23px); line-height: 1.55; }
.application-hero-inner ol { display: flex; width: min(770px, 100%); margin: clamp(48px, 8vh, 90px) 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.application-hero-inner li { flex: 1; padding: 18px 24px 0 0; color: #b8c4ca; font-size: 13px; }
.application-hero-inner li b { display: block; margin-bottom: 7px; color: #d49a26; font-size: 12px; letter-spacing: .12em; }

.application-intro { padding: clamp(95px, 11vw, 155px) 0; background: #f4f1eb; }
.application-intro-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 10vw, 150px); align-items: start; }
.application-intro h2, .application-section-head h2, .application-case-copy h2, .application-process h2 { margin: 10px 0 0; color: #071722; font-size: clamp(52px, 6vw, 90px); font-weight: 600; line-height: .92; letter-spacing: -.06em; }
.application-intro-copy > p { margin: 0; color: #38464e; font-size: clamp(18px, 1.55vw, 22px); line-height: 1.65; }
.application-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.application-tags span { padding: 10px 15px; color: #4d4b45; border: 1px solid #cfc6b7; border-radius: 999px; font-size: 12px; font-weight: 750; }
.application-image-pair { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; margin-top: clamp(55px, 8vw, 105px); align-items: end; }
.application-image-pair figure { position: relative; min-height: 590px; margin: 0; overflow: hidden; background: #d9d4ca; }
.application-image-pair figure:last-child { min-height: 430px; }
.application-image-pair img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.application-image-pair figure:hover img { transform: scale(1.035); }
.application-image-pair span, .application-case figure span { position: absolute; right: 24px; bottom: 22px; left: 24px; color: #fff; font-size: 14px; font-weight: 750; text-shadow: 0 2px 18px rgba(0,0,0,.65); }

.application-collection { padding: clamp(100px, 12vw, 165px) 0; color: #fff; background: #071722; }
.application-section-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 10vw, 150px); align-items: end; }
.application-section-head h2 { color: #fff; }
.application-section-head > p { max-width: 500px; margin: 0 0 5px; color: #aebbc2; font-size: 18px; line-height: 1.65; }
.application-products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 65px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.application-product-card { display: grid; grid-template-columns: minmax(210px, .88fr) 1.12fr; min-height: 370px; color: #fff; background: #0c2633; transition: background .28s ease; }
.application-product-card figure { position: relative; min-height: 100%; margin: 0; overflow: hidden; }
.application-product-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,14,20,.38), transparent 45%); }
.application-product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.application-product-card figure span { position: absolute; z-index: 1; top: 20px; left: 20px; display: grid; width: 44px; height: 44px; place-items: center; color: #071722; background: #d49a26; font-size: 12px; font-weight: 850; }
.application-product-card > div { display: flex; padding: 34px; flex-direction: column; }
.application-product-card small { color: #dca52f; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.application-product-card h3 { margin: 27px 0 15px; color: #fff; font-size: clamp(29px, 2.3vw, 40px); line-height: .98; letter-spacing: -.035em; }
.application-product-card p { margin: 0; color: #b9c5ca; line-height: 1.58; }
.application-product-card b { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; color: #fff; border-top: 1px solid rgba(255,255,255,.16); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.application-product-card i { color: #d49a26; font-size: 22px; font-style: normal; transition: transform .25s ease; }
.application-product-card:hover { background: #123444; }
.application-product-card:hover img { transform: scale(1.045); }
.application-product-card:hover i { transform: translate(4px,-4px); }

.application-case { padding: clamp(95px, 11vw, 155px) 0; background: #fff; }
.application-case-grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 690px; }
.application-case figure { position: relative; min-height: 600px; margin: 0; overflow: hidden; background: #ddd6c9; }
.application-case figure img { width: 100%; height: 100%; object-fit: cover; }
.application-case-copy { display: flex; padding: clamp(48px, 6vw, 90px); flex-direction: column; justify-content: center; color: #fff; background: #071722; }
.application-case-copy h2 { color: #fff; }
.application-case-copy > p { margin: 28px 0 0; color: #b9c5ca; font-size: 18px; line-height: 1.68; }
.application-case-copy dl { margin: 42px 0 0; }
.application-case-copy dl div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.16); }
.application-case-copy dt { color: #82939c; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.application-case-copy dd { margin: 0; color: #fff; font-weight: 700; }
.application-case-copy .text-link { margin-top: 35px; color: #fff; }

.application-process { padding: clamp(90px, 10vw, 140px) 0; background: #f4f1eb; }
.application-process > .container > p { max-width: 670px; margin: 25px 0 0; color: #4b5960; font-size: 18px; line-height: 1.65; }
.application-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; border-top: 1px solid #cfc7b9; border-left: 1px solid #cfc7b9; }
.application-steps article { min-height: 280px; padding: 30px; border-right: 1px solid #cfc7b9; border-bottom: 1px solid #cfc7b9; }
.application-steps b { color: #d49a26; font-size: 30px; font-weight: 500; }
.application-steps h3 { margin: 72px 0 13px; font-size: 25px; line-height: 1.05; }
.application-steps p { margin: 0; color: #59656b; line-height: 1.55; }

@media (max-width: 980px) {
  .application-hero-inner h1 { max-width: 760px; }
  .application-intro-head, .application-section-head { grid-template-columns: 1fr; gap: 30px; }
  .application-image-pair figure { min-height: 480px; }
  .application-image-pair figure:last-child { min-height: 360px; }
  .application-products-grid { grid-template-columns: 1fr; }
  .application-case-grid { grid-template-columns: 1fr; }
  .application-case figure { min-height: 520px; }
}

@media (max-width: 640px) {
  .application-hero { min-height: 690px; }
  .application-hero-shade { background: linear-gradient(90deg, rgba(2,12,18,.91), rgba(2,12,18,.42)), linear-gradient(0deg, rgba(2,12,18,.72), transparent 65%); }
  .application-hero-inner { min-height: 690px; padding-top: 95px; padding-bottom: 38px; }
  .application-hero-inner .breadcrumb { top: 25px; }
  .application-hero-inner h1 { font-size: clamp(50px, 16vw, 72px); }
  .application-hero-inner > p { font-size: 17px; }
  .application-hero-inner ol { margin-top: 40px; }
  .application-hero-inner li { padding-right: 10px; font-size: 11px; }
  .application-image-pair { grid-template-columns: 1fr; }
  .application-image-pair figure, .application-image-pair figure:last-child { min-height: 380px; }
  .application-product-card { grid-template-columns: 1fr; }
  .application-product-card figure { min-height: 280px; }
  .application-product-card > div { min-height: 310px; padding: 28px; }
  .application-case figure { min-height: 420px; }
  .application-case-copy { padding: 42px 28px; }
  .application-case-copy dl div { grid-template-columns: 88px 1fr; }
  .application-steps { grid-template-columns: 1fr; }
  .application-steps article { min-height: 230px; }
  .application-steps h3 { margin-top: 42px; }
}
