/* =========================================================================
   GetPrintedBox — Public Multi-Theme System
   Supports: Modern (default), Ultra Modern, Classic Modern
   ========================================================================= */

:root {
  /* Default: Modern Theme Variables */
  --theme-id: 'modern';
  --navy: #0A1B33;
  --orange: #FF5A1F;
  --bg: #FFFFFF;
  --fg: #0A1B33;
  --muted: #5b6b80;
  --line: rgba(10, 27, 51, 0.12);
  --line-strong: rgba(10, 27, 51, 0.25);
  --surface: #f5f7fa;
  --radius: 0.5rem;
  --container: 1280px;

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;

  --btn-radius: 0.5rem;
  --btn-transform: none;
  --btn-shadow: none;

  --card-radius: 0.5rem;
  --card-shadow: 0 4px 20px rgba(0,0,0,0.05);
  --card-border: 1px solid var(--line);

  --header-height: 4.5rem;
  --hero-padding: 3rem;
  --hero-title-weight: 700;
  --hero-title-tracking: -0.02em;
}

/* ==================== THEME: ULTRA MODERN ==================== */
.theme-ultra-modern {
  --theme-id: 'ultra-modern';
  --navy: #000000;
  --orange: #FF4500;
  --bg: #FFFFFF;
  --fg: #000000;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.15);
  --line-strong: #000000;
  --surface: #f0f0f0;
  --radius: 0;

  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;

  --btn-radius: 0;
  --btn-transform: uppercase;
  --btn-shadow: 4px 4px 0 var(--fg);

  --card-radius: 0;
  --card-shadow: none;
  --card-border: 2px solid var(--fg);

  --hero-padding: 5rem;
  --hero-title-weight: 700;
  --hero-title-tracking: -0.04em;
}

/* ==================== THEME: CLASSIC MODERN ==================== */
.theme-classic-modern {
  --theme-id: 'classic-modern';
  --navy: #1A1A1A;
  --orange: #C69C6D; /* Bronze/Gold */
  --bg: #FCFCFB;
  --fg: #1A1A1A;
  --muted: #737373;
  --line: rgba(26, 26, 26, 0.1);
  --line-strong: rgba(26, 26, 26, 0.2);
  --surface: #F5F4F0;
  --radius: 0.25rem;

  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", serif;

  --btn-radius: 99px;
  --btn-transform: uppercase;
  --btn-shadow: none;

  --card-radius: 0.25rem;
  --card-shadow: 0 10px 30px rgba(0,0,0,0.03);
  --card-border: 1px solid var(--line);

  --hero-padding: 4rem;
  --hero-title-weight: 400;
  --hero-title-tracking: 0;
}

/* ==================== DARK MODE ==================== */
html.dark body {
  --bg: #0A1B33;
  --fg: #ECF2FA;
  --muted: #9fb0c6;
  --line: rgba(236, 242, 250, 0.14);
  --line-strong: rgba(236, 242, 250, 0.28);
  --surface: #10233f;
}
html.dark .theme-ultra-modern {
  --bg: #050505;
  --fg: #FFFFFF;
  --surface: #111111;
  --line: rgba(255, 255, 255, 0.2);
  --line-strong: #FFFFFF;
  --btn-shadow: 4px 4px 0 var(--orange);
}
html.dark .theme-classic-modern {
  --bg: #141414;
  --fg: #F5F4F0;
  --surface: #1C1C1C;
  --line: rgba(245, 244, 240, 0.1);
  --navy: #F5F4F0;
}

/* ==================== GLOBAL ==================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--hero-title-weight); line-height: 1.1; margin: 0; letter-spacing: var(--hero-title-tracking); }
p { margin: 0 0 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.visually-hidden, .hp-field {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 3rem; padding: 0 1.75rem; border-radius: var(--btn-radius);
  font-weight: 600; font-size: .85rem; letter-spacing: .05em; text-transform: var(--btn-transform);
  border: 1px solid transparent; transition: all 0.2s;
  white-space: nowrap; box-shadow: var(--btn-shadow);
}
.theme-ultra-modern .btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--fg); }
.btn--lg { height: 3.5rem; padding: 0 2.25rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--primary:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.theme-ultra-modern .btn--primary:hover { box-shadow: 4px 4px 0 var(--fg); }
.btn--outline { border-color: var(--line-strong); color: var(--fg); background: transparent; }
.btn--outline:hover { border-color: var(--fg); background: var(--fg); color: var(--bg); }
.btn--inverse { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.btn--inverse:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* ---------------- Icon buttons ---------------- */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border: none; background: transparent;
  color: var(--fg); border-radius: var(--radius); transition: background .2s;
}
.icon-btn:hover { background: var(--surface); }
.js-theme-toggle .icon-sun { display: none; }
html.dark .js-theme-toggle .icon-sun { display: block; }
html.dark .js-theme-toggle .icon-moon { display: none; }

/* ---------------- Eyebrow / section heads ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.25rem;
}
.eyebrow__rule { display: inline-block; width: 2.5rem; height: 1px; background: currentColor; opacity: .5; }
.eyebrow--light { color: rgba(255,255,255,.55); }

.section-head { max-width: 46rem; margin-bottom: 3.5rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); }
.section-title--light { color: #fff; }
.section-lead { color: var(--muted); font-size: 1.125rem; margin-top: 1rem; }
.section-lead--center { margin-left: auto; margin-right: auto; }
.section-lead--light { color: rgba(255,255,255,.7); }

/* ---------------- Rich text ---------------- */
.rich p { margin: 0 0 1rem; }
.rich a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.rich ul, .rich ol { margin: 0 0 1rem 1.25rem; }
.rich h2, .rich h3, .rich h4 { font-family: var(--font-display); margin: 1.75rem 0 .75rem; }
.rich--lg { font-size: 1.125rem; }
.rich--lg h2 { font-size: 1.75rem; }

/* ---------------- Grid ---------------- */
.grid { display: grid; gap: 2rem; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ===================== TOPBAR ===================== */
.topbar {
  display: none; background: var(--navy); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding-top: .65rem; padding-bottom: .65rem; }
.topbar__contact { display: flex; gap: 2rem; }
.topbar__link { display: inline-flex; align-items: center; gap: .5rem; color: #fff; opacity: .9; }
.topbar__link:hover { opacity: 1; color: var(--orange); }
.topbar__note { opacity: .8; }
.theme-ultra-modern .topbar { border-bottom: 2px solid var(--orange); }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-height);
  display: flex; align-items: center;
}
.theme-ultra-modern .header { border-bottom: 2px solid var(--line-strong); }
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1rem; }
.header__logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.header__logo-img { height: 2.1rem; width: auto; }
.header__logo-img--dark { display: none; }
html.dark .header__logo-img--light { display: none; }
html.dark .header__logo-img--dark { display: block; }
@media (max-width: 479px) {
  .header__logo-img { height: 1.25rem; }
}
.header__nav { display: none; align-items: center; }
.header__nav-list { display: flex; align-items: center; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.header__nav-item { position: relative; display: flex; align-items: center; }
.header__nav-item.has-mega { position: static; }
.header__nav-link {
  display: inline-flex; align-items: center; font-size: .72rem; font-weight: 600; letter-spacing: .035em;
  text-transform: var(--btn-transform); color: var(--fg); opacity: .8; padding: .5rem 0;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.theme-classic-modern .header__nav-link { text-transform: none; letter-spacing: 0; font-size: .82rem; }
.header__nav-link:hover { opacity: 1; color: var(--orange); }
.header__nav-link.is-active { opacity: 1; border-bottom-color: var(--orange); }
.header__nav-link--label { cursor: default; }
.header__submenu-toggle {
  display: none; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 1.75rem; height: 1.75rem; margin-left: -.15rem; padding: 0;
  background: transparent; border: 0; border-radius: var(--radius); color: var(--fg);
}
.header__submenu-toggle:hover, .header__submenu-toggle:focus-visible { background: var(--surface); color: var(--orange); }
.header__submenu-toggle svg { transition: transform .2s ease; }
.header__nav-item.is-open > .header__submenu-toggle svg { transform: rotate(180deg); }
.header__submenu {
  position: absolute; top: 100%; left: 0; min-width: 14rem; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: .5rem 0; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, visibility .2s, transform .2s; z-index: 100;
}
.theme-ultra-modern .header__submenu { border: 2px solid var(--fg); box-shadow: 4px 4px 0 var(--fg); border-radius: 0; }
.header__submenu .header__nav-item { display: grid; grid-template-columns: 1fr auto; }
.header__submenu .header__nav-link { display: flex; width: 100%; padding: .6rem 1.25rem; font-size: .9rem; border: 0; }
.header__submenu .header__nav-link:hover { background: var(--surface); color: var(--orange); }
.header__submenu .header__submenu { top: 0; left: 100%; }

/* --- Header Mega Menu --- */
.header__mega {
  position: absolute; top: 100%; inset-inline: 0; width: auto; background: var(--bg);
  border-bottom: 1px solid var(--line); box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, visibility .2s, transform .2s; z-index: 100;
}
.theme-ultra-modern .header__mega { border-bottom: 2px solid var(--fg); }
.header__mega-inner {
  display: flex; gap: 1.5rem; padding: 1.5rem 1rem 1.75rem; max-width: var(--container); margin: 0 auto;
  max-height: calc(100vh - var(--header-height) - 2rem); overflow-y: auto; overscroll-behavior: contain;
}
.header__mega-sidebar {
  flex: 0 0 13rem; align-self: stretch; padding: .25rem 1.5rem .25rem 0; border-right: 1px solid var(--line);
}
.theme-ultra-modern .header__mega-sidebar { border-right: 2px solid var(--fg); }
.header__mega-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.header__mega-desc { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem; }
.header__mega-content {
  flex: 1; min-width: 0;
}
.header__mega-content--groups {
  columns: 3 14rem; column-gap: 1rem;
}
.header__mega-content--links .header__mega-list {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .15rem 1rem;
}
.header__mega-group {
  display: inline-block; width: 100%; min-width: 0; margin: 0 0 1rem; padding: .8rem;
  break-inside: avoid; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.theme-ultra-modern .header__mega-group { border: 2px solid var(--line-strong); border-radius: 0; }
.header__mega-grouptitle {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; border-bottom: 1px solid var(--line); padding: 0 .35rem .5rem;
}
.theme-ultra-modern .header__mega-grouptitle { border-bottom: 2px solid var(--line-strong); }
.header__mega-list {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .1rem;
}
.header__mega-link {
  display: block; padding: .32rem .4rem; border-radius: calc(var(--radius) - 2px);
  font-size: 0.86rem; line-height: 1.35; color: var(--fg); opacity: .82;
  transition: opacity .2s, color .2s, background-color .2s, transform .2s;
}
.header__mega-link:hover, .header__mega-link.is-active {
  opacity: 1; color: var(--orange); background: var(--bg); transform: translateX(2px);
}
.header__mega-content--links .header__mega-link:hover,
.header__mega-content--links .header__mega-link.is-active { background: var(--surface); }

/* Mega Industries Grid */
.header__mega-industries {
  flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; align-items: start;
}
.header__mega-industry {
  display: flex; align-items: center; gap: .75rem; min-height: 5.75rem; padding: .7rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  color: inherit; text-decoration: none;
  transition: border-color .2s, background-color .2s, box-shadow .2s, transform .2s;
}
.theme-ultra-modern .header__mega-industry { border: 2px solid var(--line-strong); border-radius: 0; }
.header__mega-industry:hover, .header__mega-industry.is-active {
  border-color: color-mix(in srgb, var(--orange) 55%, var(--line));
  background-color: var(--bg); box-shadow: 0 10px 24px rgba(0,0,0,.08); transform: translateY(-2px);
}
.header__mega-industry-img {
  flex: 0 0 4rem; height: 4rem; border-radius: calc(var(--radius) - 2px); overflow: hidden; background-color: var(--bg);
}
.theme-ultra-modern .header__mega-industry-img { border-radius: 0; border: 1px solid var(--line-strong); }
.header__mega-industry-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.header__mega-industry:hover .header__mega-industry-img img { transform: scale(1.05); }
.header__mega-industry-content { flex: 1; min-width: 0; }
.header__mega-industry-title {
  display: block; font-size: .88rem; font-weight: 700; line-height: 1.25; color: var(--fg); margin-bottom: .25rem; transition: color .2s;
}
.header__mega-industry:hover .header__mega-industry-title, .header__mega-industry.is-active .header__mega-industry-title { color: var(--orange); }
.header__mega-industry-summary {
  display: -webkit-box; font-size: .72rem; color: var(--muted); line-height: 1.35;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.header__actions { display: flex; align-items: center; gap: .25rem; flex: 0 0 auto; }
.header__cta { display: none; }
@media (min-width: 1180px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; margin-left: .5rem; }
  .header__menu-btn { display: none; }
  .js .header__submenu-toggle { display: inline-flex; }
  html:not(.js) .header__nav-item.has-children:hover > .header__submenu,
  html:not(.js) .header__nav-item.has-children:focus-within > .header__submenu,
  .js .header__nav-item.has-children.is-open > .header__submenu,
  .js .header__nav-item.has-children.is-hovered > .header__submenu,
  html:not(.js) .header__nav-item.has-mega:hover > .header__mega,
  html:not(.js) .header__nav-item.has-mega:focus-within > .header__mega,
  .js .header__nav-item.has-mega.is-open > .header__mega,
  .js .header__nav-item.has-mega.is-hovered > .header__mega {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
}
@media (min-width: 1320px) {
  .header__nav-list { gap: 1rem; }
  .header__nav-link { font-size: .8rem; letter-spacing: .05em; }
  .theme-classic-modern .header__nav-link { font-size: .95rem; }
}
.mobile-nojs-nav { display: none; }
@media (max-width: 1179px) {
  .mobile-nojs-nav {
    display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--line); background: var(--bg);
  }
  .mobile-nojs-nav .drawer__nav-list { display: flex; flex-direction: column; gap: .65rem; }
  .mobile-nojs-nav .drawer__link { font-size: 1.1rem; }
  .mobile-nojs-nav .drawer__submenu-toggle { display: none; }
  .mobile-nojs-nav .drawer__submenu { margin: .4rem 0 0 1rem; }
}

/* ===================== DRAWER ===================== */
.drawer { position: fixed; inset: 0 auto 0 0; width: 100%; max-width: 100vw; z-index: 100; visibility: hidden; overflow: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); opacity: 0; transition: opacity .3s; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; left: 0; height: 100%; width: min(340px, 85vw);
  background: var(--bg); padding: 2rem; transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column; box-shadow: 0 0 40px rgba(0,0,0,.2); overflow-y: auto;
}
.theme-ultra-modern .drawer__panel { border-right: 4px solid var(--line-strong); box-shadow: none; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close { position: absolute; top: 1rem; right: 1rem; }
.drawer__nav { display: flex; flex: 0 0 auto; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.drawer__link { font-family: var(--font-display); font-size: 1.5rem; }
.theme-ultra-modern .drawer__link { text-transform: uppercase; font-weight: 700; }
.drawer__link:hover { color: var(--orange); }
.drawer__cta { margin-top: 1rem; width: 100%; justify-content: center; }
.drawer__foot { margin-top: auto; flex-shrink: 0; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ===================== SEARCH OVERLAY ===================== */
.search-overlay { position: fixed; inset: 0 auto 0 0; width: 100%; max-width: 100vw; z-index: 120; visibility: hidden; overflow: hidden; }
.search-overlay.is-open { visibility: visible; }
.search-overlay__backdrop { position: absolute; inset: 0; background: rgba(10,27,51,.6); opacity: 0; transition: opacity .25s; }
.search-overlay.is-open .search-overlay__backdrop { opacity: 1; }
.search-overlay__panel {
  position: relative; max-width: 640px; margin: 8vh auto 0; background: var(--bg);
  border-radius: var(--radius); padding: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transform: translateY(-12px); opacity: 0; transition: transform .25s, opacity .25s;
}
.theme-ultra-modern .search-overlay__panel { border: 4px solid var(--fg); box-shadow: 8px 8px 0 var(--fg); }
.search-overlay.is-open .search-overlay__panel { transform: translateY(0); opacity: 1; }
.search-overlay__bar { display: flex; align-items: center; gap: .75rem; border-bottom: 1px solid var(--line); padding: .5rem .25rem .75rem; color: var(--muted); }
.theme-ultra-modern .search-overlay__bar { border-bottom: 2px solid var(--fg); }
.search-overlay__input { flex: 1; border: none; background: transparent; font-size: 1.1rem; color: var(--fg); }
.search-overlay__input:focus { outline: none; }
.search-overlay__results { list-style: none; margin: .75rem 0 0; padding: 0; max-height: 50vh; overflow-y: auto; }
.search-overlay__results li a { display: block; padding: .75rem; border-radius: var(--radius); }
.search-overlay__results li a:hover, .search-overlay__results li a:focus { background: var(--surface); }
.search-overlay__results .r-title { font-family: var(--font-display); font-weight: 600; }
.search-overlay__results .r-cat { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.search-overlay__empty { color: var(--muted); padding: 1rem .75rem; }

/* ===================== HERO ===================== */
.hero { border-bottom: 1px solid var(--line); padding: var(--hero-padding) 0; }
.theme-ultra-modern .hero { border-bottom: 4px solid var(--fg); background: var(--surface); }
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.hero__eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.hero__title { font-size: clamp(2.5rem, 6vw, 5rem); }
.theme-classic-modern .hero__title { font-style: italic; }
.hero__lead { color: var(--muted); font-size: 1.15rem; margin-top: 1.5rem; max-width: 34rem; }
.hero__media { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.hero__figure { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--surface); aspect-ratio: 4/3; }
.theme-ultra-modern .hero__figure { border: 2px solid var(--fg); }
.hero__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.hero__figure:hover img { transform: scale(1.05); }
.hero__figure--lead { grid-column: 1 / -1; aspect-ratio: 16/9; }
.hero__figure-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; font-family: var(--font-display); color: #fff; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); font-size: .95rem; }
@media (max-width: 640px) { .hero__media { grid-template-columns: 1fr; } .hero__figure:nth-child(n+4) { display: none; } }

/* ===================== PAGE HERO (interior) ===================== */
.page-hero { padding: 4rem 0 2rem; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .page-hero { border-bottom: 4px solid var(--fg); }
.page-hero--compact { padding: 3rem 0; background: var(--surface); }
.page-hero__title { font-size: clamp(2.5rem, 5vw, 4.5rem); max-width: 60rem; }
.theme-classic-modern .page-hero__title { font-style: italic; }
.page-hero__intro { color: var(--muted); font-size: 1.15rem; margin-top: 1.25rem; max-width: 42rem; }
.page-hero__body { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
@media (min-width: 1024px) { .page-hero__body { grid-template-columns: 5fr 7fr; } }
.page-hero__lead { color: var(--muted); font-size: 1.15rem; }
.page-hero__figure { margin: 2.5rem 0 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 21/9; background: var(--surface); }
.theme-ultra-modern .page-hero__figure { border: 2px solid var(--fg); }
.page-hero__figure img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== LOGOS ===================== */
.logos { padding: 3rem 0; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .logos { border-bottom: 2px solid var(--fg); }
.logos__inner { text-align: center; }
.logos__label { font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.logos__strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem; }
.logos__img { height: 2.25rem; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .3s, opacity .3s; }
.logos__img:hover { filter: grayscale(0); opacity: 1; }
html.dark .logos__img { filter: brightness(0) invert(1) opacity(0.6); }
html.dark .logos__img:hover { filter: brightness(0) invert(1) opacity(1); }

/* ===================== SERVICES / CARDS ===================== */
.services, .steps, .why, .testimonials, .industries, .richtext, .text-image, .contact-info, .faq, .portfolio, .related, .form-section, .specs, .compare, .resources, .sec-gallery, .related-links { padding: 4rem 0; }
@media (min-width: 1024px) { .services, .steps, .why, .testimonials, .industries, .richtext, .text-image, .contact-info, .faq, .related, .specs, .compare, .resources, .sec-gallery, .related-links { padding: 6rem 0; } }
.services, .steps, .industries { border-top: 1px solid var(--line); }
.theme-ultra-modern .services, .theme-ultra-modern .steps, .theme-ultra-modern .industries { border-top: 2px solid var(--fg); }

.card-plain { display: flex; flex-direction: column; height: 100%; border: var(--card-border); border-radius: var(--card-radius); padding: 1.5rem; box-shadow: var(--card-shadow); background: var(--bg); transition: transform 0.2s; }
.theme-classic-modern .card-plain { border: none; background: var(--surface); }
.card-plain:hover { transform: translateY(-4px); }
.card-plain__img { aspect-ratio: 4/3; overflow: hidden; border-radius: calc(var(--card-radius) - 4px); background: var(--surface); margin-bottom: 1.5rem; margin: -0.5rem -0.5rem 1rem; }
.card-plain__img img { width: 100%; height: 100%; object-fit: cover; }
.card-plain__title { font-size: 1.4rem; margin-bottom: .75rem; }
.card-plain__text { color: var(--muted); flex: 1; }
.icon-mark { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border: 1px solid var(--line-strong); border-radius: var(--radius); color: var(--orange); margin-bottom: 1.25rem; background: var(--surface); }
.theme-ultra-modern .icon-mark { border: 2px solid var(--fg); box-shadow: 2px 2px 0 var(--fg); }
.link-arrow { display: inline-block; margin-top: 1rem; font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--orange); }

/* ===================== STEPS ===================== */
.step { border-top: 1px solid var(--line-strong); padding-top: 1.5rem; }
.theme-ultra-modern .step { border-top: 4px solid var(--fg); }
.step__num { font-family: var(--font-display); font-size: 3.5rem; color: var(--orange); margin-bottom: 1rem; font-weight: 700; line-height: 1; }
.step__title { font-size: 1.4rem; margin-bottom: .75rem; }
.step__text { color: var(--muted); }

/* ===================== SHOWCASE ===================== */
.showcase { background: var(--navy); color: #fff; padding: 5rem 0; }
.theme-ultra-modern .showcase { border-bottom: 4px solid var(--fg); }
.showcase__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .showcase__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.proj-card { display: block; border-radius: var(--card-radius); overflow: hidden; }
.theme-ultra-modern .proj-card { border: 2px solid #fff; }
.theme-classic-modern .proj-card { border-radius: 0; }
.proj-card__img { aspect-ratio: 4/5; overflow: hidden; background: var(--surface); margin-bottom: 1rem; border-radius: var(--card-radius); }
.theme-ultra-modern .proj-card__img { border-radius: 0; margin-bottom: 0; border-bottom: 2px solid #fff; }
.proj-card--dark .proj-card__img { background: rgba(255,255,255,.05); }
.proj-card__img--square { aspect-ratio: 1/1; }
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.proj-card:hover .proj-card__img img { transform: scale(1.06); }
.proj-card__title { font-size: 1.35rem; margin-bottom: .35rem; }
.theme-ultra-modern .proj-card__title { padding: 1rem 1rem 0; }
.proj-card--dark .proj-card__title { color: #fff; }
.proj-card__cat { font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.theme-ultra-modern .proj-card__cat { padding: 0 1rem 1rem; }
.proj-card--dark .proj-card__cat { color: rgba(255,255,255,.6); }

/* ===================== WHY ===================== */
.why { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.theme-ultra-modern .why { border: none; border-bottom: 4px solid var(--fg); }
.why__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .why__inner { grid-template-columns: 1fr 2fr; gap: 5rem; } }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
.why__title { font-size: 1.35rem; margin-bottom: .5rem; }
.why__text { color: var(--muted); }

/* ===================== STATS ===================== */
.stats { background: var(--navy); color: #fff; padding: 4rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; text-align: center; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__value { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; color: var(--orange); font-weight: 700; }
.stat__label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: .75rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.theme-ultra-modern .testimonials { border-top: 2px solid var(--fg); border-bottom: 4px solid var(--fg); }
.quote { margin: 0; display: flex; flex-direction: column; }
.quote__text { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.5; margin: 0 0 2rem; flex: 1; }
.theme-classic-modern .quote__text { font-style: italic; font-size: 1.5rem; }
.quote__who { display: flex; align-items: center; gap: 1rem; }
.quote__avatar { width: 3.5rem; height: 3.5rem; border-radius: 50%; object-fit: cover; filter: grayscale(1); border: 2px solid var(--line-strong); }
.quote__name { display: block; font-size: .9rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.quote__role { display: block; font-size: .85rem; color: var(--muted); }

/* ===================== INDUSTRIES ===================== */
.industries__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .industries__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.industry { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; background: var(--navy); }
.theme-ultra-modern .industry { border: 2px solid var(--fg); }
.industry__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: transform .8s, opacity .3s; }
.industry:hover .industry__img { transform: scale(1.05); opacity: .7; }
.industry__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); }
.industry__title { font-size: 1.4rem; }
.industry__text { font-size: .85rem; color: rgba(255,255,255,.85); margin: .5rem 0 0; }

/* ===================== CTA ===================== */
.cta { background: var(--navy); color: #fff; padding: 6rem 0; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.cta__inner { max-width: 46rem; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta__eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.cta__title { font-size: clamp(2.25rem, 5vw, 4rem); margin: 1rem 0; }
.cta__lead { color: rgba(255,255,255,.8); font-size: 1.15rem; margin-bottom: 2rem; }
.cta .btn-row { justify-content: center; }

/* ===================== TEXT-IMAGE ===================== */
.text-image__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .text-image__inner { grid-template-columns: 1.1fr .9fr; gap: 5rem; } .text-image--reverse .text-image__copy { order: 2; } }
.text-image__figure { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.theme-ultra-modern .text-image__figure { border: 2px solid var(--fg); box-shadow: 8px 8px 0 var(--fg); }
.text-image__figure img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== RICHTEXT ===================== */
.richtext { border-top: 1px solid var(--line); }
.richtext__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .richtext__inner { grid-template-columns: 5fr 7fr; gap: 4rem; } }

/* ===================== CONTACT INFO ===================== */
.contact-info { border-top: 1px solid var(--line); }
.contact-info__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-info__inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-info__list { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 2rem; }
.contact-info__item { display: flex; gap: 1.25rem; }
.contact-info__label { font-size: .85rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin: 0 0 .35rem; }
.contact-info__value { color: var(--muted); margin: 0; font-size: 1.1rem; }
.contact-info__figure { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.theme-ultra-modern .contact-info__figure { border: 2px solid var(--fg); }
.contact-info__figure img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== FAQ ===================== */
.faq__inner { max-width: 52rem; margin: 0 auto; }
.faq__list { border-top: 1px solid var(--line); }
.theme-ultra-modern .faq__list { border-top: 2px solid var(--fg); }
.faq__item { border-bottom: 1px solid var(--line); }
.theme-ultra-modern .faq__item { border-bottom: 2px solid var(--fg); }
.faq__q { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; padding: 1.5rem 2rem 1.5rem 0; cursor: pointer; list-style: none; position: relative; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: 0; top: 1.4rem; font-size: 1.5rem; color: var(--orange); transition: transform .2s; }
.faq__item[open] .faq__q::after { content: "–"; }
.faq__a { color: var(--muted); padding: 0 0 1.5rem; font-size: 1.05rem; }
.faq__actions { margin-top: 3rem; text-align: center; }
.faq__actions .btn-row { justify-content: center; }

/* ===================== PORTFOLIO INDEX ===================== */
.portfolio__toolbar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .portfolio__toolbar { flex-direction: row; align-items: center; } }
.portfolio__search { position: relative; flex: 1; display: flex; align-items: center; gap: .5rem; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 0 1rem; color: var(--muted); background: var(--bg); }
.theme-ultra-modern .portfolio__search { border: 2px solid var(--fg); box-shadow: 4px 4px 0 var(--fg); }
.portfolio__search input { flex: 1; border: none; background: transparent; height: 3rem; font-size: 1rem; color: var(--fg); }
.portfolio__search input:focus { outline: none; }
.portfolio__filters select, .js-portfolio-select { height: 3rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bg); color: var(--fg); padding: 0 1rem; font-size: 1rem; cursor: pointer; }
.theme-ultra-modern .portfolio__filters select { border: 2px solid var(--fg); box-shadow: 4px 4px 0 var(--fg); }
.portfolio__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.chip { border: 1px solid var(--line-strong); background: transparent; color: var(--fg); border-radius: 999px; padding: .5rem 1rem; font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; transition: all .2s; cursor: pointer; }
.theme-ultra-modern .chip { border-radius: 0; border: 2px solid var(--fg); }
.chip:hover { border-color: var(--fg); background: var(--surface); }
.chip.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.chip--sm { padding: .35rem .75rem; font-size: .7rem; }
.portfolio__empty { text-align: center; padding: 4rem 0; }
.portfolio__empty h3 { font-size: 1.75rem; margin-bottom: .5rem; }
.portfolio__empty p { color: var(--muted); margin-bottom: 1.5rem; }
.proj-card.is-hidden { display: none; }

/* ===================== DETAIL ===================== */
/* ===================== MODERN BREADCRUMBS ===================== */
.breadcrumbs {
  background: var(--surface, #f8fafc);
  border-bottom: 1px solid var(--line, #e2e8f0);
  padding: 0.65rem 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.theme-ultra-modern .breadcrumbs { border-bottom: 2px solid var(--fg); }

.breadcrumbs .container {
  display: flex;
  align-items: center;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
  max-width: 100%;
}
.breadcrumbs ol::-webkit-scrollbar { display: none; }

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--muted, #64748b);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.breadcrumbs li:first-child a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumbs li:first-child a::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: -1px;
}

.breadcrumbs a {
  color: var(--muted, #64748b);
  text-decoration: none;
  transition: all 0.15s ease;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
}

.breadcrumbs a:hover {
  color: var(--orange, #f97316);
  background: rgba(249, 115, 22, 0.08);
}

.breadcrumbs li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid var(--muted, #94a3b8);
  border-right: 1.5px solid var(--muted, #94a3b8);
  transform: rotate(45deg);
  margin: 0 0.55rem;
  opacity: 0.6;
  flex-shrink: 0;
}

.breadcrumbs li[aria-current="page"] {
  color: var(--fg, #0f172a);
  font-weight: 600;
  padding: 0.15rem 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}

@media (max-width: 640px) {
  .breadcrumbs {
    padding: 0.5rem 0;
    font-size: 0.775rem;
  }
  .breadcrumbs li[aria-current="page"] {
    max-width: 180px;
  }
}
.detail { padding: 3rem 0 5rem; }
.detail__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .detail__grid { grid-template-columns: 2fr 1fr; gap: 4rem; } }
.detail__cats { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.detail__title { font-size: clamp(2.25rem, 5vw, 4rem); margin-bottom: 1rem; }
.theme-classic-modern .detail__title { font-style: italic; }
.detail__lead { font-size: 1.25rem; color: var(--muted); margin-bottom: 2rem; }
.detail__content { margin-top: 2.5rem; }
.gallery { margin-bottom: 2rem; }
.gallery__hero { margin: 0; }
.gallery__trigger { display: block; width: 100%; padding: 0; border: none; background: var(--surface); border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.theme-ultra-modern .gallery__trigger { border: 2px solid var(--fg); border-radius: 0; }
.gallery__trigger img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-top: .75rem; }
.gallery__thumb { padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); cursor: pointer; }
.theme-ultra-modern .gallery__thumb { border: 2px solid var(--fg); border-radius: 0; }
.gallery__thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail__panel { position: sticky; top: calc(var(--header-height) + 2rem); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; background: var(--surface); }
.theme-ultra-modern .detail__panel { border: 2px solid var(--fg); border-radius: 0; box-shadow: 6px 6px 0 var(--fg); background: var(--bg); }
.theme-classic-modern .detail__panel { border: none; background: var(--bg); box-shadow: var(--card-shadow); }
.detail__panel-title { font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin: 0 0 1.5rem; border-bottom: 1px solid var(--line); padding-bottom: 0.75rem; }
.theme-ultra-modern .detail__panel-title { border-bottom: 2px solid var(--fg); color: var(--fg); }
.detail__specs { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.detail__spec { display: flex; flex-direction: column; gap: .2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.theme-ultra-modern .detail__spec { border-bottom: 1px dashed var(--line-strong); }
.detail__spec-k { font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.detail__spec-v { font-size: 1.05rem; font-weight: 500; }
.detail__specs li { display: flex; flex-direction: column; gap: .2rem; }
.detail__muted { color: var(--muted); font-style: italic; }
.detail__cta { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.theme-ultra-modern .detail__cta { border-top: 2px solid var(--fg); }
.detail__cta h4 { font-size: 1.4rem; margin-bottom: .5rem; }
.detail__cta p { color: var(--muted); font-size: 1rem; margin-bottom: 1.5rem; }
.related { border-top: 1px solid var(--line); }
.theme-ultra-modern .related { border-top: 4px solid var(--fg); }
.related .section-title { margin-bottom: 2.5rem; }
.related .proj-card__img { aspect-ratio: 4/3; }

/* ===================== LIGHTBOX ===================== */
.lightbox { position: fixed; inset: 0 auto 0 0; width: 100%; max-width: 100vw; z-index: 150; visibility: hidden; overflow: hidden; }
.lightbox.is-open { visibility: visible; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(4,10,20,.95); opacity: 0; transition: opacity .25s; backdrop-filter: blur(5px); }
.lightbox.is-open .lightbox__backdrop { opacity: 1; }
.lightbox__stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 3rem; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.theme-ultra-modern .lightbox__img { border-radius: 0; border: 4px solid #fff; }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; color: #fff; z-index: 2; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.lightbox__close:hover { background: rgba(255,255,255,.1); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; background: rgba(255,255,255,0.05); border: none; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background 0.2s; }
.lightbox__nav:hover { background: var(--orange); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ===================== FORMS ===================== */
.form-section { background: var(--surface); border-top: 1px solid var(--line); }
.theme-ultra-modern .form-section { border-top: 4px solid var(--fg); background: var(--bg); }
.form { max-width: 100%; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: repeat(2, 1fr); } }
.form__group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.form__group label, .form__radiogroup legend { font-size: .85rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--fg); }
.form__group label span { color: var(--orange); }
.form input, .form textarea, .form select {
  width: 100%; border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--bg); color: var(--fg); padding: .85rem 1rem; font-size: 1rem; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.theme-ultra-modern .form input, .theme-ultra-modern .form textarea, .theme-ultra-modern .form select {
  border: 2px solid var(--fg); border-radius: 0;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,31,.15); }
.theme-ultra-modern .form input:focus, .theme-ultra-modern .form textarea:focus, .theme-ultra-modern .form select:focus { box-shadow: 4px 4px 0 var(--fg); border-color: var(--fg); }
.form textarea { resize: vertical; }
.form__fieldset { border: none; padding: 0; margin: 0 0 1.5rem; }
.form__fieldset legend { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; padding: 0 0 .75rem; border-bottom: 1px solid var(--line); width: 100%; margin-bottom: 1.25rem; }
.form__hint { font-size: .8rem; color: var(--muted); margin: .25rem 0 0; }
.form__radiogroup { border: none; padding: 1.5rem 0 0; margin: 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .75rem; }
.theme-ultra-modern .form__radiogroup { border-top: 2px solid var(--fg); }
.radio { display: flex; align-items: center; gap: .75rem; text-transform: none; letter-spacing: 0; font-weight: 500; cursor: pointer; }
.radio input { width: 1.2rem; height: 1.2rem; accent-color: var(--orange); cursor: pointer; }
.form__actions { text-align: right; margin-top: 1.5rem; }

.alert { border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.95rem; display: flex; align-items: center; gap: 1rem; }
.alert--success { background: #e7f6ec; color: #1b5e33; border: 1px solid #b6e0c4; }
.alert--error { background: #fdecea; color: #9a2318; border: 1px solid #f3c1bb; }
.theme-ultra-modern .alert { border-radius: 0; border-width: 2px; }

/* Non-submitting "form unavailable" notice (deactivated / trashed forms) */
.form-unavailable { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); padding: 2rem 2.25rem; box-shadow: var(--card-shadow); }
.theme-ultra-modern .form-unavailable { border: 2px solid var(--fg); border-radius: 0; box-shadow: 6px 6px 0 var(--fg); }
.form-unavailable__title { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 .75rem; }
.form-unavailable__text { color: var(--muted); margin: 0 0 1.25rem; }
.form-unavailable__contacts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.form-unavailable__contacts li { display: flex; align-items: center; gap: .75rem; }
.form-unavailable__k { font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); min-width: 4rem; }

/* Contact card */
.contact-card { display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); max-width: 1100px; margin: 0 auto; box-shadow: var(--card-shadow); }
.theme-ultra-modern .contact-card { border: 2px solid var(--fg); border-radius: 0; box-shadow: 8px 8px 0 var(--fg); }
.theme-classic-modern .contact-card { border: none; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
@media (min-width: 768px) { .contact-card { grid-template-columns: 2fr 3fr; } }
.contact-card__aside { background: var(--navy); color: #fff; padding: 3rem 2.5rem; }
.theme-ultra-modern .contact-card__aside { border-right: 2px solid var(--fg); }
html.dark .theme-ultra-modern .contact-card__aside { border-right: none; }
.contact-card__title { font-size: 2.2rem; margin: 0 0 1rem; }
.contact-card__sub { color: rgba(255,255,255,.7); margin-bottom: 2.5rem; font-size: 1.1rem; }
.contact-card__details { display: flex; flex-direction: column; gap: 2rem; }
.contact-card__details a { color: #fff; font-size: 1.1rem; font-weight: 500; }
.contact-card__details a:hover { color: var(--orange); }
.contact-card__k { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.contact-card__form { padding: 3rem 2.5rem; }

/* Quote card */
.quote-card { max-width: 900px; margin: 0 auto; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--card-shadow); }
.theme-ultra-modern .quote-card { border: 2px solid var(--fg); border-radius: 0; box-shadow: 8px 8px 0 var(--fg); }
@media (min-width: 768px) { .quote-card { padding: 4rem; } }
.quote-card__head { text-align: center; margin-bottom: 3rem; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: #fff; border-top: 1px solid var(--line); position: relative; z-index: 10; }
html.dark .footer { background: #06101f; border-top: 1px solid rgba(255,255,255,0.1); }
html.dark .theme-ultra-modern .footer { background: #000; border-top: 2px solid #fff; }
html.dark .theme-classic-modern .footer { background: #141414; }
.theme-ultra-modern .footer { border-top: 4px solid var(--fg); }

/* CTA Band */
.footer__cta { padding: 5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 62%); }
.footer__cta::after { content: ""; position: absolute; z-index: -1; width: 28rem; height: 28rem; right: -9rem; top: -16rem; border-radius: 50%; background: radial-gradient(circle, rgba(255,102,51,.2) 0%, rgba(255,102,51,0) 68%); pointer-events: none; }
.theme-classic-modern .footer__cta { background: linear-gradient(135deg, rgba(198,156,109,0.05) 0%, transparent 100%); }
.footer__cta-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .footer__cta-inner { grid-template-columns: 1fr auto; gap: 4rem; } }
.footer__cta-content { max-width: 36rem; }
.footer__eyebrow { display: inline-flex; align-items: center; gap: 1rem; font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer__eyebrow-rule { width: 3rem; height: 2px; background: currentColor; }
.footer__cta-title { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: var(--hero-title-weight); line-height: 1.1; margin: 0 0 1rem; }
.theme-classic-modern .footer__cta-title { font-style: italic; }
.footer__cta-lead { color: rgba(255,255,255,.7); font-size: 1.25rem; margin: 0; line-height: 1.6; }
.footer__cta-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .footer__cta-actions { flex-direction: row; align-items: center; } }
.footer__cta-btn { min-width: 12rem; font-size: 1rem; }
.footer__cta .footer__cta-btn.btn--primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer__cta .footer__cta-btn.btn--primary:hover { background: #fff; border-color: #fff; color: var(--navy); }
.theme-ultra-modern .footer__cta-btn.btn--primary { background: #fff; color: #000; border-color: #fff; box-shadow: 4px 4px 0 var(--orange); }
.theme-ultra-modern .footer__cta-btn.btn--primary:hover { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 6px 6px 0 #fff; transform: translate(-2px, -2px); }

/* Main Grid */
.footer__main { padding: clamp(4rem, 7vw, 6rem) 0; position: relative; background: linear-gradient(180deg, rgba(255,255,255,.018), transparent 55%); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem 3rem; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: minmax(18rem, 1.6fr) minmax(10rem, .85fr) minmax(12rem, 1fr) minmax(9rem, .7fr); gap: 4rem; } }

/* Brand & Contact */
.footer__brand { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1100px) { .footer__brand { padding-right: 3.5rem; border-right: 1px solid rgba(255,255,255,.1); } }
.footer__logo-link { display: inline-block; transition: opacity .2s; }
.footer__logo-link:hover { opacity: .8; }
.footer__logo { height: 2.75rem; width: auto; object-fit: contain; }
.footer__about { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.7; margin: 0; max-width: 26rem; }
.footer__contact-info { display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; color: rgba(255,255,255,.9); }
.footer__contact-link { display: inline-flex; align-items: center; gap: 1rem; color: inherit; transition: color .2s, transform .2s; }
.footer__contact-link svg { color: rgba(255,255,255,.5); transition: color .2s; }
.footer__contact-link:not(.footer__contact-link--static):hover { color: var(--orange); transform: translateX(4px); }
.footer__contact-link:not(.footer__contact-link--static):hover svg { color: var(--orange); }
.footer__credentials { display: flex; flex-wrap: wrap; gap: .65rem; }
.footer__credentials span { display: inline-flex; align-items: center; min-height: 2rem; padding: .4rem .75rem; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.035); font-size: .76rem; font-weight: 650; letter-spacing: .025em; }
.theme-ultra-modern .footer__credentials span { border-radius: 0; border-width: 2px; }

/* Navigations */
.footer__nav { display: flex; flex-direction: column; gap: 2rem; }
.footer__heading { font-family: var(--font-sans); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0; border-left: 2px solid var(--orange); padding-left: 1rem; }
.theme-ultra-modern .footer__heading { border-left: 4px solid var(--orange); }
.footer__nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; font-size: 1rem; }
.footer__nav-list a { color: rgba(255,255,255,.65); position: relative; display: inline-block; transition: color .2s; padding-bottom: 2px; }
.footer__nav-list a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--orange); transition: width .3s ease; }
.footer__nav-list a:hover { color: #fff; }
.footer__nav-list a:hover::after { width: 100%; }
.footer__important-list { gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer__important-list li { border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__nav-list .footer__important-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; padding: .85rem .1rem; color: rgba(255,255,255,.72); }
.footer__nav-list .footer__important-link::after { display: none; }
.footer__important-link svg { flex: 0 0 auto; color: rgba(255,255,255,.3); transition: color .2s, transform .2s; }
.footer__important-link:hover svg { color: var(--orange); transform: translateX(4px); }
.footer a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 2px; }
.footer__subitem { padding-left: 1rem; position: relative; }
.footer__subitem::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.2); }

@media (min-width: 640px) {
  .footer__nav-list--cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
}

/* Social Nav */
.footer__social-list a { display: inline-flex; align-items: center; gap: 1rem; }
.footer__social-list a::after { display: none; }
.footer__social-list a svg { color: rgba(255,255,255,.4); transition: transform .3s ease, color .2s; }
.footer__social-list a:hover svg { color: var(--orange); transform: scale(1.1) rotate(5deg); }

/* Bottom Bar */
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.2); padding: 1.5rem 0; }
.theme-ultra-modern .footer__bottom { border-top: 2px solid rgba(255,255,255,.2); }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
@media (min-width: 768px) {
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__legal { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer__sitemap-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer__sitemap-link:hover { color: #fff; }
.footer__sep { opacity: .3; font-size: 1.2em; }
.footer__tagline { margin: 0; font-size: .85rem; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: .02em; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .footer__nav-list a::after { transition: none; }
  .footer__contact-link:not(.footer__contact-link--static):hover { transform: none; }
  .footer__important-link:hover svg { transform: none; }
  .footer__social-list a:hover svg { transform: none; }
  .theme-ultra-modern .footer__cta-btn.btn--primary:hover { transform: none; }
}

.whatsapp-fab { position: fixed; bottom: 2rem; right: 2rem; z-index: 90; width: 3.5rem; height: 3.5rem; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(37,211,102,0.3); transition: transform .2s, box-shadow .2s; }
.theme-ultra-modern .whatsapp-fab { border-radius: 0; border: 2px solid var(--fg); box-shadow: 4px 4px 0 var(--fg); }
.whatsapp-fab:hover { transform: translateY(-4px); box-shadow: 0 15px 25px rgba(37,211,102,0.4); color: #fff; }
.theme-ultra-modern .whatsapp-fab:hover { box-shadow: 6px 6px 0 var(--fg); }
@media (max-width: 768px) { .whatsapp-fab { bottom: 1.5rem; right: auto; left: calc(100vw - 4.5rem); width: 3rem; height: 3rem; } .whatsapp-fab svg { width: 24px; height: 24px; } }
.whatsapp-fab.is-footer-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(.9);
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { transition: none; }
}

/* ===================== ABOUT PAGE ===================== */
.about-hero { padding: 5rem 0 4rem; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .about-hero { border-bottom: 4px solid var(--fg); }
.about-hero__inner { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .about-hero__inner { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.about-hero__title { font-size: clamp(2.75rem, 6vw, 4.5rem); margin-bottom: 1.25rem; }
.about-hero__lead { color: var(--muted); font-size: 1.15rem; margin-bottom: 2rem; max-width: 38rem; }
.about-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.about-hero__fig { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--surface); }
.theme-ultra-modern .about-hero__fig { border: 2px solid var(--fg); }
.about-hero__fig img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.theme-ultra-modern .about-hero__stats { border: 2px solid var(--fg); border-radius: 0; background: var(--fg); }
.about-stat { background: var(--bg); padding: 1.5rem; display: flex; flex-direction: column; gap: .35rem; }
.about-stat__val { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--orange); line-height: 1; }
.about-stat__lbl { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.about-who { padding: 5rem 0; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .about-who { border-bottom: 4px solid var(--fg); }
.about-who__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-who__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-who__title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.5rem; }
.about-who__copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1rem; }
.about-who__fig { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.theme-ultra-modern .about-who__fig { border: 2px solid var(--fg); box-shadow: 8px 8px 0 var(--fg); }
.about-who__fig img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .about-who__inner .about-who__fig { order: -1; } }

.about-values { padding: 5rem 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.theme-ultra-modern .about-values { border-top: 2px solid var(--fg); border-bottom: 4px solid var(--fg); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.5rem 2rem; transition: transform .2s, box-shadow .2s; }
.theme-ultra-modern .value-card { border: 2px solid var(--fg); border-radius: 0; box-shadow: none; }
.theme-classic-modern .value-card { border: none; box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.theme-ultra-modern .value-card:hover { box-shadow: 6px 6px 0 var(--fg); }
.value-card__icon { display: flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: var(--radius); background: rgba(255,90,31,.1); color: var(--orange); margin-bottom: 1.5rem; }
.theme-ultra-modern .value-card__icon { border: 2px solid var(--fg); background: transparent; color: var(--fg); border-radius: 0; }
.value-card__title { font-size: 1.3rem; margin-bottom: .75rem; }
.value-card__text { color: var(--muted); font-size: 1rem; margin: 0; }

.about-what { padding: 5rem 0; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .about-what { border-bottom: 4px solid var(--fg); }
.about-what__inner { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .about-what__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-what__fig { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.theme-ultra-modern .about-what__fig { border: 2px solid var(--fg); box-shadow: 8px 8px 0 var(--fg); }
.about-what__fig img { width: 100%; height: 100%; object-fit: cover; }
.about-what__badge { position: absolute; right: -1rem; bottom: 3rem; background: var(--orange); color: #fff; border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center; box-shadow: 0 8px 24px rgba(255,90,31,.35); }
.theme-ultra-modern .about-what__badge { border-radius: 0; border: 2px solid var(--fg); box-shadow: 4px 4px 0 var(--fg); right: -0.5rem; }
.about-what__badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-what__badge-lbl { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; opacity: .9; margin-top: .25rem; }
.about-what__title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
.about-what__copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.about-what__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.about-what__list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1rem; color: var(--fg); }
.about-what__list svg { flex-shrink: 0; margin-top: .15rem; }

.about-mission { padding: 6rem 0; background: var(--navy); }
.about-mission__inner { max-width: 56rem; margin: 0 auto; text-align: center; position: relative; }
.about-mission__mark { margin: 0 auto 2rem; display: block; }
.about-mission__quote { font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 2rem); color: #fff; line-height: 1.5; margin: 0 0 2rem; font-weight: var(--hero-title-weight); letter-spacing: var(--hero-title-tracking); }
.theme-classic-modern .about-mission__quote { font-style: italic; }
.about-mission__attr { font-size: .8rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0; }

.about-process { padding: 5rem 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.theme-ultra-modern .about-process { border-top: 2px solid var(--fg); border-bottom: 4px solid var(--fg); }
.process-track { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .process-track { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-track { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.process-step { border-top: 3px solid var(--orange); padding-top: 1.5rem; }
.theme-ultra-modern .process-step { border-top: 4px solid var(--fg); }
.process-step__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: .75rem; }
.theme-ultra-modern .process-step__num { color: var(--fg); }
.process-step__title { font-size: 1.2rem; margin-bottom: .65rem; }
.process-step__text { color: var(--muted); font-size: .95rem; margin: 0; }

.about-cta { background: var(--navy); color: #fff; padding: 5rem 0; }
.theme-ultra-modern .about-cta { border-top: 4px solid var(--fg); }
.about-cta__inner { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .about-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; } }
.about-cta__title { font-size: clamp(2rem, 4vw, 3rem); margin: .5rem 0 1rem; }
.about-cta__sub { color: rgba(255,255,255,.7); font-size: 1.05rem; margin: 0; max-width: 36rem; }
.about-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

/* ===================== CONTACT PAGE ===================== */
.contact-hero { padding: 4.5rem 0 4rem; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .contact-hero { border-bottom: 4px solid var(--fg); }
.contact-hero__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-hero__inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }
.contact-hero__title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.contact-hero__lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.75rem; }
.contact-hero__promise { display: flex; align-items: center; gap: .75rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.25rem; font-size: .95rem; color: var(--fg); }
.theme-ultra-modern .contact-hero__promise { border: 2px solid var(--fg); border-radius: 0; }
.contact-hero__promise strong { color: var(--fg); }
.contact-hero__promise svg { flex-shrink: 0; color: var(--orange); }

.contact-hero__cards { display: flex; flex-direction: column; gap: .85rem; }
.contact-method { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; color: var(--fg); }
.theme-ultra-modern .contact-method { border: 2px solid var(--fg); border-radius: 0; box-shadow: none; }
.contact-method:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(255,90,31,.1); color: var(--fg); }
.theme-ultra-modern .contact-method:hover { box-shadow: 4px 4px 0 var(--fg); }
.contact-method--static { cursor: default; }
.contact-method--static:hover { border-color: var(--line); box-shadow: none; }
.contact-method__icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: var(--radius); background: rgba(255,90,31,.1); color: var(--orange); }
.theme-ultra-modern .contact-method__icon { border: 2px solid var(--fg); border-radius: 0; background: transparent; color: var(--fg); }
.contact-method__body { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.contact-method__label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-method__value { font-size: 1rem; font-weight: 600; color: var(--fg); }
.contact-method__hint { font-size: .78rem; color: var(--muted); }
.contact-method__arrow { flex-shrink: 0; color: var(--muted); }
.contact-method:hover .contact-method__arrow { color: var(--orange); }

.contact-body { padding: 5rem 0; border-top: 1px solid var(--line); }
.theme-ultra-modern .contact-body { border-top: 4px solid var(--fg); }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 2fr 3fr; gap: 5rem; } }

.contact-info-panel { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-panel__block { padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .contact-info-panel__block { border-bottom: 2px solid var(--fg); }
.contact-info-panel__block:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info-panel__heading { font-size: 1.5rem; margin-bottom: 1.25rem; }
.contact-use-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.contact-use-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1rem; color: var(--fg); }
.contact-use-list svg { flex-shrink: 0; margin-top: .2rem; }

.contact-hours-block__title { font-size: 1rem; font-weight: 700; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-sans); }
.contact-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; font-size: .95rem; color: var(--fg); margin-bottom: 1rem; }
.muted-text { color: var(--muted); }
.contact-hours-note { font-size: .85rem; color: var(--muted); margin: 0; }

.contact-form-panel { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.5rem; box-shadow: 0 8px 32px rgba(0,0,0,.05); }
.theme-ultra-modern .contact-form-panel { border: 2px solid var(--fg); border-radius: 0; box-shadow: 8px 8px 0 var(--fg); }
.theme-classic-modern .contact-form-panel { border: none; box-shadow: 0 12px 40px rgba(0,0,0,.06); }
.contact-form-panel__title { font-size: 1.75rem; margin-bottom: .5rem; }
.contact-form-panel__sub { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }

.contact-faq { padding: 4rem 0; background: var(--surface); border-top: 1px solid var(--line); }
.theme-ultra-modern .contact-faq { border-top: 4px solid var(--fg); }
.contact-faq-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .contact-faq-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-faq-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-faq-item { padding: 1.75rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); }
.theme-ultra-modern .contact-faq-item { border: 2px solid var(--fg); border-radius: 0; }
.contact-faq-item__q { font-size: 1.05rem; font-weight: 600; margin: 0 0 .75rem; font-family: var(--font-display); }
.contact-faq-item__a { color: var(--muted); font-size: .95rem; margin: 0; }

/* ===================== QUOTE PAGE ===================== */
.quote-hero { padding: 4.5rem 0 4rem; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .quote-hero { border-bottom: 4px solid var(--fg); }
.quote-hero__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .quote-hero__inner { grid-template-columns: 3fr 2fr; gap: 5rem; align-items: center; } }
.quote-hero__title { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 1rem; }
.quote-hero__lead { color: var(--muted); font-size: 1.1rem; margin: 0; }
.quote-hero__trust { display: flex; flex-direction: column; gap: .85rem; }
@media (min-width: 1024px) { .quote-hero__trust { gap: 1rem; } }
.quote-trust-badge { display: flex; align-items: center; gap: .85rem; padding: 1rem 1.25rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); font-size: .95rem; color: var(--fg); }
.theme-ultra-modern .quote-trust-badge { border: 2px solid var(--fg); border-radius: 0; }
.quote-trust-badge svg { flex-shrink: 0; }

.quote-body { padding: 4.5rem 0 5rem; border-top: 1px solid var(--line); }
.theme-ultra-modern .quote-body { border-top: 4px solid var(--fg); }
.quote-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .quote-layout { grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; } }

.quote-form-panel { min-width: 0; }
.quote-form-section { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.theme-ultra-modern .quote-form-section { border: 2px solid var(--fg); border-radius: 0; }
.quote-form-section__label { display: flex; align-items: center; gap: 1rem; background: var(--surface); padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .quote-form-section__label { border-bottom: 2px solid var(--fg); }
.quote-form-section__num { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--orange); color: #fff; font-size: .8rem; font-weight: 700; flex-shrink: 0; }
.theme-ultra-modern .quote-form-section__num { border-radius: 0; }
.quote-form-section__title { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; margin: 0; letter-spacing: .03em; }
.quote-form-section__fields { padding: 1.5rem; }
.quote-form-section__fields .form__group:last-child { margin-bottom: 0; }
.quote-form-submit { display: flex; flex-direction: column; align-items: flex-start; gap: .85rem; text-align: left; margin-top: 2rem; }
.quote-form-submit__note { color: var(--muted); font-size: .8rem; margin: 0; }
.form__hint--inline { font-weight: 400; font-size: .8rem; color: var(--muted); text-transform: none; letter-spacing: 0; }

.quote-sidebar { position: relative; }
@media (min-width: 1024px) { .quote-sidebar__inner { position: sticky; top: calc(var(--header-height) + 2rem); } }
.quote-sidebar-block { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.25rem; }
.theme-ultra-modern .quote-sidebar-block { border: 2px solid var(--fg); border-radius: 0; }
.theme-classic-modern .quote-sidebar-block { border: none; box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.quote-sidebar-block--contact { background: var(--navy); border-color: var(--navy); }
.quote-sidebar-block__title { font-family: var(--font-sans); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 1.25rem; }
.quote-sidebar-block--contact .quote-sidebar-block__title { color: rgba(255,255,255,.55); }

.quote-process { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.quote-process__step { display: flex; gap: 1rem; align-items: flex-start; }
.quote-process__num { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255,90,31,.12); color: var(--orange); font-size: .75rem; font-weight: 800; margin-top: .15rem; }
.theme-ultra-modern .quote-process__num { border-radius: 0; background: transparent; border: 2px solid var(--fg); color: var(--fg); }
.quote-process__step strong { display: block; font-size: .95rem; margin-bottom: .3rem; }
.quote-process__step p { color: var(--muted); font-size: .85rem; margin: 0; }

.quote-includes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.quote-includes li { display: flex; align-items: center; gap: .75rem; font-size: .95rem; color: var(--fg); }

.quote-sidebar-call { display: flex; align-items: center; gap: .85rem; padding: .85rem 1.25rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); color: #fff; font-size: 1.05rem; font-weight: 600; transition: background .2s; margin-bottom: .75rem; }
.theme-ultra-modern .quote-sidebar-call { border-radius: 0; }
.quote-sidebar-call:hover { background: rgba(255,255,255,.18); color: #fff; }
.quote-sidebar-hours { font-size: .78rem; color: rgba(255,255,255,.55); margin: 0; }

/* ===================== DRAWER NESTED MENUS ===================== */
.drawer__nav-list, .drawer__submenu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.drawer__nav-list { gap: 1.5rem; }
.drawer__nav-item { position: relative; }
.drawer__nav-item.has-children { display: grid; grid-template-columns: 1fr auto; align-items: center; }
.drawer__submenu {
  grid-column: 1 / -1; margin: .75rem 0 0 1rem; gap: 1rem;
}
.drawer__submenu .drawer__link { font-size: 1.1rem; }
.drawer__submenu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; background: transparent; border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--fg);
}
.drawer__submenu-toggle svg { transition: transform .2s ease; }
/* JS-enhanced: collapse drawer submenus and reveal on toggle. Without JS the
   submenus stay open so nothing is ever hidden. */
.js .drawer__submenu { display: none; }
.js .drawer__nav-item.is-open > .drawer__submenu { display: flex; }
.js .drawer__nav-item.is-open > .drawer__submenu-toggle svg { transform: rotate(180deg); }

/* ---- Footer nested items (indent children) ---- */
.footer__subitem--l2 a { padding-left: 1rem; opacity: .85; }
.footer__subitem--l3 a { padding-left: 2rem; opacity: .75; }

/* =========================================================================
   HOMEPAGE SPECIFIC (Redesign)
   ========================================================================= */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.theme-ultra-modern .home-hero {
  border-bottom: 4px solid var(--fg);
}
.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
  /* Media is first in DOM for mobile-first display; restore copy to left on desktop */
  .home-hero__content { order: -1; }
}
/* On mobile the product boxes image is redundant — the facility photo leads; hide it */
@media (max-width: 1023px) {
  .home-hero__image-wrapper { display: none; }
}
.home-hero__content {
  max-width: 42rem;
  z-index: 2;
}
.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.home-hero__eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: currentColor;
}
.home-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.theme-classic-modern .home-hero__title {
  font-style: italic;
}
.home-hero__lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.home-hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-strong);
}
.home-hero__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.home-hero__perk svg {
  color: var(--orange);
}
.home-hero__media {
  position: relative;
  z-index: 1;
}
.home-hero__image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  background: var(--bg);
}
.theme-ultra-modern .home-hero__image-wrapper {
  border: 4px solid var(--fg);
  box-shadow: 12px 12px 0 var(--fg);
  border-radius: 0;
}
.theme-classic-modern .home-hero__image-wrapper {
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.home-hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero facility preview strip */
.home-hero__facility-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
@media (min-width: 1024px) {
  .home-hero__facility-preview {
    margin-top: 0.75rem;
    aspect-ratio: 16 / 6;
  }
}
.theme-ultra-modern .home-hero__facility-preview {
  border-radius: 0;
  border: 4px solid var(--fg);
  box-shadow: 6px 6px 0 var(--fg);
}
.home-hero__facility-preview picture,
.home-hero__facility-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
.home-hero__facility-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.home-hero__facility-caption span {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.home-hero__facility-caption a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.home-hero__facility-caption a:hover { opacity: 1; }

/* Logos */
.home-logos {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
}
.home-logos__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.home-logos__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.6;
}
.home-logos__track img {
  height: 2.5rem;
  object-fit: contain;
  filter: grayscale(1);
}
html.dark .home-logos__track img { filter: brightness(0) invert(1); }

/* Features */
.home-features {
  padding: 6rem 0;
  background: var(--bg);
}
.home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .home-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-feature-card {
  padding: 2rem;
  border-radius: var(--card-radius);
  background: var(--surface);
  border: var(--card-border);
  transition: transform 0.3s ease;
}
.theme-ultra-modern .home-feature-card {
  border: 2px solid var(--fg);
  border-radius: 0;
}
.home-feature-card:hover {
  transform: translateY(-5px);
}
.home-feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--orange);
  margin-bottom: 1.5rem;
  border: 1px solid var(--line-strong);
}
.theme-ultra-modern .home-feature-icon {
  border: 2px solid var(--fg);
  border-radius: 0;
  box-shadow: 2px 2px 0 var(--fg);
}
.home-feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.home-feature-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Bento Styles */
.home-styles {
  padding: 6rem 0;
  background: var(--navy);
  color: #fff;
  border-top: 1px solid var(--line);
}
.theme-ultra-modern .home-styles {
  border-top: 4px solid var(--fg);
}
.home-styles__head {
  text-align: center;
  margin-bottom: 4rem;
}
.home-styles__eyebrow {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.home-styles__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
}
.home-styles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .home-styles__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 280px;
  }
}
.home-style-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
}
.theme-ultra-modern .home-style-card {
  border: 2px solid #fff;
  border-radius: 0;
}
.home-style-card:hover {
  border-color: var(--orange);
}
.home-style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  opacity: 0.8;
}
.home-style-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.home-style-card__content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.home-style-card__title {
  font-size: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.home-style-card__title svg {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}
.home-style-card:hover .home-style-card__title svg {
  opacity: 1;
  transform: translateX(0);
}
.home-style-card--large {
  grid-column: span 1;
  aspect-ratio: 1/1;
}
.home-style-card--medium,
.home-style-card--small {
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .home-style-card--large {
    grid-column: span 3;
    grid-row: span 2;
    aspect-ratio: auto;
  }
  .home-style-card--medium {
    grid-column: span 3;
    grid-row: span 1;
    aspect-ratio: auto;
  }
  .home-style-card--small {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: auto;
  }
}
.home-styles__actions {
  margin-top: 3rem;
  text-align: center;
}

/* Materials, printing & finishes */
.home-options {
  padding: 6rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.theme-ultra-modern .home-options {
  border-bottom: 4px solid var(--fg);
}
.home-options__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .home-options__head {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.home-options__head .section-title,
.home-options__head .section-lead {
  margin: 0;
}
.home-options__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
@media (min-width: 640px) {
  .home-options__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home-options__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.theme-ultra-modern .home-options__grid {
  border: 2px solid var(--fg);
  border-radius: 0;
  background: var(--fg);
  gap: 2px;
}
.home-option-card {
  min-width: 0;
  padding: 2rem;
  background: var(--surface);
  transition: background-color .2s, transform .2s;
}
.home-option-card:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.home-option-card__num {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.home-option-card h3 {
  margin-bottom: .75rem;
  font-size: 1.25rem;
}
.home-option-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}
.home-options__note {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: var(--surface);
  color: var(--muted);
  font-size: .95rem;
}
.home-options__note strong {
  color: var(--fg);
}
.home-options__note a {
  color: var(--orange);
  font-weight: 700;
}
@media (min-width: 1024px) {
  .home-options__note {
    flex-direction: row;
    align-items: center;
  }
  .home-options__note a {
    margin-left: auto;
    white-space: nowrap;
  }
}
.theme-ultra-modern .home-options__note {
  border: 2px solid var(--fg);
  border-left-width: 6px;
}

/* Process */
.home-process {
  padding: 6rem 0;
  background: var(--bg);
}
.home-process__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-process__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.home-process__image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/5;
}
.theme-ultra-modern .home-process__image {
  border: 4px solid var(--fg);
  border-radius: 0;
  box-shadow: -12px 12px 0 var(--fg);
}
.home-process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-process__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.home-process-step {
  display: flex;
  gap: 1.5rem;
}
.home-process-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.home-process-step__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.home-process-step__content p {
  color: var(--muted);
  font-size: 0.95rem;
}
.home-process__actions {
  margin-top: 2.5rem;
}

/* Why Us / Trust */
.home-trust {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.theme-ultra-modern .home-trust {
  border-top: 4px solid var(--fg);
}
.home-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .home-trust__grid {
    grid-template-columns: 1fr 2fr;
  }
}
.home-trust__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.home-trust__lead {
  margin: 1.5rem 0 2rem;
}
@media (min-width: 640px) {
  .home-trust__features {
    grid-template-columns: 1fr 1fr;
  }
}
.home-trust-feat h4 {
  font-size: 1.15rem;
  margin: 1rem 0 0.5rem;
}
.home-trust-feat p {
  color: var(--muted);
  font-size: 0.9rem;
}
.home-trust-feat svg {
  color: var(--orange);
  width: 24px;
  height: 24px;
}

/* Stats */
.home-stats {
  padding: 4rem 0;
  background: var(--navy);
  color: #fff;
}
.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .home-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-stat__val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.home-stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
}

/* Our Facility */
.home-facility {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.home-facility__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-facility__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
/* Photo collage */
.home-facility__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.home-facility__photo {
  overflow: hidden;
  border-radius: var(--card-radius);
}
.theme-ultra-modern .home-facility__photo {
  border-radius: 0;
}
.home-facility__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.home-facility__photo:hover img {
  transform: scale(1.03);
}
.home-facility__photo--main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.home-facility__photo--secondary,
.home-facility__photo--tertiary {
  aspect-ratio: 4 / 3;
}
/* Copy column */
.home-facility__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.75rem;
}
.home-facility__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.home-facility__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
}
.home-facility__list svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.15em;
}

/* Testimonials */
.home-testimonials {
  padding: 6rem 0;
  background: var(--bg);
}
.home-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .home-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-testimonial {
  padding: 2.5rem;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--surface);
}
.theme-ultra-modern .home-testimonial {
  border: 2px solid var(--fg);
  border-radius: 0;
}
.home-testimonial p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.theme-classic-modern .home-testimonial p {
  font-style: italic;
}
.home-testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home-testimonial__author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}
.home-testimonial__author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.home-testimonial__author-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* FAQ */
.home-faq {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.theme-ultra-modern .home-faq {
  border-top: 4px solid var(--fg);
}
.home-faq__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.home-faq__list {
  margin-top: 3rem;
  border-top: 1px solid var(--line-strong);
}
.theme-ultra-modern .home-faq__list {
  border-top: 2px solid var(--fg);
}
.home-faq__item {
  border-bottom: 1px solid var(--line-strong);
}
.theme-ultra-modern .home-faq__item {
  border-bottom: 2px solid var(--fg);
}
.home-faq__q {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.5rem 2rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.home-faq__q::-webkit-details-marker {
  display: none;
}
.home-faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.4rem;
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform 0.2s;
}
.home-faq__item[open] .home-faq__q::after {
  content: "–";
}
.home-faq__a {
  padding: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.home-faq__actions {
  margin-top: 3rem;
  text-align: center;
}

/* CTA */
.home-cta {
  padding: 6rem 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
  position: relative;
}
.theme-ultra-modern .home-cta {
  border-top: 4px solid var(--fg);
}
.home-cta__inner {
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.home-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.home-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}
.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


/* Industries added */
.home-industries { padding: 6rem 0; background: var(--bg); border-top: 1px solid var(--line); }
.theme-ultra-modern .home-industries { border-top: 4px solid var(--fg); }
.home-industries__head { margin-bottom: 0; }
.home-ind-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
@media (min-width: 768px) { .home-ind-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .home-ind-grid { grid-template-columns: repeat(6, 1fr); } }
.home-ind-card { padding: 1.5rem 1rem; text-align: center; border-radius: var(--radius); border: 1px solid var(--line-strong); background: var(--surface); transition: transform 0.2s; }
.theme-ultra-modern .home-ind-card { border: 2px solid var(--fg); border-radius: 0; box-shadow: 4px 4px 0 var(--fg); }
.home-ind-card:hover { transform: translateY(-3px); }
.home-ind-icon { margin: 0 auto 1rem; color: var(--orange); width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; }
.home-ind-title { font-size: 0.95rem; font-weight: 700; margin: 0; }

/* Process fix */
.home-process-step__num { flex-shrink: 0; }

/* Hero fix for mobile */
@media (max-width: 1023px) {
  .home-hero__inner { gap: 2rem; }
  .home-hero__perks { flex-direction: column; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-feature-card,
  .home-style-card,
  .home-style-card img,
  .home-style-card__title svg,
  .home-option-card,
  .home-ind-card,
  .home-faq__q::after {
    transition: none;
  }
  .home-feature-card:hover,
  .home-option-card:hover,
  .home-ind-card:hover {
    transform: none;
  }
  .home-style-card:hover img {
    transform: none;
  }
}

/* ===================== SPECIFICATIONS ===================== */
.specs__grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.theme-ultra-modern .specs__grid { border-top: 2px solid var(--fg); }
@media (min-width: 640px) { .specs__grid { grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; } }
.specs__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.theme-ultra-modern .specs__row { border-bottom: 2px solid var(--fg); }
.specs__label { margin: 0; font-weight: 600; color: var(--fg); }
.specs__value { margin: 0; color: var(--muted); text-align: right; }
@media (max-width: 400px) { .specs__value { text-align: left; } }

/* ===================== COMPARISON TABLE ===================== */
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
.compare__scroll:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.theme-ultra-modern .compare__scroll { border: 2px solid var(--fg); border-radius: 0; }
.compare__table { width: 100%; border-collapse: collapse; min-width: 32rem; }
.compare__table th, .compare__table td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.compare__table thead th { background: var(--surface); font-weight: 700; color: var(--fg); white-space: nowrap; }
.compare__table tbody tr:last-child th, .compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__rowlabel { font-weight: 600; color: var(--fg); background: var(--surface); }
.compare__table td { color: var(--muted); }
@media (max-width: 640px) {
  .compare__scroll { overflow-x: visible; border: 0; border-radius: 0; }
  .compare__table { min-width: 0; }
  .compare__table thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .compare__table, .compare__table tbody, .compare__table tr, .compare__table th, .compare__table td { display: block; }
  .compare__table tr { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
  .theme-ultra-modern .compare__table tr { border: 2px solid var(--fg); border-radius: 0; }
  .compare__table td { display: flex; justify-content: space-between; gap: 1rem; text-align: right; border-bottom: 1px solid var(--line); }
  .compare__table td::before { content: attr(data-label); font-weight: 600; color: var(--fg); text-align: left; }
  .compare__table td:last-child { border-bottom: 0; }
}

/* ===================== RESOURCE DOWNLOADS ===================== */
.resources__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .resources__list { grid-template-columns: repeat(2, 1fr); } }
.resource__link { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); color: var(--fg); transition: transform .2s, border-color .2s, box-shadow .2s; }
.theme-ultra-modern .resource__link { border: 2px solid var(--fg); border-radius: 0; }
.resource__link:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: var(--card-shadow); text-decoration: none; }
.resource__icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: var(--radius); background: var(--surface); color: var(--orange); }
.resource__body { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.resource__title { font-weight: 600; }
.resource__desc { color: var(--muted); font-size: .9rem; }
.resource__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .2rem; }
.resource__type, .resource__size { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: var(--surface); border-radius: 99px; padding: .2rem .6rem; }

/* ===================== SECTION GALLERY ===================== */
.sec-gallery__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .sec-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .sec-gallery__grid { grid-template-columns: repeat(3, 1fr); } }
.sec-gallery__figure { margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.sec-gallery__link { display: block; overflow: hidden; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.theme-ultra-modern .sec-gallery__link { border: 2px solid var(--fg); border-radius: 0; }
.sec-gallery__link img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .3s ease; }
.sec-gallery__link:hover img { transform: scale(1.04); }
.sec-gallery__caption { display: flex; flex-direction: column; gap: .2rem; }
.sec-gallery__title { font-weight: 600; color: var(--fg); }
.sec-gallery__desc { color: var(--muted); font-size: .9rem; }

/* ===================== RELATED LINKS ===================== */
.related-links__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .related-links__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .related-links__grid { grid-template-columns: repeat(3, 1fr); } }
.related-link { display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); color: var(--fg); transition: transform .2s, border-color .2s, box-shadow .2s; }
.theme-ultra-modern .related-link { border: 2px solid var(--fg); border-radius: 0; }
.related-link:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--card-shadow); text-decoration: none; }
.related-link__title { font-size: 1.2rem; margin: 0 0 .5rem; }
.related-link__desc { color: var(--muted); flex: 1; margin: 0 0 .75rem; }
.related-link__cta { margin-top: auto; }

@media (prefers-reduced-motion: reduce) {
  .resource__link, .sec-gallery__link img, .related-link { transition: none; }
  .resource__link:hover, .related-link:hover { transform: none; }
  .sec-gallery__link:hover img { transform: none; }
}

/* ===================== PORTFOLIO CATEGORY CONTENT ===================== */
.category-content { padding: 4rem 0; border-top: 1px solid var(--line); }
.category-content--intro { padding-top: 3rem; background: var(--surface); }
.category-content__intro,
.category-content__supporting { max-width: 52rem; }
.category-content__intro { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--fg); }
.category-content__supporting { margin-top: 1.25rem; color: var(--muted); }
.category-content p:last-child { margin-bottom: 0; }
.category-content .faq-list { max-width: 52rem; margin: 2rem 0 0; }
.category-content .faq-list__q { margin-top: 1.25rem; font-weight: 700; color: var(--fg); }
.category-content .faq-list__a { margin: .45rem 0 0; color: var(--muted); }
.category-content .related-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.category-content .related-links a {
  display: inline-flex;
  padding: .7rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
}
.category-content .related-links a:hover { border-color: var(--orange); text-decoration: none; }
.theme-ultra-modern .category-content .related-links a { border-width: 2px; border-radius: 0; }

/* ===================== MOBILE STICKY QUOTE BAR ===================== */
.quote-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: auto;
  width: 100%; max-width: 100vw;
  z-index: 80;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.theme-ultra-modern .quote-bar { border-top: 2px solid var(--fg); }
@media (max-width: 1023px) {
  .quote-bar { display: block; }
}
.quote-bar.is-visible { transform: translateY(0); }
.quote-bar.is-footer-hidden { transform: translateY(100%); }
.quote-bar__btn { width: 100%; justify-content: center; }
@media (prefers-reduced-motion: reduce) {
  .quote-bar { transition: none; }
}

/* ===================== MODAL ===================== */
.modal { position: fixed; inset: 0 auto 0 0; width: 100%; max-width: 100vw; z-index: 200; visibility: hidden; display: flex; align-items: center; justify-content: center; padding: 1rem; overflow: hidden; }
.modal.is-open { visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,27,51,.8); opacity: 0; transition: opacity .3s; backdrop-filter: blur(4px); }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; width: 100%; min-width: 0; max-width: min(640px, calc(100vw - 2rem)); max-height: 92vh; background: var(--bg);
  border-radius: calc(var(--radius) * 1.3); display: flex; flex-direction: column;
  transform: scale(0.95) translateY(10px); opacity: 0; transition: transform .3s, opacity .3s;
  box-shadow: 0 25px 80px rgba(10,27,51,.25); border: 1px solid var(--line);
  overflow: hidden;
}
.theme-ultra-modern .modal__panel { border: 4px solid var(--fg); box-shadow: 12px 12px 0 var(--fg); border-radius: 0; }
.theme-classic-modern .modal__panel { border-radius: 0; }
.modal.is-open .modal__panel { transform: scale(1) translateY(0); opacity: 1; }
.modal__header { display: flex; align-items: flex-start; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); background: var(--surface); }
.theme-ultra-modern .modal__header { border-bottom: 4px solid var(--fg); }
.modal__header-content { display: flex; flex-direction: column; gap: 0.2rem; }
.modal__eyebrow { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.modal__title { font-size: 1.18rem; font-family: var(--font-display); font-weight: 700; margin: 0; color: var(--fg); }
.modal__body { padding: 1.25rem 1.5rem; overflow-y: auto; overscroll-behavior: contain; }

/* Quick Quote Live Snapshot */
.quote-snapshot {
  margin-bottom: 1.15rem; padding: 0.85rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.quote-snapshot__header {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 0.45rem;
}
.quote-snapshot__summary { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.86rem; color: var(--fg); }
.qs-item { line-height: 1.4; }
.qs-item strong { color: var(--muted); font-size: 0.76rem; text-transform: uppercase; margin-right: 0.35rem; }
.qs-item--price { color: var(--orange); font-weight: 700; font-size: 0.95rem; margin-top: 0.2rem; }
.qs-unit-tag { font-size: 0.8rem; font-weight: 500; opacity: 0.85; }

/* Quick Quote Form Grid */
.quick-quote-form { display: flex; flex-direction: column; gap: 1rem; }
.qq-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 540px) {
  .qq-grid { grid-template-columns: repeat(2, 1fr); }
  .qq-field--full { grid-column: 1 / -1; }
}
.qq-field { display: flex; flex-direction: column; gap: 0.35rem; }
.qq-field label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted);
}
.qq-field .req { color: #ef4444; margin-left: 0.15rem; }
.qq-field .opt { font-weight: 400; text-transform: none; opacity: 0.75; font-size: 0.7rem; }
.qq-input, .qq-textarea {
  width: 100%; border: 1px solid var(--line-strong); background: var(--bg);
  border-radius: var(--radius); padding: 0.65rem 0.85rem; color: var(--fg);
  font-family: inherit; font-size: 0.92rem; transition: all 0.2s ease;
}
.qq-input:focus, .qq-textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 15%, transparent);
}
.qq-textarea { resize: vertical; min-height: 54px; }
.qq-file-wrap {
  position: relative; border: 1px dashed var(--line-strong);
  border-radius: var(--radius); padding: 0.45rem 0.65rem;
  background: var(--bg); display: flex; flex-direction: column; gap: 0.2rem;
}
.qq-file-input { font-size: 0.8rem; color: var(--muted); width: 100%; }
.qq-file-hint { font-size: 0.68rem; color: var(--muted); opacity: 0.8; }

/* Quick Quote Action Buttons */
.qq-actions { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.25rem; }
.qq-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; box-shadow: 0 4px 14px color-mix(in srgb, var(--orange) 35%, transparent);
}
.qq-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px color-mix(in srgb, var(--orange) 45%, transparent); }

/* ===================== ESTIMATOR (Modern Redesign) ===================== */
.estimator {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.25);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(10,27,51,0.08);
}
.theme-ultra-modern .estimator { border: 3px solid var(--fg); border-radius: 0; box-shadow: 6px 6px 0 var(--fg); }
.theme-classic-modern .estimator { background: var(--surface); border: 1px solid var(--line-strong); border-radius: 0; }

/* Header bar */
.estimator__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em;
  gap: 0.75rem;
}
.estimator__head-left { display: flex; align-items: center; gap: 0.5rem; }
.estimator__head-left svg { opacity: 0.85; }
.estimator__badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); border-radius: 999px;
  padding: 0.2rem 0.6rem; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* Sections */
.est-section {
  padding: 0.9rem 1.25rem 0;
}
.est-section:last-of-type { padding-bottom: 0.9rem; }
.est-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.5rem;
}
.est-label-sub { text-transform: none; letter-spacing: 0; font-weight: 500; opacity: 0.75; }

/* Quantity row */
.est-qty-row { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.est-qty-input {
  width: 5.5rem; min-width: 0; height: 2.5rem; flex-shrink: 0;
  border: 1px solid var(--line-strong); background: var(--surface);
  border-radius: var(--radius); padding: 0 0.75rem;
  color: var(--fg); font-family: inherit; font-size: 1rem; font-weight: 600;
  transition: border-color 0.2s;
}
.est-qty-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 15%, transparent); }
.est-qty-presets { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.est-preset-btn {
  height: 2.5rem; padding: 0 0.7rem;
  font-size: 0.8rem; font-weight: 700;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--surface); color: var(--muted);
  cursor: pointer; transition: all 0.18s ease; white-space: nowrap;
}
.est-preset-btn:hover { border-color: var(--orange); color: var(--orange); background: color-mix(in srgb, var(--orange) 8%, transparent); }
.est-preset-btn.is-active { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 2px 8px color-mix(in srgb, var(--orange) 35%, transparent); }

/* Dimensions row */
.est-dims-row { display: flex; align-items: center; gap: 0.4rem; }
.est-dim-input {
  flex: 1; min-width: 0; height: 2.5rem;
  border: 1px solid var(--line-strong); background: var(--surface);
  border-radius: var(--radius); padding: 0 0.5rem;
  color: var(--fg); font-family: inherit; font-size: 0.95rem; text-align: center;
  transition: border-color 0.2s;
}
.est-dim-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 15%, transparent); }
.est-dim-sep { color: var(--muted); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* Pill option selectors */
.est-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.est-pill {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem; font-weight: 600;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: var(--surface); color: var(--muted);
  cursor: pointer; transition: all 0.18s ease; line-height: 1.4;
  white-space: nowrap;
}
.est-pill:hover { border-color: var(--orange); color: var(--orange); }
.est-pill.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.est-hidden-select { display: none !important; }

/* Result panel */
.estimator__result {
  background: var(--navy); color: #fff;
  padding: 1.25rem 1.25rem 1rem;
  margin-top: 1rem;
  position: relative;
}
.est-result-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
.est-result-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.est-savings-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--orange) 25%, transparent);
  color: var(--orange); border-radius: 999px;
  padding: 0.15rem 0.55rem;
  border: 1px solid color-mix(in srgb, var(--orange) 40%, transparent);
  transition: opacity 0.3s;
}
.est-savings-badge:empty { display: none; }
.est-total {
  font-size: 1.9rem; font-weight: 800; line-height: 1.1;
  color: var(--orange); margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
  transition: transform 0.15s ease;
}
.est-total.is-updating { transform: scale(0.97); opacity: 0.7; }
.est-unit { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* Volume tier list */
.est-tiers { margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.est-tiers__title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.65rem; }
.est-tiers-list { display: flex; flex-direction: column; gap: 0.45rem; }
.est-tier-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem; align-items: center;
  padding: 0.4rem 0.6rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.18s, border-color 0.18s;
}
.est-tier-row.is-active {
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  border-color: color-mix(in srgb, var(--orange) 35%, transparent);
}
.est-tier-qty { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.7); white-space: nowrap; }
.est-tier-qty span { font-weight: 400; opacity: 0.65; }
.est-tier-row.is-active .est-tier-qty { color: var(--orange); }
.est-tier-price { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-align: right; white-space: nowrap; }
.est-tier-row.is-active .est-tier-price { color: var(--orange); font-weight: 700; }
.est-tier-bar { grid-column: 1 / -1; height: 2px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.est-tier-bar__fill { height: 100%; background: var(--orange); border-radius: 999px; width: 0; transition: width 0.4s cubic-bezier(0.16,1,0.3,1); }

.est-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin: 0.85rem 0 0; line-height: 1.5; }

/* CTA button inside estimator */
.estimator__cta {
  margin: 1rem 1.25rem 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: calc(100% - 2.5rem);
  box-shadow: 0 4px 14px -2px color-mix(in srgb, var(--orange) 40%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.estimator__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -2px color-mix(in srgb, var(--orange) 55%, transparent); }

/* Modal footer with action buttons */
.modal__footer {
  display: flex; gap: 0.75rem; padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
  flex-wrap: wrap;
}
.modal-action-btn {
  flex: 1; min-width: 140px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s ease; border: none; cursor: pointer; white-space: nowrap;
}
.modal-action-btn--quote {
  background: var(--navy); color: #fff;
  box-shadow: 0 2px 8px rgba(10,27,51,0.2);
}
.modal-action-btn--quote:hover { background: color-mix(in srgb, var(--navy) 85%, var(--orange)); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,27,51,0.3); }
.modal-action-btn--wa {
  background: #25D366; color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,0.25);
}
.modal-action-btn--wa:hover { background: #1fbd5a; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,0.4); }

/* Theme overrides */
.theme-ultra-modern .estimator__head { border-bottom: 2px solid rgba(255,255,255,0.2); }
.theme-ultra-modern .est-preset-btn.is-active,
.theme-ultra-modern .est-pill.is-active { border-radius: 0; }
.theme-classic-modern .estimator__result { border-radius: 0; }


/* ===================== PRODUCTS LISTING ===================== */
.products-grid { display: grid; gap: 2rem; }
.product-card.is-hidden { display: none; }
.product-results-count { margin: -.5rem 0 1.25rem; color: var(--muted); font-size: .9rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: flex; flex-direction: column; background: var(--bg); border: var(--card-border);
  border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s; position: relative;
}
.theme-ultra-modern .product-card { border: 2px solid var(--fg); box-shadow: 4px 4px 0 var(--fg); border-radius: 0; }
.theme-ultra-modern .product-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--fg); }
.theme-classic-modern .product-card { border: none; background: var(--surface); border-radius: 0; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.theme-classic-modern .product-card:hover { box-shadow: none; }

.product-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--surface); position: relative; }
.theme-ultra-modern .product-card__img { border-bottom: 2px solid var(--fg); }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-card__moq {
  position: absolute; top: 1rem; right: 1rem; background: var(--bg); color: var(--fg);
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 2;
}
.theme-ultra-modern .product-card__moq { border: 2px solid var(--fg); box-shadow: 2px 2px 0 var(--fg); border-radius: 0; }

.product-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-size: 1.25rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.product-card__desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; }
.product-card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.product-card__meta--compact { margin-top: 0.5rem; padding-top: 0; border-top: 0; }
.product-card__cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.product-card__price { font-weight: 700; color: var(--orange); font-size: 0.9rem; }

/* ===================== PRODUCT & TEMPLATE DETAIL PAGES ===================== */
.product-hero { border-bottom: 1px solid var(--line); background: var(--surface); padding: 1.25rem 0 2.5rem; }
.theme-ultra-modern .product-hero { border-bottom: 4px solid var(--fg); }
.product-layout { display: grid; gap: 2rem; margin-top: 1rem; min-width: 0; }
@media (min-width: 1024px) { .product-layout { grid-template-columns: 1fr 390px; gap: 2.5rem; } }
.product-main, .product-aside, .product-actions { min-width: 0; }
.product-main { display: flex; flex-direction: column; gap: 1.25rem; }

/* Header Block */
.product-header-block { display: flex; flex-direction: column; gap: 0.45rem; }
.detail__cats { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip--code { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; letter-spacing: 0.04em; }
.detail__title { font-size: clamp(1.8rem, 3.5vw, 2.45rem); font-family: var(--font-display); font-weight: 800; margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
.detail__lead { font-size: 0.98rem; color: var(--muted); line-height: 1.5; margin: 0.15rem 0 0; }

/* Trust Strip */
.product-trust-strip { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.35rem; }
.product-trust-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.3rem 0.7rem;
  font-size: 0.76rem; font-weight: 600; color: var(--fg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* Gallery */
.product-gallery {
  border-radius: calc(var(--radius) * 1.2); overflow: hidden;
  background: var(--bg); border: 1px solid var(--line);
  box-shadow: 0 4px 20px -4px rgba(10,27,51,0.06);
  padding: 0.75rem;
}
.theme-ultra-modern .product-gallery { border: 2px solid var(--fg); border-radius: 0; }
.product-gallery__main { aspect-ratio: 16/10; overflow: hidden; position: relative; border-radius: var(--radius); background: #fff; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__main button { width: 100%; height: 100%; padding: 0; border: none; background: transparent; cursor: zoom-in; position: relative; }
.gallery-zoom-badge {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  background: rgba(10,27,51,0.78); color: #fff; border-radius: 999px;
  padding: 0.22rem 0.65rem; font-size: 0.7rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.35rem;
  backdrop-filter: blur(4px); pointer-events: none;
}
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 0.5rem; }
.product-gallery__thumb {
  aspect-ratio: 4/3; border: 2px solid transparent; border-radius: var(--radius);
  padding: 0; background: #fff; cursor: pointer; overflow: hidden;
  opacity: 0.75; transition: all 0.2s ease;
}
.product-gallery__thumb:hover, .product-gallery__thumb.is-active {
  opacity: 1; border-color: var(--orange);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--orange) 22%, transparent);
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-ultra-modern .product-gallery__thumb { border: 2px solid var(--fg); }

/* Content card section */
.product-card-section {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2); padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px -4px rgba(10,27,51,0.06);
}
.product-card-section .rich p:first-child { margin-top: 0; }
.product-card-section .rich p:last-child { margin-bottom: 0; }
.product-card-section .rich h2 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }

/* Specifications Grid */
.product-specs {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2); padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px -4px rgba(10,27,51,0.06);
}
.product-specs__header {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line); padding-bottom: 0.65rem;
}
.product-specs__title { font-size: 1.25rem; margin: 0; font-weight: 700; }
.product-specs__subtitle { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.product-specs__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.65rem;
}
.product-specs__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.75rem 0.9rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  transition: border-color 0.2s;
}
.product-specs__card:hover { border-color: color-mix(in srgb, var(--orange) 35%, transparent); }
.product-specs__k { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.product-specs__v { font-size: 0.92rem; font-weight: 600; color: var(--fg); line-height: 1.35; }

/* FAQs */
.product-faqs {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2); padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px -4px rgba(10,27,51,0.06);
}
.product-faqs__title { font-size: 1.25rem; margin: 0 0 1rem; font-weight: 700; border-bottom: 1px solid var(--line); padding-bottom: 0.65rem; }
.faq__list { display: flex; flex-direction: column; gap: 0.55rem; }
.faq__item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq__item[open] { border-color: color-mix(in srgb, var(--orange) 35%, transparent); background: var(--bg); }
.faq__q {
  padding: 0.8rem 1.1rem; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; user-select: none; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron { flex-shrink: 0; transition: transform 0.25s ease; color: var(--muted); }
.faq__item[open] .faq__chevron { transform: rotate(180deg); color: var(--orange); }
.faq__a { padding: 0 1.1rem 0.9rem; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* Sticky Right Column */
.product-actions { position: sticky; top: calc(var(--header-height) + 1rem); }
.product-cta-copy { margin: 0 0 0.85rem; }
.product-cta-copy h2 { margin-bottom: 0.35rem; font-size: 1.2rem; font-weight: 700; }
.product-cta-copy p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
.product-actions .btn-row { margin-top: 0.75rem; flex-direction: column; gap: 0.65rem; }

/* ===================== TEMPLATE DETAIL SPECIFIC ===================== */
.template-gallery {
  border-radius: calc(var(--radius) * 1.2); overflow: hidden;
  background: var(--bg); border: 1px solid var(--line);
  box-shadow: 0 4px 20px -4px rgba(10,27,51,0.06);
  padding: 0.75rem;
}
.template-gallery__main {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius); background: #fff;
}
.template-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.template-gallery__code {
  position: absolute; right: 0; bottom: 0; left: 0;
  padding: 0.6rem 1rem; background: color-mix(in srgb, var(--navy) 92%, transparent);
  color: #fff; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.template-gallery__code span { color: var(--orange); }
.template-gallery__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem; margin-top: 0.5rem;
}
.template-gallery__thumb {
  position: relative; aspect-ratio: 4/3; border: 2px solid transparent;
  border-radius: var(--radius); padding: 0; background: #fff;
  cursor: pointer; overflow: hidden; opacity: 0.75; transition: all 0.2s ease;
}
.template-gallery__thumb:hover, .template-gallery__thumb.is-active {
  opacity: 1; border-color: var(--orange);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--orange) 22%, transparent);
}
.template-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.template-gallery__thumb-label {
  position: absolute; bottom: 0; inset-inline: 0;
  background: rgba(10,27,51,0.75); color: #fff;
  font-size: 0.65rem; font-weight: 700; text-align: center;
  padding: 0.15rem 0.25rem; text-transform: uppercase; letter-spacing: 0.04em;
}

/* Dieline Banner */
.template-dieline-banner {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: color-mix(in srgb, var(--orange) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--orange) 25%, transparent);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  font-size: 0.86rem; line-height: 1.5; color: var(--fg);
}
.template-dieline-banner svg { flex-shrink: 0; margin-top: 0.1rem; }

/* Structural Content Cards */
.template-cards-section {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2); padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px -4px rgba(10,27,51,0.06);
}
.template-cards-title {
  font-size: 1.25rem; margin: 0 0 1rem; font-weight: 700;
  border-bottom: 1px solid var(--line); padding-bottom: 0.65rem;
}
.template-cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
}
@media (min-width: 640px) {
  .template-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .template-card-box--wide { grid-column: 1 / -1; }
}
.template-card-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.15rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.template-card-box__title {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.95rem; font-weight: 700; margin: 0; color: var(--fg);
}
.template-card-box p { margin: 0; font-size: 0.88rem; line-height: 1.55; color: var(--muted); }
.template-card-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.template-card-list li {
  position: relative; padding-left: 1.1rem;
  font-size: 0.86rem; line-height: 1.45; color: var(--muted);
}
.template-card-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 800; font-size: 0.8rem;
}

/* Template Related Section */
.template-related { padding: 3rem 0; border-top: 1px solid var(--line); background: var(--surface); }
.template-related__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.template-related__head h2 { margin: 0; font-size: 1.4rem; }
.template-related__card {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); color: var(--fg); text-decoration: none;
  box-shadow: var(--card-shadow); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.template-related__card:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 12px 28px rgba(10,27,51,0.1); }
.template-related__card img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #fff; }
.template-related__card div { padding: 1rem 1.15rem; }
.template-related__card span { color: var(--orange); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.template-related__card h3 { margin: 0.2rem 0 0; font-size: 1.05rem; }

/* Responsive adjustments */
@media (max-width: 639px) {
  .product-specs__grid { grid-template-columns: 1fr; }
  .template-gallery__thumbs { grid-template-columns: repeat(2, 1fr); }
  .product-trust-strip { gap: 0.35rem; }
  .product-trust-item { font-size: 0.72rem; padding: 0.25rem 0.55rem; }
  .product-specs, .product-card-section, .product-faqs, .template-cards-section { padding: 1.15rem 1rem; }
}

/* Industry catalogue and relationship-rich detail pages */
.industry-card__summary {
  display: -webkit-box;
  overflow: hidden;
  margin: .65rem 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.industry-detail-hero {
  padding: 3.5rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, color-mix(in srgb, var(--orange) 14%, transparent), transparent 34%),
    var(--surface);
}
.industry-detail-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.industry-detail-hero__copy h1 {
  max-width: 13ch;
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: .98;
}
.industry-detail-hero__copy > p {
  max-width: 42rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}
.industry-detail-hero__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  background: #fff;
  box-shadow: 0 24px 70px rgba(10, 27, 51, .16);
}
.industry-detail-hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.industry-detail-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.industry-detail-hero:hover .industry-detail-hero__media img { transform: scale(1.025); }
@media (min-width: 900px) {
  .industry-detail-hero__grid { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); }
}
@media (max-width: 639px) {
  .template-catalogue__head { align-items: flex-start; flex-direction: column; }
  .template-related { padding: 3.5rem 0; }
  .template-related__head { align-items: flex-start; flex-direction: column; }
  .industry-detail-hero { padding: 2rem 0 3.5rem; }
  .industry-detail-hero__copy .btn-row { align-items: stretch; flex-direction: column; }
  .industry-detail-hero__copy .btn { width: 100%; }
}


/* ===================== HOMEPAGE REDESIGN ===================== */
.showroom-hero__title,
.showroom-slider__title,
.hero-industries-reel__title,
.industry-mq-card__title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.showroom-hero {
  padding: 2.25rem 0 3.75rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  background:
    radial-gradient(900px 500px at 8% 15%, color-mix(in srgb, var(--orange) 6%, transparent), transparent 65%),
    radial-gradient(850px 450px at 92% 85%, color-mix(in srgb, var(--navy) 5%, transparent), transparent 65%),
    var(--bg);
}
@media (max-width: 767px) {
  .showroom-hero { padding: 1.5rem 0 2.5rem; }
}

.showroom-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .showroom-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.showroom-hero__content {
  max-width: 38rem;
}

.showroom-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: color-mix(in srgb, var(--orange) 10%, transparent);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--orange) 24%, transparent);
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--orange) 10%, transparent);
}
.showroom-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.showroom-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: var(--fg);
}
.showroom-hero__title i {
  font-style: italic;
  color: var(--orange);
  font-family: inherit;
  font-weight: 400;
}

.showroom-hero__lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 36rem;
}

.showroom-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.showroom-hero__actions .btn--primary {
  box-shadow: 0 6px 18px -2px color-mix(in srgb, var(--orange) 45%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showroom-hero__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -2px color-mix(in srgb, var(--orange) 60%, transparent);
}
.showroom-hero__actions .btn--outline {
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.showroom-hero__actions .btn--outline:hover {
  transform: translateY(-2px);
}

.showroom-hero__media {
  position: relative;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px -15px rgba(10, 27, 51, 0.12);
}

@media (min-width: 1024px) {
  .showroom-hero__media {
    height: 520px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  }
}

.hero-industries-reel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.25rem;
}

@media (max-width: 1023px) {
  .hero-industries-reel {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-industries-reel::-webkit-scrollbar { display: none; }
}

.hero-industries-reel__track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .hero-industries-reel__track {
    animation: hero-scroll-vertical 28s linear infinite;
  }
  .hero-industries-reel:hover .hero-industries-reel__track,
  .hero-industries-reel:focus-within .hero-industries-reel__track {
    animation-play-state: paused;
  }
}

@media (max-width: 1023px) {
  .hero-industries-reel__track {
    flex-direction: row;
    width: max-content;
    padding-right: 1.5rem;
  }
  .hero-industries-reel__card--clone {
    display: none;
  }
}

.hero-industries-reel__card {
  position: relative;
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--surface);
  flex-shrink: 0;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px -4px rgba(10, 27, 51, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hero-industries-reel__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(10, 27, 51, 0.28);
  border-color: color-mix(in srgb, var(--orange) 50%, transparent);
}
.hero-industries-reel__card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-industries-reel__card {
    height: 230px;
  }
}

@media (max-width: 1023px) {
  .hero-industries-reel__card {
    width: 80vw;
    max-width: 320px;
    aspect-ratio: 4/3;
    scroll-snap-align: start;
  }
}

.hero-industries-reel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-industries-reel__card:hover img {
  transform: scale(1.05);
}
.hero-industries-reel__card:focus-visible img {
  transform: scale(1.05);
}

.hero-industries-reel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 27, 51, 0.92) 0%, rgba(10, 27, 51, 0.35) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.5rem;
  color: #fff;
}

.hero-industries-reel__title {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-industries-reel__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-industries-reel__card:hover .hero-industries-reel__link {
  transform: translateX(4px);
  color: #fff;
}

@keyframes hero-scroll-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 0.625rem)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-industries-reel__track {
    animation: none !important;
  }
  .hero-industries-reel__card img {
    transition: none !important;
  }
  .hero-industries-reel__card:hover img,
  .hero-industries-reel__card:focus-visible img {
    transform: none !important;
  }
  .hero-industries-reel__card--clone {
    display: none !important;
  }
}
.home-hero__perks--showroom {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.home-hero__perks--showroom .home-hero__perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.home-hero__perks--showroom .home-hero__perk:hover {
  opacity: 1;
}
.home-hero__perks--showroom .home-hero__perk svg {
  color: var(--orange);
  flex-shrink: 0;
}

.showroom-slider { padding: 5rem 0; border-top: 1px solid var(--line); }
.showroom-slider--alt { background: var(--surface); border-top: none; }
.showroom-slider__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 2rem; }
.showroom-slider__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
.showroom-slider__lead { color: var(--muted); margin-top: 0.5rem; max-width: 32rem; font-size: 1.1rem; }
.showroom-slider__controls { display: flex; gap: 0.5rem; }
.slider-btn { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--bg); color: var(--fg); cursor: pointer; transition: all 0.2s ease; }
.slider-btn:hover:not([disabled]) { border-color: var(--fg); background: var(--fg); color: var(--bg); }
.slider-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.slider-btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.showroom-slider__track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 2rem; margin-bottom: -2rem; scrollbar-width: none; -ms-overflow-style: none; overscroll-behavior-x: contain; }
.showroom-slider__track::-webkit-scrollbar { display: none; }
.showroom-slider__item { flex: 0 0 calc(85vw); scroll-snap-align: start; }
@media (min-width: 640px) { .showroom-slider__item { flex: 0 0 calc(45vw); } }
@media (min-width: 1024px) { .showroom-slider__item { flex: 0 0 calc(33.333% - 1rem); } }
.showroom-slider__card { display: flex; flex-direction: column; height: 100%; text-decoration: none; border-radius: var(--radius); outline: none; }
.showroom-slider__card:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.showroom-slider__card-img { aspect-ratio: 4/5; background: var(--surface); border-radius: var(--card-radius); overflow: hidden; margin-bottom: 1.25rem; position: relative; }
.showroom-slider__card-img--square { aspect-ratio: 1/1; }
.showroom-slider__card-img--padded { aspect-ratio: 4/3; padding: 2rem; background: var(--bg); border: 1px solid var(--line); }
.showroom-slider__card-img--padded img { object-fit: contain; mix-blend-mode: multiply; }
.showroom-slider__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.showroom-slider__card:hover .showroom-slider__card-img img { transform: scale(1.04); }
.showroom-slider__card-title { font-size: 1.25rem; margin-bottom: 0.25rem; font-weight: 500; }
.showroom-slider__card-meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.showroom-slider__card-meta--highlight { color: var(--orange); font-weight: 700; margin-bottom: 0.25rem; }

.industries-marquee-section { padding: 6rem 0; background: var(--navy); color: var(--bg); overflow: hidden; }
.industries-marquee-section .section-title { color: var(--bg); }
.industries-marquee-section .section-lead { color: rgba(255,255,255,0.7); }
.industries-marquee-section .container { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .industries-marquee-section .container { grid-template-columns: 1fr 1fr; } }
.industries-marquee-text { max-width: 38rem; }
.industries-marquee-text-margin { margin-top: 2rem; }

.industries-marquee-container { display: flex; align-items: stretch; justify-content: center; height: 600px; gap: 2rem; margin-top: 3rem; mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); }
.industries-marquee-col { display: flex; flex-direction: column; gap: 2rem; animation: marquee-up 30s linear infinite; }
.industries-marquee-col:hover, .industries-marquee-col:focus-within { animation-play-state: paused; }
@keyframes marquee-up { 0% { transform: translateY(0); } 100% { transform: translateY(calc(-50% - 1rem)); } }
.industry-mq-card { display: block; width: 300px; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; position: relative; flex-shrink: 0; outline: none; }
.industry-mq-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.industry-mq-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; opacity: 0.8; }
.industry-mq-card:hover img, .industry-mq-card:focus-visible img { transform: scale(1.05); opacity: 1; }
.industry-mq-card__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; background: linear-gradient(to top, rgba(10,27,51,0.9), transparent 60%); }
.industry-mq-card__title { font-size: 1.5rem; font-weight: 500; color: #fff; margin: 0; }
.industry-mq-card__link { margin-top: 0.5rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .showroom-slider__card-img img,
  .industry-mq-card img {
    transition: none !important;
  }
  .showroom-slider__card:hover .showroom-slider__card-img img,
  .industry-mq-card:hover img,
  .industry-mq-card:focus-visible img {
    transform: none !important;
  }
  .industries-marquee-col { animation: none !important; flex-wrap: wrap; flex-direction: row; justify-content: center; }
  .industry-mq-card--clone { display: none !important; }
  .industries-marquee-container { height: auto; mask-image: none; -webkit-mask-image: none; overflow: auto; }
}
@media (max-width: 767px) {
  .industries-marquee-container { height: auto; mask-image: none; -webkit-mask-image: none; overflow-x: auto; justify-content: flex-start; scroll-snap-type: x mandatory; padding-bottom: 2rem; margin-bottom: -2rem; scrollbar-width: none; -ms-overflow-style: none; overscroll-behavior-x: contain; }
  .industries-marquee-container::-webkit-scrollbar { display: none; }
  .industries-marquee-col { animation: none !important; flex-direction: row; gap: 1rem; }
  .industry-mq-card { width: 75vw; scroll-snap-align: start; }
  .industry-mq-card--clone { display: none !important; }
}