/* YI TAI LI — Style A: Black & Gold */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #070707;
  --bg-2: #101010;
  --bg-3: #161616;
  --surface: #1a1a1a;
  --gold: #c9a54a;
  --gold-bright: #e2c06a;
  --gold-dim: #8a7130;
  --text: #f3efe6;
  --text-muted: #a39a88;
  --line: rgba(201, 165, 74, 0.22);
  --veil: rgba(0, 0, 0, 0.55);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(7, 7, 7, 0.92); }
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo img { height: 56px; width: auto; background: transparent; filter: drop-shadow(0 0 10px rgba(201,165,74,.28)); }
.logo-word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--gold-bright);
}
.logo-word em { font-style: normal; color: var(--text); font-size: 0.72em; letter-spacing: 0.18em; margin-left: 6px; opacity: 0.7; }

/* Header search */
.header-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 300px;
  min-width: 140px;
  z-index: 50;
}
.header-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(201, 165, 74, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.25));
  transition: border-color .25s, background .25s;
}
.header-search-form:focus-within {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,165,74,0.1), rgba(0,0,0,0.35));
}
.header-search-ico {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.85;
}
.header-search-form input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.header-search-form input::placeholder { color: var(--text-muted); opacity: 0.85; }
.header-search-form input::-webkit-search-cancel-button { cursor: pointer; }
.header-search-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: min(100vw - 40px, 360px);
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(201, 165, 74, 0.4);
  background: #121212;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}
.header-search-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 8px;
  text-align: start;
  border: 1px solid transparent;
  color: var(--text);
  transition: background .2s, border-color .2s;
}
.header-search-item:hover,
.header-search-item.active {
  background: rgba(201,165,74,0.08);
  border-color: rgba(201,165,74,0.25);
}
.header-search-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
}
.header-search-item strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.header-search-item .sku {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 2px;
}
.header-search-item .meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.header-search-empty,
.header-search-hint {
  padding: 14px 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  color: var(--gold);
}
.nav-wrap { display: flex; align-items: center; gap: 28px; }
.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 12px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color .25s;
}
.nav a:hover, .nav a.active { color: var(--gold-bright); }
.header-actions { display: flex; align-items: center; gap: 14px; }
/* Language dropdown — black & gold */
.lang-dd { position: relative; z-index: 40; }
.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(201, 165, 74, 0.35);
  background: linear-gradient(180deg, rgba(201,165,74,0.08), rgba(0,0,0,0.35));
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s, background .25s, color .25s;
}
.lang-dd-btn:hover,
.lang-dd.open .lang-dd-btn {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,165,74,0.16), rgba(0,0,0,0.4));
  color: #f5e6b8;
}
.lang-dd-globe,
.lang-dd-chevron { flex-shrink: 0; opacity: 0.9; }
.lang-dd-chevron { transition: transform .25s var(--ease); }
.lang-dd.open .lang-dd-chevron { transform: rotate(180deg); }
.lang-dd-current { min-width: 1.6em; text-align: center; }
.lang-dd-panel {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 198px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(201, 165, 74, 0.4);
  background:
    linear-gradient(165deg, rgba(28,24,16,0.98), rgba(10,10,10,0.98));
  box-shadow: 0 18px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,165,74,0.08);
  backdrop-filter: blur(10px);
}
.lang-dd-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: start;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-dd-option:hover {
  background: rgba(201, 165, 74, 0.1);
  color: var(--text);
}
.lang-dd-option.active {
  color: var(--gold-bright);
  background: rgba(201, 165, 74, 0.14);
}
.lang-dd-code {
  flex: 0 0 2.2em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.85;
}
.lang-dd-option.active .lang-dd-code { opacity: 1; }
.lang-dd-native {
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Arabic RTL: keep brand LTR; soft layout flips via dir */
html[dir="rtl"] .logo-word em { letter-spacing: 0.12em; }
html[dir="rtl"] .lang-dd-panel { text-align: right; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-dim));
  color: #111;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
}
.btn-ghost:hover { background: rgba(201,165,74,0.1); }
.btn-sm { padding: 8px 14px; font-size: 0.75rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  --hero-image: url("../../assets/img/hero-ytl-cables.jpg");
  background:
    linear-gradient(105deg, rgba(7,7,7,0.88) 0%, rgba(7,7,7,0.42) 46%, rgba(7,7,7,0.55) 100%),
    radial-gradient(ellipse at 72% 48%, rgba(201,165,74,0.16), transparent 52%),
    var(--hero-image) right center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,0.25) 0%, transparent 35%, rgba(7,7,7,0.45) 100%);
  pointer-events: none;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-brand {
  height: 88px; width: auto; margin-bottom: 32px;
  background: transparent;
  opacity: 0; animation: fadeIn 1s var(--ease) .1s forwards;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.55));
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  opacity: 0; animation: riseIn 1s var(--ease) .25s forwards;
}
.hero h1 span {
  display: block;
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 500;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 34em;
  margin-bottom: 32px;
  opacity: 0; animation: riseIn 1s var(--ease) .4s forwards;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; animation: riseIn 1s var(--ease) .55s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-2); }
.section-head { margin-bottom: 40px; max-width: 560px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-head p { color: var(--text-muted); }

/* Product rail */
.product-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rail-item {
  display: block;
  background: var(--bg-3);
  border: 1px solid transparent;
  transition: border-color .3s, transform .4s var(--ease);
}
.rail-item:hover {
  border-color: var(--line);
  transform: translateY(-6px);
}
.rail-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  display: grid; place-items: center;
  padding: 0;
}
.rail-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.rail-item:hover .rail-thumb img { transform: scale(1.08); }
.rail-meta {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line);
}
.rail-meta strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.rail-meta span {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.section-more { margin-top: 28px; }
.text-link {
  color: var(--gold-bright);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.text-link:hover { border-bottom-color: var(--gold); }

/* Band */
.band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
}
.band-media {
  background: center/cover no-repeat;
  position: relative;
}
.band-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--bg) 100%);
}
.band-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 48px 64px 36px;
  background: var(--bg);
}
.feature-list { margin: 24px 0 32px; }
.feature-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stats-certs {
  grid-template-columns: repeat(5, 1fr);
}
.stats-certs .stat strong {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}
.stat {
  background: var(--bg-2);
  padding: 36px 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* Certs */
.cert-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.cert-pill {
  padding: 12px 22px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Product page grid */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 48px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,165,74,0.12), transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}
.page-hero p { color: var(--text-muted); max-width: 40em; }

.cat-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.cat-nav a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all .25s;
}
.cat-nav a:hover, .cat-nav a.active {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg-3);
  border: 1px solid transparent;
  transition: border-color .3s, transform .35s var(--ease);
}
.product-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.product-card .thumb {
  aspect-ratio: 1;
  background: #fff;
  display: grid; place-items: center;
  padding: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .thumb { position: relative; }
.product-card .gallery-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  background: rgba(12, 12, 12, 0.82);
  color: var(--gold);
  border: 1px solid rgba(201, 165, 74, 0.45);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.product-card { cursor: pointer; }
.product-card .body { padding: 18px 20px 22px; }
.product-card .sku {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.product-card p { font-size: 0.85rem; color: var(--text-muted); }
.product-card .gallery-hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.85;
}

body.plb-open { overflow: hidden; }
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.product-lightbox[hidden] { display: none !important; }
.plb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(4px);
}
.plb-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--bg-2, #141414);
  border: 1px solid var(--line);
  padding: 20px 20px 24px;
  display: grid;
  gap: 16px;
  animation: plb-in .28s var(--ease, ease) both;
}
@keyframes plb-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.plb-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.plb-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--line);
}
.plb-image {
  max-width: 100%;
  max-height: min(58vh, 520px);
  object-fit: contain;
}
.plb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.72);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.plb-prev { left: 10px; }
.plb-next { right: 10px; }
.plb-meta .plb-sku {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 6px;
}
.plb-meta h3 { font-size: 1.15rem; margin-bottom: 6px; }
.plb-meta p { color: var(--text-muted); font-size: 0.9rem; }
.plb-count {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.plb-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.plb-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}
.plb-thumb.active { border-color: var(--gold); }
.plb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 720px) {
  .plb-dialog { padding: 16px; }
  .plb-image { max-height: 42vh; }
  .plb-nav { width: 36px; height: 36px; }
}

.category-block { margin-bottom: 64px; scroll-margin-top: 90px; }
.category-block .block-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.category-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-visual {
  position: relative;
  background: #0a0a0a;
  border: 1px solid var(--line);
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: auto;
  max-height: min(560px, 70vh);
  object-fit: contain;
  object-position: center;
  display: block;
}
.about-visual::after {
  content: none;
}
.prose p { color: var(--text-muted); margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.info-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.info-list a:hover { color: var(--gold-bright); }

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.location-card {
  background: var(--bg-3);
  border: 1px solid rgba(201, 165, 74, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.loc-media {
  aspect-ratio: 16 / 11;
  background: #111;
  overflow: hidden;
  cursor: zoom-in;
}
.loc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.location-card:hover .loc-media img { transform: scale(1.03); }
.loc-body { padding: 22px 22px 24px; }
.loc-body .eyebrow { margin-bottom: 8px; }
.loc-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--gold-bright);
}
.loc-address {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.loc-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.loc-thumb {
  width: 56px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  overflow: hidden;
  background: #0a0a0a;
}
.loc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.loc-thumb.active,
.loc-thumb:hover { border-color: var(--gold); }
.loc-view {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.84rem;
  color: var(--gold-bright);
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
}
.field textarea { min-height: 120px; resize: vertical; }

/* CTA */
.cta-band {
  padding: 88px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,165,74,0.16), transparent 55%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.cta-band .cta-mark {
  height: 48px; margin: 0 auto 24px;
  opacity: 0.9;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-band p { color: var(--text-muted); margin-bottom: 28px; }

/* Footer */
.site-footer {
  padding: 64px 0 28px;
  background: #050505;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 32em;
}
.site-footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color .25s;
}
.site-footer ul a:hover { color: var(--gold-bright); }
.site-footer ul li span { color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Mobile dock */
.mobile-dock {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(10,10,10,0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.mobile-dock a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.mobile-dock a.hot { color: var(--gold-bright); }
.mobile-dock svg { width: 18px; height: 18px; }

.float-rfq {
  position: fixed;
  right: 22px; bottom: 28px; z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: #111;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 30px rgba(201,165,74,0.35);
  transition: transform .3s var(--ease);
}
.float-rfq:hover { transform: scale(1.06); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.product-card.search-hit {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,165,74,0.45), 0 12px 30px rgba(201,165,74,0.12);
}
.search-empty {
  padding: 48px 20px;
  text-align: center;
  color: var(--text-muted);
}
.search-empty p { margin-bottom: 14px; font-size: 1rem; }

/* Responsive */
@media (max-width: 1100px) {
  .logo-word { display: none; }
  .header-search { max-width: 240px; }
}
@media (max-width: 980px) {
  .product-rail, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .band, .about-grid, .contact-grid, .footer-grid, .locations-grid { grid-template-columns: 1fr; }
  .band-media { min-height: 280px; }
  .band-media::after { background: linear-gradient(180deg, transparent 50%, var(--bg)); }
  .band-copy { padding: 40px 24px 56px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats-certs { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .float-rfq { display: none; }
}
@media (max-width: 760px) {
  .nav-toggle { display: grid; place-items: center; }
  .header-inner { gap: 10px; }
  .header-search {
    max-width: none;
    min-width: 0;
    order: 0;
  }
  .header-search-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-h) + 4px);
    min-width: 0;
    width: auto;
  }
  .nav-wrap {
    position: fixed; inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: rgba(7,7,7,0.97);
    border-bottom: 1px solid var(--line);
  }
  .nav-wrap.open { display: flex; }
  .nav { flex-direction: column; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .header-actions { justify-content: space-between; padding-top: 12px; }
  .logo-word { display: none; }
  .hero { align-items: center; padding-bottom: 48px; }
  .product-rail, .product-grid { grid-template-columns: 1fr; }
  .mobile-dock { display: flex; }
  body { padding-bottom: 72px; }
}


/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.news-card {
  display: block;
  background: var(--bg-3);
  border: 1px solid transparent;
  transition: border-color .3s, transform .35s var(--ease);
  overflow: hidden;
}
.news-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.news-card .media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}
.news-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.news-card:hover .media img { transform: scale(1.04); }
.news-card .body { padding: 18px 20px 22px; }
.news-card .date {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.news-card p { color: var(--text-muted); font-size: 0.9rem; }

.news-list-home a {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.news-list-home .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.news-list-home .thumb img { width:100%; height:100%; object-fit:cover; }
.news-list-home .date { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.08em; margin-bottom: 6px; }
.news-list-home h3 { font-size: 1.05rem; margin-bottom: 4px; }
.news-list-home p { color: var(--text-muted); font-size: 0.88rem; }
.news-list-home .arrow { color: var(--gold); font-size: 1.2rem; }

/* QR block */
.qr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.qr-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.qr-item img {
  width: 120px; height: 120px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
}
.qr-item img.qr-tall {
  width: 140px;
  height: auto;
  max-height: 180px;
}
.qr-item strong { display:block; color: var(--gold-bright); margin-bottom: 4px; font-size: 0.9rem; }
.qr-item span { color: var(--text-muted); font-size: 0.82rem; line-height: 1.4; }

@media (max-width: 980px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-list-home a { grid-template-columns: 110px 1fr; }
  .news-list-home .arrow { display:none; }
  .qr-row { grid-template-columns: 1fr; }
}
