:root {
  --navy: #08213d;
  --navy2: #0d345f;
  --gold: #c88a20;
  --gold2: #e4a83a;
  --ink: #12243a;
  --muted: #687486;
  --line: #e5ebf2;
  --paper: #f7f9fc;
  --white: #fff;
  --shadow: 0 16px 45px rgba(8,33,61,.1);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  min-height: 96px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img { width: 390px; height: 92px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.7vw, 28px); font-size: 17px; font-weight: 900; }
.site-nav a, .nav-toggle { padding: 13px 15px; border-radius: 7px; color: var(--navy); }
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--gold);
  background: linear-gradient(135deg, #fff8ea, #f3f7ff);
  box-shadow: inset 0 0 0 1px rgba(200,138,32,.08);
}
.nav-item { position: relative; }
.mega-trigger::after { content: ""; display: inline-block; margin-left: 8px; border: 5px solid transparent; border-top-color: currentColor; transform: translateY(3px); }
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 96px;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: 46px clamp(28px, 7vw, 110px) 52px;
  border-top: 3px solid var(--gold);
  background:
    radial-gradient(circle at 72% 18%, #f4f8ff 0, #f4f8ff 22%, transparent 46%),
    linear-gradient(115deg, #ffffff 0%, #fbfcff 52%, #fff7e9 100%);
  box-shadow: 0 28px 60px rgba(8,33,61,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.mega-item:hover .mega-menu, .mega-item:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-panel { border-right: 1px solid rgba(8,33,61,.14); padding-right: clamp(22px, 4vw, 54px); }
.mega-panel h3 { margin-bottom: 12px; font-size: 25px; }
.mega-panel p:not(.eyebrow) { color: var(--muted); font-size: 15px; }
.mega-cta { display: inline-flex; margin-top: 18px; border: 1px solid rgba(8,33,61,.18); background: linear-gradient(135deg, #fff, #fff7e7); }
.mega-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 28px; }
.mega-links a { display: grid; gap: 5px; padding: 0; color: #6f7784; background: none !important; }
.mega-links a:hover {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255,248,234,.9), rgba(244,248,255,.9)) !important;
}
.mega-links span { color: inherit; font-size: 20px; font-weight: 800; }
.mega-links small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 18px; border-radius: 7px; color: var(--white) !important; background: var(--gold); font-size: 15px; font-weight: 900; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); font: inherit; }
.language-select {
  width: auto;
  min-width: 140px;
  min-height: 50px;
  padding: 10px 36px 10px 14px;
  border-color: rgba(8,33,61,.12);
  background-color: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.hero-commerce {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(360px,.86fr) minmax(0,1.14fr);
  align-items: center;
  gap: 34px;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.92)),
    radial-gradient(circle at 74% 42%, rgba(228,168,58,.22), transparent 25%),
    linear-gradient(115deg, #f4f9ff 0%, #fff6e8 100%);
}

.hero-text { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1,h2,h3,p { overflow-wrap: anywhere; }
h1,h2,h3 { margin: 0; line-height: 1.08; color: var(--navy); }
h1 { max-width: 720px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(46px, 6vw, 74px); }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 20px; }
p { color: var(--muted); }
.hero-text p:not(.eyebrow) { max-width: 650px; font-size: 18px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 1px solid transparent; border-radius: 7px; font-weight: 900; }
.btn.primary { color: var(--white); background: var(--gold); }
.btn.ghost { border-color: #cfd8e3; background: rgba(255,255,255,.78); color: var(--navy); }
.btn.disabled { pointer-events: none; opacity: .58; background: #dbe3ec; color: var(--navy); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 42px 0 0; padding: 0; list-style: none; }
.hero-badges li { padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--navy); font-size: 13px; font-weight: 800; }

.hero-stage {
  position: relative;
  min-height: 520px;
}
.hero-stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: -8%;
  bottom: 54px;
  height: 150px;
  background: linear-gradient(90deg, rgba(8,33,61,.1), rgba(8,33,61,.02));
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}
.hero-stage .p { position: absolute; object-fit: contain; filter: drop-shadow(0 24px 28px rgba(8,33,61,.18)); }
.hero-stage .street { left: 24%; top: 0; width: 38%; height: 55%; }
.hero-stage .panel { left: 6%; top: 16%; width: 38%; height: 58%; }
.hero-stage .fan { right: 4%; top: 10%; width: 32%; height: 58%; }
.hero-stage .work { left: 42%; bottom: 48px; width: 30%; height: 30%; }

.hero-poster {
  position: relative;
  overflow: hidden;
  background: #f6fbff;
  border-bottom: 1px solid var(--line);
}
.hero-poster::before { display: none; }
.hero-poster > img {
  width: 100%;
  min-height: clamp(520px, 43.2vw, 830px);
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  position: absolute;
  left: clamp(26px, 4vw, 62px);
  top: clamp(120px, 12vw, 190px);
  bottom: auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(31vw, 520px);
  padding: 0;
  background: none;
  pointer-events: none;
}
.hero-copy .hero-kicker {
  margin: 0 0 18px;
  color: #1d5fae;
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 480px;
  color: var(--navy);
  font-size: clamp(31px, 2.8vw, 48px);
}
.hero-copy p:not(.hero-kicker) {
  max-width: 475px;
  color: #39465a;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
}
.poster-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  min-height: 58px;
  margin-top: 22px;
  padding: 14px 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #dba64b, #c88a20);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(200,138,32,.24);
}
.hero-feature-overlay {
  position: absolute;
  left: clamp(24px, 4.2vw, 58px);
  bottom: clamp(22px, 2.5vw, 34px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(30vw, 500px);
  gap: 8px;
}
.hero-feature-overlay span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 6px;
  border: 1px solid rgba(8,33,61,.1);
  border-radius: 6px;
  color: #173a78;
  background: rgba(255,255,255,.86);
  font-size: clamp(12px, .9vw, 15px);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 28px rgba(8,33,61,.08);
}
.poster-hotspot {
  position: absolute;
  display: block;
  border-radius: 18px;
  outline: 0;
}
.poster-hotspot::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200,138,32,.18), 0 10px 24px rgba(8,33,61,.2);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}
.poster-hotspot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 4;
  width: min(340px, 38vw);
  max-width: calc(100vw - 32px);
  padding: 16px 18px;
  border: 1px solid rgba(8,33,61,.1);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(8,33,61,.18);
  font-size: 15px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}
.poster-hotspot.all-in-one span,
.poster-hotspot.split-street span {
  top: calc(100% + 12px);
  bottom: auto;
  transform: translate(-50%, -8px);
}
.poster-hotspot.all-in-one:hover span,
.poster-hotspot.all-in-one:focus-visible span,
.poster-hotspot.split-street:hover span,
.poster-hotspot.split-street:focus-visible span {
  transform: translate(-50%, 0);
}
.poster-hotspot.garden-light span {
  left: auto;
  right: 0;
  transform: translate(0, 8px);
}
.poster-hotspot.garden-light:hover span,
.poster-hotspot.garden-light:focus-visible span {
  transform: translate(0, 0);
}
.poster-hotspot strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}
.poster-hotspot:hover,
.poster-hotspot:focus-visible {
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.32);
}
.poster-hotspot:hover::after,
.poster-hotspot:focus-visible::after,
.poster-hotspot:hover span,
.poster-hotspot:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}
.poster-hotspot:hover::after,
.poster-hotspot:focus-visible::after {
  transform: scale(1.08);
}
.poster-hotspot.garden-light:hover span,
.poster-hotspot.garden-light:focus-visible span {
  transform: translate(0, 0);
}
.poster-hotspot.all-in-one { left: 54%; top: 14%; width: 13%; height: 58%; }
.poster-hotspot.split-street { left: 43%; top: 13%; width: 15%; height: 63%; }
.poster-hotspot.flood-light { left: 30%; top: 48%; width: 20%; height: 30%; }
.poster-hotspot.solar-fan { left: 67%; top: 25%; width: 19%; height: 58%; }
.poster-hotspot.garden-light { left: 86%; top: 52%; width: 13%; height: 38%; }

.section, .page-hero { padding: clamp(62px, 8vw, 96px) clamp(18px, 5vw, 72px); }
.page-hero { color: var(--white); background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.page-hero h1 { color: var(--white); }
.page-hero p:not(.eyebrow) { max-width: 820px; color: rgba(255,255,255,.75); font-size: 18px; }
.centered { max-width: 860px; margin: 0 auto 34px; text-align: center; }

.category-cards, .featured-grid, .shop-grid, .proof-grid {
  display: grid;
  gap: 22px;
}
.category-cards { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.featured-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.category-cards a, .featured-grid article, .shop-grid article, .proof-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.category-cards a {
  padding: 12px 12px 18px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.category-cards a:hover {
  transform: translateY(-4px);
  border-color: rgba(200,138,32,.35);
  box-shadow: 0 20px 48px rgba(8,33,61,.12);
}
.category-cards img {
  width: 100%;
  height: clamp(232px, 14vw, 290px);
  object-fit: contain;
  object-position: center;
  padding: 0;
  border-radius: 6px;
  background: #fff;
}
.category-cards strong { display: block; min-height: 60px; padding: 18px 18px 4px; color: var(--navy); }
.category-cards span, .category-cards p { display: block; padding: 0 18px 18px; color: var(--gold); font-size: 13px; font-weight: 900; }
.product-list { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.why-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: linear-gradient(90deg, #fff, #fff8eb, #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-strip div { text-align: center; }
.why-strip strong { display: block; color: var(--gold); font-size: 24px; }
.why-strip span { color: var(--muted); font-size: 13px; }

.factory-carousel-section {
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 86px);
  background: #fff;
}
.factory-carousel-section .section-head {
  margin-bottom: 28px;
}
.factory-carousel-section .section-head p:not(.eyebrow) {
  max-width: 820px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.factory-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.factory-carousel-viewport {
  overflow: hidden;
  padding: 6px 0 16px;
  scroll-behavior: smooth;
}
.factory-carousel-track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  width: max-content;
  will-change: transform;
}
.factory-slide {
  flex: 0 0 clamp(260px, 28vw, 430px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8,33,61,.1);
}
.factory-slide img {
  width: 100%;
  aspect-ratio: 900 / 560;
  object-fit: cover;
}
.factory-slide figcaption {
  padding: 12px 14px 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.factory-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 30px rgba(8,33,61,.16);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.factory-nav:hover {
  color: #fff;
  background: var(--gold);
}
.factory-prev { left: 12px; }
.factory-next { right: 12px; }

.featured { background: var(--paper); }
.featured-grid article, .shop-grid article { padding: 16px; }
.featured-grid img, .shop-grid img { width: 100%; height: clamp(168px, 12vw, 220px); object-fit: contain; background: #fff; }
.featured-grid p, .shop-grid p { font-size: 14px; }
.featured-grid a, .shop-grid a:not(.btn) { color: var(--navy); font-weight: 900; }
.price { color: var(--gold); font-size: 22px !important; font-weight: 900; }

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: #fff7e8;
}
.cta-band h2 { font-family: Arial, Helvetica, sans-serif; font-size: 30px; }

.quote-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}
textarea { grid-column: 1 / -1; resize: vertical; }
.quote-form button { grid-column: 3; }

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr .75fr .75fr 1fr;
  gap: 34px;
  padding: 44px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,.76);
  background: var(--navy);
}
.site-footer img {
  width: min(100%, 520px);
  height: 156px;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}
.site-footer p, .site-footer address { color: rgba(255,255,255,.72); font-style: normal; }
.site-footer nav { display: grid; gap: 8px; }
.site-footer strong { color: var(--white); }

.live-chat { position: fixed; right: 28px; bottom: 28px; z-index: 60; }
.chat-bubble {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d83ff, #0d55d9);
  box-shadow: 0 18px 38px rgba(13,85,217,.34);
  cursor: pointer;
}
.chat-bubble span {
  width: 32px;
  height: 22px;
  border-radius: 7px;
  background: #fff;
  position: relative;
}
.chat-bubble span::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -7px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-left: 0;
}
.chat-window {
  position: absolute;
  right: 0;
  bottom: 88px;
  display: none;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8,33,61,.26);
}
.live-chat.is-open .chat-window { display: block; }
.chat-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #1976ff, #0b4fc8);
}
.chat-head strong { font-size: 18px; }
.chat-head p { margin: 4px 0 0; color: rgba(255,255,255,.84); font-size: 13px; }
.chat-head button { border: 0; color: #fff; background: transparent; font-size: 25px; cursor: pointer; }
.chat-body { padding: 18px; background: #f7faff; }
.agent-row { display: flex; gap: 8px; margin-bottom: 14px; }
.agent-row span { padding: 7px 10px; border-radius: 999px; background: #e6f0ff; color: #1456bc; font-size: 12px; font-weight: 900; }
.chat-message { padding: 15px; border-radius: 14px; background: #fff; box-shadow: 0 10px 26px rgba(8,33,61,.08); }
.chat-message p { margin: 8px 0 0; font-size: 14px; }
.customer-message { border-left: 4px solid var(--gold); }
.customer-message small, .customer-message em {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
}
.customer-message small { color: #607086; font-weight: 800; }
.customer-message em {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--navy);
  background: #fff6e4;
  font-style: normal;
  font-weight: 800;
}
.chat-tools { display: flex; gap: 10px; padding: 12px 16px 0; }
.chat-tools button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--navy); cursor: pointer; }
.chat-input { display: grid; grid-template-columns: 1fr 46px; gap: 8px; padding: 12px 16px 8px; }
.chat-input input { min-height: 48px; border: 2px solid #2d83ff; border-radius: 12px; }
.chat-input button { border: 0; border-radius: 12px; color: #fff; background: var(--gold); font-weight: 900; cursor: pointer; }
.chat-note { margin: 0; padding: 0 16px 16px; color: #8a95a5; font-size: 12px; text-align: center; }

.admin-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: #f4f7fb;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 24px;
  background: var(--navy);
  color: #fff;
}
.admin-logo {
  display: block;
  padding: 10px 0 18px;
}
.admin-sidebar img {
  width: 230px;
  max-width: 100%;
  margin-bottom: 34px;
  filter: drop-shadow(0 10px 22px rgba(255,255,255,.1));
}
.admin-sidebar nav { display: grid; gap: 10px; }
.admin-sidebar a {
  padding: 13px 15px;
  border-radius: 8px;
  color: rgba(255,255,255,.84);
  font-weight: 900;
}
.admin-sidebar a:hover { color: #fff; background: rgba(255,255,255,.1); }
.admin-main { padding: 34px; }
.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(8,33,61,.08);
}
.admin-top h1 { margin-bottom: 10px; font-size: 38px; }
.admin-top p { max-width: 780px; color: #607086; }
.admin-status {
  flex: none;
  padding: 12px 16px;
  border-radius: 999px;
  color: #8a5400;
  background: #fff1d6;
  font-weight: 900;
}
.admin-status.warning {
  color: #9a3412;
  background: #ffedd5;
}
.admin-status-stack {
  display: grid;
  gap: 10px;
  justify-items: end;
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.admin-metrics article, .admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(8,33,61,.06);
}
.admin-metrics article { padding: 24px; }
.admin-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
}
.admin-metrics span { color: #607086; font-weight: 800; }
.admin-login {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 22px;
  align-items: end;
  margin-bottom: 20px;
}
.admin-login.is-hidden { display: none; }
.admin-login form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.admin-login input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d9e0e8;
  border-radius: 8px;
}
.admin-login button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--gold);
  font-weight: 900;
  cursor: pointer;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  color: #607086;
  font-weight: 800;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.admin-card { padding: 28px; }
.admin-card h2 { margin-bottom: 8px; font-size: 24px; }
.admin-card p { color: #607086; }
.admin-card ul, .admin-launch ol { margin: 18px 0 0; padding-left: 20px; color: #314154; line-height: 1.8; }
.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.admin-card-head button,
.admin-open-site {
  padding: 10px 14px;
  border: 1px solid #d9e0e8;
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}
.admin-card-head button:hover,
.admin-open-site:hover {
  border-color: var(--gold);
  color: #8a5400;
}
.admin-empty {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  color: #718096;
  background: #f6f8fb;
}
.admin-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-table span, .admin-table strong { padding: 14px; border-bottom: 1px solid var(--line); }
.admin-table strong { border-bottom: 0; color: var(--navy); }
.admin-inquiry-table {
  grid-template-columns: 1.1fr .8fr 1.4fr .8fr;
}
.admin-events-table,
.admin-chat-table {
  grid-template-columns: 1.2fr .9fr 1fr 2fr;
}
.admin-events-table strong,
.admin-chat-table strong,
.admin-inquiry-table strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}
.admin-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.admin-product-list label {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #f8fafc;
  font-weight: 900;
}
.admin-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.admin-timeline span {
  position: relative;
  padding: 15px 12px;
  border-radius: 8px;
  color: var(--navy);
  background: #f7fbff;
  border: 1px solid #dbe7f4;
  font-weight: 900;
  text-align: center;
}
.admin-checks { display: grid; gap: 12px; margin-top: 18px; }
.admin-checks label { font-weight: 800; color: #314154; }
.admin-launch { margin-top: 18px; }
.admin-launch li + li { margin-top: 8px; }
.admin-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 13px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 38px rgba(8,33,61,.22);
  font-weight: 900;
  transition: opacity .2s ease, transform .2s ease;
}
.admin-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1120px) {
  .category-cards, .featured-grid, .product-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-panels, .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 18px; }
}

@media (max-width: 860px) {
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-main { padding: 18px; }
  .admin-top, .admin-grid { grid-template-columns: 1fr; }
  .admin-top { display: grid; }
  .admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header { min-height: 72px; padding: 10px 16px; }
  .brand img { width: 260px; height: 64px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero-commerce { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; }
  .hero-stage { min-height: 460px; }
  .hero-poster > img { min-height: 420px; object-position: 45% center; }
  .hero-copy {
    position: relative;
    bottom: auto;
    width: 100%;
    padding: 28px 18px;
    background: #fff;
  }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy p:not(.hero-kicker) { font-size: 17px; }
  .hero-feature-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 18px 24px;
    background: #fff;
  }
  .poster-hotspot { display: none; }
  .category-cards, .featured-grid, .shop-grid, .proof-grid, .trust-panels, .quote-form, .site-footer { grid-template-columns: 1fr; }
  .factory-slide { flex-basis: min(82vw, 380px); }
  .why-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-form button { grid-column: 1; }
  .cta-band { display: grid; }
}

@media (max-width: 520px) {
  h1 { font-size: 41px; }
  h2 { font-size: 30px; }
  .hero-actions .btn { width: 100%; }
  .section, .page-hero { padding-left: 16px; padding-right: 16px; }
  .hero-poster > img { min-height: 340px; object-position: 43% center; }
  .hero-stage { min-height: 390px; }
  .hero-stage .street { left: 18%; width: 48%; }
  .hero-stage .panel { left: -2%; top: 24%; width: 48%; }
  .hero-stage .fan { right: -3%; top: 18%; width: 42%; }
  .hero-stage .work { left: 36%; bottom: 24px; width: 44%; }
  .why-strip { grid-template-columns: 1fr; }
}
