/* ===== TOPCLASS THUMA DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;600&family=Yrsa:wght@400;500&display=swap');

:root {
  --color-ink: #211f1d;
  --color-ink-light: #4a4540;
  --color-stone: #706a62;
  --color-warm-gray: #8f877d;
  --color-silver: #d8d0c4;
  --color-linen: #e8dfd1;
  --color-cream: #f7f2ea;
  --color-white: #ffffff;
  --color-accent: #76513a;
  --color-accent-light: #c9aa7c;
  --color-sage: #343a34;
  --font-display: 'Yrsa', Georgia, serif;
  --font-body: 'Saira', -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 6%, rgba(201,170,124,0.16), transparent 28%),
    linear-gradient(180deg, #faf7f1 0%, var(--color-cream) 46%, #f1eadf 100%);
  color: var(--color-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main {
  overflow: hidden;
}

/* NAVIGATION */
.nav-thuma {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 0 40px; height: 78px;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  border-bottom: 1px solid rgba(33,31,29,0.08);
  box-shadow: 0 12px 38px rgba(33,31,29,0.08);
  transition: var(--transition);
}
.nav-thuma.scrolled {
  background: rgba(250, 247, 241, 0.96);
  box-shadow: 0 10px 34px rgba(33,31,29,0.1);
  height: 66px;
  padding: 0 44px;
}
.nav-thuma .nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 34px; font-weight: 500;
  letter-spacing: -0.4px; color: var(--color-ink); text-decoration: none;
  line-height: 1; white-space: nowrap;
  transition: var(--transition);
}
.nav-thuma .nav-logo::before {
  content: "TC";
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-ink); color: var(--color-white);
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.nav-thuma.scrolled .nav-logo {
  font-size: 30px;
}
.nav-thuma .nav-links {
  display: flex; gap: 3px; align-items: center;
  padding: 5px;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(33,31,29,0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.nav-thuma .nav-links a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.7px;
  text-transform: uppercase; color: var(--color-ink); text-decoration: none;
  position: relative; padding: 9px 11px;
  border-radius: 999px;
  transition: var(--transition);
}
.nav-thuma .nav-links a::after {
  content: ''; position: absolute; bottom: 6px; left: 14px; right: 14px;
  width: auto; height: 1px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-thuma .nav-links a:hover::after { transform: scaleX(1); }
.nav-thuma .nav-links a:hover {
  color: var(--color-accent);
  background: rgba(104, 73, 52, 0.07);
}
.nav-thuma .nav-cta {
  padding: 12px 22px; background: var(--color-ink);
  box-shadow: 0 10px 24px rgba(26, 21, 19, 0.14); color: var(--color-white);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; transition: var(--transition);
  white-space: nowrap;
  border-radius: 999px;
}
.nav-thuma .nav-cta:hover { 
  background: var(--color-accent); 
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(104, 73, 52, 0.35);
}
.nav-direct-contact { display:flex; align-items:center; gap:9px; margin-left:auto; color:var(--color-stone); font-size:11px; font-weight:800; letter-spacing:.06em; white-space:nowrap; }
.nav-direct-contact a { color:var(--color-ink); text-decoration:none; }
.nav-direct-contact a:last-child { color:var(--color-accent); }

/* ANNOUNCEMENT */
.announcement-thuma {
  position: relative;
  background: var(--color-ink);
  color: var(--color-silver);
  text-align: center;
  padding: 10px 48px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
}
.announcement-thuma .announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.announcement-thuma .announcement-close:hover {
  color: #fff;
}
.announcement-thuma.hidden {
  display: none;
}
.announcement-thuma .global-contact-link { margin-left:12px; color:#fff; text-decoration:none; font-weight:800; letter-spacing:.08em; }
.announcement-thuma .global-contact-link:hover { color:var(--color-accent-light); }

/* HERO */
.hero-thuma {
  position: relative; min-height: 94vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--color-cream);
}
.hero-thuma .hero-media { position: absolute; inset: 0; }
.hero-thuma .hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transform: scale(1.02); }
.hero-carousel { position: absolute; inset: 0; overflow: hidden; }
.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero-carousel .hero-slide.active {
  opacity: .92;
  transform: scale(1.015);
}
.hero-carousel-dots {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 6vw, 72px);
  bottom: clamp(24px, 5vw, 58px);
  display: flex;
  gap: 10px;
}
.hero-carousel-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  cursor: pointer;
}
.hero-carousel-dots button.active { background: #fff; }
.hero-thuma .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(25,22,19,0.62) 0%, rgba(36,30,25,0.34) 38%, rgba(42,34,28,0.1) 66%, rgba(247,242,234,0.34) 100%),
    linear-gradient(180deg, rgba(247,242,234,0.04) 0%, rgba(247,242,234,0.12) 48%, rgba(247,242,234,0.9) 100%);
}
.hero-shell {
  position: relative; z-index: 2; text-align: center;
  width: min(1380px, calc(100% - 64px));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  gap: 36px;
  align-items: end;
  padding-top: 88px;
}
.hero-thuma .hero-content {
  text-align: left;
  max-width: 920px;
  padding: 48px 0 32px;
}
.hero-thuma .hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 24px;
}
.hero-thuma h1 {
  font-family: var(--font-display); font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 400; line-height: 1.02; letter-spacing: -1.4px;
  color: var(--color-white); margin-bottom: 24px;
}
.hero-thuma .hero-desc {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.86);
  line-height: 1.75; margin-bottom: 36px; max-width: 700px;
}
.hero-thuma .hero-actions { display: flex; gap: 20px; justify-content: flex-start; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  max-width: 840px;
}
.hero-proof-item {
  padding: 22px 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.hero-proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}
.hero-proof-item span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.hero-panel {
  display: grid;
  gap: 18px;
  align-self: center;
}
.hero-panel-card {
  padding: 26px;
  background: rgba(250, 247, 241, 0.9);
  border: 1px solid rgba(40,40,41,0.08);
  box-shadow: 0 24px 70px rgba(26, 21, 19, 0.16);
  border-radius: 18px;
}
.hero-panel-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.hero-panel-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.hero-panel-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--color-ink-light);
  line-height: 1.7;
}
.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
}
.hero-panel-secondary {
  background: rgba(33, 31, 30, 0.92);
  color: var(--color-white);
  display: grid;
  gap: 16px;
}
.hero-mini-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-mini-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hero-mini-stat span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.hero-mini-stat strong {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  text-align: right;
}

/* BUTTONS */
.btn-primary {
  padding: 15px 36px; background: var(--color-ink); color: var(--color-white);
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; border: none;
  cursor: pointer; transition: var(--transition); display: inline-block;
  border-radius: 999px;
}
.btn-primary:hover { background: var(--color-accent); transform: translateY(-2px); }
.btn-secondary {
  padding: 15px 36px; background: rgba(255,255,255,0.18); color: var(--color-ink);
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--color-ink); cursor: pointer;
  transition: var(--transition); display: inline-block;
  border-radius: 999px;
}
.btn-secondary:hover { background: var(--color-ink); color: var(--color-white); }
.btn-secondary.small {
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 1.4px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.text-link:hover::after {
  transform: translateX(4px);
}

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--color-warm-gray); margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.5px;
}
.section-header p {
  font-size: 16px; font-weight: 300; color: var(--color-warm-gray);
  line-height: 1.7; max-width: 560px; margin: 20px auto 0;
}
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
  text-align: left;
}
.split-head h2,
.split-head .eyebrow,
.split-head p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

/* PROMISE BAR */
.promise-thuma {
  display: flex; justify-content: center; gap: 80px;
  padding: 56px 48px; background: var(--color-white);
  border-top: 1px solid var(--color-silver); border-bottom: 1px solid var(--color-silver);
}
.promise-item { text-align: center; }
.promise-item strong {
  display: block; font-family: var(--font-display); font-size: 28px;
  font-weight: 400; color: var(--color-ink); margin-bottom: 8px;
}
.promise-item span {
  font-size: 12px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--color-warm-gray);
}

/* BRAND INTRO */
.brand-intro-thuma {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

/* SHOPPING PATH */
.shopping-path-thuma {
  max-width: 1360px;
  margin: 0 auto;
  padding: 88px 48px 28px;
}
.shopping-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.shopping-path-card {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(33,31,29,0.07);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(33,31,29,0.06);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.shopping-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(33,31,29,0.1);
}
.shopping-path-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: var(--color-accent);
  text-transform: uppercase;
}
.shopping-path-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
  margin: auto 0 14px;
}
.shopping-path-card p {
  color: var(--color-stone);
  font-size: 14px;
  line-height: 1.72;
}

/* MODULAR LIVING SYSTEM */
.modular-system-thuma {
  max-width: 1360px;
  margin: 0 auto;
  padding: 84px 48px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 46px;
  align-items: center;
}
.modular-system-media {
  position: relative;
  min-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(33,31,29,0.12);
}
.modular-system-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(21,19,17,0.28));
}
.modular-system-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transform: scale(1.02);
}
.modular-system-copy {
  padding: 42px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(33,31,29,0.07);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(33,31,29,0.06);
  backdrop-filter: blur(12px);
}
.modular-system-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 16px 0 18px;
}
.modular-system-copy > p {
  color: var(--color-stone);
  line-height: 1.8;
  font-size: 16px;
}
.modular-system-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}
.modular-system-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(33,31,29,0.1);
}
.modular-system-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}
.modular-system-list span {
  color: var(--color-stone);
  font-size: 14px;
  line-height: 1.65;
}
.modular-system-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.brand-intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 20px;
}
.brand-intro-copy p:last-child {
  font-size: 16px;
  color: var(--color-ink-light);
  line-height: 1.8;
  max-width: 560px;
}
.brand-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.brand-intro-card {
  min-height: 220px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid rgba(40,40,41,0.08);
  box-shadow: 0 20px 40px rgba(40,40,41,0.05);
}
.brand-intro-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.brand-intro-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-warm-gray);
}

/* COLLECTIONS */
.collections-thuma { padding: 100px 48px; max-width: 1280px; margin: 0 auto; }
.grid-collections { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card-collection {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  text-decoration: none; display: block;
}
.card-collection img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s ease; }
.card-collection:hover img { transform: scale(1.05); }
.card-collection .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(40,40,41,0.7) 100%);
  transition: var(--transition);
}
.card-collection:hover .card-overlay {
  background: linear-gradient(transparent 30%, rgba(40,40,41,0.8) 100%);
}
.card-collection .card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px; color: var(--color-white);
}
.card-collection .card-num {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 8px;
}
.card-collection h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-bottom: 8px; }
.card-collection p { font-size: 14px; font-weight: 300; opacity: 0.8; }

/* FEATURED */
.featured-thuma {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 100px;
}

/* CONFIGURATOR */
.config-thuma {
  max-width: 1280px;
  margin: 0 auto;
  padding: 92px 48px 110px;
  scroll-margin-top: 96px;
}
.config-thuma .section-header {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.config-thuma .section-header h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.config-thuma .section-header p:last-child {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-ink-light);
}
.config-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(33,31,29,0.1);
  box-shadow: 0 28px 80px rgba(33,31,29,0.1);
}
.config-preview {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(33,31,29,0.08), transparent 38%),
    var(--color-linen);
}
.config-preview::after {
  content: "Live material preview";
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 9px 13px;
  background: rgba(255,255,255,0.86);
  color: var(--color-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.config-preview img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  transition: transform .6s ease, opacity .3s ease;
}
.config-preview:hover img {
  transform: scale(1.025);
}
.config-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 88% 12%, rgba(201,170,124,0.14), transparent 34%),
    #fffaf2;
}
.control-group {
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(33,31,29,0.08);
}
.control-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: var(--color-stone);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.control-group label::after {
  content: "Editable";
  color: rgba(33,31,29,0.38);
  font-size: 10px;
  letter-spacing: 1.4px;
}
.swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.swatch {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(33,31,29,0.14);
  border-radius: 0;
  cursor: pointer;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.45), 0 10px 22px rgba(33,31,29,0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.swatch:hover,
.swatch.active {
  transform: translateY(-2px);
  border-color: var(--color-ink);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.64), 0 16px 30px rgba(33,31,29,0.16);
}
.chip-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.chip {
  min-height: 48px;
  padding: 12px 10px;
  border: 1px solid rgba(33,31,29,0.12);
  background: rgba(255,255,255,0.7);
  color: var(--color-ink-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  cursor: pointer;
  transition: var(--transition);
}
.chip:hover,
.chip.active {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-white);
}
.dims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.dims input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(33,31,29,0.12);
  background: rgba(255,255,255,0.82);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  outline: none;
}
.dims input:focus {
  border-color: var(--color-ink);
  background: var(--color-white);
}
.config-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 2px;
  padding: 22px;
  background: var(--color-ink);
  color: var(--color-white);
}
.price-label {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.price-value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .9;
}
.price-value small {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}
.btn-primary.full {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.featured-card {
  background: var(--color-white);
  border: 1px solid rgba(40,40,41,0.08);
  box-shadow: 0 18px 40px rgba(40,40,41,0.06);
  overflow: hidden;
}
.featured-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover .featured-card-media img {
  transform: scale(1.04);
}
.featured-card-body {
  padding: 24px;
}
.featured-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.featured-card-category,
.featured-card-model {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-warm-gray);
}
.featured-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.featured-card-use {
  font-size: 14px;
  color: var(--color-ink-light);
  line-height: 1.75;
  min-height: 74px;
}
.featured-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 18px 0 14px;
}
.featured-card-meta strong {
  font-size: 18px;
  color: var(--color-ink);
}
.featured-card-meta span {
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.featured-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.featured-card-tags span {
  padding: 7px 10px;
  background: var(--color-cream);
  color: var(--color-ink-light);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.featured-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

/* MATERIALS */
.materials-thuma { padding: 100px 48px; max-width: 1280px; margin: 0 auto; }
.materials-thuma .section-header p:not(.eyebrow) { max-width: 760px; margin: 18px auto 0; color: var(--color-warm-gray); line-height: 1.7; }
.materials-feature { display: grid; grid-template-columns: .95fr 1.05fr; gap: 18px; align-items: stretch; margin: 42px 0 24px; }
.materials-feature-copy { background: var(--color-ink); color: var(--color-white); border-radius: 28px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; min-height: 330px; }
.materials-feature-copy span,
.card-material span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--color-accent-light); font-weight: 700; }
.materials-feature-copy h3 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 54px); line-height: 1.02; font-weight: 400; margin: 20px 0 18px; }
.materials-feature-copy p { color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 620px; }
.materials-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.materials-badges strong { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; font-size: 12px; color: rgba(255,255,255,0.82); }
.materials-spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.materials-spec-grid article { background: linear-gradient(145deg, #fffdf9, #f3eee5); border: 1px solid rgba(33,31,29,0.08); border-radius: 24px; padding: 26px; min-height: 158px; box-shadow: 0 18px 48px rgba(33,31,29,0.05); }
.materials-spec-grid span { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 999px; background: var(--color-ink); color: var(--color-white); font-size: 11px; letter-spacing: .08em; margin-bottom: 18px; }
.materials-spec-grid strong { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--color-ink); margin-bottom: 10px; }
.materials-spec-grid p { color: var(--color-warm-gray); font-size: 14px; line-height: 1.6; }
.grid-materials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-material { text-align: left; background: rgba(255,255,255,0.78); border: 1px solid rgba(33,31,29,0.07); border-radius: 28px; padding: 16px 16px 22px; box-shadow: 0 24px 70px rgba(33,31,29,0.06); }
.card-material img { width: 100%; height: 320px; object-fit: cover; margin-bottom: 24px; transition: var(--transition); }
.card-material:hover img { transform: scale(1.02); }
.card-material h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin: 12px 0 8px; }
.card-material p { font-size: 14px; font-weight: 300; color: var(--color-warm-gray); line-height: 1.6; }
.card-material ul { margin: 16px 0 0; padding: 14px 0 0 18px; border-top: 1px solid rgba(33,31,29,0.08); color: var(--color-ink-light); }
.card-material li { margin-bottom: 8px; font-size: 13px; line-height: 1.45; }

/* REVIEWS */
.reviews-thuma { padding: 100px 48px; background: var(--color-linen); }
.grid-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.card-review { padding: 48px; background: var(--color-white); text-align: center; }
.stars { color: var(--color-accent-light); font-size: 16px; letter-spacing: 4px; margin-bottom: 24px; }
.card-review > p { font-family: var(--font-display); font-size: 18px; line-height: 1.7; color: var(--color-ink-light); margin-bottom: 32px; font-style: italic; }
.reviewer strong { display: block; font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.reviewer span { font-size: 13px; color: var(--color-warm-gray); }

/* PROCESS */
.process-thuma { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.steps-thuma { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 80px; }
.step-item { text-align: center; flex: 1; max-width: 240px; }
.step-circle { width: 64px; height: 64px; line-height: 64px; border-radius: 50%; background: var(--color-ink); color: var(--color-white); font-family: var(--font-display); font-size: 18px; margin: 0 auto 24px; }
.step-item h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.step-item p { font-size: 14px; font-weight: 300; color: var(--color-warm-gray); line-height: 1.6; }
.step-line { width: 80px; height: 1px; background: var(--color-silver); margin: 32px 20px 0; flex-shrink: 0; }

/* FAQ */
.faq-thuma { padding: 100px 48px; background: var(--color-white); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; max-width: 1100px; margin: 0 auto; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.1; margin-bottom: 32px; }
.faq-list details { border-bottom: 1px solid var(--color-silver); padding: 28px 0; }
.faq-list summary { font-size: 17px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-list summary::after { content: '+'; font-size: 24px; color: var(--color-warm-gray); transition: transform 0.3s; font-weight: 300; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding-top: 20px; font-size: 15px; color: var(--color-warm-gray); line-height: 1.7; max-width: 90%; }

/* CTA */
.cta-thuma { padding: 120px 48px; background: var(--color-ink); color: var(--color-white); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-thuma .eyebrow { color: var(--color-silver); margin-bottom: 24px; }
.cta-thuma h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.1; margin-bottom: 24px; }
.cta-desc { font-size: 16px; color: var(--color-silver); line-height: 1.7; margin-bottom: 48px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 56px; }
.btn-primary.light { background: var(--color-white); color: var(--color-ink); }
.btn-primary.light:hover { background: var(--color-linen); }
.btn-secondary.light { color: var(--color-white); border-color: var(--color-white); }
.btn-secondary.light:hover { background: var(--color-white); color: var(--color-ink); }
.cta-meta { display: flex; gap: 20px; justify-content: center; font-size: 13px; color: var(--color-warm-gray); letter-spacing: 1px; }
.cta-meta a { color:var(--color-white); text-decoration:none; font-weight:800; }
.cta-meta a:hover { color:var(--color-accent-light); }


/* ===== FOOTER ===== */
.footer-thuma {
  background: #1c1b1b;
  color: var(--color-silver);
  padding: 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.7fr;
  gap: 48px;
  padding: 44px 40px 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0;
}
.footer-tagline {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-contact a {
  color: var(--color-linen);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact a:hover {
  color: var(--color-white);
}
.footer-contact-label { color:var(--color-white); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }

/* Global customer service footer treatment */
.footer-brand .footer-contact {
  display:flex;
  align-items:center;
  gap:8px 10px;
  margin-top:20px;
  padding:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}
.footer-brand .footer-contact-label {
  flex-basis:100%;
  color:#d7b98f;
  font-size:10px;
  letter-spacing:.13em;
}
.footer-brand .footer-contact a {
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}
.footer-brand .footer-contact a[data-global-phone] {
  border-color:#d7b98f;
  background:#d7b98f;
  color:#211f1d;
  font-size:14px;
}
.footer-brand .footer-contact a[data-global-whatsapp] {
  color:#e8f4ec;
  border-color:rgba(116,195,137,.62);
}
.footer-brand .footer-contact .footer-divider { display:none; }
@media(max-width:620px) {
  .footer-brand .footer-contact { padding:12px; }
  .footer-brand .footer-contact a { width:100%; justify-content:center; }
}
.footer-divider {
  color: rgba(255,255,255,0.3);
}
.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.footer-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-action:hover {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* Persistent WhatsApp contact entry, populated from the admin contact settings. */
.global-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #168a4a;
  border-radius: 3px;
  background: #1f9d55;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.global-whatsapp-button::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
}
.global-whatsapp-button:hover {
  background: #168a4a;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(24,91,51,.24);
}
.footer-brand .footer-contact .global-whatsapp-button {
  border-color: #168a4a;
  background: #1f9d55;
  color: #fff;
}
.topclass-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px 0 13px;
  border: 1px solid #168a4a;
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 91, 51, .28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.topclass-whatsapp-float:hover {
  background: #168a4a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 91, 51, .34);
}
.topclass-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}
.cms-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #168a4a;
  border-radius: 3px;
  background: #1f9d55;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.cms-whatsapp-action:hover {
  background: #168a4a;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 620px) {
  .topclass-whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 46px;
    padding-right: 14px;
    font-size: 12px;
  }
}

/* Homepage-only interactive 3D world hero. */
.world-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #11130f;
  color: #fff;
  isolation: isolate;
}
.world-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
}
.world-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.world-stage-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(8, 10, 8, .24);
  box-shadow: inset 0 -180px 150px rgba(8, 10, 8, .7), inset 480px 0 240px rgba(8, 10, 8, .35);
}
.world-hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 56px;
  width: min(1380px, calc(100% - 96px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 150px 0 64px;
  pointer-events: none;
}
.world-hero-copy,
.world-hero-hud,
.world-controls,
.world-status {
  pointer-events: auto;
}
.world-hero-copy {
  max-width: 790px;
}
.world-eyebrow {
  margin: 0 0 20px;
  color: #d7b98f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
}
.world-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.world-hero-desc {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.65;
}
.world-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.world-hero-actions .btn-primary {
  background: #f4efe7;
  color: #171814;
}
.world-hero-actions .btn-secondary {
  border-color: rgba(255,255,255,.45);
  background: rgba(13,15,12,.38);
  color: #fff;
}
.world-hero-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.world-zone {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(10,12,9,.42);
  color: rgba(255,255,255,.72);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.world-zone:hover,
.world-zone.active {
  border-color: #d7b98f;
  background: #d7b98f;
  color: #191a16;
}
.world-hero-hud {
  align-self: end;
  padding: 0 0 8px 24px;
  border-left: 1px solid rgba(255,255,255,.34);
}
.world-hud-kicker {
  margin: 0 0 12px;
  color: #d7b98f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.world-hero-hud h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
}
.world-hero-hud p:not(.world-hud-kicker) {
  margin: 0 0 20px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.65;
}
.world-hud-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.world-hud-link:hover { color: #d7b98f; }
.world-status {
  position: absolute;
  top: 94px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(8,10,8,.55);
  color: rgba(255,255,255,.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}
.world-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #75d49b;
  box-shadow: 0 0 0 4px rgba(117,212,155,.14);
}
.world-controls {
  position: absolute;
  right: 38px;
  top: 50%;
  z-index: 4;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}
.world-control {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(8,10,8,.58);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.world-control:hover {
  border-color: #d7b98f;
  background: #d7b98f;
  color: #171814;
}
.world-hero.world-fallback .world-stage {
  background: #11130f url('./hero-bedroom.jpg') center / cover no-repeat;
}
.world-hero.world-fallback #worldCanvas { display: none; }
@media (max-width: 1024px) {
  .world-hero-shell {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 32px;
    width: calc(100% - 56px);
  }
  .world-hero h1 { font-size: 58px; }
}
@media (max-width: 768px) {
  .world-hero,
  .world-hero-shell { min-height: 86vh; }
  .world-hero-shell {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    width: calc(100% - 32px);
    padding: 120px 0 24px;
  }
  .world-hero h1 { font-size: 42px; }
  .world-hero-desc { max-width: 560px; font-size: 15px; }
  .world-hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .world-hero-actions > * { width: 100%; text-align: center; }
  .world-hero-actions > :first-child { grid-column: 1 / -1; }
  .world-hero-hud {
    width: min(100%, 520px);
    padding: 12px 0 0;
    border-top: 1px solid rgba(255,255,255,.3);
    border-left: 0;
  }
  .world-hero-hud h2 { font-size: 24px; }
  .world-hero-hud p:not(.world-hud-kicker) { display: none; }
  .world-controls { right: 14px; top: 34%; }
  .world-status { top: 84px; font-size: 9px; }
  .world-stage-wash { box-shadow: inset 0 -260px 190px rgba(8,10,8,.82); }
}
@media (max-width: 480px) {
  .world-hero h1 { font-size: 36px; }
  .world-eyebrow { margin-bottom: 12px; font-size: 10px; }
  .world-hero-desc { margin-bottom: 20px; line-height: 1.5; }
  .world-hero-actions { grid-template-columns: 1fr; }
  .world-hero-actions > :first-child { grid-column: auto; }
  .world-hero-actions .hero-link-quiet { display: none; }
  .world-hero-zones { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .world-zone { flex: 0 0 auto; }
  .world-controls { top: 29%; }
}
@media (prefers-reduced-motion: reduce) {
  .world-stage { touch-action: auto; }
  .world-status { display: none; }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s, transform 0.25s;
}
.footer-col a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-sep {
  color: rgba(255,255,255,0.2);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 32px 28px;
  }
  .footer-links {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 24px;
  }
}
@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-main {
    padding: 32px 24px 24px;
  }
}
/* COOKIE */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-ink); color: var(--color-white); padding: 20px 48px; z-index: 10000; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; color: var(--color-silver); }
.cookie-banner button { background: var(--color-white); color: var(--color-ink); border: none; padding: 10px 28px; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); flex-shrink: 0; }
.cookie-banner button:hover { background: var(--color-linen); }

/* CURRENCY */
.currency-switcher { display: flex; align-items: center; gap: 8px; margin-left: 24px; }
.currency-switcher select,
.lang-switcher select {
  background: rgba(255,255,255,0.72);
  color: var(--color-ink);
  border: 1px solid rgba(40,40,41,0.12);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 38px;
}
.currency-switcher select:hover { border-color: var(--color-ink); }

/* MOBILE */
.mobile-menu-btn {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--color-ink);
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .hero-shell { grid-template-columns: 1fr; gap: 24px; width: min(100%, calc(100% - 48px)); }
  .hero-panel { max-width: 520px; }
  .hero-proof { grid-template-columns: 1fr; max-width: 520px; }
  .brand-intro-thuma { grid-template-columns: 1fr; }
  .brand-intro-grid { grid-template-columns: 1fr; }
  .shopping-path-grid { grid-template-columns: repeat(2, 1fr); }
  .modular-system-thuma { grid-template-columns: 1fr; }
  .modular-system-media,
  .modular-system-media img { min-height: 480px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .split-head { grid-template-columns: 1fr; }
  .grid-collections { grid-template-columns: 1fr; }
  .materials-feature { grid-template-columns: 1fr; }
  .grid-materials { grid-template-columns: repeat(2, 1fr); }
  .config-body { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 60px; }
  .faq-intro { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .steps-thuma { flex-direction: column; gap: 48px; }
  .step-line { display: none; }
  .promise-thuma { flex-direction: column; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-thuma { padding: 0 20px; height: 76px; }
  .nav-thuma.scrolled { padding: 0 20px; height: 72px; }
  .nav-thuma .nav-logo { font-size: 32px; }
  .nav-thuma .nav-logo::before { width: 36px; height: 36px; font-size: 11px; }
  .nav-thuma .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(40,40,41,0.1);
    box-shadow: 0 18px 50px rgba(40,40,41,0.18);
  }
  .nav-thuma .nav-links.active { display: flex; }
  .nav-thuma .nav-links a { font-size: 13px; padding: 12px 10px; }
  .currency-switcher, .lang-switcher { margin-left: 0; }
  .currency-switcher select, .lang-switcher select { width: 100%; }
  .mobile-menu-btn { display: inline-flex; }
  .nav-thuma .nav-cta { display: none; }
  .hero-shell { width: calc(100% - 32px); padding-top: 100px; }
  .hero-thuma .hero-content { padding: 24px 0; }
  .hero-thuma h1 { font-size: clamp(32px, 10vw, 48px); }
  .hero-thuma .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-panel-card { padding: 22px; }
  .brand-intro-thuma { padding: 72px 24px 12px; }
  .shopping-path-thuma, .modular-system-thuma, .collections-thuma, .featured-thuma, .materials-thuma, .reviews-thuma, .faq-thuma, .cta-thuma { padding-left: 24px; padding-right: 24px; }
  .shopping-path-grid { grid-template-columns: 1fr; }
  .shopping-path-card { min-height: 220px; padding: 24px; }
  .modular-system-thuma { gap: 24px; padding-top: 64px; }
  .modular-system-media,
  .modular-system-media img { min-height: 360px; }
  .modular-system-copy { padding: 26px; border-radius: 20px; }
  .modular-system-actions { flex-direction: column; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card-actions { flex-direction: column; align-items: flex-start; }
  .materials-feature { margin-top: 30px; }
  .materials-feature-copy { min-height: auto; padding: 28px; border-radius: 22px; }
  .materials-spec-grid { grid-template-columns: 1fr; }
  .materials-spec-grid article { min-height: auto; padding: 22px; border-radius: 20px; }
  .grid-materials, .grid-reviews { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 20px 24px; }
}





/* CONSULTATION POPUP */
.consult-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26, 21, 19, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.consult-overlay.active { opacity: 1; visibility: visible; }

.consult-popup {
  position: fixed; top: 50%; left: 50%; z-index: 2001;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(680px, 92vw); max-height: 90vh; overflow-y: auto;
  background: var(--color-white);
  border-radius: 2px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, transform 0.35s, visibility 0.35s;
}
.consult-popup.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.consult-close {
  position: absolute; top: 20px; right: 24px;
  width: 40px; height: 40px; border: none; background: none;
  font-size: 32px; line-height: 1; color: var(--color-ink);
  cursor: pointer; opacity: 0.5; transition: opacity 0.2s;
  z-index: 10;
}
.consult-close:hover { opacity: 1; }

.consult-header {
  padding: 48px 48px 24px; text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.consult-header .eyebrow { margin-bottom: 12px; }
.consult-header h3 { font-size: 32px; margin-bottom: 8px; }
.consult-desc { color: var(--color-stone); font-size: 15px; max-width: 420px; margin: 0 auto; }
.consult-direct-contact { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:10px; margin-top:16px; color:var(--color-stone); font-size:12px; }
.consult-direct-contact a { color:var(--color-ink); text-decoration:none; font-weight:900; }
.consult-direct-contact a:last-child { color:var(--color-accent); }
@media(max-width:980px) { .nav-direct-contact { display:none; } }

.consult-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding: 32px 48px 40px;
}
.consult-field { display: grid; gap: 6px; }
.consult-field.full { grid-column: 1 / -1; }
.consult-field label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--color-stone);
}
.consult-field input,
.consult-field select,
.consult-field textarea {
  width: 100%; min-height: 48px; padding: 0 14px;
  border: 1px solid rgba(0,0,0,0.1); background: var(--color-cream);
  font-family: inherit; font-size: 15px; color: var(--color-ink);
  border-radius: 0; transition: border-color 0.2s;
}
.consult-field textarea { padding: 12px 14px; resize: vertical; }
.consult-field input:focus,
.consult-field select:focus,
.consult-field textarea:focus {
  outline: none; border-color: var(--color-accent);
}
.consult-submit {
  grid-column: 1 / -1;
  padding: 18px; background: var(--color-ink); color: var(--color-white);
  font-size: 16px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.consult-submit:hover { background: var(--color-accent); transform: translateY(-1px); }
.consult-note {
  grid-column: 1 / -1; text-align: center;
  font-size: 12px; color: var(--color-stone); margin-top: -8px;
}

.consult-success {
  display: none; text-align: center; padding: 64px 48px;
}
.consult-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--color-sage); color: var(--color-white);
  font-size: 36px; line-height: 72px; margin: 0 auto 24px;
}
.consult-success h4 { font-size: 28px; margin-bottom: 12px; }
.consult-success p { color: var(--color-stone); margin-bottom: 32px; }

@media (max-width: 640px) {
  .consult-form { grid-template-columns: 1fr; padding: 24px 24px 32px; }
  .consult-header { padding: 32px 24px 20px; }
  .consult-header h3 { font-size: 24px; }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.lang-switcher select {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
}
.lang-switcher select:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* RTL Support */
html[dir="rtl"] .nav-thuma {
  direction: rtl;
}
html[dir="rtl"] .nav-thuma .nav-links {
  direction: rtl;
}
html[dir="rtl"] .lang-switcher {
  margin-left: 0;
  margin-right: 16px;
}
html[dir="rtl"] .consult-popup {
  direction: rtl;
}
html[dir="rtl"] .product-modal {
  direction: rtl;
}


/* ===== HOMEPAGE LAYOUT AUDIT UPGRADE ===== */
.hero-thuma {
  min-height: 92vh;
}
.hero-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 420px);
  align-items: center;
  padding-top: 72px;
  padding-bottom: 36px;
}
.hero-thuma .hero-content {
  padding: 38px 0 28px;
}
.hero-thuma h1 {
  max-width: 860px;
}
.hero-thuma .hero-desc {
  max-width: 680px;
}
.hero-quick-shop {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-quick-shop a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.hero-quick-shop a:hover {
  background: rgba(255,255,255,0.92);
  color: var(--color-ink);
  transform: translateY(-2px);
}
.hero-proof {
  margin-top: 26px;
}
.hero-proof-item {
  border-radius: 18px;
  padding: 18px 20px;
}
.hero-panel {
  transform: translateY(22px);
}
.hero-panel-card {
  border-radius: 24px;
}
.promise-thuma {
  position: relative;
  z-index: 5;
  width: min(1240px, calc(100% - 64px));
  margin: -34px auto 0;
  border: 1px solid rgba(33,31,29,0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(33,31,29,0.1);
}

.room-showcase-thuma {
  max-width: 1360px;
  margin: 0 auto;
  padding: 90px 48px 20px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: stretch;
}
.room-showcase-copy {
  padding: 38px;
  border-radius: 28px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(33,31,29,0.07);
  box-shadow: 0 24px 70px rgba(33,31,29,0.06);
  backdrop-filter: blur(12px);
}
.room-showcase-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1px;
  margin: 18px 0;
}
.room-showcase-copy p:last-child {
  color: var(--color-stone);
  font-size: 16px;
  line-height: 1.78;
}
.room-showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 20px;
}
.room-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 30px;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 30px 80px rgba(33,31,29,0.12);
}
.room-showcase-card.large {
  grid-row: 1 / span 2;
}
.room-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}
.room-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.03) 20%, rgba(18,16,14,0.72) 100%);
}
.room-showcase-card span,
.room-showcase-card strong {
  position: absolute;
  left: 28px;
  right: 28px;
  z-index: 2;
}
.room-showcase-card span {
  bottom: 86px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.room-showcase-card strong {
  bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}
.room-showcase-card:hover img {
  transform: scale(1.07);
}
.shopping-path-thuma {
  padding-top: 72px;
}
.brand-intro-thuma {
  padding-top: 76px;
}
.collections-thuma {
  padding-top: 76px;
}
.grid-collections {
  grid-template-columns: repeat(4, 1fr);
}
.card-collection {
  aspect-ratio: 3 / 4.1;
}
.featured-thuma {
  padding-top: 36px;
}
.config-thuma {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .room-showcase-thuma {
    grid-template-columns: 1fr;
  }
  .grid-collections {
    grid-template-columns: repeat(2, 1fr);
  }
  .config-body {
    grid-template-columns: 1fr;
  }
  .config-preview,
  .config-preview img {
    min-height: 460px;
  }
  .config-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .config-price,
  .config-controls .btn-primary.full {
    grid-column: 1 / -1;
  }
}
@media (max-width: 1024px) {
  .hero-panel {
    transform: none;
  }
  .promise-thuma {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .hero-thuma {
    min-height: auto;
  }
  .hero-shell {
    padding-top: 72px;
    padding-bottom: 26px;
  }
  .hero-quick-shop {
    gap: 8px;
  }
  .hero-quick-shop a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }
  .promise-thuma {
    width: 100%;
    margin: 0;
  }
  .room-showcase-thuma {
    padding: 64px 24px 8px;
    gap: 24px;
  }
  .room-showcase-copy {
    padding: 26px;
    border-radius: 20px;
  }
  .room-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .room-showcase-card,
  .room-showcase-card.large {
    grid-row: auto;
    min-height: 320px;
    border-radius: 22px;
  }
  .grid-collections {
    grid-template-columns: 1fr;
  }
  .config-thuma {
    padding: 68px 24px 76px;
    scroll-margin-top: 84px;
  }
  .config-thuma .section-header {
    text-align: left;
    margin-bottom: 24px;
  }
  .config-body {
    box-shadow: 0 18px 48px rgba(33,31,29,0.1);
  }
  .config-preview,
  .config-preview img {
    min-height: 320px;
  }
  .config-preview::after {
    left: 16px;
    bottom: 16px;
  }
  .config-controls {
    display: flex;
    padding: 22px;
    gap: 18px;
  }
  .swatches,
  .chip-group,
  .dims {
    grid-template-columns: 1fr;
  }
  .swatch {
    height: 44px;
  }
  .config-price {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }
}


/* ===== INTERNATIONAL FURNITURE BRAND REFINEMENT ===== */
.section-header,
.section-head {
  position: relative;
}
.section-header h2,
.section-head h2,
.brand-intro-copy h2,
.cta-thuma h2,
.faq-intro h2 {
  letter-spacing: -0.8px;
  color: var(--color-ink);
}
.eyebrow,
.section-header .eyebrow,
.section-head .eyebrow {
  color: var(--color-accent);
  letter-spacing: 3px;
}

.promise-thuma,
.brand-intro-thuma,
.collections-thuma,
.featured-thuma,
.materials-thuma,
.process-thuma {
  max-width: 1360px;
}

.brand-intro-thuma {
  padding-top: 86px;
  gap: 44px;
}
.brand-intro-card,
.featured-card,
.card-review,
.process-card {
  border-color: rgba(33,31,29,0.07);
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 24px 70px rgba(33,31,29,0.06);
  backdrop-filter: blur(12px);
}
.brand-intro-card {
  min-height: 210px;
}
.brand-intro-card:hover,
.featured-card:hover,
.card-review:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(33,31,29,0.1);
}

.collections-thuma {
  padding-top: 92px;
}
.grid-collections {
  gap: 24px;
}
.card-collection {
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(33,31,29,0.1);
}
.card-collection .card-overlay {
  background:
    linear-gradient(180deg, rgba(20,18,16,0.04) 0%, rgba(20,18,16,0.26) 48%, rgba(20,18,16,0.72) 100%);
}
.card-collection .card-info {
  padding: 42px;
}

.featured-thuma {
  padding-bottom: 92px;
}
.featured-grid {
  gap: 24px;
}
.featured-card {
  border-radius: 24px;
}
.featured-card-media {
  border-radius: 22px 22px 0 0;
}
.featured-card-body {
  padding: 26px;
}
.featured-card h3 {
  font-size: 30px;
}
.featured-card-tags span {
  border-radius: 999px;
  background: #f0e8dc;
}

/* Homepage curated product center picks */
.featured-thuma {
  padding-top: 54px;
}
.featured-thuma .split-head {
  align-items:end;
}
.featured-thuma .section-header h2 {
  max-width:760px;
}
.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.featured-card {
  display:grid;
  grid-template-columns: 44% minmax(0, 1fr);
  min-height: 320px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  overflow:hidden;
}
.featured-card-media {
  position:relative;
  aspect-ratio:auto;
  min-height:100%;
  border-radius:0;
  background:#f5efe6;
}
.featured-card-media img {
  height:100%;
  min-height:320px;
  object-fit:cover;
}
.featured-card-badge {
  position:absolute;
  left:12px;
  top:12px;
  z-index:2;
  max-width:calc(100% - 24px);
  padding:7px 10px;
  border-radius:999px;
  background:rgba(33,31,29,.82);
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.featured-card-body {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:20px;
}
.featured-card-top {
  margin-bottom:8px;
}
.featured-card-category {
  display:none;
}
.featured-card-model {
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.featured-card h3 {
  font-size:clamp(22px,2.05vw,28px);
  line-height:1.05;
  margin-bottom:8px;
}
.featured-card-use {
  min-height:auto;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:13px;
  line-height:1.58;
}
.featured-card-meta {
  margin:12px 0 10px;
}
.featured-card-meta strong {
  font-size:15px;
}
.featured-card-meta span {
  font-size:10px;
  white-space:nowrap;
}
.featured-card-tags {
  margin-bottom:14px;
}
.featured-card-tags span {
  padding:6px 9px;
  font-size:10px;
}
.featured-card-actions {
  gap:10px;
}
.featured-card-actions .btn-secondary.small {
  min-height:38px;
  padding:10px 14px;
  font-size:10px;
}
.featured-card-actions .text-link {
  font-size:11px;
  white-space:nowrap;
}

@media (max-width:1180px) {
  .featured-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px) {
  .featured-grid {
    grid-template-columns:1fr;
  }
  .featured-card {
    grid-template-columns:128px minmax(0,1fr);
    min-height:190px;
    border-radius:20px;
  }
  .featured-card-media img {
    min-height:190px;
  }
  .featured-card-body {
    padding:15px;
  }
  .featured-card h3 {
    font-size:20px;
  }
  .featured-card-use {
    -webkit-line-clamp:2;
  }
  .featured-card-tags {
    display:none;
  }
  .featured-card-actions {
    align-items:center;
    flex-direction:row;
  }
}

.materials-thuma {
  padding-top: 92px;
}
.card-material img {
  height: 260px;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(33,31,29,0.08);
}
.reviews-thuma {
  background:
    linear-gradient(135deg, rgba(232,223,209,0.96), rgba(247,242,234,0.88)),
    var(--color-linen);
}
.card-review {
  padding: 42px;
}
.process-thuma {
  padding-top: 92px;
}
.step-circle {
  background: linear-gradient(135deg, var(--color-ink), var(--color-accent));
  box-shadow: 0 14px 34px rgba(33,31,29,0.14);
}
.faq-thuma {
  background: rgba(255,255,255,0.74);
}
.cta-thuma {
  background:
    radial-gradient(circle at 22% 18%, rgba(201,170,124,0.24), transparent 28%),
    linear-gradient(135deg, #1f1d1a 0%, #30251f 52%, #171615 100%);
}
.cta-thuma .cta-inner {
  max-width: 780px;
}
.cta-thuma .eyebrow {
  color: #f4dfbc;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
.cta-thuma h2 {
  color: #fff7ea;
  font-family: "Noto Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.06;
  margin-bottom: 30px;
  text-shadow: 0 18px 54px rgba(0,0,0,0.36);
}
.cta-thuma .cta-desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,247,234,0.86);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.72;
}
.cta-thuma .cta-buttons {
  gap: 24px;
  margin-bottom: 0;
}
.cta-thuma .btn-primary.light,
.cta-thuma .btn-secondary.light {
  min-width: 180px;
  min-height: 60px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.cta-thuma .btn-primary.light {
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.cta-thuma .btn-secondary.light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
}
.footer-thuma {
  background:
    linear-gradient(135deg, #171615 0%, #23201d 58%, #131211 100%);
}
.footer-main {
  padding-top: 48px;
}
.footer-logo {
  letter-spacing: -0.5px;
}

.currency-switcher {
  margin-left: 8px;
}
.currency-switcher select,
.lang-switcher select {
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  font-size: 11px;
}
.lang-switcher {
  margin-left: 8px;
}

@media (max-width: 1180px) {
  .nav-thuma {
    padding: 0 24px;
    gap: 12px;
  }
  .nav-thuma .nav-logo {
    font-size: 30px;
  }
  .nav-thuma .nav-links a {
    font-size: 12px;
    padding: 8px 9px;
  }
  .nav-thuma .nav-cta {
    padding: 11px 16px;
  }
}
@media (max-width: 768px) {
  .nav-thuma {
    padding: 0 18px;
    height: 64px;
  }
  .nav-thuma.scrolled {
    padding: 0 18px;
    height: 60px;
  }
  .nav-thuma .nav-logo {
    font-size: 28px;
  }
  .nav-thuma .nav-logo::before {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 18px;
  }
  .nav-thuma .nav-links {
    top: 68px;
    border-radius: 22px;
  }
  .hero-shell {
    padding-top: 76px;
  }
  .announcement-thuma {
    padding: 9px 42px 9px 18px;
    font-size: 10px;
  }
  .brand-intro-card,
  .featured-card,
  .card-review {
    border-radius: 18px;
  }
  .card-collection,
  .card-material img {
    border-radius: 20px;
  }
}


/* ===== ENHANCED DESIGN SYSTEM ===== */

/* 1. 微交效与动效 */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fadeInUp { animation: fadeInUp 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-slideInLeft { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }
.animate-slideInRight { animation: slideInRight 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards; }
.animate-scaleIn { animation: scaleIn 0.5s ease forwards; }

/* 滚动显示动画 */
.reveal,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
html.js-reveal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 2. 增强Hover效果 */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hover-scale {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hover-scale:hover {
  transform: scale(1.03);
}

.hover-glow {
  transition: box-shadow 0.4s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(104, 73, 52, 0.15);
}

/* 3. 图片加载占位 */
.img-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* 4. 焦点状态（可访问性） */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* 5. 加载状态 */
.btn-loading {
  position: relative;
  color: transparent !important;
}
.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 6. 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* 7. 选择文本颜色 */
::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

/* 8. 自定义滚动条 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--color-silver);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* 9. 增强卡片样式 */
.card-premium {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.5s ease;
}
.card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.14);
}
.card-premium img {
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.card-premium:hover img {
  transform: scale(1.08);
}

/* 10. 分隔线装饰 */
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-silver), transparent);
}

/* 11. 标签/徽章 */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--color-ink);
  color: var(--color-white);
}
.badge-accent {
  background: var(--color-accent);
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--color-ink);
  color: var(--color-ink);
}

/* 12. 增强按钮 */
.btn-premium {
  position: relative;
  overflow: hidden;
  padding: 20px 48px;
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}
.btn-premium:hover::before {
  left: 100%;
}
.btn-premium:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(104, 73, 52, 0.3);
}

/* 13. 玻璃拟态效果 */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 14. 文字渐变 */
.text-gradient {
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 15. 网格背景装饰 */
.grid-pattern {
  background-image: 
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Complete collections section */
.collections-complete {
  opacity: 1 !important;
  transform: none !important;
  padding-top: 88px;
  padding-bottom: 88px;
}
.collections-complete .section-header {
  max-width: 880px;
}
.collections-complete-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 36px;
}
.collections-complete-grid .card-collection {
  min-height: 420px;
  aspect-ratio: auto;
  border-radius: 30px;
  background: #ded2c1;
  box-shadow: 0 30px 90px rgba(33,31,29,0.12);
}
.collections-complete-grid .card-collection img {
  display: block;
  min-height: 420px;
}
.collections-complete-grid .card-collection h3 {
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
}
.collections-complete-grid .card-collection p {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.9;
}
.collections-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
@media (max-width: 1180px) {
  .collections-complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 720px) {
  .collections-complete {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .collections-complete-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .collections-complete-grid .card-collection,
  .collections-complete-grid .card-collection img {
    min-height: 340px;
  }
}

/* Cloud product gallery */
.drive-gallery-thuma {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px 48px 36px;
}
.drive-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 22px;
}
.drive-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  border-radius: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 30px 90px rgba(33,31,29,0.12);
}
.drive-gallery-card.large {
  grid-row: 1 / span 2;
}
.drive-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.drive-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.02) 0%, rgba(18,16,14,0.22) 48%, rgba(18,16,14,0.76) 100%);
}
.drive-gallery-card div {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 1;
}
.drive-gallery-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.drive-gallery-card strong {
  display: block;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}
.drive-gallery-card:hover img {
  transform: scale(1.06);
}
@media (max-width: 1024px) {
  .drive-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .drive-gallery-card.large {
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  .drive-gallery-thuma {
    padding: 56px 24px 24px;
  }
  .drive-gallery-card {
    min-height: 320px;
    border-radius: 22px;
  }
  .drive-gallery-card div {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

/* 2026 refined first viewport */
.hero-thuma {
  min-height: 88vh;
}
.hero-thuma .hero-overlay {
  background:
    linear-gradient(90deg, rgba(20,19,17,0.72) 0%, rgba(20,19,17,0.48) 42%, rgba(20,19,17,0.12) 70%),
    linear-gradient(180deg, rgba(20,19,17,0.1) 0%, rgba(20,19,17,0.08) 58%, rgba(247,242,234,0.92) 100%);
}
.hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: center;
  padding-top: 56px;
  padding-bottom: 72px;
}
.hero-thuma .hero-content {
  max-width: 760px;
  padding: 28px 0;
}
.hero-thuma .hero-eyebrow {
  margin-bottom: 18px;
  letter-spacing: 2.4px;
}
.hero-thuma h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-thuma .hero-desc {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.62;
}
.hero-thuma .hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}
.hero-link-quiet {
  background: transparent;
}
.hero-quick-shop {
  margin-top: 20px;
}
.hero-panel {
  transform: none;
}
.hero-catalog-card {
  display: grid;
  gap: 14px;
  align-content: end;
  min-height: 320px;
  padding: 28px;
  background: rgba(250,247,241,0.88);
}
.hero-catalog-card strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}
.hero-catalog-card span {
  color: var(--color-ink-light);
  font-size: 14px;
  line-height: 1.65;
}
.hero-catalog-card a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--color-ink);
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
    padding-bottom: 44px;
  }
  .hero-panel {
    max-width: 520px;
  }
  .hero-catalog-card {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .hero-thuma {
    min-height: auto;
  }
  .hero-shell {
    padding-top: 84px;
    padding-bottom: 34px;
  }
  .hero-thuma h1 {
    font-size: 44px;
  }
  .hero-thuma .hero-desc {
    font-size: 16px;
  }
  .hero-thuma .hero-actions {
    align-items: stretch;
  }
  .hero-thuma .hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .hero-catalog-card strong {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  .materials-feature {
    grid-template-columns: 1fr;
  }
  .materials-feature-media img {
    height: 360px;
  }
  .grid-materials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .materials-feature {
    margin-top: 32px;
  }
  .materials-feature-media img {
    height: 280px;
    border-radius: 22px;
  }
  .materials-feature-copy {
    border-radius: 22px;
    padding: 26px;
  }
  .grid-materials {
    grid-template-columns: 1fr;
  }
}

/* Homepage compact layout v2 */
body:has(#hero) main#top {
  display: flex;
  flex-direction: column;
}
body:has(#hero) #hero { order: 1; }
body:has(#hero) #trustBar { order: 2; }
body:has(#hero) #roomShowcase { order: 3; }
body:has(#hero) #featuredProducts { order: 4; }
body:has(#hero) #configurator { order: 5; }
body:has(#hero) #materials { order: 6; }
body:has(#hero) #factoryProof { order: 7; }
body:has(#hero) #process { order: 8; }
body:has(#hero) #faq { order: 9; }
body:has(#hero) #contact { order: 10; }
body:has(#hero) #cloudGallery,
body:has(#hero) #shoppingPath,
body:has(#hero) #brandIntro,
body:has(#hero) #modularSystem,
body:has(#hero) #testimonials {
  display: none !important;
}
body:has(#hero) .hero-thuma {
  min-height: 82vh;
}
body:has(#hero) .hero-shell {
  width: min(1320px, calc(100% - 56px));
  grid-template-columns: minmax(0, 1.1fr) 340px;
  gap: 28px;
  padding-top: 76px;
}
body:has(#hero) .hero-thuma .hero-content {
  padding: 34px 0 28px;
}
body:has(#hero) .hero-thuma h1 {
  font-size: clamp(42px, 5.2vw, 70px);
  max-width: 820px;
}
body:has(#hero) .hero-thuma .hero-desc {
  margin-bottom: 28px;
  max-width: 660px;
}
body:has(#hero) .hero-quick-shop {
  margin-top: 22px;
}
body:has(#hero) .hero-catalog-card {
  min-height: 310px;
  border-radius: 28px;
}
body:has(#hero) .promise-thuma {
  margin-top: -34px;
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(33,31,29,0.1);
}
body:has(#hero) .room-showcase-thuma,
body:has(#hero) .featured-thuma,
body:has(#hero) .config-thuma,
body:has(#hero) .materials-thuma,
body:has(#hero) .process-thuma,
body:has(#hero) .faq-thuma {
  padding-top: 72px;
  padding-bottom: 72px;
}
body:has(#hero) .room-showcase-thuma {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
}
body:has(#hero) .room-showcase-copy h2,
body:has(#hero) .section-header h2,
body:has(#hero) .faq-intro h2 {
  font-size: clamp(32px, 4vw, 54px);
}
body:has(#hero) .room-showcase-grid,
body:has(#hero) .featured-grid,
body:has(#hero) .grid-materials,
body:has(#hero) .steps-thuma {
  margin-top: 34px;
}
body:has(#hero) .featured-thuma {
  background: rgba(255,255,255,0.5);
}
body:has(#hero) .featured-card-media img {
  height: 260px;
}
body:has(#hero) .config-thuma {
  background: linear-gradient(135deg, rgba(232,223,209,0.72), rgba(250,247,241,0.9));
}
body:has(#hero) .config-body {
  margin-top: 34px;
}

/* Whole-house custom selector */
.whole-home-config {
  grid-template-columns: minmax(0, 1fr) minmax(430px, .88fr);
}
.whole-home-config .config-preview {
  min-height: 610px;
}
.whole-home-config .config-preview::after {
  content: "Whole-house visual preview";
}
.config-preview-panel {
  position:absolute;
  left:24px;
  right:24px;
  bottom:74px;
  z-index:3;
  display:grid;
  gap:5px;
  max-width:420px;
  padding:18px 20px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(33,31,29,.08);
  box-shadow:0 18px 46px rgba(33,31,29,.12);
  backdrop-filter:blur(14px);
}
.config-preview-panel span,
.config-preview-panel small {
  color:var(--color-stone);
  font-size:11px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}
.config-preview-panel strong {
  color:var(--color-ink);
  font-family:var(--font-display);
  font-size:24px;
  line-height:1.08;
  font-weight:500;
}
.config-preview-link {
  display:block;
  width:100%;
  height:100%;
  color:inherit;
  text-decoration:none;
}
.config-preview-link::before {
  content:"Click image to open matching 3D model";
  position:absolute;
  right:24px;
  top:24px;
  z-index:4;
  max-width:210px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:#211f1d;
  font-size:10px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  box-shadow:0 12px 28px rgba(33,31,29,.12);
}
.config-preview-link:hover img {
  transform:scale(1.025);
}
.whole-home-config .config-controls {
  gap:16px;
  justify-content:stretch;
}
.whole-home-config .control-group {
  padding-bottom:16px;
}
.whole-home-config .control-group label::after {
  content:"Editable brief";
}
.room-choice-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.room-choice {
  min-height:50px;
  border:1px solid rgba(33,31,29,.12);
  background:rgba(255,255,255,.78);
  color:var(--color-ink);
  font-family:var(--font-body);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:var(--transition);
}
.room-choice:hover,
.room-choice.active {
  background:var(--color-ink);
  border-color:var(--color-ink);
  color:var(--color-white);
  transform:translateY(-2px);
}
.home-brief-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.home-brief-grid select {
  width:100%;
  min-height:48px;
  border:1px solid rgba(33,31,29,.12);
  background:rgba(255,255,255,.84);
  color:var(--color-ink);
  padding:0 12px;
  font-family:var(--font-body);
  font-size:12px;
  font-weight:700;
  outline:none;
}
.home-brief-grid select:focus {
  border-color:var(--color-ink);
  background:var(--color-white);
}
.whole-home-summary {
  padding:18px 20px;
}
.whole-home-summary .price-value {
  font-size:30px;
}

@media (max-width:1180px) {
  .whole-home-config {
    grid-template-columns:1fr;
  }
  .whole-home-config .config-preview,
  .whole-home-config .config-preview img {
    min-height:460px;
  }
}

@media (max-width:768px) {
  .room-choice-grid,
  .home-brief-grid {
    grid-template-columns:1fr;
  }
  .config-preview-panel {
    left:16px;
    right:16px;
    bottom:66px;
  }
  .config-preview-panel strong {
    font-size:21px;
  }
}

/* 3D whole-house configurator experience */
body:has(#hero) .config-thuma {
  max-width:1440px;
}
body:has(#hero) .config-thuma .section-header h2 {
  max-width:880px;
  font-size:clamp(36px,4vw,58px);
}
body:has(#hero) .whole-home-config {
  grid-template-columns:minmax(0,1.12fr) minmax(430px,.88fr);
  border:1px solid rgba(33,31,29,.08);
  box-shadow:0 34px 90px rgba(33,31,29,.1);
}
body:has(#hero) .whole-home-config .config-preview {
  min-height:620px;
}
.config-3d-card {
  position:absolute;
  left:24px;
  top:24px;
  z-index:4;
  width:min(330px,calc(100% - 48px));
  display:grid;
  grid-template-columns:84px minmax(0,1fr);
  gap:14px;
  align-items:center;
  padding:16px;
  border:1px solid rgba(255,255,255,.62);
  background:rgba(24,24,22,.78);
  color:#fff;
  box-shadow:0 22px 64px rgba(0,0,0,.22);
  backdrop-filter:blur(16px);
}
.config-3d-badge {
  position:absolute;
  top:-12px;
  left:14px;
  padding:5px 9px;
  border-radius:999px;
  background:#c9aa7c;
  color:#211f1d;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
}
.config-3d-cube {
  position:relative;
  height:78px;
  border-radius:18px;
  background:linear-gradient(145deg,rgba(255,255,255,.2),rgba(255,255,255,.05));
  overflow:hidden;
}
.config-3d-cube i {
  position:absolute;
  display:block;
  border:1px solid rgba(255,255,255,.68);
  background:rgba(255,255,255,.18);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.config-3d-cube i:nth-child(1) {
  width:42px;
  height:52px;
  left:14px;
  top:13px;
  transform:skewY(-8deg);
}
.config-3d-cube i:nth-child(2) {
  width:22px;
  height:52px;
  left:56px;
  top:13px;
  transform:skewY(18deg);
}
.config-3d-cube i:nth-child(3) {
  width:54px;
  height:18px;
  left:20px;
  top:4px;
  transform:skewX(-28deg);
}
.config-3d-card strong {
  display:block;
  margin-bottom:4px;
  font-size:15px;
  line-height:1.15;
}
.config-3d-card small {
  display:block;
  color:rgba(255,255,255,.72);
  font-size:12px;
  line-height:1.45;
}
.config-preview-actions {
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:5;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.config-model-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:#211f1d;
  color:#fff;
  text-decoration:none;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  box-shadow:0 14px 34px rgba(33,31,29,.18);
}
.config-model-link.muted {
  background:rgba(255,255,255,.9);
  color:#211f1d;
}
.config-step-head {
  padding:16px 18px;
  border:1px solid rgba(33,31,29,.08);
  background:rgba(255,255,255,.68);
}
.config-step-head span {
  display:block;
  margin-bottom:5px;
  color:#9b6b4d;
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.config-step-head strong {
  display:block;
  color:#211f1d;
  font-size:17px;
  line-height:1.25;
}
body:has(#hero) .config-preview-panel {
  bottom:82px;
  max-width:460px;
}
body:has(#hero) .whole-home-config .config-controls {
  padding:clamp(24px,3vw,40px);
  gap:14px;
}
body:has(#hero) .whole-home-config .control-group {
  padding-bottom:14px;
}

@media(max-width:1180px) {
  body:has(#hero) .whole-home-config {
    grid-template-columns:1fr;
  }
}

@media(max-width:768px) {
  .config-3d-card {
    position:relative;
    left:auto;
    top:auto;
    width:auto;
    margin:14px;
    grid-template-columns:70px minmax(0,1fr);
  }
  .config-preview-actions {
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin:0 14px 14px;
  }
  .config-model-link {
    flex:1;
  }
  body:has(#hero) .config-preview-panel {
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin:0 14px 14px;
  }
}

/* Whole-house custom launchpad and focused planner modal */
body.whole-home-modal-open { overflow:hidden; }
body:has(#hero) .config-thuma { max-width:1320px; padding-top:88px; padding-bottom:88px; }
body:has(#hero) .whole-home-intro { max-width:760px; margin:0 auto 28px; text-align:center; }
body:has(#hero) .whole-home-intro h2 { max-width:720px; margin-left:auto; margin-right:auto; font-size:clamp(40px,5vw,66px); line-height:.98; }
.whole-home-launchpad { display:grid; grid-template-columns:minmax(0,.98fr) minmax(420px,1.02fr); min-height:350px; overflow:hidden; border:1px solid rgba(33,31,29,.1); background:#181816; box-shadow:0 28px 70px rgba(33,31,29,.1); }
.whole-home-launchpad-copy { display:flex; flex-direction:column; align-items:flex-start; justify-content:center; padding:clamp(32px,5vw,72px); color:#fff; }
.whole-home-kicker { color:#d7b98f; font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.whole-home-launchpad-copy strong { max-width:540px; margin:18px 0 9px; font-family:var(--font-display); font-size:clamp(33px,4vw,54px); font-weight:400; line-height:1; }
.whole-home-launchpad-copy > span:not(.whole-home-kicker) { color:rgba(255,255,255,.68); font-size:14px; line-height:1.55; }
.whole-home-launchpad-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.whole-home-launchpad-actions .btn-primary { background:#fff; color:#171614; }
.whole-home-launchpad-actions .btn-secondary { border-color:rgba(255,255,255,.45); color:#fff; }
.whole-home-launchpad-image { position:relative; min-height:350px; padding:0; overflow:hidden; border:0; background:#2c2822; cursor:pointer; text-align:left; }
.whole-home-launchpad-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.whole-home-launchpad-image:hover img, .whole-home-launchpad-image:focus-visible img { transform:scale(1.035); }
.whole-home-launchpad-image::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(24,24,22,.25),transparent 50%,rgba(0,0,0,.14)); }
.whole-home-launchpad-image span { position:absolute; left:20px; bottom:20px; z-index:1; padding:9px 12px; background:rgba(19,18,17,.78); color:#fff; font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.whole-home-modal { position:fixed; z-index:2200; inset:0; display:none; align-items:center; justify-content:center; padding:20px; }
.whole-home-modal.is-open { display:flex; }
.whole-home-modal-backdrop { position:absolute; inset:0; background:rgba(18,17,15,.72); backdrop-filter:blur(8px); }
.whole-home-modal-dialog { position:relative; z-index:1; width:min(1440px,100%); max-height:calc(100vh - 40px); overflow:auto; border:1px solid rgba(255,255,255,.3); background:#f8f6f1; box-shadow:0 36px 110px rgba(0,0,0,.42); }
.whole-home-modal-bar { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:16px 20px; border-bottom:1px solid rgba(33,31,29,.1); background:#fffdfa; }
.whole-home-modal-bar span { display:block; margin-bottom:4px; color:#9b6b4d; font-size:10px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.whole-home-modal-bar strong { display:block; color:#211f1d; font-size:17px; line-height:1.2; }
.whole-home-modal-close { flex:0 0 40px; width:40px; height:40px; border:1px solid rgba(33,31,29,.15); border-radius:50%; background:#fff; color:#211f1d; cursor:pointer; font-size:26px; line-height:1; }
.whole-home-modal .whole-home-config { margin:0; grid-template-columns:minmax(380px,.92fr) minmax(500px,1.08fr); border:0; box-shadow:none; }
.whole-home-modal .whole-home-config .config-preview { min-height:600px; }
.whole-home-modal .whole-home-config .config-controls { padding:28px; }
@media(max-width:900px) {
  .whole-home-launchpad { grid-template-columns:1fr; }
  .whole-home-launchpad-image { min-height:260px; }
  .whole-home-modal { padding:0; }
  .whole-home-modal-dialog { width:100%; height:100%; max-height:none; }
  .whole-home-modal .whole-home-config { grid-template-columns:1fr; }
  .whole-home-modal .whole-home-config .config-preview { min-height:390px; }
}
@media(max-width:600px) {
  body:has(#hero) .config-thuma { padding-top:62px; padding-bottom:62px; }
  .whole-home-launchpad-copy { padding:34px 24px; }
  .whole-home-launchpad-actions { width:100%; }
  .whole-home-launchpad-actions .btn-primary, .whole-home-launchpad-actions .btn-secondary { width:100%; justify-content:center; }
  .whole-home-modal-bar { padding:14px 16px; }
  .whole-home-modal .whole-home-config .config-controls { padding:20px 16px; }
}
body:has(#hero) .materials-thuma {
  max-width: 1320px;
}
body:has(#hero) .materials-feature {
  margin-top: 34px;
}

/* Materials visual system refinement */
.materials-head {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.materials-head h2 {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 0.98;
}
.materials-head p:not(.eyebrow) {
  max-width: 820px;
}
.materials-system-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: 18px;
  margin: 38px 0 18px;
  border: 1px solid rgba(33,31,29,.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(182,129,91,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,253,249,.96), rgba(238,230,216,.9));
  box-shadow: 0 30px 90px rgba(33,31,29,.08);
}
.materials-system-intro {
  min-height: 360px;
  border-radius: 26px;
  padding: clamp(30px, 4vw, 54px);
  background: #111513;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.materials-system-intro::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(182,129,91,.24);
}
.materials-system-intro span {
  color: var(--color-accent-light);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.materials-system-intro h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1;
  font-weight: 400;
  margin: 18px 0 18px;
  max-width: 680px;
}
.materials-system-intro p {
  position: relative;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 650px;
}
.materials-tone-strip {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.materials-tone-strip i {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.material-system-cards {
  gap: 12px;
}
.material-system-cards article {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  border-color: rgba(33,31,29,.08);
  box-shadow: none;
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.material-system-cards article:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(33,31,29,.08);
}
.materials-badges-light {
  justify-content: center;
  margin: 20px 0 30px;
}
.materials-badges-light strong {
  background: #fffdf9;
  color: var(--color-ink);
  border-color: rgba(33,31,29,.1);
  box-shadow: 0 12px 30px rgba(33,31,29,.05);
}
.materials-thuma .grid-materials {
  gap: 18px;
}
.materials-thuma .card-material {
  background: #fffdf9;
  border-radius: 26px;
  padding: 12px 12px 20px;
  box-shadow: 0 20px 56px rgba(33,31,29,.055);
}
.materials-thuma .card-material img {
  height: 230px;
  border-radius: 20px;
}
.materials-thuma .card-material h3,
.materials-thuma .card-material p,
.materials-thuma .card-material span,
.materials-thuma .card-material ul {
  margin-left: 8px;
  margin-right: 8px;
}
@media (max-width: 1024px) {
  .materials-system-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .materials-head {
    text-align: left;
  }
  .materials-system-panel {
    padding: 10px;
    border-radius: 24px;
  }
  .materials-system-intro {
    min-height: auto;
    border-radius: 20px;
    padding: 26px;
  }
  .materials-tone-strip i {
    width: 38px;
    height: 38px;
  }
}
body:has(#hero) .factory-proof-thuma {
  order: 7;
  padding: 76px 48px;
}
body:has(#hero) .factory-proof-inner {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
}
body:has(#hero) .factory-proof-copy h2 {
  font-size: clamp(34px, 4.4vw, 62px);
}
body:has(#hero) .factory-proof-gallery {
  grid-template-rows: 220px 180px 150px;
}
body:has(#hero) .factory-proof-flow {
  margin-top: 24px;
}
body:has(#hero) .faq-inner {
  gap: 64px;
}
body:has(#hero) .cta-thuma {
  padding-top: 92px;
  padding-bottom: 92px;
}
@media (max-width: 1024px) {
  body:has(#hero) .hero-shell,
  body:has(#hero) .room-showcase-thuma,
  body:has(#hero) .factory-proof-inner {
    grid-template-columns: 1fr;
  }
  body:has(#hero) .hero-catalog-card {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  body:has(#hero) .hero-thuma {
    min-height: auto;
  }
  body:has(#hero) .hero-shell {
    width: min(100% - 32px, 100%);
    padding-top: 84px;
  }
  body:has(#hero) .promise-thuma {
    width: calc(100% - 28px);
    margin-top: -18px;
  }
  body:has(#hero) .room-showcase-thuma,
  body:has(#hero) .featured-thuma,
  body:has(#hero) .config-thuma,
  body:has(#hero) .materials-thuma,
  body:has(#hero) .factory-proof-thuma,
  body:has(#hero) .process-thuma,
  body:has(#hero) .faq-thuma {
    padding: 54px 22px;
  }
  body:has(#hero) .factory-proof-gallery {
    grid-template-rows: none;
  }
}
/* Homepage dynamic hero carousel */
.hero-thuma .hero-carousel .hero-slide {
  opacity: 0 !important;
  transform: scale(1.05) !important;
  transition: opacity .9s ease, transform 5.8s ease !important;
}
.hero-thuma .hero-carousel .hero-slide.active {
  opacity: .92 !important;
  transform: scale(1.015) !important;
}
.hero-carousel .hero-slide {
  will-change: opacity, transform;
}
.hero-carousel .hero-slide.active {
  animation: heroKenBurns 5.8s ease forwards;
}
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(17,21,19,.34);
  color: #fff;
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .22s ease, transform .22s ease, opacity .22s ease;
}
.hero-carousel-arrow:hover {
  background: rgba(17,21,19,.62);
  transform: translateY(-50%) scale(1.04);
}
.hero-carousel-arrow.prev {
  left: clamp(18px, 3vw, 42px);
}
.hero-carousel-arrow.next {
  right: clamp(18px, 3vw, 42px);
}
.hero-carousel-dots button {
  position: relative;
  overflow: hidden;
}
.hero-carousel-dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: rgba(255,255,255,.82);
}
.hero-carousel-dots button.active::after {
  animation: heroDotProgress 3.6s linear forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.035); }
  to { transform: scale(1.01); }
}
@keyframes heroDotProgress {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@media (max-width: 768px) {
  .hero-carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
    top: auto;
    bottom: 82px;
    transform: none;
  }
  .hero-carousel-arrow:hover {
    transform: scale(1.04);
  }
  .hero-carousel-arrow.prev {
    left: 18px;
  }
  .hero-carousel-arrow.next {
    right: 18px;
  }
}

/* Whole-house custom workbench upgrade */
body:has(#hero) .whole-home-config {
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 1.04fr);
  align-items: stretch;
}
body:has(#hero) .whole-home-config .config-preview {
  min-height: 560px;
}
.custom-workbench-head {
  padding: 14px 16px;
  border-color: rgba(33,31,29,.1);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(247,241,232,.7));
}
.custom-workbench-head strong {
  font-size: 15px;
  line-height: 1.32;
}
.custom-workbench-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.custom-workbench-grid .control-group {
  min-width: 0;
  padding: 0;
  border: 0;
}
.custom-workbench-grid .control-group label {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: .12em;
}
.custom-workbench-grid .control-group label::after {
  content: "";
}
.custom-span {
  grid-column: 1 / -1;
}
.compact-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.compact-chips .chip,
.room-choice {
  min-height: 42px;
  padding: 0 10px;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: .07em;
  white-space: normal;
}
.room-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.dimension-grid label {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 32px;
  align-items: center;
  min-height: 46px;
  margin: 0;
  border: 1px solid rgba(33,31,29,.12);
  background: rgba(255,255,255,.86);
}
.dimension-grid label span,
.dimension-grid label small {
  text-align: center;
  color: rgba(33,31,29,.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.dimension-grid input {
  width: 100%;
  min-width: 0;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 900;
  outline: 0;
}
.labeled-swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.labeled-swatches .swatch {
  position: relative;
  width: 100%;
  height: 46px;
  border-radius: 0;
  overflow: hidden;
}
.labeled-swatches .swatch span {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 5px;
  display: block;
  padding: 3px 4px;
  background: rgba(255,255,255,.78);
  color: #211f1d;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.compact-selects {
  grid-template-columns: 1fr;
}
.home-brief-grid {
  gap: 8px;
}
.home-brief-grid select {
  min-height: 44px;
  border-radius: 0;
  font-size: 11px;
}
.custom-output-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, .95fr);
  gap: 12px;
  align-items: stretch;
}
.custom-output-grid .whole-home-summary {
  display: block;
  min-height: 112px;
  padding: 14px 16px;
  border: 1px solid rgba(33,31,29,.1);
  background: rgba(255,255,255,.82);
  color: var(--color-ink);
  box-shadow: none;
}
.custom-output-grid .whole-home-summary .price-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(33,31,29,.56);
  font-size: 10px;
  letter-spacing: .14em;
}
.custom-output-grid .price-value {
  display: block;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.1;
}
.custom-output-grid .price-value small {
  display: block;
  margin-top: 6px;
  color: rgba(33,31,29,.62);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
}
.scope-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.scope-pills span {
  padding: 5px 8px;
  border: 1px solid rgba(33,31,29,.1);
  background: rgba(33,31,29,.05);
  color: rgba(33,31,29,.72);
  font-size: 10px;
  font-weight: 800;
}
.bom-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(33,31,29,.1);
  background: rgba(255,255,255,.72);
}
.bom-preview div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(33,31,29,.08);
}
.bom-preview div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.bom-preview span {
  color: rgba(33,31,29,.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bom-preview strong {
  color: var(--color-ink);
  font-size: 13px;
  white-space: nowrap;
}
body:has(#hero) .whole-home-config .config-controls {
  padding: clamp(22px, 2.4vw, 32px);
  gap: 12px;
}
body:has(#hero) .config-preview-panel {
  bottom: 74px;
}

@media (max-width: 1180px) {
  body:has(#hero) .whole-home-config {
    grid-template-columns: 1fr;
  }
  body:has(#hero) .whole-home-config .config-preview {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .custom-workbench-grid,
  .custom-output-grid {
    grid-template-columns: 1fr;
  }
  .room-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compact-chips,
  .dimension-grid,
  .labeled-swatches {
    grid-template-columns: 1fr;
  }
  .dimension-grid label {
    grid-template-columns: 34px minmax(0, 1fr) 40px;
  }
  body:has(#hero) .whole-home-config .config-preview {
    min-height: auto;
  }
}

/* Materials UX redesign */
.materials-experience {
  max-width: 1380px;
  padding-top: 78px;
  padding-bottom: 78px;
}
.materials-ux-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
.materials-ux-copy {
  min-height: 470px;
  border-radius: 34px;
  padding: clamp(34px, 5vw, 66px);
  background: radial-gradient(circle at 16% 18%, rgba(216,195,165,.26), transparent 34%), #111513;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.materials-ux-copy::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(182,129,91,.16);
}
.materials-ux-copy .eyebrow {
  color: var(--color-accent-light);
}
.materials-ux-copy h2 {
  position: relative;
  max-width: 840px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 400;
  margin: 14px 0 22px;
}
.materials-ux-copy p:not(.eyebrow) {
  position: relative;
  max-width: 720px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.78;
}
.materials-ux-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.materials-ux-actions .btn-primary,
.materials-ux-actions .btn-secondary {
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 20px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
.materials-ux-actions .btn-primary {
  background: #fff;
  color: #111513;
}
.materials-ux-actions .btn-secondary {
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
}
.materials-ux-board {
  border-radius: 34px;
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(145deg, #fffdf9, #f0e6d8);
  border: 1px solid rgba(33,31,29,.08);
  box-shadow: 0 34px 90px rgba(33,31,29,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
}
.materials-board-top {
  display: grid;
  gap: 12px;
}
.materials-board-top span,
.materials-ux-metrics span,
.materials-choice-card span,
.materials-guide-strip span {
  color: #8b6a48;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}
.materials-board-top strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.045em;
  color: #211f1d;
}
.materials-tone-large {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.materials-tone-large i {
  width: 100%;
  height: 96px;
  border-radius: 22px;
  border: 1px solid rgba(33,31,29,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 18px 38px rgba(33,31,29,.08);
}
.materials-ux-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.materials-ux-metrics div {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(33,31,29,.07);
}
.materials-ux-metrics strong,
.materials-ux-metrics small {
  display: block;
}
.materials-ux-metrics strong {
  margin-top: 10px;
  font-size: 20px;
  color: #211f1d;
}
.materials-ux-metrics small {
  margin-top: 4px;
  color: #6b625a;
}
.materials-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.materials-choice-card {
  min-height: 268px;
  border-radius: 28px;
  padding: 26px;
  background: #fffdf9;
  border: 1px solid rgba(33,31,29,.08);
  box-shadow: 0 20px 56px rgba(33,31,29,.05);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.materials-choice-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 28px 74px rgba(33,31,29,.09);
}
.materials-choice-card.priority {
  background: linear-gradient(145deg, #fff, #f4e8d8);
}
.materials-choice-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 400;
  margin: 18px 0 12px;
}
.materials-choice-card p {
  color: #645d55;
  line-height: 1.64;
  font-size: 14px;
}
.materials-choice-card ul {
  margin: 18px 0 0;
  padding: 16px 0 0 18px;
  border-top: 1px solid rgba(33,31,29,.08);
  color: #3e3934;
}
.materials-choice-card li {
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1.42;
}
.materials-guide-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.materials-guide-strip div {
  border-radius: 24px;
  padding: 22px;
  background: #211f1d;
  color: #fff;
}
.materials-guide-strip strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .materials-ux-hero,
  .materials-choice-grid,
  .materials-guide-strip {
    grid-template-columns: 1fr;
  }
  .materials-ux-board {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .materials-experience {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .materials-ux-copy,
  .materials-ux-board {
    border-radius: 24px;
    min-height: auto;
  }
  .materials-ux-copy {
    padding: 30px;
  }
  .materials-ux-copy h2 {
    font-size: clamp(38px, 13vw, 56px);
  }
  .materials-ux-actions {
    flex-direction: column;
  }
  .materials-ux-actions .btn-primary,
  .materials-ux-actions .btn-secondary {
    text-align: center;
  }
  .materials-tone-large {
    gap: 7px;
  }
  .materials-tone-large i {
    height: 70px;
    border-radius: 16px;
  }
  .materials-ux-metrics {
    grid-template-columns: 1fr;
  }
  .materials-choice-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }
}

/* Mobile UX upgrade 2026-07-08 */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }
  body {
    overflow-x: hidden;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  main {
    overflow: clip;
  }
  .announcement-thuma {
    position: relative;
    z-index: 1001;
    padding: 8px 44px 8px 16px;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 1.1px;
  }
  .announcement-thuma .announcement-close {
    right: 8px;
    width: 34px;
    height: 34px;
  }
  .nav-thuma,
  .nav-thuma.scrolled {
    top: 0;
    height: 62px;
    padding: 0 14px;
    gap: 10px;
    border-radius: 0 0 22px 22px;
  }
  .nav-thuma .nav-logo {
    min-width: 0;
    max-width: calc(100vw - 118px);
    overflow: hidden;
    font-size: 25px;
    letter-spacing: -0.7px;
    text-overflow: ellipsis;
  }
  .nav-thuma .nav-logo::before {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 10px;
  }
  .mobile-menu-btn {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(33,31,29,.16);
  }
  .nav-thuma .nav-links {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(33,31,29,.1);
    box-shadow: 0 28px 70px rgba(33,31,29,.22);
  }
  .nav-thuma .nav-links.active {
    display: flex;
  }
  .nav-thuma .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: 16px;
    background: #f8f3eb;
    color: var(--color-ink);
    font-size: 13px;
    letter-spacing: .9px;
  }
  .nav-thuma .nav-links a::after {
    display: none;
  }
  .currency-switcher,
  .lang-switcher {
    width: 100%;
    margin-left: 0;
  }
  .currency-switcher select,
  .lang-switcher select {
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
    background: #fff;
    font-size: 13px;
  }
  .nav-thuma .nav-cta {
    display: none;
  }
  .hero-thuma {
    min-height: auto;
    padding-bottom: 24px;
  }
  .hero-shell {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: end;
    padding-top: 104px;
  }
  .hero-thuma .hero-content {
    padding: 42px 0 12px;
  }
  .hero-thuma .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 3px;
  }
  .hero-thuma h1 {
    max-width: 11ch;
    margin-bottom: 16px;
    font-size: clamp(40px, 14vw, 58px);
    line-height: .92;
    letter-spacing: -1.5px;
  }
  .hero-thuma .hero-desc {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.6;
  }
  .hero-thuma .hero-actions,
  .materials-ux-actions,
  .factory-proof-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .btn-primary,
  .btn-secondary,
  .hero-thuma .hero-actions a,
  .materials-ux-actions a,
  .factory-proof-actions a {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
  }
  .hero-panel {
    display: none;
  }
  .hero-quick-shop {
    overflow-x: auto;
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }
  .hero-quick-shop a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    text-decoration: none;
    scroll-snap-align: start;
  }
  .hero-carousel-arrow {
    display: none;
  }
  .hero-carousel-dots {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .hero-carousel-dots button {
    flex: 1;
    height: 5px;
  }
  .promise-thuma,
  .room-showcase-thuma,
  .drive-gallery-thuma,
  .materials-experience,
  .shopping-path-thuma,
  .modular-system-thuma,
  .featured-thuma,
  .reviews-thuma,
  .faq-thuma,
  .cta-thuma {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section-header h2,
  .split-head h2,
  .room-showcase-copy h2,
  .materials-ux-copy h2,
  .factory-proof-copy h2 {
    font-size: clamp(34px, 12vw, 52px);
    line-height: .98;
  }
  .room-showcase-grid,
  .drive-gallery-grid,
  .featured-grid,
  .grid-materials,
  .materials-choice-grid,
  .materials-guide-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .room-showcase-card,
  .room-showcase-card.large,
  .drive-gallery-card,
  .featured-card {
    min-height: auto;
  }
  .room-showcase-card img,
  .drive-gallery-card img,
  .featured-card img {
    min-height: 230px;
    max-height: 320px;
    object-fit: cover;
  }
  .materials-ux-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .materials-ux-copy,
  .materials-ux-board,
  .materials-choice-card,
  .materials-guide-strip div {
    border-radius: 24px;
  }
  .materials-ux-copy,
  .materials-ux-board {
    padding: 26px;
  }
  .materials-tone-large {
    grid-template-columns: repeat(5, minmax(42px, 1fr));
  }
  .footer-main,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 20px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    z-index: 10001;
  }
  .cookie-banner button {
    min-height: 44px;
    width: 100%;
  }
}

@media (max-width: 430px) {
  .nav-thuma .nav-logo {
    font-size: 22px;
  }
  .hero-thuma h1 {
    font-size: clamp(36px, 13vw, 48px);
  }
  .hero-thuma .hero-desc,
  .lede {
    font-size: 14px;
  }
  .room-showcase-card img,
  .drive-gallery-card img,
  .featured-card img {
    min-height: 205px;
  }
}

/* Final featured product compact override */
body:has(#hero) .featured-thuma {
  padding-top:42px;
  padding-bottom:54px;
}
body:has(#hero) .featured-grid {
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
body:has(#hero) .featured-card {
  display:grid;
  grid-template-columns:42% minmax(0,1fr);
  min-height:260px;
  max-height:300px;
  overflow:hidden;
}
body:has(#hero) .featured-card-media {
  display:block;
  position:relative;
  min-height:260px;
  height:100%;
  aspect-ratio:auto;
  border-radius:0;
}
body:has(#hero) .featured-card-media img,
body:has(#hero) .featured-card img {
  width:100%;
  height:100%;
  min-height:260px;
  max-height:300px;
  object-fit:cover;
}
body:has(#hero) .featured-card-body {
  min-height:0;
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:8px;
}
body:has(#hero) .featured-card-top {
  margin-bottom:0;
}
body:has(#hero) .featured-card h3 {
  font-size:22px;
  line-height:1.06;
  margin-bottom:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
body:has(#hero) .featured-card-use {
  min-height:0;
  font-size:12px;
  line-height:1.48;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
body:has(#hero) .featured-card-meta {
  margin:0;
}
body:has(#hero) .featured-card-tags {
  margin-bottom:0;
  gap:6px;
}
body:has(#hero) .featured-card-tags span {
  padding:5px 8px;
  font-size:9px;
}
body:has(#hero) .featured-card-actions {
  margin-top:0;
}

@media(max-width:1180px) {
  body:has(#hero) .featured-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  body:has(#hero) .featured-grid {
    grid-template-columns:1fr;
  }
  body:has(#hero) .featured-card {
    grid-template-columns:118px minmax(0,1fr);
    min-height:178px;
    max-height:none;
  }
  body:has(#hero) .featured-card-media,
  body:has(#hero) .featured-card-media img,
  body:has(#hero) .featured-card img {
    min-height:178px;
    max-height:210px;
  }
  body:has(#hero) .featured-card-use {
    -webkit-line-clamp:2;
  }
  body:has(#hero) .featured-card-tags {
    display:none;
  }
}

/* International brand featured-product layout */
body:has(#hero) .featured-thuma {
  position:relative;
  max-width:1440px;
  padding-top:56px;
  padding-bottom:64px;
  background:
    radial-gradient(circle at 12% 10%, rgba(201,170,124,.16), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(246,240,230,.86));
}
body:has(#hero) .featured-thuma .section-header {
  margin-bottom:24px;
}
body:has(#hero) .featured-thuma .section-header h2 {
  max-width:780px;
  font-size:clamp(38px,4.6vw,64px);
  letter-spacing:-1.6px;
}
body:has(#hero) .featured-grid {
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-auto-rows:minmax(188px,auto);
  gap:18px;
  margin-top:26px;
}
body:has(#hero) .featured-card {
  position:relative;
  min-height:0;
  max-height:none;
  border:1px solid rgba(33,31,29,.08);
  background:rgba(255,255,255,.86);
  box-shadow:0 24px 70px rgba(33,31,29,.07);
  backdrop-filter:blur(14px);
}
body:has(#hero) .featured-card-main {
  grid-column:span 5;
  grid-row:span 2;
  display:grid;
  grid-template-columns:1fr;
  min-height:584px;
}
body:has(#hero) .featured-card-compact {
  grid-column:span 7;
  display:grid;
  grid-template-columns:210px minmax(0,1fr);
  min-height:188px;
}
body:has(#hero) .featured-card-main .featured-card-media {
  min-height:320px;
  height:320px;
}
body:has(#hero) .featured-card-compact .featured-card-media {
  min-height:188px;
  height:100%;
}
body:has(#hero) .featured-card-main .featured-card-media img,
body:has(#hero) .featured-card-main img {
  min-height:320px;
  max-height:320px;
}
body:has(#hero) .featured-card-compact .featured-card-media img,
body:has(#hero) .featured-card-compact img {
  min-height:188px;
  max-height:230px;
}
body:has(#hero) .featured-card-main .featured-card-body {
  padding:24px;
  gap:12px;
}
body:has(#hero) .featured-card-compact .featured-card-body {
  padding:18px 20px;
  gap:8px;
}
body:has(#hero) .featured-card-main h3 {
  font-size:clamp(30px,3vw,42px);
  -webkit-line-clamp:2;
}
body:has(#hero) .featured-card-compact h3 {
  font-size:clamp(22px,2vw,28px);
  -webkit-line-clamp:2;
}
body:has(#hero) .featured-card-main .featured-card-use {
  font-size:14px;
  line-height:1.62;
  -webkit-line-clamp:3;
}
body:has(#hero) .featured-card-compact .featured-card-use {
  font-size:12px;
  line-height:1.5;
  -webkit-line-clamp:2;
}
body:has(#hero) .featured-card-main .featured-card-meta strong {
  font-size:18px;
}
body:has(#hero) .featured-card-compact .featured-card-tags {
  display:none;
}
body:has(#hero) .featured-card-actions {
  align-items:center;
}

@media(max-width:1180px) {
  body:has(#hero) .featured-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  body:has(#hero) .featured-card-main,
  body:has(#hero) .featured-card-compact {
    grid-column:auto;
    grid-row:auto;
    grid-template-columns:1fr;
    min-height:auto;
  }
  body:has(#hero) .featured-card-main .featured-card-media,
  body:has(#hero) .featured-card-compact .featured-card-media {
    height:260px;
    min-height:260px;
  }
}

@media(max-width:760px) {
  body:has(#hero) .featured-thuma .section-header h2 {
    font-size:clamp(34px,11vw,48px);
  }
  body:has(#hero) .featured-grid {
    grid-template-columns:1fr;
    gap:14px;
  }
  body:has(#hero) .featured-card-main,
  body:has(#hero) .featured-card-compact {
    display:grid;
    grid-template-columns:118px minmax(0,1fr);
    min-height:178px;
  }
  body:has(#hero) .featured-card-main .featured-card-media,
  body:has(#hero) .featured-card-compact .featured-card-media {
    min-height:178px;
    height:100%;
  }
  body:has(#hero) .featured-card-main .featured-card-media img,
  body:has(#hero) .featured-card-compact .featured-card-media img,
  body:has(#hero) .featured-card-main img,
  body:has(#hero) .featured-card-compact img {
    min-height:178px;
    max-height:210px;
  }
  body:has(#hero) .featured-card-main .featured-card-body,
  body:has(#hero) .featured-card-compact .featured-card-body {
    padding:15px;
  }
  body:has(#hero) .featured-card-main h3,
  body:has(#hero) .featured-card-compact h3 {
    font-size:20px;
  }
  body:has(#hero) .featured-card-main .featured-card-use,
  body:has(#hero) .featured-card-compact .featured-card-use {
    -webkit-line-clamp:2;
  }
}

/* Clear product-center presentation on the homepage */
body:has(#hero) .featured-thuma {
  max-width:1320px;
  padding-top:72px;
  padding-bottom:76px;
  background:#f7f5f0;
}
body:has(#hero) .featured-thuma .section-header {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(300px,.62fr);
  gap:36px;
  align-items:end;
  margin-bottom:30px;
}
body:has(#hero) .featured-thuma .section-header h2 {
  max-width:680px;
  margin:0;
  font-size:clamp(36px,4.3vw,58px);
  line-height:1.02;
  letter-spacing:0;
}
body:has(#hero) .featured-thuma .section-header > div:last-child {
  max-width:430px;
  justify-self:end;
}
body:has(#hero) .featured-thuma .section-header > div:last-child p {
  margin:0 0 14px;
  color:#665f57;
  font-size:14px;
  line-height:1.6;
}
body:has(#hero) .featured-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:0;
}
body:has(#hero) .featured-card,
body:has(#hero) .featured-card-main,
body:has(#hero) .featured-card-compact {
  display:flex;
  grid-column:auto;
  grid-row:auto;
  flex-direction:column;
  min-height:0;
  max-height:none;
  overflow:hidden;
  border:1px solid rgba(33,31,29,.1);
  background:#fff;
  box-shadow:none;
}
body:has(#hero) .featured-card-media,
body:has(#hero) .featured-card-main .featured-card-media,
body:has(#hero) .featured-card-compact .featured-card-media {
  display:block;
  flex:0 0 auto;
  width:100%;
  height:auto;
  min-height:0;
  aspect-ratio:1.16 / .78;
  overflow:hidden;
  border-radius:0;
}
body:has(#hero) .featured-card-media img,
body:has(#hero) .featured-card-main .featured-card-media img,
body:has(#hero) .featured-card-compact .featured-card-media img,
body:has(#hero) .featured-card img {
  width:100%;
  height:100%;
  min-height:0;
  max-height:none;
  object-fit:cover;
}
body:has(#hero) .featured-card-body,
body:has(#hero) .featured-card-main .featured-card-body,
body:has(#hero) .featured-card-compact .featured-card-body {
  display:flex;
  flex:1;
  min-height:246px;
  padding:20px;
  flex-direction:column;
  gap:10px;
}
body:has(#hero) .featured-card-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:0;
}
body:has(#hero) .featured-card-category,
body:has(#hero) .featured-card-model {
  margin:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
body:has(#hero) .featured-card h3,
body:has(#hero) .featured-card-main h3,
body:has(#hero) .featured-card-compact h3 {
  min-height:46px;
  margin:0;
  color:#211f1d;
  font-size:23px;
  line-height:1.08;
}
body:has(#hero) .featured-card-use,
body:has(#hero) .featured-card-main .featured-card-use,
body:has(#hero) .featured-card-compact .featured-card-use {
  min-height:38px;
  margin:0;
  color:#6a6259;
  font-size:12px;
  line-height:1.55;
  -webkit-line-clamp:2;
}
body:has(#hero) .featured-card-meta {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  min-height:25px;
  margin:0;
  padding-top:10px;
  border-top:1px solid rgba(33,31,29,.09);
}
body:has(#hero) .featured-card-meta strong {
  color:#211f1d;
  font-size:15px;
}
body:has(#hero) .featured-card-tags {
  display:none;
}
body:has(#hero) .featured-card-actions {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:auto;
  padding-top:2px;
}
body:has(#hero) .featured-card-actions .btn-secondary.small {
  min-height:38px;
  padding:0 14px;
  border-color:#211f1d;
  color:#211f1d;
}
body:has(#hero) .featured-card-actions .text-link {
  font-size:11px;
  white-space:nowrap;
}
@media(max-width:980px) {
  body:has(#hero) .featured-thuma .section-header { grid-template-columns:1fr; gap:14px; }
  body:has(#hero) .featured-thuma .section-header > div:last-child { justify-self:start; }
  body:has(#hero) .featured-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:620px) {
  body:has(#hero) .featured-thuma { padding-top:58px; padding-bottom:62px; }
  body:has(#hero) .featured-grid { grid-template-columns:1fr; gap:14px; }
  body:has(#hero) .featured-card-body,
  body:has(#hero) .featured-card-main .featured-card-body,
  body:has(#hero) .featured-card-compact .featured-card-body { min-height:0; padding:18px; }
  body:has(#hero) .featured-card h3 { min-height:0; font-size:22px; }
  body:has(#hero) .featured-card-media { aspect-ratio:1.34 / .82; }
}

/* Symmetric compact homepage product grid */
body:has(#hero) #featuredProducts {
  max-width:1360px !important;
  padding-top:58px !important;
  padding-bottom:62px !important;
}
body:has(#hero) #featuredProducts .section-header {
  grid-template-columns:minmax(0,1fr) minmax(300px,.72fr) !important;
  gap:28px !important;
  margin-bottom:24px !important;
}
body:has(#hero) #featuredProducts .featured-grid {
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  grid-auto-rows:1fr !important;
  gap:16px !important;
  width:100% !important;
}
body:has(#hero) #featuredProducts .featured-card,
body:has(#hero) #featuredProducts .featured-card-main,
body:has(#hero) #featuredProducts .featured-card-compact {
  display:grid !important;
  grid-column:auto !important;
  grid-row:auto !important;
  grid-template-columns:218px minmax(0,1fr) !important;
  min-height:242px !important;
  max-height:242px !important;
  width:100% !important;
}
body:has(#hero) #featuredProducts .featured-card-media,
body:has(#hero) #featuredProducts .featured-card-main .featured-card-media,
body:has(#hero) #featuredProducts .featured-card-compact .featured-card-media {
  width:auto !important;
  height:242px !important;
  min-height:0 !important;
  aspect-ratio:auto !important;
}
body:has(#hero) #featuredProducts .featured-card-media img,
body:has(#hero) #featuredProducts .featured-card-main .featured-card-media img,
body:has(#hero) #featuredProducts .featured-card-compact .featured-card-media img {
  height:242px !important;
  min-height:0 !important;
  max-height:none !important;
}
body:has(#hero) #featuredProducts .featured-card-body,
body:has(#hero) #featuredProducts .featured-card-main .featured-card-body,
body:has(#hero) #featuredProducts .featured-card-compact .featured-card-body {
  min-height:0 !important;
  height:242px !important;
  padding:17px 18px !important;
  gap:7px !important;
}
body:has(#hero) #featuredProducts .featured-card h3 {
  min-height:0 !important;
  font-size:21px !important;
  line-height:1.08 !important;
}
body:has(#hero) #featuredProducts .featured-card-use {
  min-height:35px !important;
  font-size:12px !important;
  line-height:1.45 !important;
}
body:has(#hero) #featuredProducts .featured-card-meta {
  min-height:22px !important;
  padding-top:7px !important;
}
body:has(#hero) #featuredProducts .featured-card-actions .btn-secondary.small {
  min-height:34px !important;
  padding:0 12px !important;
  font-size:10px !important;
}
@media(max-width:1050px) {
  body:has(#hero) #featuredProducts .featured-card,
  body:has(#hero) #featuredProducts .featured-card-main,
  body:has(#hero) #featuredProducts .featured-card-compact {
    grid-template-columns:170px minmax(0,1fr) !important;
  }
}
@media(max-width:760px) {
  body:has(#hero) #featuredProducts .section-header { grid-template-columns:1fr !important; }
  body:has(#hero) #featuredProducts .featured-grid { grid-template-columns:1fr !important; }
  body:has(#hero) #featuredProducts .featured-card,
  body:has(#hero) #featuredProducts .featured-card-main,
  body:has(#hero) #featuredProducts .featured-card-compact {
    grid-template-columns:122px minmax(0,1fr) !important;
    min-height:190px !important;
    max-height:none !important;
  }
  body:has(#hero) #featuredProducts .featured-card-media,
  body:has(#hero) #featuredProducts .featured-card-media img { height:190px !important; }
  body:has(#hero) #featuredProducts .featured-card-body { height:190px !important; padding:14px !important; }
  body:has(#hero) #featuredProducts .featured-card-use { -webkit-line-clamp:2 !important; }
}

/* Mobile-first conversion and readability baseline */
.mobile-product-carousel { display: none; }
@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  body { min-width: 0; padding-bottom: calc(82px + env(safe-area-inset-bottom)); overscroll-behavior-y: none; }
  img, video, canvas, svg { max-width: 100%; }
  button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
  input, select, textarea { font-size: 16px !important; }
  .announcement-thuma { padding-right: 42px; text-align: left; }
  .nav-thuma, .nav-thuma.scrolled { height: 64px; padding-right: 14px; padding-left: 14px; }
  .nav-thuma .nav-logo { max-width: calc(100vw - 86px); }
  .nav-direct-contact { display: none; }
  .nav-thuma .nav-links { top: 72px; padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .nav-thuma .nav-links a, .currency-switcher select, .lang-switcher select { min-height: 48px; }
  .world-hero { min-height: 0; background: #171814; }
  .world-stage, .world-hero-shell { display: none !important; }
  .mobile-product-carousel { position: relative; display: block; height: min(680px, calc(100svh - 64px)); min-height: 540px; overflow: hidden; background: #171814; }
  .mobile-product-poster { position: absolute; inset: 0; display: block; opacity: 0; pointer-events: none; transition: opacity .55s ease; }
  .mobile-product-poster.active { opacity: 1; pointer-events: auto; }
  .mobile-product-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); transition: transform 5.4s ease; }
  .mobile-product-poster.active img { transform: scale(1); }
  .mobile-product-poster-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,11,.08) 22%, rgba(12,13,11,.18) 44%, rgba(12,13,11,.9) 100%); }
  .mobile-product-poster-copy { position: absolute; right: 20px; bottom: 54px; left: 20px; display: grid; gap: 9px; color: #fff; }
  .mobile-product-poster-copy small { color: #ead7b6; font-size: 11px; font-weight: 800; letter-spacing: 1.7px; }
  .mobile-product-poster-copy strong { max-width: 11ch; font-family: var(--font-display); font-size: clamp(34px, 10.5vw, 48px); font-weight: 400; line-height: .98; letter-spacing: -.02em; }
  .mobile-product-poster-copy em { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); font-size: 14px; font-style: normal; font-weight: 700; }
  .mobile-product-poster-copy b { font-size: 19px; font-weight: 400; }
  .mobile-product-carousel-dots { position: absolute; right: 20px; bottom: 20px; left: 20px; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .mobile-product-carousel-dots button { height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.35); }
  .mobile-product-carousel-dots button[aria-current="true"] { background: #fff; }
  .world-hero-shell { width: min(100% - 32px, 560px); grid-template-columns: 1fr; gap: 16px; padding: 112px 0 112px; }
  .world-hero-copy { text-align: left; }
  .world-hero-copy h1 { font-size: clamp(38px, 11vw, 52px); line-height: .98; }
  .world-hero-desc { max-width: 34ch; font-size: 15px; line-height: 1.65; }
  .world-hero-hud { display: none; }
  .world-hero-actions, .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%; }
  .world-hero-actions a, .hero-actions a, .btn-primary, .btn-secondary { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
  .world-hero-zones { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .world-hero-zones::-webkit-scrollbar { display: none; }
  .world-zone { flex: 0 0 auto; min-height: 42px; }
  .promise-thuma, .trust-thuma { grid-template-columns: 1fr; gap: 10px; padding-right: 20px; padding-left: 20px; }
  .section-header, .section-head { margin-bottom: 28px; }
  .section-header h2, .section-head h2 { font-size: clamp(30px, 9vw, 42px); line-height: 1.04; }
  .section-header p, .section-head .sub, .lede { font-size: 15px; line-height: 1.65; }
  .featured-thuma, .factory-proof-thuma, .materials-ux, .room-showcase, .drive-gallery, .testimonials-thuma, .footer-brand { padding-right: 20px; padding-left: 20px; }
  .featured-card, .room-showcase-card, .drive-gallery-card { border-radius: 20px; }
  .featured-card-actions { gap: 10px; }
  .featured-card-actions .btn-secondary.small { min-height: 42px !important; }
  .topclass-whatsapp-float { right: 16px; bottom: calc(82px + env(safe-area-inset-bottom)); }
  .footer-brand { padding-bottom: 110px; }
}
