:root {
  --bg: #090c11;
  --bg-soft: #0f141d;
  --bg-panel: rgba(18, 25, 36, 0.84);
  --bg-panel-2: rgba(20, 28, 40, 0.94);
  --text: #edf0f5;
  --muted: #98a3b5;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --gold: #d8be92;
  --gold-deep: #ac8b58;
  --gold-glow: rgba(216, 190, 146, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(216, 190, 146, 0.12), transparent 28rem),
    radial-gradient(circle at left center, rgba(87, 103, 129, 0.1), transparent 26rem),
    linear-gradient(180deg, #090c11 0%, #0c1017 50%, #0d1118 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 12, 17, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #0d1218;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  background:
    radial-gradient(circle at 30% 30%, #f4e0bc, var(--gold) 58%, #8f6f43 100%);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(216, 190, 146, 0.22);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.2em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.lang-switch span {
  font-size: 12px;
  white-space: nowrap;
}

.lang-switch select {
  min-width: 112px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: none;
}

.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.mini-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #12161d;
  font-weight: 700;
  background: linear-gradient(135deg, #f5e1be, var(--gold));
  border-color: rgba(216, 190, 146, 0.72);
}

.button-secondary,
.mini-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.mini-button {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 13px;
}

.mini-button.danger {
  color: #ffd8d8;
  border-color: rgba(255, 119, 119, 0.24);
}

.page-hero {
  padding: clamp(40px, 8vw, 84px) 0 34px;
}

.page-hero-slim {
  padding-bottom: 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.hero-copy,
.section-head,
.cta-panel,
.info-card,
.timeline-card,
.category-card,
.contact-panel,
.faq-panel,
.admin-panel,
.admin-item,
.detail-card,
.stats-strip article,
.trust-strip article,
.empty-state {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(26px, 4vw, 36px);
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(247, 222, 183, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(16, 22, 33, 0.84);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.visual-frame::before {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 2px;
  height: 28%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
  box-shadow:
    -160px 0 0 rgba(255, 255, 255, 0.72),
    160px 0 0 rgba(255, 255, 255, 0.72);
}

.light-cluster,
.light-arc,
.light-base {
  position: absolute;
}

.light-cluster {
  top: 18%;
  width: 164px;
  height: 224px;
  border-radius: 82px;
  background:
    radial-gradient(circle at 50% 32%, rgba(250, 233, 198, 0.92), rgba(248, 220, 171, 0.12) 44%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 60px rgba(248, 219, 169, 0.16),
    inset 0 -20px 50px rgba(0, 0, 0, 0.24);
}

.light-cluster::before {
  position: absolute;
  top: -84px;
  left: 50%;
  width: 2px;
  height: 98px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.08));
  transform: translateX(-50%);
}

.light-cluster-a {
  left: 14%;
}

.light-cluster-b {
  left: calc(50% - 92px);
  width: 188px;
  height: 252px;
}

.light-cluster-c {
  right: 14%;
}

.light-arc {
  right: -6%;
  bottom: 10%;
  width: 72%;
  height: 42%;
  border: 1px solid rgba(216, 190, 146, 0.16);
  border-radius: 100% 0 0 0;
}

.light-base {
  right: 10%;
  bottom: 8%;
  width: 46%;
  height: 20%;
  background:
    radial-gradient(circle at 35% 30%, rgba(216, 190, 146, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(50px, 7vw, 92px);
}

h2 {
  max-width: 13ch;
  margin-bottom: 14px;
  font-size: clamp(36px, 4.8vw, 62px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 28px);
}

.lead,
.section-head p,
.info-card p,
.timeline-card p,
.category-card p,
.detail-card p,
.contact-panel p,
.faq-panel p,
.admin-panel p,
.admin-item p,
.empty-state p,
.form-note,
.footer-note,
.site-footer p,
.stats-strip span,
.trust-strip span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.button-row,
.chip-list,
.toolbar,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-list {
  margin-top: 18px;
}

.chip-list span,
.application-cloud span,
.deliverable-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #dfe4ea;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.section {
  padding: clamp(68px, 10vw, 110px) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-head {
  max-width: 860px;
  padding: 30px;
  margin-bottom: 24px;
}

.section-head-tight {
  padding: 0;
  margin-bottom: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.trust-strip,
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip article,
.stats-strip article {
  padding: 24px;
}

.trust-strip strong,
.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.category-grid,
.info-grid,
.timeline-grid,
.admin-layout,
.contact-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card {
  padding: 26px;
}

.category-card-compact {
  min-height: 100%;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #11151c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f4e0bd, #d2b081);
  border-radius: 999px;
}

.card-icon,
.detail-icon-badge {
  color: var(--gold);
}

.card-icon {
  width: 58px;
  height: 58px;
}

.card-link {
  margin-top: 22px;
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.timeline-card,
.cta-panel,
.contact-panel,
.faq-panel,
.admin-panel,
.admin-item {
  padding: 28px;
}

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-card strong {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 15px;
}

.cta-panel {
  text-align: left;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  margin-bottom: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 22px;
  align-items: stretch;
}

.detail-copy {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-visual {
  display: grid;
  gap: 18px;
}

.detail-icon-badge {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(216, 190, 146, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-icon-badge svg {
  width: 110px;
  height: 110px;
}

.detail-card {
  padding: 22px;
}

.detail-card strong {
  display: inline-block;
  margin-bottom: 10px;
}

.application-cloud,
.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.site-form {
  display: grid;
  gap: 16px;
}

.site-form label {
  display: grid;
  gap: 8px;
}

.site-form span {
  color: #e2e7ee;
  font-size: 14px;
  font-weight: 600;
}

.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  outline: none;
}

.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
  border-color: rgba(216, 190, 146, 0.72);
  box-shadow: 0 0 0 3px rgba(216, 190, 146, 0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.admin-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.admin-list {
  display: grid;
  gap: 18px;
}

.admin-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-item-head strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.admin-item-head span {
  color: var(--muted);
  font-size: 14px;
}

.toolbar {
  margin: 12px 0 16px;
}

.empty-state {
  padding: 32px;
  text-align: center;
}

.site-footer {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.16em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.footer-note {
  max-width: 340px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
  text-align: right;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rtl-layout {
  text-align: right;
}

.rtl-layout .header-inner,
.rtl-layout .footer-inner,
.rtl-layout .detail-hero,
.rtl-layout .hero-grid,
.rtl-layout .contact-grid {
  direction: rtl;
}

.rtl-layout .site-nav a.is-active::after {
  transform: scaleX(1);
}

@media (max-width: 1180px) {
  .hero-grid,
  .detail-hero,
  .contact-grid,
  .admin-layout,
  .category-grid,
  .info-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .detail-hero,
  .contact-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 28px, 1280px);
  }

  .header-inner,
  .footer-inner {
    display: grid;
    justify-content: stretch;
  }

  .header-tools {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .trust-strip,
  .stats-strip,
  .category-grid,
  .info-grid,
  .timeline-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    min-height: 460px;
  }

  .light-cluster {
    width: 114px;
    height: 170px;
  }

  .light-cluster-b {
    left: calc(50% - 58px);
    width: 134px;
    height: 192px;
  }

  .light-cluster-a {
    left: 8%;
  }

  .light-cluster-c {
    right: 8%;
  }

  .detail-icon-badge {
    min-height: 180px;
  }

  .footer-note {
    max-width: none;
    text-align: left;
  }

  .rtl-layout .footer-note {
    text-align: right;
  }
}

.product-page-hero { padding-bottom: 14px; }

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.catalog-filter {
  min-height: 38px;
  padding: 0 13px;
  color: #64584c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(67, 53, 39, 0.22);
}

.catalog-filter:hover,
.catalog-filter.is-active { color: #f7f0e7; background: #302821; border-color: #302821; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-card { min-height: 100%; background: #fbf9f4; }
.product-card[hidden] { display: none; }

.product-image {
  display: block;
  aspect-ratio: 0.94;
  overflow: hidden;
  background: #ded6ca;
}

.product-image img,
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.product-card:hover .product-image img { transform: scale(1.045); }

.product-copy { padding: 26px 28px 30px; }
.product-category { margin-bottom: 8px; color: #94714f; font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.product-copy h3 { max-width: none; margin-bottom: 10px; }
.product-copy > p:not(.product-category) { min-height: 74px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-link { display: inline-flex; gap: 9px; margin-top: 24px; color: #392d22; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.product-link span { color: #9d7043; font-size: 15px; transition: transform 180ms ease; }
.product-link:hover span { transform: translate(3px, -3px); }
.catalog-empty { padding: 48px 0; color: var(--muted); font-size: 14px; text-align: center; }

.product-detail-hero { padding-bottom: 52px; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr); gap: clamp(28px, 6vw, 86px); align-items: center; }
.product-detail-image { height: min(730px, 70vw); overflow: hidden; background: #ded6ca; }
.product-detail-copy { padding: 26px 0; }
.product-detail-copy h1 { max-width: 9ch; }
.product-detail-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }

.product-showcase-section { padding-top: clamp(84px, 11vw, 152px); }

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(32px, 8vw, 148px);
  align-items: end;
  padding-bottom: 42px;
}

.showcase-heading h2 { max-width: 10ch; margin-bottom: 0; }
.showcase-heading > p { max-width: 42ch; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.home-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-product-grid .product-card:nth-child(n + 4) { display: none; }
.showcase-action { padding-top: 34px; text-align: center; }

.capability-section { background: #302821; }
.capability-section .section-head h2 { color: #f5ede3; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.16); }
.capability-card { min-height: 260px; padding: 30px; color: #f5ede3; background: #302821; }
.capability-card span { display: block; margin-bottom: 44px; color: #c7a373; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; }
.capability-card h3 { max-width: 9ch; margin-bottom: 12px; font-size: 31px; }
.capability-card p { color: rgba(245,237,227,0.66); font-size: 13px; line-height: 1.75; }

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-detail-image { height: min(680px, 92vw); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .product-grid,
  .product-detail-specs { grid-template-columns: 1fr; }
  .catalog-toolbar { gap: 6px; }
  .catalog-filter { min-height: 34px; padding: 0 10px; font-size: 9px; }
  .product-detail-hero { padding-bottom: 24px; }
  .product-detail-image { height: 115vw; }
  .showcase-heading { grid-template-columns: 1fr; gap: 18px; padding-bottom: 30px; }
  .home-product-grid { grid-template-columns: 1fr; }
  .home-product-grid .product-card:nth-child(n + 4) { display: block; }
  .capability-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2026 showroom direction: warm editorial surfaces replace the dark dashboard look. */
:root {
  --bg: #f4f0e8;
  --bg-soft: #ece6dc;
  --bg-panel: #fbf9f4;
  --bg-panel-2: #ede7dc;
  --text: #241f1a;
  --muted: #756d63;
  --line: rgba(60, 48, 36, 0.14);
  --line-strong: rgba(60, 48, 36, 0.28);
  --gold: #9d7043;
  --gold-deep: #684326;
  --gold-glow: rgba(157, 112, 67, 0.16);
  --shadow: 0 20px 50px rgba(48, 35, 22, 0.08);
  --radius: 0;
  --radius-md: 0;
  --radius-sm: 0;
}

body {
  color: var(--text);
  background: #f4f0e8;
  font-family: "Manrope", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(rgba(82, 61, 39, 0.14) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
}

.page-shell {
  width: min(1400px, calc(100% - 64px));
}

.site-header {
  position: sticky;
  background: rgba(244, 240, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
  padding: 0;
}

.brand { gap: 12px; }

.brand-mark {
  width: 38px;
  height: 38px;
  color: #f7f3ec;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0;
  background: #302821;
  border-radius: 50%;
  box-shadow: none;
}

.brand-copy { gap: 0; }

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.brand-copy small {
  color: #8a8075;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav { gap: clamp(18px, 2.1vw, 34px); }

.site-nav a {
  color: #564d44;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active { color: #201b16; }

.site-nav a.is-active::after {
  bottom: -12px;
  height: 1px;
  background: #9d7043;
}

.nav-products { position: relative; }

.nav-products > a::after {
  display: inline-block;
  margin-left: 7px;
  content: "+";
  color: #9d7043;
  font-size: 13px;
  font-weight: 500;
  transform: translateY(-1px);
}

.nav-products.is-active > a { color: #201b16; }

.product-dropdown {
  position: absolute;
  top: calc(100% + 21px);
  left: -22px;
  z-index: 50;
  display: grid;
  min-width: 294px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background: #29211b;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 45px rgba(37, 26, 16, 0.28);
  transform: translateY(8px);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.nav-products:hover .product-dropdown,
.nav-products:focus-within .product-dropdown { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0); }

.product-dropdown a {
  color: #f2e9dc;
  text-transform: none;
}

.product-dropdown-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 13px 17px;
  color: #d5ad78 !important;
  font-size: 10px !important;
  border-bottom: 1px solid rgba(255,255,255,0.17);
}

.product-dropdown-all span { font-size: 16px; }

.product-dropdown-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 42px;
  padding: 8px 13px;
  font-size: 12px !important;
  letter-spacing: 0.01em !important;
  transition: background 150ms ease, padding 150ms ease;
}

.product-dropdown-item:hover { padding-left: 18px; background: rgba(255,255,255,0.08); }
.product-dropdown-item span { color: #ad8b64; font-size: 9px; letter-spacing: 0.11em; }

.nav-admin { display: none; }

.header-tools { gap: 18px; }

.lang-menu { position: relative; }

.lang-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: #493f35;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  list-style: none;
}

.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu[open] .lang-caret { transform: rotate(45deg); }

.lang-caret {
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.lang-options {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  display: grid;
  min-width: 178px;
  padding: 8px;
  background: #302821;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 20px 40px rgba(37, 26, 16, 0.2);
}

.lang-options button {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 10px;
  color: #e9dfd2;
  text-align: left;
  background: transparent;
  border: 0;
}

.lang-options button:hover,
.lang-options button.is-selected { background: rgba(255, 255, 255, 0.09); }
.lang-options button span { font-size: 13px; }
.lang-options button small { color: #aa9c8d; font-size: 9px; text-transform: uppercase; }

.button,
.mini-button {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: #f9f6ef;
  background: #302821;
  border-color: #302821;
}

.button-primary:hover { color: #f9f6ef; background: #8d6239; border-color: #8d6239; }
.button-secondary,
.mini-button { color: #302821; background: transparent; border-color: rgba(48,40,33,0.34); }
.button:hover,
.mini-button:hover { transform: translateY(-2px); }

.page-hero { padding: 26px 0 0; }
.hero-home { padding-top: 28px; }

.hero-stage {
  position: relative;
  min-height: min(720px, calc(100vh - 126px));
  overflow: hidden;
  background: #21170f;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 10, 6, 0.42) 0%, rgba(17,10,6,0.12) 45%, rgba(17,10,6,0.02) 72%), url("images/hero-alabaster-lobby.png");
  background-position: center;
  background-size: cover;
}

.hero-image-note {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(660px, 58%);
  min-height: min(720px, calc(100vh - 126px));
  padding: clamp(42px, 7vw, 105px);
  color: #f8f4eb;
  background: linear-gradient(90deg, rgba(18,10,6,0.95), rgba(18,10,6,0.74), transparent);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.eyebrow { color: #c9a173; font-size: 10px; letter-spacing: 0.22em; }

h1,
h2 {
  font-family: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.03em;
}

h1 { max-width: 11ch; margin-bottom: 24px; font-size: clamp(54px, 6.4vw, 98px); }
h2 { max-width: 13ch; font-size: clamp(43px, 4.5vw, 70px); }
h3 { font-family: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif; font-size: 30px; font-weight: 600; }

.lead,
.section-head p,
.info-card p,
.timeline-card p,
.category-card p,
.detail-card p,
.contact-panel p,
.faq-panel p,
.admin-panel p,
.admin-item p,
.empty-state p,
.form-note,
.footer-note,
.site-footer p,
.stats-strip span,
.trust-strip span { color: var(--muted); font-size: 14px; line-height: 1.75; }

.hero-copy .lead { max-width: 48ch; color: rgba(249, 243, 234, 0.72); }
.hero-copy .button-secondary { color: #f8f4eb; border-color: rgba(255,255,255,0.45); }
.hero-copy .button-secondary:hover { background: rgba(255,255,255,0.12); }

.hero-categories {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 18px;
  padding-top: 38px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.hero-categories a { display: grid; gap: 5px; color: rgba(255,255,255,0.88); font-size: 11px; }
.hero-categories span { color: #c9a173; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }

.section { padding: clamp(70px, 9vw, 132px) 0; }
.section-alt { background: #eae4da; }

.trust-strip,
.stats-strip { gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.trust-strip article,
.stats-strip article {
  padding: 28px clamp(16px, 3vw, 46px);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.trust-strip article:last-child,
.stats-strip article:last-child { border-right: 0; }
.trust-strip strong,
.stats-strip strong { color: #33291f; font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; font-weight: 600; }

.section-head { max-width: 760px; padding: 0; margin-bottom: 46px; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.section-head h2 { margin-bottom: 18px; }

.category-grid { gap: 1px; background: var(--line); }

.category-card {
  position: relative;
  min-height: 425px;
  padding: 34px;
  overflow: hidden;
  background: #fbf9f4;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background 220ms ease, color 220ms ease;
}

.category-card::before {
  position: absolute;
  top: -90px;
  right: -75px;
  width: 260px;
  height: 260px;
  content: "";
  opacity: 0.8;
  background: radial-gradient(ellipse at 50% 35%, rgba(203,163,111,0.78), rgba(134,91,50,0.12) 47%, transparent 48%);
  border: 1px solid rgba(126, 89, 53, 0.16);
  border-radius: 50%;
  transform: rotate(-23deg);
}

.category-card-pendant::before { width: 120px; height: 310px; border-radius: 60px; background: linear-gradient(180deg, rgba(197,155,105,0.7), rgba(92,64,42,0.1)); }
.category-card-wall::before { width: 210px; height: 130px; border-radius: 50% 50% 12px 12px; }
.category-card-courtyard::before { width: 180px; height: 180px; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); border-radius: 0; }
.category-card-solar::before { background: repeating-linear-gradient(90deg, rgba(67,75,79,0.45) 0 2px, rgba(190,157,103,0.4) 2px 9px); border-radius: 0; }

.category-card > * { position: relative; z-index: 1; }
.card-head { margin-bottom: 72px; }
.card-label { min-height: 24px; padding: 0; color: #8a6039; font-size: 9px; letter-spacing: 0.16em; background: transparent; border-radius: 0; }
.card-icon { width: 46px; height: 46px; color: #5d4330; }
.category-card h3 { max-width: 8ch; margin-bottom: 12px; }
.category-card p { max-width: 34ch; }
.chip-list { margin-top: 22px; }
.chip-list span,
.application-cloud span,
.deliverable-list span { min-height: 29px; padding: 0 9px; color: #64584c; font-size: 10px; background: transparent; border: 1px solid rgba(67,53,39,0.2); border-radius: 0; }
.card-link { position: absolute; bottom: 32px; margin-top: 0; }

.info-grid,
.timeline-grid { gap: 1px; background: var(--line); }

.info-card,
.timeline-card,
.cta-panel,
.contact-panel,
.faq-panel,
.admin-panel,
.admin-item {
  padding: 32px;
  background: #fbf9f4;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.timeline-card strong { color: #9d7043; font-size: 12px; letter-spacing: 0.08em; }
.cta-panel { padding: clamp(38px, 7vw, 98px); color: #f5ede3; background: #302821; }
.cta-panel p { max-width: 52ch; color: rgba(245,237,227,0.7); }
.cta-panel .button-secondary { color: #f5ede3; border-color: rgba(245,237,227,0.4); }

.detail-copy,
.detail-icon-badge,
.detail-card,
.breadcrumb,
.faq-item,
.empty-state { border-radius: 0; box-shadow: none; }
.detail-copy { background: #fbf9f4; border: 1px solid var(--line); }
.detail-icon-badge { background: #302821; border: 0; }
.detail-card { background: #eae4da; border: 0; }
.breadcrumb { background: transparent; border-color: var(--line); }

.site-form input,
.site-form textarea,
.site-form select { color: #302821; background: #fffdf9; border-color: var(--line-strong); border-radius: 0; }
.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus { border-color: #9d7043; box-shadow: 0 0 0 3px rgba(157,112,67,0.1); }
.faq-item { background: #fbf9f4; border-color: var(--line); }

.site-footer { padding: 56px 0; color: #ded5c7; background: #302821; border: 0; }
.site-footer p,
.footer-links,
.footer-note { color: #b7aa9a; }
.site-footer strong { color: #f7f0e7; font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-weight: 500; letter-spacing: 0.08em; }
.footer-links a:hover { color: #f5eadc; }

@media (max-width: 1180px) {
  .header-inner { min-height: 76px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 10px; }
  .hero-copy { width: min(680px, 68%); }
}

@media (max-width: 820px) {
  .page-shell { width: min(100% - 32px, 1400px); }
  .header-inner { display: grid; grid-template-columns: 1fr auto; padding: 16px 0; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; order: 3; overflow-x: auto; padding-top: 17px; }
  .product-dropdown { display: none; }
  .site-nav .nav-admin { display: inline; }
  .header-tools { gap: 13px; }
  .header-tools .button { min-height: 38px; padding: 9px 12px; font-size: 9px; }
  .hero-home { padding-top: 16px; }
  .hero-stage,
  .hero-copy { min-height: 640px; }
  .hero-copy { width: 100%; padding: 42px 28px; background: linear-gradient(90deg, rgba(18,10,6,0.94), rgba(18,10,6,0.55), rgba(18,10,6,0.2)); }
  .hero-image { background-position: 60% center; }
  .hero-image-note { display: none; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-categories { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-categories a { font-size: 9px; }
  .section-head { margin-bottom: 32px; }
  .category-grid,
  .info-grid,
  .timeline-grid { gap: 1px; }
  .category-card { min-height: 390px; }
  .trust-strip,
  .stats-strip { grid-template-columns: 1fr; }
  .trust-strip article,
  .stats-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip article:last-child,
  .stats-strip article:last-child { border-bottom: 0; }
}
