:root {
  --bg: #f5efe8;
  --paper: rgba(255, 250, 244, 0.78);
  --paper-strong: #fffaf5;
  --ink: #241d18;
  --muted: #6e655e;
  --line: rgba(36, 29, 24, 0.1);
  --accent: #8d6948;
  --shadow: 0 24px 60px rgba(43, 28, 17, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1248px, calc(100% - 24px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei UI", "PingFang SC", sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(165, 138, 103, 0.16), transparent 25%),
    linear-gradient(180deg, #faf5ee 0%, #efe5da 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 29, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 29, 24, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 95%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 245, 238, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 29, 24, 0.08);
}

.header-row,
.footer-shell,
.section-head,
.hero-actions,
.hero-stat-grid,
.header-actions,
.cta-actions,
.footer-links,
.contact-layout,
.meta-row {
  display: flex;
}

.header-row {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #b78d65, #6b4d34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.nav,
.header-actions,
.hero-actions,
.cta-actions,
.footer-links {
  align-items: center;
  gap: 14px;
}

.nav a {
  font-size: 13px;
  color: var(--muted);
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
}

.button,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
  font-size: 14px;
}

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

.button-dark {
  background: linear-gradient(135deg, #7e5b3e, #a8845a);
  color: #fff;
  box-shadow: 0 14px 30px rgba(92, 63, 39, 0.2);
}

.button-ghost,
.filter-chip {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(36, 29, 24, 0.08);
}

.light-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f8f3ed;
}

.filter-chip.active {
  background: #241d18;
  color: #fff;
}

.eyebrow,
.card-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-home,
.inner-hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-home {
  padding: 14px 0 18px;
}

.inner-hero-grid,
.split-layout,
.contact-layout,
.brand-story-layout {
  display: grid;
  gap: 24px;
}

.hero-copy-card,
.hero-visual-card,
.info-card,
.cta-panel,
.material-card,
.case-card,
.story-card,
.contact-form,
.contact-info article,
.hero-kpis article,
.quote-box {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy-card h1,
.inner-hero h1,
.section h2,
.site-footer h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero-overlay-card h1 {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.055em;
  max-width: 10.8ch;
  font-weight: 650;
}

.hero-overlay-card h1 span {
  display: block;
}

.hero-subtitle,
.section-head p,
.story-copy p,
.info-card p,
.material-card p,
.case-overlay p,
.story-card p,
.contact-form,
.contact-info article span,
.site-footer p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 24ch;
  margin-top: 16px;
  font-size: 13px;
}

.hero-subtitle,
.inner-hero p,
.section-head p,
.story-copy p,
.contact-form label,
.contact-info article {
  line-height: 1.9;
}

.hero-actions {
  gap: 14px;
  margin-top: 22px;
}

.hero-stage {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 34px 84px rgba(43, 28, 17, 0.18);
  background: #ddd1c3;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 10, 0.26) 0%, rgba(18, 14, 10, 0.03) 34%, transparent 66%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.03), rgba(18, 14, 10, 0.12));
}

.hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.1);
  transform-origin: center;
}

.hero-overlay-card,
.hero-ribbon {
  position: absolute;
  z-index: 2;
}

.hero-overlay-card {
  left: 30px;
  top: 30px;
  width: min(350px, calc(100% - 124px));
  padding: 20px 22px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.66), rgba(255, 248, 241, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 44px rgba(23, 16, 11, 0.08);
  backdrop-filter: blur(24px);
}

.hero-overlay-card .eyebrow {
  margin-bottom: 16px;
  padding: 7px 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.hero-ribbon {
  left: 30px;
  right: 30px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 38px rgba(23, 16, 11, 0.1);
  backdrop-filter: blur(14px);
}

.hero-ribbon article {
  padding: 16px 18px;
  background: rgba(255, 250, 244, 0.78);
}

.hero-ribbon strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.hero-ribbon p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.82;
}

.inner-hero {
  padding: 44px 0 10px;
}

.inner-hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.inner-hero h1 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.16;
  max-width: 12.5ch;
}

.hero-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-blocks span,
.pill-list span {
  min-height: 120px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-kpis article {
  padding: 18px;
  border-radius: 18px;
}

.hero-kpis strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.quote-box {
  padding: 24px;
  border-radius: 22px;
}

.quote-box p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  min-height: auto;
  padding: 12px 16px;
}

.tone-oak .hero-blocks span:nth-child(1),
.tone-oak .hero-blocks span:nth-child(3) {
  background: linear-gradient(135deg, #eee3d4, #d9c2aa);
}

.tone-oak .hero-blocks span:nth-child(2) {
  background: linear-gradient(135deg, #b68b63, #805b40);
}

.tone-walnut .hero-kpis article:nth-child(2) {
  background: rgba(130, 91, 61, 0.14);
}

.tone-green .quote-box,
.tone-cream .hero-kpis article:nth-child(1),
.tone-oak .hero-kpis article:nth-child(1) {
  background: rgba(124, 145, 130, 0.12);
}

.tone-charcoal .pill-list span {
  background: rgba(36, 29, 24, 0.08);
}

.section {
  padding: 48px 0;
}

.section-split {
  padding-top: 10px;
}

.home-editorial {
  padding-top: 18px;
}

.home-trust-band {
  padding-top: 22px;
  padding-bottom: 26px;
}

.trust-band-shell,
.trust-metrics article,
.trust-process article {
  background: rgba(255, 250, 244, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-band-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: 24px;
  border-radius: 30px;
}

.trust-band-intro h2,
.trust-process h3 {
  margin: 0;
}

.trust-band-intro h2 {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.28;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.trust-band-intro p:last-child,
.trust-metrics span,
.trust-process p {
  color: var(--muted);
}

.trust-band-intro p:last-child {
  max-width: 48ch;
  font-size: 13px;
  line-height: 1.95;
}

.trust-metrics,
.trust-process {
  display: grid;
  gap: 16px;
}

.trust-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.trust-metrics article {
  padding: 18px 18px 20px;
  border-radius: 22px;
}

.trust-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-metrics span {
  font-size: 12px;
  line-height: 1.8;
}

.trust-process {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-process article {
  padding: 20px;
  border-radius: 24px;
}

.trust-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(141, 105, 72, 0.12);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.trust-process h3 {
  font-size: 16px;
  line-height: 1.36;
  letter-spacing: -0.03em;
}

.trust-process p {
  font-size: 13px;
  line-height: 1.88;
}

.section-head {
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2,
.story-copy h2,
.cta-panel h2,
.site-footer h2,
.story-card h2 {
  font-size: clamp(19px, 1.95vw, 26px);
  line-height: 1.26;
  letter-spacing: -0.04em;
  max-width: 15ch;
}

.section-head p {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.92;
}

.light p,
.light h2 {
  color: #f9f4ef;
}

.card-grid,
.material-grid,
.case-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.info-card h3,
.material-card h3,
.case-overlay h3,
.story-card h3 {
  margin: 12px 0 8px;
  font-size: 15px;
  letter-spacing: -0.03em;
  line-height: 1.38;
  font-weight: 700;
}

.info-card p,
.material-card p,
.case-overlay p,
.story-card p {
  font-size: 13px;
  line-height: 1.88;
}

.inline-list,
.ordered-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.88;
  font-size: 13px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(36, 29, 24, 0.06);
  color: var(--muted);
  font-size: 11px;
}

.tone-oak {
  background: linear-gradient(135deg, rgba(240, 231, 218, 0.8), rgba(251, 246, 239, 0.5));
}

.tone-cream {
  background: linear-gradient(135deg, rgba(247, 241, 232, 0.8), rgba(251, 246, 239, 0.5));
}

.tone-walnut {
  background: linear-gradient(135deg, rgba(193, 160, 131, 0.36), rgba(251, 246, 239, 0.46));
}

.tone-green {
  background: linear-gradient(135deg, rgba(164, 181, 170, 0.4), rgba(251, 246, 239, 0.46));
}

.tone-charcoal {
  background: linear-gradient(135deg, rgba(111, 102, 94, 0.32), rgba(251, 246, 239, 0.46));
}

.split-layout {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.story-copy p {
  max-width: 500px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
}

.section-dark {
  background: linear-gradient(180deg, #2a221d 0%, #1d1713 100%);
}

.home-material-band {
  padding-top: 54px;
  padding-bottom: 54px;
}

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

.material-grid-light {
  margin-top: 20px;
}

.material-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.material-card.light {
  background: rgba(255, 250, 244, 0.82);
}

.material-swatch {
  height: 180px;
}

.material-body {
  padding: 18px;
}

.material-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.material-meta-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 29, 24, 0.06);
  color: var(--muted);
  font-size: 11px;
}

.meta-row {
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

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

.case-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.case-a {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent), linear-gradient(135deg, #ecdfcd, #d2b697);
}

.case-b {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent), linear-gradient(135deg, #9b765a, #594130);
}

.case-c {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent), linear-gradient(135deg, #dce2db, #8da091);
}

.case-overlay {
  position: absolute;
  inset: auto 18px 18px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.84);
}

.case-overlay span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.card-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.section-muted {
  background: rgba(255, 255, 255, 0.2);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.cta-panel p {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

.editorial-grid,
.material-band-grid,
.case-band-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.editorial-grid {
  grid-template-columns: 0.86fr 1.14fr;
}

.editorial-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.editorial-copy,
.material-band-copy,
.case-band-copy {
  max-width: 520px;
}

.editorial-copy p,
.material-band-copy p,
.case-band-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.98;
  max-width: 46ch;
}

.editorial-links {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.editorial-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editorial-cards .info-card {
  min-height: 220px;
}

.editorial-image-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  background: rgba(255, 250, 244, 0.72);
}

.editorial-image-card img,
.product-hero-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-image-card::after,
.product-hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.04), rgba(20, 16, 12, 0.3));
}

.editorial-image-tall {
  grid-row: span 2;
  min-height: 460px;
}

.editorial-image-tall img {
  object-position: center;
}

.editorial-image-wide {
  min-height: 180px;
}

.editorial-image-wide img {
  object-position: center 58%;
}

.editorial-image-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 251, 247, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
}

.editorial-image-note span {
  display: block;
  margin-bottom: 6px;
  color: rgba(36, 29, 24, 0.62);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-image-note strong {
  display: block;
  max-width: 24ch;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.home-product-rail {
  padding-top: 8px;
  padding-bottom: 34px;
}

.rail-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.rail-grid.compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-hero-strip {
  position: relative;
  overflow: hidden;
  height: 188px;
  margin-bottom: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.product-hero-strip img {
  object-position: center 62%;
}

.home-entry-band {
  padding-top: 34px;
  padding-bottom: 24px;
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.entry-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  color: #fffaf5;
  background-size: cover;
  background-position: center;
}

.entry-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 17, 13, 0.04), rgba(22, 17, 13, 0.7));
}

.entry-panel > * {
  position: relative;
  z-index: 1;
}

.entry-products {
  background-image:
    linear-gradient(135deg, rgba(49, 36, 25, 0.2), rgba(49, 36, 25, 0.2)),
    url("./assets/hero-luxury-wide.png");
}

.entry-materials {
  background-image:
    linear-gradient(135deg, rgba(42, 31, 22, 0.28), rgba(42, 31, 22, 0.28)),
    url("./assets/hero-reference.png");
}

.entry-cases {
  background-image:
    linear-gradient(135deg, rgba(58, 42, 30, 0.26), rgba(58, 42, 30, 0.26)),
    url("./assets/hero-luxury-wide.png");
  background-position: center 62%;
}

.entry-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 248, 243, 0.88);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.entry-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.entry-panel p {
  max-width: 24ch;
  margin: 0;
  color: rgba(255, 246, 239, 0.82);
  font-size: 13px;
  line-height: 1.86;
}

.material-band-grid {
  grid-template-columns: 0.72fr 1.28fr;
}

.material-band-copy h2,
.case-band-copy h2,
.editorial-copy h2,
.trust-band-intro h2 {
  margin: 0 0 12px;
}

.material-band-side {
  display: grid;
  gap: 18px;
}

.material-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.material-strip .material-card {
  background: rgba(255, 255, 255, 0.04);
}

.material-strip .material-swatch {
  height: 130px;
}

.material-strip .material-body {
  padding: 14px;
}

.material-strip .material-card h3 {
  font-size: 15px;
}

.material-strip .material-card p {
  display: none;
}

.rail-grid.compact .info-card {
  min-height: 0;
  padding: 18px;
}

.rail-grid.compact .info-card h3 {
  font-size: 16px;
  margin-top: 0;
}

.rail-grid.compact .chip-list {
  gap: 8px;
}

.rail-grid.compact .chip-list span {
  font-size: 11px;
}

.home-case-band {
  padding-top: 42px;
}

.case-band-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.case-band-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-band-cards .case-card {
  min-height: 300px;
}

.home-final-cta {
  padding-top: 24px;
}

.article-layout,
.brand-story-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.filter-bar {
  display: grid;
  gap: 18px;
}

.material-library-head {
  align-items: end;
}

.material-library-head p:last-child {
  max-width: 320px;
  text-align: right;
}

.filter-group {
  display: grid;
  gap: 10px;
}

.filter-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.quick-entry-card,
.empty-state {
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-entry-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.quick-entry-card strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.quick-entry-card span,
.empty-state p {
  color: var(--muted);
}

.quick-entry-swatch {
  height: 112px;
  border-radius: 16px;
}

.empty-state {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
}

.contact-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.contact-form {
  padding: 22px;
  border-radius: var(--radius-xl);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
}

.form-status {
  margin-top: 14px;
  min-height: 24px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info article {
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.contact-info article strong {
  font-size: 17px;
  line-height: 1.42;
}

.site-footer {
  padding: 12px 0 52px;
}

.footer-shell {
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--shadow);
}

.footer-shell p {
  max-width: 540px;
}

.footer-links {
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .inner-hero-grid,
  .split-layout,
  .editorial-grid,
  .material-band-grid,
  .case-band-grid,
  .editorial-stage,
  .rail-grid.compact,
  .home-entry-grid,
  .card-grid,
  .card-grid-2,
  .mini-grid,
  .material-strip,
  .editorial-cards,
  .case-band-cards,
  .material-grid,
  .case-grid,
  .article-layout,
  .brand-story-layout,
  .contact-layout,
  .hero-kpis,
  .hero-stat-grid,
  .cta-panel,
  .quick-entry-grid,
  .trust-band-shell,
  .trust-metrics,
  .trust-process {
    grid-template-columns: 1fr;
  }

  .hero-stat-grid,
  .hero-kpis,
  .footer-shell,
  .rail-header,
  .section-head,
  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    min-height: 760px;
  }

  .hero-ribbon {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-row {
    gap: 10px;
    min-height: auto;
    padding: 14px 0 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 17px;
    line-height: 1.1;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    gap: 10px;
  }

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
  }

  .header-actions {
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header-actions .button {
    min-height: 40px;
    flex: 1 1 0;
    padding: 0 12px;
    font-size: 13px;
  }

  .cta-panel,
  .story-card,
  .contact-form,
  .editorial-cards .info-card,
  .editorial-image-card,
  .case-band-cards .case-card {
    border-radius: 24px;
  }

  .editorial-image-tall,
  .editorial-image-wide {
    min-height: 220px;
  }

  .product-hero-strip {
    height: 158px;
    border-radius: 24px;
  }

  .entry-panel {
    min-height: 220px;
    border-radius: 24px;
  }

  .hero-overlay-card {
    left: 16px;
    right: 16px;
    top: 16px;
    width: auto;
    padding: 18px 18px 20px;
    border-radius: 20px;
  }

  .hero-overlay-card h1 {
    font-size: 24px;
  }

  .hero-stage {
    min-height: 670px;
    border-radius: 28px;
  }

  .hero-ribbon {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-ribbon article {
    padding: 14px 16px;
  }

  .hero-ribbon strong {
    font-size: 15px;
  }

  .hero-ribbon p {
    font-size: 12px;
  }

  .trust-band-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .trust-band-intro h2 {
    font-size: 18px;
    line-height: 1.28;
    max-width: none;
  }

  .trust-band-intro p:last-child {
    font-size: 13px;
  }

  .trust-metrics strong {
    font-size: 18px;
  }

  .trust-process article {
    padding: 18px;
    border-radius: 20px;
  }

  .section {
    padding: 38px 0;
  }

  .inner-hero h1 {
    font-size: 28px;
  }
}
