/* === Kluang Hardware Trading — design tokens === */
:root {
  --bg: #101214;
  --bg-2: #151718;
  --panel: #1b1d1e;
  --panel-2: #232526;
  --line: #34383a;
  --line-2: #4a4f51;
  --text: #f2eee8;
  --text-dim: #bab2a7;
  --muted: #807970;
  --brass: #c99a5f;
  --brass-2: #e0b979;
  --brass-deep: #8d673f;
  --iron: #8a8d89;
  --rust: #a95f45;
  --concrete: #c9c4ba;
  --shadow-ambient: 0 28px 80px rgba(0,0,0,0.34);
  --shadow-lift: 0 34px 90px rgba(0,0,0,0.42);
  --edge-light: rgba(255,255,255,0.11);
  --edge-dark: rgba(0,0,0,0.48);

  --font-disp: "Archivo", "Noto Sans SC", system-ui, sans-serif;
  --font-body: "Manrope", "Noto Sans SC", system-ui, sans-serif;
  --font-cn: "Noto Sans SC", "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 8px;

  --shadow-1: 0 1px 0 var(--edge-light) inset, 0 -1px 0 var(--edge-dark) inset, 0 16px 48px rgba(0,0,0,0.22);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 220px),
    radial-gradient(900px 520px at 78% -120px, rgba(201,154,95,0.13), transparent 64%),
    radial-gradient(760px 460px at 2% 18%, rgba(201,196,186,0.08), transparent 64%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 44px),
    var(--bg);
  background-attachment: fixed;
}

/* Subtle film-grain on body */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: soft-light;
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.cn { font-family: var(--font-cn); }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* Container */
.shell {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .shell { padding: 0 18px; }
}

/* Tag / pill */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(198,148,102,0.04);
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brass);
}

/* Section eyebrow */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--brass);
}

/* Headings */
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }
.display {
  font-family: var(--font-cn);
  font-weight: 600;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.h2 {
  font-family: var(--font-cn);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--font-cn);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
}
.lede {
  font-family: var(--font-cn);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 60ch;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  transform: translateZ(0);
}
.btn-primary {
  background: linear-gradient(180deg, #f0cf8d 0%, var(--brass-2) 42%, var(--brass) 100%);
  color: #1a1208;
  border-color: var(--brass);
  box-shadow: 0 1px 0 rgba(255,255,255,0.42) inset, 0 -1px 0 rgba(83,55,25,0.42) inset, 0 14px 30px rgba(201,154,95,0.24), 0 7px 0 rgba(0,0,0,0.16);
}
.btn-primary:hover {
  background: var(--brass-2);
  border-color: var(--brass-2);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.46) inset, 0 -1px 0 rgba(83,55,25,0.36) inset, 0 18px 36px rgba(201,154,95,0.28), 0 9px 0 rgba(0,0,0,0.16);
}
.btn-ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border-color: var(--line-2);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset, 0 10px 26px rgba(0,0,0,0.12);
}
.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
  transform: translateY(-1px);
}
.btn-icon { font-size: 14px; }

/* Card */
.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0) 42%),
    linear-gradient(145deg, rgba(43,45,45,0.98), rgba(25,27,28,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.card-pad { padding: 28px; }
.card:hover {
  border-color: rgba(201,154,95,0.42);
  box-shadow: var(--shadow-lift), 0 1px 0 var(--edge-light) inset;
}

/* Hairline */
.hr {
  height: 1px;
  background: var(--line);
  border: 0;
  width: 100%;
}

/* Section spacing */
section { position: relative; z-index: 2; }
.sec { padding: 96px 0; }
@media (max-width: 720px) {
  .sec { padding: 64px 0; }
}

/* === NAV === */
.nav-wrap {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(16,18,20,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #f0ce8c 0%, #c99a5f 52%, #76512f 100%);
  display: grid; place-items: center;
  color: #1a1208;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 0 rgba(255,255,255,0.42) inset, 0 -1px 0 rgba(63,38,17,0.7) inset, 0 12px 24px rgba(201,154,95,0.22);
}
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name .en {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.brand-name .cn {
  font-family: var(--font-cn);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-link {
  font-family: var(--font-cn);
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.15s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-mobile-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center; justify-content: center;
}
.nav-mobile-btn span { width: 16px; height: 1.5px; background: var(--text); display: block; position: relative; }
.nav-mobile-btn span::before, .nav-mobile-btn span::after { content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--text); }
.nav-mobile-btn span::before { top: -5px; }
.nav-mobile-btn span::after { top: 5px; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav-actions .btn-ghost { display: none; }
}
.nav-mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 18px 28px 24px;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu .nav-link { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* === HERO === */
.hero {
  padding: 56px 0 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 20px;
  align-items: stretch;
  perspective: 1400px;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { transform: none; }
}
.hero-main {
  padding: clamp(28px, 4vw, 54px);
  min-height: 590px;
  display: flex; flex-direction: column; justify-content: space-between;
  background:
    linear-gradient(90deg, rgba(12,14,15,0.95) 0%, rgba(12,14,15,0.82) 56%, rgba(12,14,15,0.5) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.1), transparent 34%),
    url("images/optimized/storefront-yard.webp") center right / cover;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.16) inset, 0 -1px 0 rgba(0,0,0,0.52) inset, 0 36px 100px rgba(0,0,0,0.38), 0 14px 0 rgba(0,0,0,0.16);
  transform: rotateX(0.6deg) rotateY(-0.4deg);
  transform-origin: center top;
}
.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 24px);
  opacity: 0.28;
  z-index: 1;
}
.hero-main::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 380px; height: 380px;
  background:
    repeating-linear-gradient(45deg, rgba(198,148,102,0.08) 0 1px, transparent 1px 14px);
  border-radius: 50%;
  pointer-events: none;
}
.hero-main > * {
  position: relative;
  z-index: 2;
}
.hero-top { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-headline {
  margin-top: 32px;
}
.hero-sub {
  margin-top: 24px;
  max-width: 56ch;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}
.hero-proof span {
  font-family: var(--font-cn);
  font-size: 12px;
  color: var(--text);
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(16,18,20,0.66);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 24px rgba(0,0,0,0.16);
}
.hero-cta {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.hero-foot {
  margin-top: 32px;
  display: flex; gap: 28px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat .num {
  font-family: var(--font-disp);
  font-size: 28px;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: -0.01em;
}
.hero-stat .lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-side {
  display: grid;
  grid-template-rows: 1.2fr 1fr;
  gap: 20px;
}
.hero-photo {
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0)),
    var(--panel);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.09) inset, 0 -1px 0 rgba(0,0,0,0.46) inset, 0 28px 70px rgba(0,0,0,0.3);
}
.hero-photo .label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(15,13,10,0.75);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  z-index: 2;
}

/* Hero carousel — automatic photo cross-fade with no visible controls. */
.hero-photo.carousel { user-select: none; }
.carousel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
}
.carousel-img.is-active { opacity: 1; z-index: 1; }
.hero-photo.carousel .tile-overlay { z-index: 2; }

.hero-meta {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0) 44%),
    linear-gradient(145deg, rgba(36,38,39,0.98), rgba(22,24,25,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 1px 0 rgba(255,255,255,0.09) inset, 0 -1px 0 rgba(0,0,0,0.48) inset, 0 24px 58px rgba(0,0,0,0.26);
}
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.hero-meta-row:last-child { border-bottom: 0; }
.hero-meta-row .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-row .v { font-family: var(--font-cn); color: var(--text); }
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6ec77a;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(110,199,122,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Marquee */
.marquee {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0,0,0,0.15);
}
.marquee-track {
  display: flex; gap: 56px;
  padding: 14px 0;
  animation: scroll 38s linear infinite;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::before { content: "◆"; color: var(--brass); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; } }

.about-lead { padding: 40px; }
.about-lead .h2 { margin-top: 20px; }
.about-lead p { margin-top: 20px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-features .feat {
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px;
}
.feat-num {
  font-family: var(--font-disp);
  font-size: 28px;
  font-weight: 700;
  color: var(--brass);
}
.feat-title { margin-top: 14px; }
.feat-desc {
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.6;
}
@media (max-width: 540px) { .about-features { grid-template-columns: 1fr; } }

/* === PRODUCTS === */
.products-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 32px; flex-wrap: wrap;
}
.products-head .left { max-width: 600px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.prod {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0) 45%),
    linear-gradient(145deg, rgba(39,42,42,0.98), rgba(22,24,25,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 -1px 0 rgba(0,0,0,0.46) inset, 0 16px 42px rgba(0,0,0,0.2), 0 7px 0 rgba(0,0,0,0.12);
  transform-style: preserve-3d;
}
.prod:hover {
  border-color: var(--brass);
  transform: translateY(-6px) rotateX(1.4deg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 -1px 0 rgba(0,0,0,0.48) inset, 0 30px 70px rgba(0,0,0,0.34), 0 10px 0 rgba(0,0,0,0.14);
}
.prod-idx {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.prod-name {
  font-family: var(--font-cn);
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.prod-en {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.prod-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 14px;
  margin-top: auto;
}
.prod-tag {
  font-family: var(--font-cn);
  font-size: 11px;
  color: var(--muted);
}
.prod-action {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.prod:hover .prod-action,
.prod:focus-visible .prod-action {
  opacity: 1;
  transform: translateY(0);
}
.prod-arrow {
  font-family: var(--font-mono);
  color: var(--text-dim);
  transition: all 0.2s;
  font-size: 20px;
}
.prod-glyph {
  position: absolute;
  right: 14px; top: 14px;
  width: 56px; height: 56px;
  opacity: 0.65;
}

/* Product card with real photo */
.prod.has-photo { padding: 0; overflow: hidden; }
.prod-photo {
  position: absolute; inset: 0;
  z-index: 0;
}
.prod-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.72);
  transition: transform 0.5s ease, filter 0.3s ease;
}
.prod.has-photo:hover .prod-photo img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.82);
}
.prod-photo-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,18,20,0.08) 0%, rgba(16,18,20,0.44) 45%, rgba(16,18,20,0.94) 100%);
}
.prod.has-photo .prod-content {
  position: relative;
  z-index: 1;
  padding: 22px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.prod-content {
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%;
}
.prod:not(.has-photo) .prod-content { gap: 0; }

/* Status off-dot variant */
.live-dot.off {
  background: #c69466;
  box-shadow: 0 0 6px rgba(198,148,102,0.4);
  animation: none;
}

/* Bento sizing */
.prod.sz-tall { grid-column: span 3; grid-row: span 2; }
.prod.sz-wide { grid-column: span 6; grid-row: span 1; }
.prod.sz-md   { grid-column: span 3; grid-row: span 1; }
.prod.sz-lg   { grid-column: span 4; grid-row: span 1; }
.prod.sz-sm   { grid-column: span 3; grid-row: span 1; }
.prod.sz-feature { grid-column: span 6; grid-row: span 2;
  background:
    linear-gradient(160deg, rgba(201,154,95,0.13), rgba(201,154,95,0) 58%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    var(--panel-2);
  border-color: var(--line-2);
}
@media (max-width: 920px) {
  .products-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .prod.sz-tall { grid-column: span 3; grid-row: span 1; }
  .prod.sz-wide, .prod.sz-feature { grid-column: span 6; grid-row: span 1; }
  .prod.sz-md, .prod.sz-lg, .prod.sz-sm { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 540px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .prod.sz-tall, .prod.sz-wide, .prod.sz-feature, .prod.sz-md, .prod.sz-lg, .prod.sz-sm { grid-column: span 1; grid-row: span 1; }
}

/* === GALLERY === */
.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.gal-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.014)), var(--panel);
  color: var(--text-dim);
  font: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 20px rgba(0,0,0,0.12);
}
.gal-chip .cn { font-family: var(--font-cn); font-size: 13px; }
.gal-chip .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.gal-chip:hover { border-color: var(--brass); color: var(--text); transform: translateY(-1px); }
.gal-chip.is-active {
  background: linear-gradient(180deg, var(--brass-2), var(--brass));
  border-color: var(--brass);
  color: #1a1208;
  box-shadow: 0 1px 0 rgba(255,255,255,0.36) inset, 0 12px 24px rgba(201,154,95,0.18);
}
.gal-chip.is-active .mono {
  background: rgba(26,18,8,0.18);
  border-color: transparent;
  color: #1a1208;
}

.gal-group {
  margin-bottom: 56px;
}
.gal-group:last-child { margin-bottom: 0; }
.gal-group-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.gal-group-cn {
  font-family: var(--font-cn);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-right: 14px;
}
.gal-group-en {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.gal-group-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-grid.uniform {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
@media (max-width: 920px) {
  .gallery-grid.uniform { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 640px) {
  .gallery-grid.uniform { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}
.tile {
  position: relative;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0)), var(--panel);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  padding: 0;
  font: inherit;
  color: inherit;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 -1px 0 rgba(0,0,0,0.45) inset, 0 14px 34px rgba(0,0,0,0.2);
  transform-style: preserve-3d;
}
.tile:hover {
  border-color: var(--brass);
  transform: translateY(-5px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 -1px 0 rgba(0,0,0,0.45) inset, 0 28px 62px rgba(0,0,0,0.34);
}
.tile:hover .tile-overlay { opacity: 0.85; }
.tile:hover .tile-img { transform: scale(1.05); }
.tile-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tile-placeholder {
  position: absolute; inset: 0;
  background-size: 14px 14px;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.018) 0%, rgba(255,255,255,0.018) 50%, transparent 50%, transparent 100%);
  background-color: var(--panel-2);
}
.tile-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(198,148,102,0.04) 12px 13px);
}
.tile-meta {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 2;
}
.tile-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(16,18,20,0.84);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset;
}
.tile-cn {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--text);
  z-index: 2;
}
.tile-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0.78) 100%),
    linear-gradient(120deg, rgba(255,255,255,0.1), transparent 35%);
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8,7,5,0.92);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 40px;
  animation: lbfade 0.2s ease;
}
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox figure {
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  display: flex; flex-direction: column;
  gap: 14px;
}
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox figcaption {
  display: flex; gap: 16px; align-items: baseline;
  color: var(--text);
}
.lightbox figcaption strong {
  font-family: var(--font-cn);
  font-weight: 600;
  font-size: 16px;
}
.lightbox figcaption span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 24px;
  display: grid; place-items: center;
  transition: all 0.15s;
}
.lightbox-close:hover { background: var(--brass); color: #1a1208; border-color: var(--brass); }

/* === LANG SWITCH === */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)), var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}
.lang-switch .lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 11px;
  min-width: 34px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s;
}
.lang-switch .lang-btn:hover { color: var(--text); }
.lang-switch .lang-btn.is-active {
  background: linear-gradient(180deg, var(--brass-2), var(--brass));
  color: #1a1208;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset;
}
.lang-switch.is-mobile {
  display: flex;
  margin-bottom: 16px;
  width: fit-content;
}
@media (max-width: 900px) {
  .nav-actions .lang-switch { display: none; }
}

/* Latin headlines need different leading than CJK */
.hero-headline.is-latin {
  letter-spacing: -0.018em;
  line-height: 1.04;
}

/* === SSM BADGE === */
.ssm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
}
.ssm-lab {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.ssm-val {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--brass);
  font-weight: 600;
}

/* === PRICE NOTE BANNER === */
.price-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  margin-bottom: 36px;
  background:
    linear-gradient(180deg, rgba(201,154,95,0.13), rgba(201,154,95,0.045)),
    linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0));
  border: 1px solid rgba(201,154,95,0.32);
  border-left: 3px solid var(--brass);
  border-radius: var(--r-md);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 16px 38px rgba(0,0,0,0.16);
}
.price-note-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brass);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(198,148,102,0.15);
}
.price-note-text { display: flex; flex-direction: column; gap: 6px; }
.price-note-text .cn {
  font-family: var(--font-cn);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
.price-note-text .cn strong { color: var(--brass); font-weight: 600; }
.price-note-text .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === COMPACT PRODUCT PRICE NOTICE === */
.price-note {
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.price-note-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
}
.price-note-text { gap: 0; }
.price-note-text .cn { font-size: 13px; line-height: 1.5; }

/* === KEYBOARD FOCUS === */
.lang-switch .lang-btn:focus-visible,
.nav-mobile-btn:focus-visible {
  outline: 2px solid #fff7ec;
  outline-offset: 3px;
}

/* === MAP BLOCK === */
.map-block {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0)), var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow-ambient);
}
.map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.map-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.map-frame {
  position: relative;
  width: 100%;
  height: 460px;
  background: var(--panel-2);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.18) contrast(1.02);
}
.map-pin-card {
  position: absolute;
  top: 22px;
  left: 22px;
  max-width: 280px;
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(16,18,20,0.94);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 20px 48px rgba(0,0,0,0.42);
  z-index: 2;
}
.map-pin-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brass);
  color: #1a1208;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.map-pin-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.map-pin-cn {
  font-family: var(--font-cn);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.map-pin-addr {
  font-family: var(--font-cn);
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.map-pin-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
}
.map-pin-link:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .map-head { padding: 22px 20px; }
  .map-frame { height: 360px; }
  .map-pin-card { left: 14px; top: 14px; right: 14px; max-width: none; padding: 14px; }
}

.tile.sz-1 { grid-column: span 3; grid-row: span 2; }
.tile.sz-2 { grid-column: span 3; grid-row: span 1; }
.tile.sz-3 { grid-column: span 2; grid-row: span 1; }
.tile.sz-4 { grid-column: span 2; grid-row: span 2; }
.tile.sz-5 { grid-column: span 2; grid-row: span 1; }

@media (max-width: 920px) {
  .gallery-grid:not(.uniform) { grid-template-columns: repeat(4, 1fr); }
  .tile.sz-1 { grid-column: span 2; grid-row: span 2; }
  .tile.sz-2, .tile.sz-3, .tile.sz-4, .tile.sz-5 { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 540px) {
  .gallery-grid:not(.uniform) { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .tile.sz-1, .tile.sz-2, .tile.sz-3, .tile.sz-4, .tile.sz-5 { grid-column: span 1; grid-row: span 1; }
}

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 720px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0) 46%),
    linear-gradient(145deg, rgba(39,42,42,0.98), rgba(22,24,25,0.98));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 -1px 0 rgba(0,0,0,0.44) inset, 0 18px 44px rgba(0,0,0,0.2);
}
.step-num {
  font-family: var(--font-disp);
  font-size: 52px;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step-name { margin-top: 20px; }
.step-desc {
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.6;
}
.step-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { padding: 36px; display: flex; flex-direction: column; gap: 28px; }
.contact-info {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0) 45%),
    linear-gradient(145deg, rgba(39,42,42,0.98), rgba(22,24,25,0.98));
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), rgba(198,148,102,0));
}
.contact-block { display: flex; flex-direction: column; gap: 8px; }
.contact-block .lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-block .val {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.contact-block .val.cn { font-family: var(--font-cn); }
.contact-block .sub {
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--text-dim);
}

/* Form */
.form {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
    var(--panel);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: rgba(12,14,15,0.76);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-cn);
  font-size: 14px;
  outline: none;
  transition: border 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(198,148,102,0.12);
}
.field textarea { min-height: 110px; resize: vertical; font-family: var(--font-cn); }

.form-actions { margin-top: 20px; display: flex; gap: 12px; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.form-note {
  font-family: var(--font-cn);
  font-size: 12px;
  color: var(--muted);
}

/* === FOOTER === */
.footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 80px),
    var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--text-dim);
}
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.disclaimer {
  font-family: var(--font-cn);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 60ch;
  letter-spacing: 0;
  text-transform: none;
}

/* WhatsApp floating */
.wa-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 1px rgba(255,255,255,0.1);
  color: white;
  transition: transform 0.2s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; }
@media (max-width: 540px) { .wa-fab { right: 16px; bottom: 16px; } }

/* === mobile and contact refinements === */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.shell,
.nav,
.hero-grid,
.hero-main,
.hero-side,
.hero-photo,
.hero-meta,
.about-grid,
.about-main,
.about-features,
.products-head,
.products-grid,
.gallery-grid,
.gal-group-head,
.contact-grid,
.footer-grid,
.card,
.form {
  min-width: 0;
}

.hero-meta-row {
  gap: 16px;
}

.hero-meta-row .v {
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.phone-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.phone-actions .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
}

@media (max-width: 540px) {
  .shell {
    padding: 0 14px;
  }

  .display {
    font-size: 36px;
    line-height: 1.16;
    letter-spacing: 0;
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .hero-headline.is-latin {
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .h2 {
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: 0;
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .lede,
  .hero-sub,
  .prod-name,
  .prod-en,
  .tile-label,
  .tile-cn,
  .contact-block .val,
  .contact-block .sub {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-main {
    min-height: auto;
    padding: 24px;
  }

  .hero-foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .hero-meta {
    padding: 22px;
  }

  .hero-meta-row {
    align-items: flex-start;
  }

  .hero-meta-row .v {
    max-width: 68%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .contact-info,
  .form {
    padding: 24px;
  }

  .gal-group-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* === LIQUID GLASS UPGRADE === */
:root {
  --bg: #0d1114;
  --bg-2: #10161a;
  --panel: rgba(255,255,255,0.09);
  --panel-2: rgba(255,255,255,0.13);
  --line: rgba(255,255,255,0.16);
  --line-2: rgba(255,255,255,0.25);
  --text: #f6f2eb;
  --text-dim: #d2cbc1;
  --muted: #948d84;
  --brass: #d4aa64;
  --brass-2: #f0d18c;
  --brass-deep: #93683b;
  --glass-fill: rgba(255,255,255,0.095);
  --glass-fill-strong: rgba(255,255,255,0.145);
  --glass-line: rgba(255,255,255,0.24);
  --glass-line-soft: rgba(255,255,255,0.14);
  --glass-shadow: 0 34px 90px rgba(0,0,0,0.42), 0 10px 24px rgba(0,0,0,0.22);
  --glass-shadow-lift: 0 48px 120px rgba(0,0,0,0.52), 0 18px 34px rgba(0,0,0,0.26);
  --glass-inset: 0 1px 0 rgba(255,255,255,0.38) inset, 0 -1px 0 rgba(0,0,0,0.34) inset;
  --glass-blur: 24px;
  --shadow-ambient: var(--glass-shadow);
  --shadow-lift: var(--glass-shadow-lift);
  --shadow-1: var(--glass-inset), var(--glass-shadow);
}

body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0, transparent 260px),
    linear-gradient(125deg, rgba(79,93,98,0.34) 0%, transparent 38%),
    linear-gradient(235deg, rgba(212,170,100,0.18) 0%, transparent 42%),
    linear-gradient(180deg, #11171b 0%, #0d1114 54%, #0a0c0d 100%);
  background-attachment: fixed;
}

body::before {
  opacity: 0.34;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255,255,255,0.06) 20%, transparent 31%),
    linear-gradient(62deg, transparent 0 57%, rgba(255,255,255,0.045) 60%, transparent 73%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 54px);
  opacity: 0.72;
}

.tag,
.ssm-badge,
.hero-proof span,
.lang-switch,
.gal-chip,
.tile-label,
.hero-photo .label {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.055)),
    rgba(255,255,255,0.08);
  border-color: var(--glass-line-soft);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: var(--glass-inset), 0 14px 34px rgba(0,0,0,0.24);
}

.btn {
  border-radius: 999px;
  transform: translateZ(0);
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.52), transparent 42%),
    linear-gradient(180deg, var(--brass-2), var(--brass) 58%, #b98545);
  border-color: rgba(255,232,174,0.65);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 -1px 0 rgba(92,58,24,0.5) inset,
    0 18px 34px rgba(212,170,100,0.28),
    0 9px 0 rgba(0,0,0,0.22);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.76) inset,
    0 -1px 0 rgba(92,58,24,0.5) inset,
    0 26px 46px rgba(212,170,100,0.34),
    0 12px 0 rgba(0,0,0,0.22);
}

.btn-ghost {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.055);
  border-color: var(--glass-line-soft);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: var(--glass-inset), 0 16px 38px rgba(0,0,0,0.2);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(240,209,140,0.62);
  color: var(--brass-2);
  box-shadow: var(--glass-inset), 0 24px 54px rgba(0,0,0,0.32);
}

.card,
.hero-photo,
.hero-meta,
.prod,
.tile,
.price-note,
.map-block,
.map-pin-card,
.step,
.contact-info,
.form {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.055) 38%, rgba(255,255,255,0.025)),
    rgba(255,255,255,0.075);
  border-color: var(--glass-line);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-inset), var(--glass-shadow);
}

.card::after,
.hero-photo::after,
.hero-meta::after,
.prod::before,
.tile::before,
.price-note::after,
.map-block::after,
.step::after,
.form::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(128deg, rgba(255,255,255,0.22) 0%, transparent 28%),
    linear-gradient(310deg, rgba(255,255,255,0.075) 0%, transparent 34%);
  opacity: 0.72;
  z-index: 1;
}

.card > *,
.hero-meta > *,
.price-note > *,
.map-block > *,
.step > *,
.form > * {
  position: relative;
  z-index: 2;
}

.card:hover,
.prod:hover,
.tile:hover,
.step:hover {
  border-color: rgba(240,209,140,0.58);
  box-shadow: var(--glass-inset), var(--glass-shadow-lift);
}

.nav-wrap {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.055)),
    rgba(12,16,18,0.66);
  border-bottom-color: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(30px) saturate(190%);
  backdrop-filter: blur(30px) saturate(190%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 18px 44px rgba(0,0,0,0.28);
}

.brand-mark,
.lang-switch .lang-btn.is-active {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), transparent 42%),
    linear-gradient(145deg, var(--brass-2), var(--brass) 55%, var(--brass-deep));
  box-shadow: 0 1px 0 rgba(255,255,255,0.68) inset, 0 -1px 0 rgba(82,51,20,0.5) inset, 0 16px 32px rgba(212,170,100,0.28);
}

.nav-mobile-menu {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    rgba(12,16,18,0.82);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
}

.hero-grid,
.products-grid,
.gallery-grid,
.process-grid,
.contact-grid,
.about-grid {
  perspective: 1600px;
}

.hero-main {
  background:
    linear-gradient(90deg, rgba(9,13,15,0.82) 0%, rgba(9,13,15,0.62) 58%, rgba(9,13,15,0.34) 100%),
    linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.025)),
    url("images/optimized/storefront-yard.webp") center right / cover;
  border-color: rgba(255,255,255,0.28);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backdrop-filter: blur(18px) saturate(165%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.38) inset,
    0 -1px 0 rgba(0,0,0,0.42) inset,
    0 58px 140px rgba(0,0,0,0.58),
    0 22px 0 rgba(0,0,0,0.2);
  transform: rotateX(1.2deg) rotateY(-0.8deg) translateZ(0);
}

.hero-main::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.28) 0%, transparent 27%),
    linear-gradient(302deg, rgba(255,255,255,0.1) 0%, transparent 38%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px);
  opacity: 0.72;
}

.hero-main::after {
  right: -18%;
  top: -32%;
  bottom: auto;
  width: 46%;
  height: 168%;
  border-radius: 0;
  background: linear-gradient(102deg, transparent 0%, rgba(255,255,255,0.16) 46%, transparent 72%);
  transform: rotate(10deg);
  opacity: 0.62;
}

.hero-photo,
.hero-meta {
  transform: translateZ(0);
}

.hero-photo:hover,
.hero-meta:hover {
  box-shadow: var(--glass-inset), var(--glass-shadow-lift);
}

.hero-photo .label,
.tile-label {
  color: rgba(246,242,235,0.86);
}

.hero-proof span {
  color: rgba(246,242,235,0.92);
}

.marquee {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 20px 42px rgba(0,0,0,0.18);
}

.prod {
  transform: translateZ(0);
}

.prod::before,
.tile::before {
  z-index: 1;
}

.prod-content,
.prod.has-photo .prod-content {
  position: relative;
  z-index: 2;
}

.prod:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-0.6deg);
}

.prod-photo img {
  filter: saturate(0.96) contrast(1.02) brightness(0.78);
}

.prod.has-photo:hover .prod-photo img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05) brightness(0.9);
}

.prod-photo-shade {
  background:
    linear-gradient(180deg, rgba(10,14,16,0.06) 0%, rgba(10,14,16,0.28) 38%, rgba(10,14,16,0.9) 100%),
    linear-gradient(128deg, rgba(255,255,255,0.18), transparent 34%);
}

.tile {
  transform: translateZ(0);
}

.tile:hover {
  transform: translateY(-9px) rotateX(1.6deg);
}

.tile-overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.06) 34%, rgba(0,0,0,0.7) 100%),
    linear-gradient(124deg, rgba(255,255,255,0.22), transparent 33%);
}

.price-note {
  border-left: 1px solid rgba(240,209,140,0.54);
}

.contact-info::before {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.42), rgba(240,209,140,0.72), rgba(255,255,255,0));
  z-index: 3;
}

.field input,
.field textarea,
.field select {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.17);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 12px 26px rgba(0,0,0,0.16);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(240,209,140,0.72);
  box-shadow: 0 0 0 3px rgba(212,170,100,0.18), 0 1px 0 rgba(255,255,255,0.16) inset;
}

/* Readability pass: keep glass, but prevent text from washing out. */
.map-pin-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06) 38%, rgba(255,255,255,0.02)),
    rgba(12,16,18,0.78);
  border-color: rgba(255,255,255,0.32);
  -webkit-backdrop-filter: blur(26px) saturate(190%);
  backdrop-filter: blur(26px) saturate(190%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.38) inset,
    0 -1px 0 rgba(0,0,0,0.45) inset,
    0 28px 70px rgba(0,0,0,0.46);
}

.map-pin-name {
  color: var(--brass-2);
  text-shadow: 0 1px 12px rgba(0,0,0,0.62);
}

.map-pin-cn {
  color: #fff7ec;
  text-shadow: 0 1px 14px rgba(0,0,0,0.72);
}

.map-pin-addr {
  color: rgba(255,247,236,0.86);
  text-shadow: 0 1px 12px rgba(0,0,0,0.68);
}

.map-pin-link {
  color: var(--brass-2);
  text-shadow: 0 1px 12px rgba(0,0,0,0.68);
}

.form .lede,
.form-note {
  color: rgba(246,242,235,0.78);
}

.field label {
  color: rgba(240,209,140,0.78);
  text-shadow: 0 1px 10px rgba(0,0,0,0.46);
}

.field input,
.field textarea,
.field select {
  color: #fff7ec;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045)),
    rgba(10,14,16,0.64);
  border-color: rgba(255,255,255,0.34);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 rgba(0,0,0,0.34) inset,
    0 18px 38px rgba(0,0,0,0.24);
  text-shadow: 0 1px 10px rgba(0,0,0,0.34);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,247,236,0.58);
  opacity: 1;
}

.field select option {
  color: #111417;
  background: #f5f1ea;
}

.footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(12,16,18,0.72);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
}

.wa-fab {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 22px 50px rgba(37,211,102,0.34),
    0 8px 0 rgba(0,0,0,0.18);
}

.wa-fab:hover {
  transform: translateY(-4px) scale(1.07);
}

@media (max-width: 920px) {
  .hero-main {
    transform: none;
  }
}

@media (max-width: 540px) {
  .hero-main,
  .prod:hover,
  .tile:hover {
    transform: none;
  }

  .card,
  .hero-main,
  .hero-photo,
  .hero-meta,
  .prod,
  .tile,
  .price-note,
  .map-block,
  .step,
  .contact-info,
  .form {
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    backdrop-filter: blur(18px) saturate(165%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .prod,
  .tile,
  .gal-chip,
  .prod-photo img,
  .tile-img {
    transition: none;
  }

  .prod:hover,
  .tile:hover,
  .gal-chip:hover,
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }
}

/* Audit-led launch polish - 2026-07-19 */
#about,
#products,
#gallery,
#process,
#contact {
  border-top: 1px solid rgba(224, 185, 121, 0.12);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.30) inset;
}

#about {
  background-color: rgba(15, 17, 17, 0.08) !important;
}

#products {
  background-color: rgba(7, 10, 10, 0.18) !important;
}

#gallery {
  background-color: rgba(27, 20, 15, 0.10) !important;
}

#process {
  background-color: rgba(8, 10, 10, 0.16) !important;
}

#contact {
  background-color: rgba(22, 16, 12, 0.10) !important;
}

.gal-expand {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.gal-expand-btn {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(224, 185, 121, 0.34);
  border-radius: 8px;
  background: rgba(18, 18, 17, 0.92);
  color: var(--brass);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.gal-expand-btn:hover,
.gal-expand-btn:focus-visible {
  border-color: rgba(224, 185, 121, 0.72);
  background: #211d18;
}

.gal-expand-btn:active {
  transform: translateY(1px);
}

.contact-info > .btn.btn-primary {
  display: none;
}

.form-actions .btn-primary {
  min-width: 200px;
  justify-content: center;
}

@media (min-width: 1101px) and (min-height: 801px) {
  .hero-redesign {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 32px;
  }

  .hero-showcase {
    grid-template-rows: minmax(560px, 1fr) auto;
    min-height: 708px;
  }

  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 560px;
  }

  .hero-showcase-content {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .hero-info-strip {
    min-height: 148px;
  }
}

@media (min-width: 1101px) and (max-height: 800px) {
  .hero-redesign {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 22px;
  }

  .hero-showcase {
    grid-template-rows: minmax(430px, 1fr) auto;
    min-height: 562px;
  }

  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 430px;
  }

  .hero-showcase-content {
    padding: 28px 54px 30px;
  }

  .hero-showcase .hero-headline {
    font-size: 56px;
  }

  .hero-showcase .hero-headline.is-latin {
    font-size: 50px;
  }

  .hero-info-strip {
    min-height: 132px;
  }

  .hero-info-item {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(20, 16, 13, 0.96);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(12px);
  }

  #top { margin-top: 72px; }

  .nav-mobile-menu.open {
    max-height: calc(100svh - 72px);
    overflow-y: auto;
  }

  section[id] {
    scroll-margin-top: 84px;
  }
}

@media (max-width: 540px) {
  .gal-expand {
    margin-top: 14px;
  }

  .gal-expand-btn,
  .form-actions .btn-primary {
    width: 100%;
  }
}

/* === LARGER LOWER-PAGE CONTENT PREVIEW - 2026-07-17 === */
#about .shell,
#products .shell,
#gallery .shell,
#process .shell,
#contact .shell,
.footer .shell {
  max-width: 1480px;
  padding-right: 32px;
  padding-left: 32px;
}

#about,
#products,
#gallery,
#process,
#contact {
  padding-top: 78px;
  padding-bottom: 78px;
}

#about .about-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 22px;
}

#about .about-lead {
  padding: 52px 54px;
}

#about .about-lead .h2,
#products .products-head .h2,
#gallery .products-head .h2,
#process .products-head .h2,
#contact .products-head .h2 {
  font-size: clamp(40px, 3.1vw, 52px);
  line-height: 1.12;
}

#about .about-lead .lede,
#products .products-head .lede,
#gallery .products-head .lede,
#process .products-head .lede,
#contact .products-head .lede {
  font-size: 18px;
  line-height: 1.76;
}

#about .about-lead p {
  margin-top: 22px;
}

#about .about-features {
  gap: 18px;
}

#about .about-features .feat {
  min-height: 226px;
  padding: 30px;
}

#about .feat-num {
  font-size: 29px;
}

#about .feat-title {
  font-size: 24px;
}

#about .feat-desc {
  font-size: 15px;
  line-height: 1.65;
}

#products .products-head,
#gallery .products-head,
#process .products-head,
#contact .products-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
}

#products .products-head .left,
#gallery .products-head .left,
#process .products-head .left,
#contact .products-head .left {
  max-width: 720px;
}

#products .products-grid {
  grid-auto-rows: 238px;
  gap: 18px;
}

#products .products-grid .prod.has-photo .prod-content {
  padding: 22px;
}

#products .products-grid .prod-name {
  font-size: 24px;
}

#products .products-grid .prod-idx,
#products .products-grid .prod-en {
  font-size: 11px;
}

#gallery .gal-filters {
  gap: 10px;
  margin-bottom: 36px;
  padding: 14px;
}

#gallery .gal-chip {
  padding: 11px 16px 11px 18px;
}

#gallery .gal-chip .cn {
  font-size: 14px;
}

#gallery .gal-chip .mono {
  font-size: 11px;
}

#gallery .gal-group-cn {
  font-size: 21px;
}

#gallery .gal-group-en,
#gallery .gal-group-count {
  font-size: 11px;
}

#gallery .gallery-grid.uniform {
  grid-auto-rows: 250px;
  gap: 18px;
}

#gallery .tile-cn {
  top: 18px;
  left: 18px;
  font-size: 15px;
}

#gallery .tile-meta {
  right: 18px;
  bottom: 18px;
  left: 18px;
}

#gallery .tile-label {
  padding: 7px 11px;
  font-size: 11px;
}

#process .process-grid {
  gap: 20px;
  margin-top: 36px;
}

#process .step {
  min-height: 280px;
  padding: 38px 36px;
}

#process .step-num {
  font-size: 60px;
}

#process .step-name {
  font-size: 25px;
}

#process .step-desc {
  font-size: 15px;
  line-height: 1.7;
}

#process .step-meta {
  font-size: 11px;
}

#contact .contact-grid {
  gap: 24px;
}

#contact .contact-info,
#contact .form {
  padding: 44px;
}

#contact .contact-info {
  gap: 32px;
}

#contact .contact-block .lab,
#contact .field label {
  font-size: 11px;
}

#contact .contact-block .val {
  font-size: 20px;
}

#contact .contact-block .sub,
#contact .form-note {
  font-size: 14px;
}

#contact .field input,
#contact .field textarea,
#contact .field select {
  padding: 14px 16px;
  font-size: 15px;
}

#contact .field textarea {
  min-height: 132px;
}

#contact .map-block {
  margin-top: 34px;
}

#contact .map-head {
  padding: 34px 38px;
}

#contact .map-frame {
  height: 520px;
}

#contact .map-pin-card {
  max-width: 330px;
  padding: 22px;
}

#contact .map-pin-cn {
  font-size: 17px;
}

#contact .map-pin-addr {
  font-size: 14px;
}

.footer {
  padding-top: 64px;
  padding-bottom: 38px;
}

.footer-grid {
  gap: 40px;
}

.footer-col h4 {
  font-size: 12px;
}

.footer-col a,
.footer-col li {
  font-size: 14px;
}

.footer-bottom {
  font-size: 11px;
}

@media (max-width: 1199px) {
  #about,
  #products,
  #gallery,
  #process,
  #contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #about .about-lead {
    padding: 42px;
  }

  #about .about-features .feat {
    min-height: 204px;
    padding: 26px;
  }

  #products .products-grid {
    grid-auto-rows: 218px;
  }

  #gallery .gallery-grid.uniform {
    grid-auto-rows: 230px;
  }

  #process .step {
    min-height: 260px;
    padding: 34px 30px;
  }

  #contact .contact-info,
  #contact .form {
    padding: 38px;
  }
}

@media (max-width: 920px) {
  #about .shell,
  #products .shell,
  #gallery .shell,
  #process .shell,
  #contact .shell,
  .footer .shell {
    padding-right: 24px;
    padding-left: 24px;
  }

  #about .about-grid {
    grid-template-columns: 1fr;
  }

  #about .about-features .feat {
    min-height: 190px;
  }

  #products .products-grid {
    grid-auto-rows: 210px;
  }

  #gallery .gallery-grid.uniform {
    grid-auto-rows: 215px;
  }

  #contact .map-frame {
    height: 440px;
  }
}

@media (max-width: 540px) {
  #about .shell,
  #products .shell,
  #gallery .shell,
  #process .shell,
  #contact .shell,
  .footer .shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  #about,
  #products,
  #gallery,
  #process,
  #contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  #about .about-lead,
  #about .about-features .feat,
  #process .step,
  #contact .contact-info,
  #contact .form {
    padding: 24px;
  }

  #about .about-lead .h2,
  #products .products-head .h2,
  #gallery .products-head .h2,
  #process .products-head .h2,
  #contact .products-head .h2 {
    font-size: 34px;
  }

  #about .about-lead .lede,
  #products .products-head .lede,
  #gallery .products-head .lede,
  #process .products-head .lede,
  #contact .products-head .lede {
    font-size: 16px;
  }

  #about .about-features .feat {
    min-height: 174px;
  }

  #about .feat-title {
    font-size: 22px;
  }

  #about .feat-desc {
    font-size: 14px;
  }

  #products .products-grid {
    grid-auto-rows: 174px;
    gap: 12px;
  }

  #products .products-grid .prod.has-photo .prod-content {
    padding: 15px;
  }

  #products .products-grid .prod-name {
    font-size: 19px;
  }

  #gallery .gallery-grid.uniform {
    grid-auto-rows: 174px;
    gap: 12px;
  }

  #gallery .gal-chip {
    padding: 9px 12px;
  }

  #gallery .tile-cn {
    top: 14px;
    left: 14px;
    font-size: 14px;
  }

  #gallery .tile-meta {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  #process .step {
    min-height: 224px;
  }

  #process .step-name {
    font-size: 23px;
  }

  #process .step-desc {
    font-size: 14px;
  }

  #contact .contact-block .val {
    font-size: 18px;
  }

  #contact .contact-block .sub,
  #contact .form-note {
    font-size: 13px;
  }

  #contact .map-head {
    padding: 24px;
  }

  #contact .map-frame {
    height: 360px;
  }

  .footer {
    padding-top: 48px;
  }
}

/* === TIDIER GALLERY HEADER AND FILTERS - 2026-07-17 === */
#gallery .products-head {
  align-items: flex-end;
  column-gap: 40px;
}

#gallery .products-head .left {
  max-width: 760px;
}

#gallery .products-head .h2 {
  font-size: 44px;
  line-height: 1.14;
}

#gallery .products-head > div:last-child {
  width: min(100%, 390px);
  max-width: 390px;
  align-self: flex-end;
}

#gallery .products-head .lede {
  max-width: 390px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

#gallery .gal-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

#gallery .gal-chip {
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 10px 16px;
}

#gallery .gal-chip .cn {
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
}

#gallery .gal-chip .mono {
  flex-shrink: 0;
  font-size: 10px;
}

@media (max-width: 920px) {
  #gallery .products-head > div:last-child,
  #gallery .products-head .lede {
    width: 100%;
    max-width: 620px;
  }

  #gallery .gal-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  #gallery .products-head {
    gap: 18px;
  }

  #gallery .products-head .h2 {
    font-size: 32px;
  }

  #gallery .products-head .lede {
    font-size: 15px;
    line-height: 1.65;
  }

  #gallery .gal-filters {
    gap: 8px;
    padding: 10px;
    grid-auto-rows: 58px;
  }

  #gallery .gal-chip {
    height: 58px;
    gap: 8px;
    padding: 9px 10px;
  }

  #gallery .gal-chip .cn {
    font-size: 12px;
    line-height: 1.25;
  }

  #gallery .gal-chip .mono {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 9px;
  }
}

/* === SIZE + MAP POSITION REFINEMENTS === */
.nav {
  height: 76px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  font-size: 15px;
}

.brand-name .en {
  font-size: 17px;
}

.brand-name .cn {
  font-size: 12.5px;
}

.nav-link {
  font-size: 15.5px;
  font-weight: 600;
  padding: 10px 16px;
}

.nav-actions .btn {
  font-size: 15px;
  padding: 13px 20px;
}

.lang-switch .lang-btn {
  font-size: 12px;
  min-width: 38px;
  padding: 8px 12px;
}

.hero-meta-row {
  padding: 13px 0;
  font-size: 15px;
}

.hero-meta-row .k {
  font-size: 11px;
}

.hero-meta-row .v {
  font-size: 15.5px;
  font-weight: 700;
}

.hero-meta .btn {
  font-size: 15px;
  padding: 14px 20px;
}

.prod-name {
  font-size: clamp(25px, 1.9vw, 31px);
  line-height: 1.14;
}

.prod-en {
  font-size: 11.5px;
}

.prod-tag {
  font-size: 12.5px;
  line-height: 1.45;
}

.step {
  min-height: 280px;
  padding: 38px 34px 32px;
}

.step-num {
  font-size: clamp(58px, 4.6vw, 70px);
}

.step-name {
  font-size: clamp(23px, 1.85vw, 29px);
  line-height: 1.18;
  margin-top: 24px;
}

.step-desc {
  font-size: 15.5px;
  line-height: 1.78;
}

.step-meta {
  font-size: 11.5px;
  letter-spacing: 0.16em;
}

.map-pin-card {
  left: 18px;
  right: auto;
  top: 18px;
  max-width: 365px;
  padding: 22px;
  align-items: flex-start;
}

.map-pin-card > div:last-child {
  text-align: left;
}

.map-pin-icon {
  width: 44px;
  height: 44px;
}

.map-pin-name {
  font-size: 11.5px;
  letter-spacing: 0.18em;
}

.map-pin-cn {
  font-size: 19px;
  line-height: 1.25;
}

.map-pin-addr {
  font-size: 14px;
  line-height: 1.65;
}

.map-pin-link {
  font-size: 11px;
}

@media (max-width: 920px) {
  .nav {
    height: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name .en {
    font-size: 15.5px;
  }

  .brand-name .cn {
    font-size: 11.5px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 230px;
  }
}

@media (max-width: 540px) {
  .prod-name {
    font-size: 21px;
    line-height: 1.15;
  }

  .prod-en,
  .prod-tag {
    font-size: 10.5px;
  }

  .step {
    padding: 28px 24px;
    min-height: 220px;
  }

  .step-num {
    font-size: 54px;
  }

  .step-name {
    font-size: 22px;
  }

  .step-desc {
    font-size: 14.5px;
  }

  .map-pin-card {
    left: 14px;
    top: 14px;
    right: 14px;
    max-width: none;
    padding: 18px;
  }
}

/* === MAP RIGHT + STATUS READABILITY === */
.hero-meta {
  padding: 28px;
}

.hero-meta-row {
  padding: 16px 0;
  border-bottom-color: rgba(255,255,255,0.2);
}

.hero-meta-row .k {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: rgba(240,209,140,0.72);
}

.hero-meta-row .v {
  font-size: 18px;
  font-weight: 800;
  color: #fff7ec;
  text-shadow: 0 1px 14px rgba(0,0,0,0.52);
}

.live-dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
}

.hero-meta .btn {
  margin-top: 22px !important;
  font-size: 16px;
}

.map-pin-card {
  left: auto;
  right: 18px;
  top: 18px;
  max-width: 365px;
}

@media (max-width: 720px) {
  .map-pin-card {
    left: 14px;
    right: 14px;
    top: 14px;
    max-width: none;
  }
}

/* === MAP IFRAME EDGE CLEANUP === */
.map-block {
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 28px 72px rgba(0,0,0,0.42);
}

.map-block::after {
  display: none;
}

.map-head {
  border-bottom: 0;
}

.map-frame {
  border-top: 0;
  background: #0b0f12;
  overflow: hidden;
  isolation: isolate;
}

.map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  transform: translateZ(0);
}

/* === HERO LABEL READABILITY === */
.hero-top .tag {
  font-size: 13.5px;
  letter-spacing: 0.15em;
  padding: 9px 14px;
  gap: 10px;
}

.hero-top .tag::before {
  width: 8px;
  height: 8px;
}

.hero-photo .label {
  bottom: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  font-size: 12.5px;
  line-height: 1.25;
  letter-spacing: 0.14em;
  padding: 9px 14px;
  white-space: normal;
}

@media (max-width: 720px) {
  .hero-top .tag {
    font-size: 12.5px;
    padding: 8px 12px;
  }

  .hero-photo .label {
    font-size: 11.8px;
    padding: 8px 12px;
  }
}

/* === HERO STATS READABILITY === */
.hero-foot {
  gap: 34px;
}

.hero-stat {
  gap: 8px;
  min-width: 170px;
}

.hero-stat .num {
  font-size: 36px;
  line-height: 1;
  color: #e2b45f;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.hero-stat .lab {
  max-width: 220px;
  font-size: 12.5px;
  line-height: 1.45;
  letter-spacing: 0.13em;
  color: rgba(246,242,235,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

@media (max-width: 720px) {
  .hero-foot {
    gap: 18px;
  }

  .hero-stat {
    min-width: 0;
  }

  .hero-stat .num {
    font-size: 31px;
  }

  .hero-stat .lab {
    font-size: 11.5px;
    letter-spacing: 0.11em;
  }
}

/* === HERO META TYPE BALANCE === */
.hero-meta-row {
  gap: 24px;
  padding: 15px 0;
}

.hero-meta-row .k {
  flex: 0 0 96px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: rgba(240,209,140,0.82);
}

.hero-meta-row .v {
  flex: 1;
  max-width: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  text-align: right;
  color: rgba(255,247,236,0.94);
  text-shadow: 0 1px 10px rgba(0,0,0,0.42);
}

.live-dot {
  width: 7px;
  height: 7px;
  margin-right: 9px;
}

@media (max-width: 720px) {
  .hero-meta-row {
    gap: 16px;
  }

  .hero-meta-row .k {
    flex-basis: 78px;
    font-size: 13px;
  }

  .hero-meta-row .v {
    font-size: 15px;
  }
}

/* === GALLERY NAME READABILITY === */
#gallery .gal-chip {
  padding: 11px 16px 11px 18px;
}

#gallery .gal-chip .cn {
  font-size: 15px;
  font-weight: 650;
}

#gallery .gal-chip .mono {
  font-size: 11px;
  letter-spacing: 0.13em;
}

#gallery .gal-group-head {
  margin-bottom: 22px;
}

#gallery .gal-group-cn {
  font-size: 24px;
  font-weight: 750;
}

#gallery .gal-group-en {
  font-size: 13px;
  letter-spacing: 0.16em;
}

#gallery .gal-group-count {
  font-size: 12px;
}

#gallery .tile-cn {
  top: 16px;
  left: 16px;
  max-width: calc(100% - 32px);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 750;
  color: #fff7ec;
  text-shadow: 0 2px 16px rgba(0,0,0,0.62);
}

#gallery .tile-meta {
  bottom: 16px;
  left: 16px;
  right: 16px;
}

#gallery .tile-label {
  max-width: 100%;
  font-size: 12.5px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  padding: 9px 13px;
  color: rgba(255,247,236,0.94);
  white-space: normal;
}

@media (max-width: 640px) {
  #gallery .gal-chip .cn {
    font-size: 14px;
  }

  #gallery .gal-chip .mono {
    font-size: 10.5px;
  }

  #gallery .gal-group-cn {
    font-size: 21px;
  }

  #gallery .gal-group-en {
    font-size: 11.5px;
  }

  #gallery .gal-group-count {
    font-size: 10.5px;
  }

  #gallery .tile-cn {
    font-size: 15.5px;
  }

  #gallery .tile-label {
    font-size: 11.2px;
    padding: 8px 11px;
  }
}

/* === GALLERY DESCRIPTIONS + FLOATING CTA === */
#gallery .gal-group-desc {
  margin: 9px 0 0;
  max-width: 620px;
  font-family: var(--font-cn);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246,242,235,0.72);
}

.wa-fab {
  width: auto;
  min-width: 56px;
  height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.wa-fab-label {
  font-family: var(--font-cn);
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  #gallery .gal-group-desc {
    font-size: 13.5px;
  }

  .wa-fab {
    width: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .wa-fab-label {
    display: none;
  }
}

/* === GALLERY FOCUS CLEANUP === */
#gallery .gal-chip:focus,
#gallery .tile:focus,
.lightbox-close:focus {
  outline: none;
}

#gallery .gal-chip:focus:not(:focus-visible),
#gallery .tile:focus:not(:focus-visible),
.lightbox-close:focus:not(:focus-visible) {
  outline: none;
}

#gallery .gal-chip:focus-visible,
#gallery .tile:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid rgba(212,170,100,0.72);
  outline-offset: 3px;
}

#gallery .gal-chip:focus:not(:focus-visible) {
  box-shadow: var(--glass-inset), 0 14px 34px rgba(0,0,0,0.24);
}

#gallery .gal-chip.is-active:focus:not(:focus-visible) {
  box-shadow: 0 1px 0 rgba(255,255,255,0.36) inset, 0 12px 24px rgba(201,154,95,0.18);
}

#gallery .tile:focus:not(:focus-visible) {
  box-shadow: var(--glass-inset), var(--glass-shadow);
}

/* === PREMIUM GRAPHITE GALLERY PASS === */
body::after {
  opacity: 0.18;
  background:
    linear-gradient(115deg, transparent 0 21%, rgba(255,255,255,0.018) 22%, transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0 1px, transparent 1px 54px);
}

#gallery {
  position: relative;
  isolation: isolate;
}

#gallery .gal-filters {
  position: relative;
  z-index: 2;
  padding: 14px 14px 18px;
  border: 1px solid rgba(214,174,103,0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(9,12,13,0.66);
  box-shadow: 0 18px 48px rgba(0,0,0,0.24);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

#gallery .gal-chip {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035)),
    rgba(18,22,23,0.92);
  border-color: rgba(214,174,103,0.18);
  color: rgba(246,242,235,0.88);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 10px 22px rgba(0,0,0,0.22);
}

#gallery .gal-chip:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04)),
    rgba(21,26,27,0.96);
  border-color: rgba(240,209,140,0.34);
  color: #fff7ec;
  box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 12px 24px rgba(0,0,0,0.24);
}

#gallery .gal-chip.is-active {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.08) 42%),
    linear-gradient(180deg, #d9ac63, #b9823f);
  border-color: rgba(240,209,140,0.62);
  color: #1a1208;
  box-shadow: 0 1px 0 rgba(255,255,255,0.42) inset, 0 14px 26px rgba(201,154,95,0.18);
}

#gallery .gal-chip.is-active .mono {
  background: rgba(26,18,8,0.16);
  color: #1a1208;
}

#gallery .gal-chip:focus:not(:focus-visible) {
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 10px 22px rgba(0,0,0,0.22);
}

#gallery .gal-chip.is-active:focus:not(:focus-visible) {
  box-shadow: 0 1px 0 rgba(255,255,255,0.42) inset, 0 14px 26px rgba(201,154,95,0.18);
}

/* === PREMIUM HERO COMPOSITE === */
.hero-main {
  background:
    linear-gradient(90deg, rgba(7,10,11,0.86) 0%, rgba(7,10,11,0.64) 52%, rgba(7,10,11,0.24) 100%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.032) 42%, rgba(255,255,255,0.018)),
    url("images/optimized/hero-hardware-premium.webp") center right / cover;
}

.hero-main::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.18) 0%, transparent 27%),
    linear-gradient(302deg, rgba(255,255,255,0.055) 0%, transparent 38%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.024) 0 1px, transparent 1px 28px);
  opacity: 0.42;
}

.hero-main::after {
  opacity: 0.34;
}

/* === WARM CONCRETE THEME === */
:root {
  --bg: #171715;
  --bg-2: #201f1c;
  --panel: rgba(232,224,210,0.105);
  --panel-2: rgba(232,224,210,0.145);
  --line: rgba(232,224,210,0.18);
  --line-2: rgba(232,224,210,0.30);
  --text: #f7f1e8;
  --text-dim: #ded3c2;
  --muted: #a89e8f;
  --brass: #d4a862;
  --brass-2: #f1d18b;
  --brass-deep: #9b6f3e;
  --iron: #9b9a92;
  --rust: #a86b4b;
  --concrete: #d4ccbd;
  --glass-fill: rgba(232,224,210,0.105);
  --glass-fill-strong: rgba(232,224,210,0.155);
  --glass-line: rgba(232,224,210,0.28);
  --glass-line-soft: rgba(232,224,210,0.16);
  --glass-shadow: 0 34px 90px rgba(10,9,7,0.40), 0 10px 24px rgba(10,9,7,0.20);
  --glass-shadow-lift: 0 48px 120px rgba(10,9,7,0.50), 0 18px 34px rgba(10,9,7,0.24);
  --glass-inset: 0 1px 0 rgba(255,248,236,0.34) inset, 0 -1px 0 rgba(0,0,0,0.32) inset;
  --shadow-ambient: var(--glass-shadow);
  --shadow-lift: var(--glass-shadow-lift);
  --shadow-1: var(--glass-inset), var(--glass-shadow);
}

body {
  background:
    linear-gradient(180deg, rgba(239,229,210,0.10) 0, transparent 260px),
    linear-gradient(125deg, rgba(154,147,132,0.34) 0%, transparent 39%),
    linear-gradient(235deg, rgba(212,168,98,0.15) 0%, transparent 43%),
    linear-gradient(180deg, #22211d 0%, #171715 55%, #10100e 100%);
  background-attachment: fixed;
}

body::before {
  opacity: 0.26;
  mix-blend-mode: soft-light;
}

body::after {
  opacity: 0.16;
  background:
    linear-gradient(115deg, transparent 0 21%, rgba(245,236,218,0.018) 22%, transparent 34%),
    repeating-linear-gradient(90deg, rgba(245,236,218,0.011) 0 1px, transparent 1px 54px);
}

.hero-main {
  background:
    linear-gradient(90deg, rgba(18,17,15,0.84) 0%, rgba(18,17,15,0.62) 52%, rgba(18,17,15,0.24) 100%),
    linear-gradient(145deg, rgba(245,236,218,0.12), rgba(245,236,218,0.032) 42%, rgba(245,236,218,0.018)),
    url("images/optimized/hero-hardware-premium.webp") center right / cover;
}

#gallery .gal-filters {
  border-color: rgba(212,168,98,0.16);
  background:
    linear-gradient(180deg, rgba(245,236,218,0.06), rgba(245,236,218,0.022)),
    rgba(29,28,25,0.72);
  box-shadow: 0 18px 48px rgba(10,9,7,0.22);
}

#gallery .gal-chip {
  background:
    linear-gradient(180deg, rgba(245,236,218,0.12), rgba(245,236,218,0.04)),
    rgba(42,40,35,0.92);
  border-color: rgba(212,168,98,0.20);
  color: rgba(247,241,232,0.90);
  box-shadow: 0 1px 0 rgba(255,248,236,0.13) inset, 0 10px 22px rgba(10,9,7,0.22);
}

#gallery .gal-chip:hover {
  background:
    linear-gradient(180deg, rgba(245,236,218,0.15), rgba(245,236,218,0.05)),
    rgba(48,46,40,0.96);
  border-color: rgba(241,209,139,0.36);
  color: #fff8ec;
}

/* === PALE BRICK WALL BACKGROUND === */
body {
  background:
    linear-gradient(180deg, rgba(245,238,225,0.13) 0, transparent 260px),
    radial-gradient(900px 520px at 78% -120px, rgba(212,168,98,0.11), transparent 64%),
    radial-gradient(820px 520px at 4% 22%, rgba(171,103,88,0.20), transparent 66%),
    linear-gradient(180deg, #302521 0%, #211b18 54%, #151310 100%);
  background-attachment: fixed;
}

body::after {
  opacity: 0.34;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.15), rgba(244,239,229,0.075) 42%, rgba(255,255,255,0.025)),
    linear-gradient(0deg, transparent 47px, rgba(245,238,226,0.16) 48px, transparent 49px),
    linear-gradient(90deg, transparent 95px, rgba(245,238,226,0.11) 96px, transparent 97px),
    linear-gradient(90deg, transparent 47px, rgba(245,238,226,0.075) 48px, transparent 49px),
    repeating-linear-gradient(90deg, rgba(255,246,232,0.012) 0 1px, transparent 1px 54px);
  background-size:
    auto,
    96px 48px,
    96px 48px,
    96px 96px,
    54px 54px;
  background-position:
    0 0,
    0 0,
    0 0,
    48px 24px,
    0 0;
}

/* === REALISTIC RED BRICK WALL BACKGROUND === */
body {
  background:
    linear-gradient(180deg, rgba(245,238,225,0.13) 0%, rgba(245,238,225,0.055) 42%, rgba(10,8,7,0.22) 100%),
    radial-gradient(900px 520px at 80% -120px, rgba(212,168,98,0.14), transparent 64%),
    radial-gradient(880px 600px at 4% 18%, rgba(245,238,225,0.075), transparent 62%),
    linear-gradient(90deg, rgba(18,16,14,0.54) 0%, rgba(18,16,14,0.34) 48%, rgba(18,16,14,0.50) 100%),
    url("images/optimized/bg-red-brick-wall.webp") center top / cover;
  background-attachment: fixed;
}

body::after {
  opacity: 0.16;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.12), rgba(244,239,229,0.058) 38%, rgba(255,255,255,0.018)),
    linear-gradient(115deg, transparent 0 22%, rgba(255,246,232,0.018) 24%, transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,246,232,0.012) 0 1px, transparent 1px 54px);
  background-size: auto, auto, 54px 54px;
}

/* === DEEP BRICK POLISH + HOVER CLEANUP === */
body {
  background:
    linear-gradient(180deg, rgba(245,238,225,0.075) 0%, rgba(245,238,225,0.028) 38%, rgba(8,7,6,0.34) 100%),
    radial-gradient(900px 520px at 80% -120px, rgba(212,168,98,0.10), transparent 64%),
    radial-gradient(900px 640px at 2% 18%, rgba(116,62,48,0.26), transparent 64%),
    linear-gradient(90deg, rgba(12,10,9,0.70) 0%, rgba(12,10,9,0.50) 48%, rgba(12,10,9,0.64) 100%),
    url("images/optimized/bg-red-brick-wall.webp") center top / cover;
  background-attachment: fixed;
}

body::after {
  opacity: 0.10;
  background:
    linear-gradient(180deg, rgba(238,229,214,0.065), rgba(238,229,214,0.026) 38%, rgba(255,255,255,0.008)),
    repeating-linear-gradient(90deg, rgba(238,229,214,0.006) 0 1px, transparent 1px 54px);
  background-size: auto, 54px 54px;
}

.nav-wrap {
  background:
    linear-gradient(180deg, rgba(91,63,47,0.24), rgba(22,18,15,0.08) 44%),
    linear-gradient(180deg, rgba(34,29,25,0.96), rgba(18,16,14,0.92));
  border-top: 1px solid rgba(141,79,52,0.46);
  border-bottom-color: rgba(216,168,92,0.22);
  box-shadow:
    0 1px 0 rgba(245,221,176,0.10) inset,
    0 14px 32px rgba(0,0,0,0.34);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
}

.nav-link {
  color: rgba(247,241,232,0.86);
}

.nav-link:hover {
  color: #fff7ec;
  background: rgba(212,168,98,0.075);
  box-shadow: none;
}

.nav-actions .btn-ghost,
.lang-switch {
  background:
    linear-gradient(180deg, rgba(239,222,194,0.105), rgba(239,222,194,0.035)),
    rgba(30,26,22,0.78);
  border-color: rgba(216,168,92,0.24);
  box-shadow:
    0 1px 0 rgba(255,248,236,0.13) inset,
    0 10px 22px rgba(0,0,0,0.20);
}

.nav-actions .btn-ghost:hover,
.lang-switch .lang-btn:hover {
  color: #fff7ec;
  border-color: rgba(241,209,139,0.40);
  background:
    linear-gradient(180deg, rgba(239,222,194,0.13), rgba(239,222,194,0.045)),
    rgba(44,36,29,0.86);
  box-shadow:
    0 1px 0 rgba(255,248,236,0.14) inset,
    0 12px 24px rgba(0,0,0,0.22);
}

.brand-mark,
.lang-switch .lang-btn.is-active {
  box-shadow:
    0 1px 0 rgba(255,248,236,0.48) inset,
    0 -1px 0 rgba(83,50,21,0.50) inset,
    0 10px 22px rgba(183,126,66,0.20);
}

.card:hover,
.prod:hover,
.tile:hover,
.step:hover,
.hero-photo:hover,
.hero-meta:hover {
  border-color: rgba(212,168,98,0.30);
  box-shadow:
    0 1px 0 rgba(255,248,236,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.34) inset,
    0 24px 52px rgba(0,0,0,0.32);
}

.prod:hover {
  transform: translateY(-5px) rotateX(0.7deg);
}

.tile:hover {
  transform: translateY(-5px);
}

.hero-photo:hover,
.hero-meta:hover {
  transform: translateZ(0);
}

#gallery .gal-chip:hover,
#gallery .gal-chip:focus:not(:focus-visible),
#gallery .tile:focus:not(:focus-visible) {
  box-shadow:
    0 1px 0 rgba(255,248,236,0.10) inset,
    0 10px 22px rgba(0,0,0,0.22);
}

#gallery .gal-chip.is-active,
#gallery .gal-chip.is-active:focus:not(:focus-visible) {
  box-shadow:
    0 1px 0 rgba(255,248,236,0.28) inset,
    0 12px 24px rgba(156,102,45,0.18);
}

:root {
  --glass-inset: 0 1px 0 rgba(245,236,218,0.16) inset, 0 -1px 0 rgba(0,0,0,0.34) inset;
  --glass-shadow: 0 26px 68px rgba(10,9,7,0.36), 0 8px 18px rgba(10,9,7,0.18);
  --glass-shadow-lift: 0 30px 72px rgba(10,9,7,0.40), 0 10px 22px rgba(10,9,7,0.20);
  --shadow-ambient: var(--glass-shadow);
  --shadow-lift: var(--glass-shadow-lift);
  --shadow-1: var(--glass-inset), var(--glass-shadow);
}

.card,
.hero-photo,
.hero-meta,
.prod,
.tile,
.price-note,
.map-block,
.map-pin-card,
.step,
.contact-info,
.form {
  box-shadow:
    0 1px 0 rgba(245,236,218,0.13) inset,
    0 -1px 0 rgba(0,0,0,0.34) inset,
    0 24px 58px rgba(0,0,0,0.30);
}

.card::after,
.hero-photo::after,
.hero-meta::after,
.prod::before,
.tile::before,
.price-note::after,
.map-block::after,
.step::after,
.form::after {
  opacity: 0.34;
}

.hero-main::before {
  opacity: 0.32;
}

.tile-overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(0,0,0,0.08) 34%, rgba(0,0,0,0.72) 100%),
    linear-gradient(124deg, rgba(245,236,218,0.08), transparent 33%);
}

.prod-photo-shade {
  background:
    linear-gradient(180deg, rgba(10,8,7,0.05) 0%, rgba(10,8,7,0.30) 38%, rgba(10,8,7,0.90) 100%),
    linear-gradient(128deg, rgba(245,236,218,0.07), transparent 34%);
}

.hero-meta-row {
  flex-wrap: wrap;
}

.holiday-greeting {
  flex: 0 0 100%;
  padding-left: 120px;
  margin-top: -4px;
  font-family: var(--font-cn);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
  color: rgba(241,209,139,0.86);
}

@media (max-width: 720px) {
  .holiday-greeting {
    padding-left: 0;
    font-size: 12.5px;
  }
}

/* === QUIETER GLASS REFLECTIONS === */
.card::after,
.hero-photo::after,
.hero-meta::after,
.prod::before,
.tile::before,
.price-note::after,
.map-block::after,
.form::after {
  background:
    linear-gradient(180deg, rgba(245,236,218,0.045), rgba(245,236,218,0.010) 44%, transparent 100%);
  opacity: 0.18;
}

.step {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238,225,205,0.075), rgba(238,225,205,0.028) 42%, rgba(0,0,0,0.035)),
    rgba(56,45,38,0.84);
  border-color: rgba(222,180,111,0.24);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow:
    0 1px 0 rgba(245,236,218,0.11) inset,
    0 -1px 0 rgba(0,0,0,0.34) inset,
    0 16px 34px rgba(0,0,0,0.24);
}

.step::after {
  background:
    linear-gradient(180deg, rgba(245,236,218,0.035), transparent 46%);
  opacity: 0.10;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(222,180,111,0.34);
  background:
    linear-gradient(180deg, rgba(238,225,205,0.09), rgba(238,225,205,0.032) 42%, rgba(0,0,0,0.04)),
    rgba(62,49,41,0.88);
  box-shadow:
    0 1px 0 rgba(245,236,218,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.34) inset,
    0 18px 38px rgba(0,0,0,0.26);
}

.step-num,
.step-name,
.step-desc,
.step-meta {
  text-shadow: none;
}

/* === DELIVERY HERO COVER PREVIEW === */
.hero-main {
  background:
    linear-gradient(90deg, rgba(17,14,10,0.94) 0%, rgba(17,14,10,0.78) 48%, rgba(17,14,10,0.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.24)),
    url("images/optimized/delivery-crane.webp") center right / cover;
}

.hero-main::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.15) 0%, transparent 26%),
    linear-gradient(302deg, rgba(255,255,255,0.045) 0%, transparent 38%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.020) 0 1px, transparent 1px 28px);
  opacity: 0.24;
}

.hero-main::after {
  opacity: 0.18;
}

.hero-headline,
.hero-sub,
.hero-stat {
  text-shadow: 0 2px 18px rgba(0,0,0,0.58);
}

@media (max-width: 720px) {
  .hero-main {
    background:
      linear-gradient(180deg, rgba(17,14,10,0.90) 0%, rgba(17,14,10,0.74) 56%, rgba(17,14,10,0.54) 100%),
      url("images/optimized/delivery-crane.webp") 64% center / cover;
  }
}

/* === LAUNCH READINESS FIXES: mobile readability, anchors, form usability === */
html {
  scroll-padding-top: 96px;
}

#about,
#products,
#gallery,
#process,
#contact {
  scroll-margin-top: 96px;
}

.field input,
.field textarea,
.field select {
  min-height: 48px;
}

.wa-fab.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 86px;
  }

  #about,
  #products,
  #gallery,
  #process,
  #contact {
    scroll-margin-top: 86px;
  }
}

@media (max-width: 540px) {
  body {
    padding-bottom: 72px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-main {
    padding: 22px 20px;
  }

  .hero-headline {
    font-size: 34px;
    line-height: 1.18;
  }

  .products-grid {
    grid-auto-rows: 178px;
    gap: 12px;
  }

  .prod.has-photo .prod-content {
    padding: 16px;
  }

  .prod-name {
    font-size: 21px;
    line-height: 1.08;
    margin-top: 6px;
  }

  .prod-en {
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.12em;
  }

  .prod-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .prod-tag {
    display: -webkit-box;
    font-size: 11px;
    line-height: 1.35;
    max-width: 100%;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .prod-action {
    display: none;
  }

  .prod-photo-shade {
    background:
      linear-gradient(180deg, rgba(10,8,7,0.12) 0%, rgba(10,8,7,0.48) 46%, rgba(10,8,7,0.96) 100%),
      linear-gradient(128deg, rgba(245,236,218,0.08), transparent 34%);
  }

  .form {
    padding-bottom: 86px;
  }

  .form-actions {
    gap: 14px;
  }

  .wa-fab {
    width: 52px;
    min-width: 52px;
    height: 52px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

/* === MOBILE HERO COVER TIGHTENING === */
@media (max-width: 540px) {
  body {
    overflow-x: hidden;
  }

  .nav {
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-name {
    min-width: 0;
  }

  .brand-name .en {
    font-size: 14px;
    white-space: nowrap;
  }

  .brand-name .cn {
    display: none;
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .nav-actions > .lang-switch {
    display: none;
  }

  .nav-actions .btn-primary {
    width: 46px;
    min-width: 46px;
    height: 46px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .nav-actions .btn-primary svg {
    width: 18px;
    height: 18px;
  }

  .hero-grid,
  .hero-main,
  .hero-side,
  .hero-photo,
  .hero-meta {
    min-width: 0;
    max-width: 100%;
  }

  .hero-headline,
  .hero-sub {
    max-width: 100%;
  }
}

/* === PHONE NAV FINAL FIT === */
@media (max-width: 540px) {
  .nav {
    justify-content: space-between;
  }

  .nav-actions {
    gap: 0 !important;
  }

  .nav-actions > .lang-switch,
  .nav-actions > .btn-ghost,
  .nav-actions > .btn-primary {
    display: none !important;
  }

  .nav-mobile-btn {
    display: flex !important;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .brand-name .en {
    font-size: 14.5px !important;
  }

  .hero {
    overflow: hidden;
  }
}

/* === PHONE VIEWPORT WIDTH LOCK === */
@media (max-width: 540px) {
  .shell {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    overflow: hidden;
  }

  .nav-wrap .shell {
    overflow: visible;
  }

  .nav {
    width: calc(100vw - 28px);
    position: relative;
  }

  .brand {
    padding-right: 54px;
  }

  .nav-actions {
    position: fixed;
    right: 14px;
    top: 14px;
    transform: none;
    z-index: 90;
  }

  .nav-mobile-btn {
    background:
      linear-gradient(180deg, rgba(239,222,194,0.12), rgba(239,222,194,0.04)),
      rgba(22,19,16,0.92);
  }

  .hero-main,
  .hero-side,
  .hero-photo,
  .hero-meta {
    width: calc(100vw - 28px) !important;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.65;
    max-width: 30ch !important;
  }

  .hero-foot {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-stat {
    min-width: 0 !important;
  }

  .hero-stat .lab {
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }
}

/* === LOCAL YARD HERO VERSION B === */
.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.hero-main {
  min-height: 560px;
  justify-content: flex-start;
  background:
    linear-gradient(145deg, rgba(42,34,26,0.98), rgba(22,19,16,0.99) 58%, rgba(16,18,18,0.98)),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
}

.hero-main::before {
  background:
    linear-gradient(120deg, rgba(245,213,154,0.13) 0%, transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.024) 0 1px, transparent 1px 30px);
  opacity: 0.34;
}

.hero-main::after {
  opacity: 0.12;
}

.hero-headline,
.hero-sub,
.hero-stat {
  text-shadow: none;
}

.hero-side {
  grid-template-rows: minmax(360px, 1.35fr) minmax(230px, 0.75fr);
}

.hero-photo {
  min-height: 360px;
}

.hero-photo .label {
  background:
    linear-gradient(180deg, rgba(39,33,27,0.90), rgba(28,24,21,0.88));
}

.hero-cta .btn {
  min-height: 48px;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-main {
    width: calc(100vw - 28px) !important;
    min-height: auto;
    background:
      linear-gradient(145deg, rgba(42,34,26,0.98), rgba(22,19,16,0.99) 58%, rgba(16,18,18,0.98));
  }

  .hero-cta {
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    max-width: 100%;
  }

  .hero-photo {
    min-height: 260px;
  }
}

/* === LOCAL YARD HERO PHONE FIT === */
@media (max-width: 540px) {
  .hero-main,
  .hero-side,
  .hero-photo,
  .hero-meta {
    width: 100% !important;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* === HERO PHOTO EVIDENCE STRIP === */
.hero-evidence {
  margin-top: 34px;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) repeat(2, minmax(0, 0.79fr));
  gap: 8px;
}

.hero-proof-photo {
  height: 118px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(0,0,0,0.18);
}

.hero-proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.hero-proof-photo:first-child img {
  object-position: 38% center;
}

.hero-proof-photo:hover img {
  transform: scale(1.035);
}

.hero-proof-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7px 8px;
  color: #fff8eb;
  background: rgba(16,14,11,0.78);
  font-family: var(--font-cn);
  font-size: 11px;
  line-height: 1.2;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-fact {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.hero-fact .num {
  flex: 0 0 auto;
  color: var(--brass);
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 700;
}

.hero-fact .lab {
  min-width: 0;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .hero-evidence {
    margin-top: 26px;
  }

  .hero-main {
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero-evidence,
  .hero-proof-strip,
  .hero-facts,
  .hero-proof-photo {
    min-width: 0;
    max-width: 100%;
  }

  .hero-proof-strip {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.92fr);
    grid-template-rows: 84px 84px;
  }

  .hero-proof-photo {
    height: auto;
    min-height: 0;
  }

  .hero-proof-photo:first-child {
    grid-row: span 2;
  }

  .hero-proof-photo figcaption {
    padding: 6px 7px;
    font-size: 10px;
  }

  .hero-facts {
    gap: 7px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .hero-fact {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .hero-fact .num {
    font-size: 17px;
  }

  .hero-fact .lab {
    font-size: 7.5px;
    letter-spacing: 0.06em;
  }
}

/* === STOREFRONT HERO VERSION C === */
.hero-main {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(24, 19, 14, 0.94) 0%, rgba(24, 19, 14, 0.86) 47%, rgba(24, 19, 14, 0.34) 100%),
    linear-gradient(0deg, rgba(16, 13, 10, 0.58), transparent 54%),
    url("images/optimized/storefront-sign-yard.webp") 27% center / cover;
  border-radius: 8px;
}

.hero-main::before {
  background: linear-gradient(135deg, rgba(255, 245, 224, 0.10), transparent 38%);
  opacity: 0.35;
}

.hero-main::after {
  display: none;
}

.hero-headline,
.hero-sub {
  max-width: 500px;
}

.hero-top + div {
  margin-top: clamp(80px, 8vw, 110px);
}

.hero-evidence {
  max-width: 420px;
  margin-top: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-facts {
  margin-top: 0;
  padding-top: 14px;
  border-top-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 540px) {
  .hero-main {
    min-height: 0;
    padding: 26px 22px 18px;
    background:
      linear-gradient(180deg, rgba(21, 17, 13, 0.50) 0%, rgba(21, 17, 13, 0.72) 28%, rgba(21, 17, 13, 0.96) 51%, rgba(17, 14, 11, 0.98) 100%),
      url("images/optimized/storefront-sign-yard.webp") 27% center / cover;
  }

  .hero-headline {
    margin-top: 26px;
  }

  .hero-top + div {
    margin-top: 10px;
  }

  .hero-evidence {
    margin-top: 22px;
  }
}

/* === ORDERED PRODUCT CATALOG GRID === */
.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 16px;
}

.products-grid .prod,
.products-grid .prod.sz-tall,
.products-grid .prod.sz-wide,
.products-grid .prod.sz-md,
.products-grid .prod.sz-lg,
.products-grid .prod.sz-sm,
.products-grid .prod.sz-feature {
  grid-column: span 1;
  grid-row: span 1;
  min-width: 0;
  min-height: 0;
}

.products-grid .prod.has-photo .prod-content {
  padding: 18px;
}

.products-grid .prod-name {
  font-size: 21px;
  line-height: 1.15;
}

.products-grid .prod-tag {
  line-height: 1.35;
}

@media (max-width: 920px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }
}

@media (max-width: 540px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .products-grid .prod.has-photo .prod-content {
    padding: 14px;
  }

  .products-grid .prod-name {
    font-size: 18px;
  }

  .products-grid .prod-en,
  .products-grid .prod-tag {
    font-size: 9px;
  }
}

/* === INTEGRATED STOREFRONT HERO WITH AUTOMATIC PHOTO ROTATION === */
.hero-redesign {
  padding-top: 34px;
  padding-bottom: 56px;
}

.hero-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(610px, 1fr) auto;
  min-height: 742px;
  overflow: hidden;
  border: 1px solid rgba(232, 218, 194, 0.34);
  border-radius: 8px;
  background: #17130f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.hero-showcase-carousel,
.hero-showcase-shade {
  position: absolute;
  inset: 0 0 130px;
}

.hero-showcase-carousel {
  z-index: 0;
  overflow: hidden;
  background: #17130f;
}

.hero-showcase-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: none;
}

.hero-showcase-img.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-showcase-shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 12, 9, 0.97) 0%, rgba(18, 14, 10, 0.91) 31%, rgba(18, 14, 10, 0.60) 49%, rgba(18, 14, 10, 0.08) 78%),
    linear-gradient(0deg, rgba(14, 11, 8, 0.46), transparent 38%);
}

.hero-showcase-content {
  position: relative;
  z-index: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 58%;
  min-width: 0;
  padding: 48px 64px 56px;
}

.hero-showcase-copy {
  margin-top: 54px;
}

.hero-showcase .hero-headline {
  max-width: 620px;
  margin: 0;
  color: #fffaf0;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.44);
}

.hero-showcase .hero-headline.is-latin {
  font-size: 58px;
  line-height: 1.02;
}

.hero-showcase .hero-sub {
  max-width: 610px;
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 17px;
  line-height: 1.78;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.hero-showcase .hero-cta {
  margin-top: 30px;
}

.hero-showcase .hero-cta .btn {
  min-height: 50px;
}

.hero-info-strip {
  position: relative;
  z-index: 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.28fr 1.32fr 1.02fr;
  min-height: 130px;
  border-top: 1px solid rgba(232, 218, 194, 0.24);
  background: rgba(24, 20, 16, 0.97);
}

.hero-info-item {
  display: flex;
  min-width: 0;
  padding: 25px 30px;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  border-left: 1px solid rgba(232, 218, 194, 0.20);
}

.hero-info-item:first-child {
  border-left: 0;
}

.hero-info-item .k {
  color: var(--brass);
  font-family: var(--font-cn);
  font-size: 13px;
}

.hero-info-item .v {
  min-width: 0;
  color: #fff8ec;
  font-family: var(--font-cn);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.hero-info-item:nth-child(2) .v {
  white-space: nowrap;
  overflow-wrap: normal;
}

.hero-info-item .holiday-greeting {
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .hero-showcase {
    grid-template-rows: minmax(560px, 1fr) auto;
  }

  .hero-showcase-content {
    width: 66%;
    padding-right: 34px;
    padding-left: 42px;
  }

  .hero-showcase .hero-headline {
    font-size: 54px;
  }

  .hero-showcase .hero-headline.is-latin {
    font-size: 49px;
  }

  .hero-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-info-item:nth-child(3) {
    border-left: 0;
  }

  .hero-info-item:nth-child(n + 3) {
    border-top: 1px solid rgba(232, 218, 194, 0.20);
  }

  .hero-showcase-carousel,
  .hero-showcase-shade {
    inset-bottom: 236px;
  }
}

@media (max-width: 700px) {
  .hero-redesign {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .hero-showcase {
    grid-template-rows: minmax(610px, 1fr) auto;
    min-height: 0;
  }

  .hero-showcase-carousel,
  .hero-showcase-shade {
    inset: 0 0 294px;
  }

  .hero-showcase-shade {
    background:
      linear-gradient(180deg, rgba(15, 12, 9, 0.26) 0%, rgba(15, 12, 9, 0.68) 32%, rgba(15, 12, 9, 0.96) 76%, rgba(15, 12, 9, 0.99) 100%);
  }

  .hero-showcase-content {
    width: 100%;
    min-height: 610px;
    padding: 24px 24px 36px;
    justify-content: flex-end;
  }

  .hero-showcase-copy {
    margin-top: 116px;
  }

  .hero-showcase .hero-headline,
  .hero-showcase .hero-headline.is-latin {
    font-size: 42px;
    line-height: 1.06;
  }

  .hero-showcase .hero-sub {
    max-width: 100%;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-showcase .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 24px;
  }

  .hero-showcase .hero-cta .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .hero-info-strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-info-item,
  .hero-info-item:nth-child(3) {
    padding: 16px 20px;
    border-top: 1px solid rgba(232, 218, 194, 0.20);
    border-left: 0;
  }

  .hero-info-item:first-child {
    border-top: 0;
  }

  .hero-info-item .k {
    font-size: 12px;
  }

  .hero-info-item .v {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .hero-showcase-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-showcase .hero-headline,
  .hero-showcase .hero-headline.is-latin {
    font-size: 38px;
  }
}

@media (min-width: 701px) and (max-height: 800px) {
  .hero-redesign {
    padding-top: 20px;
    padding-bottom: 38px;
  }

  .hero-showcase {
    grid-template-rows: minmax(480px, 1fr) auto;
    min-height: 596px;
  }

  .hero-showcase-carousel,
  .hero-showcase-shade {
    inset-bottom: 116px;
  }

  .hero-showcase-content {
    padding: 28px 52px 34px;
  }

  .hero-showcase-copy {
    margin-top: 28px;
  }

  .hero-showcase .hero-headline {
    font-size: 54px;
  }

  .hero-showcase .hero-headline.is-latin {
    font-size: 48px;
  }

  .hero-showcase .hero-sub {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-showcase .hero-cta {
    margin-top: 22px;
  }

  .hero-info-strip {
    min-height: 116px;
  }

  .hero-info-item {
    padding: 18px 24px;
  }
}

/* === HERO FACT STRIP FIDELITY CORRECTION === */
.hero-showcase {
  display: block;
  min-height: 0;
}

.hero-showcase-stage {
  position: relative;
  isolation: isolate;
  min-height: 594px;
  overflow: hidden;
}

.hero-showcase-stage .hero-showcase-carousel,
.hero-showcase-stage .hero-showcase-shade {
  inset: 0;
}

.hero-showcase-stage .hero-showcase-content {
  min-height: 594px;
}

.hero-info-strip {
  min-height: 146px;
  background: rgba(24, 20, 16, 0.98);
}

.hero-info-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 25px 30px;
}

.hero-info-icon {
  display: block;
  width: 44px;
  height: 44px;
  opacity: 0.96;
}

.hero-info-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.hero-info-copy .k {
  font-size: 14px;
}

.hero-info-copy .v {
  font-size: 17px;
}

@media (max-width: 1100px) {
  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 560px;
  }

  .hero-info-item {
    min-height: 98px;
  }
}

@media (max-width: 700px) {
  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 610px;
  }

  .hero-info-strip {
    min-height: 0;
  }

  .hero-info-item,
  .hero-info-item:nth-child(3) {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    min-height: 78px;
    padding: 16px 20px;
  }

  .hero-info-icon {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 701px) and (max-height: 800px) {
  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 464px;
  }

  .hero-info-strip {
    min-height: 132px;
  }

  .hero-info-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 17px 22px;
  }

  .hero-info-icon {
    width: 40px;
    height: 40px;
  }

  .hero-info-copy .k {
    font-size: 12px;
  }

  .hero-info-copy .v {
    font-size: 15px;
  }
}

/* === ORIGINAL DESIGN VISUAL UPGRADE PREVIEW · 2026-07-15 === */
/* Preview-only polish: preserve the current content, imagery, order and behavior. */
:root {
  --upgrade-surface-1: #141616;
  --upgrade-surface-2: #191a1a;
  --upgrade-surface-3: #1d1c1a;
  --upgrade-border: rgba(232, 218, 194, 0.16);
  --upgrade-border-strong: rgba(224, 185, 121, 0.42);
  --upgrade-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

h1,
h2,
h3,
.display,
.h2 {
  letter-spacing: 0;
}

.hero-redesign {
  padding-bottom: 64px;
}

.hero-showcase {
  border-color: rgba(232, 218, 194, 0.22);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.36);
}

.hero-info-strip {
  background: #171411;
  border-top-color: rgba(224, 185, 121, 0.26);
}

.hero-info-item {
  border-left-color: rgba(232, 218, 194, 0.14);
}

#about,
#products,
#gallery,
#process,
#contact {
  border-top: 1px solid rgba(232, 218, 194, 0.10);
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}

#about {
  background: rgba(18, 19, 19, 0.96);
}

#products {
  background: #101313;
}

#gallery {
  background: rgba(20, 20, 18, 0.97);
}

#process {
  background: #151616 !important;
}

#contact {
  background: rgba(16, 15, 14, 0.97);
}

/* Keep the original continuous brick-wall background across every main section. */
#about,
#products,
#gallery,
#process,
#contact {
  background: transparent !important;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

#about .about-grid,
#products .products-grid,
#gallery .gallery-grid,
#process .process-grid,
#contact .contact-grid {
  perspective: none;
}

#about .card,
#products .prod,
#gallery .tile,
#process .step,
#contact .contact-info,
#contact .form,
#contact .map-block,
#products .price-note,
#gallery .gal-filters {
  background-color: var(--upgrade-surface-2);
  background-image: none;
  border-color: var(--upgrade-border);
  box-shadow: var(--upgrade-shadow);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

#about .card::after,
#products .prod::before,
#gallery .tile::before,
#process .step::after,
#contact .form::after,
#contact .map-block::after,
#products .price-note::after {
  display: none;
}

#about .about-lead,
#process .step,
#contact .contact-info,
#contact .form {
  border-top-color: var(--upgrade-border-strong);
}

#about .about-lead {
  padding: 44px;
}

#about .about-features {
  gap: 14px;
}

#about .about-features .feat {
  min-height: 188px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

#about .feat-num {
  font-size: 24px;
}

#products .products-head,
#gallery .products-head,
#process .products-head,
#contact .products-head {
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(224, 185, 121, 0.24);
}

#products .price-note {
  border-left: 3px solid var(--brass);
  box-shadow: none;
}

#products .prod,
#gallery .tile {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transform: translateZ(0);
}

#products .prod-photo img,
#gallery .tile-img {
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
  transition: transform 0.34s ease, filter 0.34s ease;
}

#products .prod:hover,
#products .prod:focus-visible,
#gallery .tile:hover,
#gallery .tile:focus-visible {
  border-color: rgba(224, 185, 121, 0.68);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

#products .prod.has-photo:hover .prod-photo img,
#gallery .tile:hover .tile-img {
  filter: saturate(1) contrast(1.05) brightness(0.88);
  transform: scale(1.035);
}

#gallery .gal-filters {
  padding: 12px;
  box-shadow: none;
}

#gallery .gal-chip {
  background: #202120;
  background-image: none;
  border-color: rgba(232, 218, 194, 0.18);
  box-shadow: none;
}

#gallery .gal-chip.is-active {
  background: #d9ad6d;
  color: #17120c;
  border-color: #d9ad6d;
  box-shadow: none;
}

#gallery .gal-group {
  margin-bottom: 64px;
}

#gallery .gal-group-head {
  border-bottom-style: solid;
  border-bottom-color: rgba(232, 218, 194, 0.18);
}

#process .step {
  min-height: 248px;
  padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

#process .step:hover {
  background: #1b1c1c;
  border-color: rgba(224, 185, 121, 0.48);
  transform: translateY(-3px);
}

#contact .contact-info,
#contact .form {
  background: var(--upgrade-surface-3);
}

#contact .map-block {
  margin-top: 40px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.footer {
  margin-top: 0;
  background: #0d0f0f;
  background-image: none;
  border-top-color: rgba(224, 185, 121, 0.20);
}

.wa-fab {
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.wa-fab-label {
  display: none;
}

@media (max-width: 920px) {
  #about .about-lead {
    padding: 36px;
  }

  #process .step {
    min-height: 218px;
  }
}

@media (min-width: 421px) and (max-width: 920px) {
  #about .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .sec {
    padding: 72px 0;
  }

  .hero-redesign {
    padding-bottom: 42px;
  }

  .hero-showcase {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  }

  .hero-info-item,
  .hero-info-item:nth-child(3) {
    min-height: 74px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  #products .products-head,
  #gallery .products-head,
  #process .products-head,
  #contact .products-head {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  #gallery .gal-group {
    margin-bottom: 48px;
  }

  #contact .map-block {
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  #about .about-lead,
  #about .about-features .feat,
  #process .step,
  #contact .contact-info,
  #contact .form {
    padding: 24px;
  }

  #about .about-features .feat {
    min-height: 168px;
  }

  .wa-fab {
    right: 10px;
    bottom: 10px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
  }

  .wa-fab svg {
    width: 23px;
    height: 23px;
  }
}

/* === LARGER HERO IMAGE + BUSINESS INFORMATION · 2026-07-16 === */
@media (min-width: 1101px) {
  .hero-redesign .shell {
    max-width: 1420px;
  }

  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 640px;
  }

  .hero-showcase-content {
    padding: 46px 66px 52px;
  }

  .hero-showcase .tag {
    padding: 8px 13px;
    font-size: 12px;
  }

  .hero-showcase .hero-headline {
    font-size: 70px;
    line-height: 1.06;
  }

  .hero-showcase .hero-headline.is-latin {
    font-size: 62px;
  }

  .hero-showcase .hero-sub {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.72;
  }

  .hero-showcase .hero-cta .btn {
    min-height: 52px;
    padding-right: 23px;
    padding-left: 23px;
    font-size: 15px;
  }

  .hero-info-strip {
    grid-template-columns: 0.76fr 1.25fr 1.52fr 1.10fr;
    min-height: 160px;
  }

  .hero-info-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding: 28px 34px;
  }

  .hero-info-icon {
    width: 50px;
    height: 50px;
  }

  .hero-info-item:first-child {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding-right: 22px;
    padding-left: 26px;
  }

  .hero-info-item:nth-child(3) .v,
  .hero-info-item:nth-child(4) .v {
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .hero-info-copy .k {
    font-size: 15px;
  }

  .hero-info-copy .v {
    font-size: 19px;
  }
}

@media (min-width: 1101px) and (max-height: 800px) {
  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 530px;
  }

  .hero-showcase-content {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .hero-showcase .hero-headline {
    font-size: 60px;
  }

  .hero-showcase .hero-headline.is-latin {
    font-size: 54px;
  }

  .hero-showcase .hero-sub {
    font-size: 16px;
  }

  .hero-info-strip {
    min-height: 148px;
  }

  .hero-info-item {
    padding: 24px 28px;
  }

  .hero-info-copy .k {
    font-size: 14px;
  }

  .hero-info-copy .v {
    font-size: 17px;
  }
}

/* === INDUSTRIAL 3D DEPTH PREVIEW · 2026-07-17 === */
:root {
  --depth-rest: 0 14px 28px rgba(0, 0, 0, 0.26);
  --depth-raised: 0 24px 48px rgba(0, 0, 0, 0.38);
  --depth-edge-light: rgba(255, 244, 224, 0.18);
  --depth-edge-dark: rgba(0, 0, 0, 0.52);
}

.hero-showcase {
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  --hero-shadow-x: 0px;
  perspective: 1400px;
  transform-style: preserve-3d;
  box-shadow:
    var(--hero-shadow-x) 30px 76px rgba(0, 0, 0, 0.38),
    0 1px 0 var(--depth-edge-light) inset,
    0 -2px 0 var(--depth-edge-dark) inset;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.hero-showcase-stage {
  transform-style: preserve-3d;
}

.hero-showcase-img {
  transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(1.035);
  transform-origin: center;
  transition: transform 260ms ease-out;
  will-change: transform;
}

.hero-showcase.is-parallax-active .hero-showcase-img.is-active {
  transition-duration: 70ms;
  transition-timing-function: linear;
}

.hero-showcase-content {
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 32px);
  transform-style: preserve-3d;
  transition: transform 240ms ease-out;
  will-change: transform;
}

.hero-showcase.is-parallax-active .hero-showcase-content {
  transition-duration: 90ms;
  transition-timing-function: linear;
}

.hero-info-strip {
  transform: translateZ(20px);
  transform-style: preserve-3d;
  box-shadow:
    0 -1px 0 rgba(224, 185, 121, 0.34),
    0 -12px 30px rgba(0, 0, 0, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.30);
}

.hero-info-item {
  position: relative;
  box-shadow:
    0 1px 0 var(--depth-edge-light) inset,
    0 -1px 0 var(--depth-edge-dark) inset;
  transform: translateZ(0);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hero-info-item:hover {
  z-index: 2;
  background-color: #1c1813;
  box-shadow:
    0 1px 0 rgba(255, 244, 224, 0.24) inset,
    0 -2px 0 rgba(0, 0, 0, 0.58) inset,
    0 14px 26px rgba(0, 0, 0, 0.34);
  transform: translate3d(0, -3px, 18px);
}

#products .prod {
  --card-rx: 0deg;
  --card-ry: 0deg;
  --card-lift: 0px;
  transform: perspective(950px) translateY(var(--card-lift)) rotateX(var(--card-rx)) rotateY(var(--card-ry));
  transform-style: preserve-3d;
  transform-origin: center;
  box-shadow:
    0 1px 0 var(--depth-edge-light) inset,
    0 -2px 0 var(--depth-edge-dark) inset,
    var(--depth-rest);
  transition: transform 220ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

#products .prod::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-top: 1px solid rgba(255, 244, 224, 0.20);
  border-left: 1px solid rgba(255, 244, 224, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.24);
  border-bottom: 1px solid rgba(0, 0, 0, 0.44);
  border-radius: inherit;
  pointer-events: none;
}

#products .prod.is-tilting,
#products .prod:hover,
#products .prod:focus-visible {
  --card-lift: -6px;
  border-color: rgba(224, 185, 121, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 244, 224, 0.26) inset,
    0 -2px 0 rgba(0, 0, 0, 0.56) inset,
    var(--depth-raised);
  transform: perspective(950px) translateY(var(--card-lift)) rotateX(var(--card-rx)) rotateY(var(--card-ry));
}

#products .prod.is-tilting {
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

#products .prod-content {
  transform: translateZ(20px);
  transform-style: preserve-3d;
}

#products .prod-photo {
  transform: translateZ(0);
}

#about .card,
#process .step,
#contact .contact-info,
#contact .form,
#contact .map-block,
#gallery .tile {
  box-shadow:
    0 1px 0 var(--depth-edge-light) inset,
    0 -2px 0 var(--depth-edge-dark) inset,
    var(--depth-rest);
  transform: translateZ(0);
  transition: transform 200ms ease, border-color 180ms ease, box-shadow 200ms ease;
}

#about .card:hover,
#process .step:hover,
#contact .contact-info:hover,
#contact .form:hover,
#gallery .tile:hover {
  border-color: rgba(224, 185, 121, 0.50);
  box-shadow:
    0 1px 0 rgba(255, 244, 224, 0.24) inset,
    0 -2px 0 rgba(0, 0, 0, 0.58) inset,
    var(--depth-raised);
  transform: translateY(-4px);
}

.btn:active,
.hero-showcase .hero-cta .btn:active,
.contact-actions .btn:active {
  transform: translateY(2px) scale(0.99) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 3px 8px rgba(0, 0, 0, 0.26) !important;
}

@media (hover: none), (pointer: coarse), (max-width: 700px) {
  .hero-showcase,
  .hero-showcase-stage,
  .hero-showcase-content,
  .hero-info-strip,
  .hero-info-item,
  #products .prod,
  #products .prod-content,
  #about .card,
  #process .step,
  #contact .contact-info,
  #contact .form,
  #gallery .tile {
    transform: none;
    will-change: auto;
  }

  .hero-showcase-img {
    transform: scale(1.02);
    will-change: auto;
  }

  .hero-info-item:hover,
  #products .prod:hover,
  #about .card:hover,
  #process .step:hover,
  #contact .contact-info:hover,
  #contact .form:hover,
  #gallery .tile:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase,
  .hero-showcase-img,
  .hero-showcase-content,
  .hero-info-strip,
  .hero-info-item,
  #products .prod,
  #products .prod-content,
  #about .card,
  #process .step,
  #contact .contact-info,
  #contact .form,
  #gallery .tile,
  .btn {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Final audited launch overrides - 2026-07-19 */
html,
body {
  overflow-x: clip;
}

#about,
#products,
#gallery,
#process,
#contact {
  border-top: 1px solid rgba(224, 185, 121, 0.12);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.30) inset;
}

#about { background-color: rgba(15, 17, 17, 0.08) !important; }
#products { background-color: rgba(7, 10, 10, 0.18) !important; }
#gallery { background-color: rgba(27, 20, 15, 0.10) !important; }
#process { background-color: rgba(8, 10, 10, 0.16) !important; }
#contact { background-color: rgba(22, 16, 12, 0.10) !important; }

.gal-expand {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.gal-expand-btn {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(224, 185, 121, 0.34);
  border-radius: 8px;
  background: rgba(18, 18, 17, 0.92);
  color: var(--brass);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.gal-expand-btn:hover,
.gal-expand-btn:focus-visible {
  border-color: rgba(224, 185, 121, 0.72);
  background: #211d18;
}

.gal-expand-btn:active { transform: translateY(1px); }
.contact-info > .btn.btn-primary { display: none; }

.form-actions .btn-primary {
  min-width: 200px;
  justify-content: center;
}

@media (min-width: 1101px) and (min-height: 801px) {
  .hero-redesign {
    min-height: auto;
    height: auto;
    padding-top: 22px;
    padding-bottom: 32px;
  }

  .hero-showcase {
    grid-template-rows: minmax(560px, 1fr) auto;
    min-height: 708px;
  }

  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 560px;
  }

  .hero-showcase-content {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .hero-info-strip { min-height: 148px; }
}

@media (min-width: 1101px) and (max-height: 800px) {
  .hero-redesign {
    min-height: auto;
    height: auto;
    padding-top: 14px;
    padding-bottom: 22px;
  }

  .hero-showcase {
    grid-template-rows: minmax(430px, 1fr) auto;
    min-height: 562px;
  }

  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 430px;
  }

  .hero-showcase-content { padding: 28px 54px 30px; }
  .hero-showcase .hero-headline { font-size: 56px; }
  .hero-showcase .hero-headline.is-latin { font-size: 50px; }
  .hero-info-strip { min-height: 132px; }

  .hero-info-item {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(20, 16, 13, 0.96);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(12px);
  }

  #top { margin-top: 72px; }

  .nav-mobile-menu.open {
    max-height: calc(100svh - 72px);
    overflow-y: auto;
  }

  section[id] { scroll-margin-top: 84px; }
}

@media (max-width: 540px) {
  .gal-expand { margin-top: 14px; }

  .gal-expand-btn,
  .form-actions .btn-primary {
    width: 100%;
  }
}

@media (min-width: 1101px) and (max-height: 800px) {
  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 400px;
  }

  .hero-showcase-copy { margin-top: 28px !important; }
}

@media (max-width: 700px) {
  .hero-showcase-stage,
  .hero-showcase-stage .hero-showcase-content {
    min-height: 470px;
  }

  .hero-showcase-copy { margin-top: 16px; }

  .hero-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-info-item,
  .hero-info-item:nth-child(3) {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    min-height: 98px;
    padding: 12px;
    border-left: 1px solid rgba(232, 218, 194, 0.20);
  }

  .hero-info-item:nth-child(odd) { border-left: 0; }
  .hero-info-item:nth-child(-n + 2) { border-top: 0; }
  .hero-info-item:nth-child(n + 3) { border-top: 1px solid rgba(232, 218, 194, 0.20); }

  .hero-info-icon {
    width: 30px;
    height: 30px;
  }

  .hero-info-copy { gap: 4px; }
  .hero-info-copy .k { font-size: 11px; }
  .hero-info-copy .v {
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-info-item:nth-child(2) .v { white-space: normal; }
}

/* Keep hero actions stationary and above the decorative 3D image layers. */
.hero-showcase,
.hero-showcase-stage,
.hero-info-strip {
  perspective: none;
  transform-style: flat;
}

.hero-info-strip { transform: none; }

.hero-showcase-content,
.hero-showcase.is-parallax-active .hero-showcase-content {
  transform: none !important;
  transform-style: flat;
}

.hero-showcase-content,
.hero-showcase-copy {
  pointer-events: auto;
}

.hero-showcase-img,
.hero-showcase-shade {
  pointer-events: none;
}

.hero-showcase .hero-cta,
.hero-showcase .hero-cta .btn {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}
