/* doorwin-en-luxury — Editorial Luxury (layout distinct from industrial) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --gold: #B8956B;
  --gold-light: #D4B896;
  --gold-dark: #8B7048;
  --wine: #3D2020;
  --wine-deep: #2A1414;
  --charcoal: #1C1A18;
  --ivory: #F7F3EE;
  --ivory-deep: #EDE6DC;
  --cream: #FFFCF8;
  --text: #3A3530;
  --muted: #8C847A;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --lux-max: 1180px;
  --lux-gutter: 32px;
  --pb-active: #B8956B;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.lux-theme {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

.lux-wrap {
  max-width: var(--lux-max);
  margin: 0 auto;
  padding: 0 var(--lux-gutter);
}

/* ── Top bar: extra info only (logo stays in main row below) ── */
.lux-topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(184,149,107,.2);
  font-size: 13px;
}

.lux-topbar-inner {
  max-width: var(--lux-max);
  margin: 0 auto;
  padding: 8px var(--lux-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lux-topbar-tagline {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lux-topbar-contact a {
  color: rgba(255,252,248,.65);
  font-size: 12px;
  white-space: nowrap;
}

.lux-topbar-contact a:hover { color: var(--gold-light); }
.lux-topbar-contact i { color: var(--gold); margin-right: 6px; font-size: 11px; }

/* ── Header: horizontal — square logo left, nav right ── */
.lux-header {
  background: var(--cream);
  border-bottom: 1px solid var(--ivory-deep);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lux-header-inner {
  max-width: var(--lux-max);
  margin: 0 auto;
  padding: 12px var(--lux-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.lux-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lux-logo-square {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(184,149,107,.45);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.lux-logo-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lux-logo-name {
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--charcoal);
  line-height: 1.2;
  max-width: 200px;
}

.lux-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
  gap: 0;
  margin: 0;
}

.lux-nav a {
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text);
  font-style: italic;
  white-space: nowrap;
}

.lux-nav a:hover { color: var(--gold-dark); }

.lux-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 6px 12px;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Hero: centered cinematic (≠ industrial left caption) ── */
.lux-hero {
  position: relative;
  height: clamp(480px, 88vh, 820px);
  background: var(--charcoal);
  overflow: hidden;
}

.lux-hero .swiper-container,
.lux-hero .swiper-wrapper,
.lux-hero .swiper-slide { height: 100%; }

.lux-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82);
}

.lux-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(28,26,24,.15) 0%, rgba(28,26,24,.65) 100%);
}

.lux-hero-center {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--lux-gutter);
  pointer-events: none;
}

.lux-hero-center .eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.lux-hero-center h1 {
  font-size: clamp(36px, 6vw, 68px);
  color: #fff;
  font-weight: 400;
  max-width: 800px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lux-hero-center p {
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: rgba(255,252,248,.82);
  max-width: 560px;
  margin-bottom: 32px;
}

.lux-hero-center .lux-btn { pointer-events: auto; }

.lux-hero .swiper-pagination {
  bottom: 36px !important;
}

.lux-hero .swiper-pagination-bullet {
  background: rgba(255,255,255,.45);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.lux-hero .swiper-pagination-bullet-active { background: var(--gold-light); }

.lux-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255,252,248,.5);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: luxBounce 2s infinite;
}

.lux-scroll-hint i { display: block; margin-top: 6px; font-size: 14px; }

@keyframes luxBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.lux-btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  transition: background .35s, color .35s, border-color .35s;
}

.lux-btn:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

.lux-btn-solid {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

.lux-btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.lux-btn-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.lux-btn-dark:hover {
  background: var(--charcoal);
  color: var(--gold-light);
}

/* ── Section titles: centered editorial (≠ industrial left head) ── */
.lux-title-block {
  text-align: center;
  margin-bottom: 52px;
}

.lux-title-block .eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.lux-title-block h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
}

.lux-title-block .rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

.lux-section { padding: clamp(72px, 9vw, 110px) 0; }

/* ── Products: asymmetric showcase (≠ industrial equal grid) ── */
.lux-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 520px;
}

.lux-showcase-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  display: block;
  color: inherit;
}

.lux-showcase-item:first-child {
  grid-row: 1 / span 2;
}

.lux-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform .7s;
}

.lux-showcase-item:hover img { transform: scale(1.05); }

.lux-showcase-item .info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(transparent 40%, rgba(28,26,24,.85));
  color: #fff;
}

.lux-showcase-item:first-child .info { padding: 40px; }

.lux-showcase-item h3 {
  font-size: clamp(18px, 2vw, 26px);
  color: #fff;
  margin-bottom: 8px;
}

.lux-showcase-item p {
  font-size: 15px;
  color: rgba(255,252,248,.75);
  margin-bottom: 14px;
  line-height: 1.5;
}

.lux-showcase-item:first-child p { font-size: 17px; }

.lux-showcase-item .link {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.lux-showcase-item .link:hover { color: #fff; }

.lux-showcase-foot {
  text-align: center;
  margin-top: 36px;
}

/* ── News: featured + list (≠ industrial dark card grid) ── */
.lux-news-editorial {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}

.lux-news-featured {
  position: relative;
}

.lux-news-featured .thumb {
  overflow: hidden;
  aspect-ratio: 16/11;
  margin-bottom: 28px;
}

.lux-news-featured .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.lux-news-featured:hover .thumb img { transform: scale(1.03); }

.lux-news-featured .date {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.lux-news-featured h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
  line-height: 1.25;
}

.lux-news-featured h3 a:hover { color: var(--gold-dark); }

.lux-news-featured p {
  color: var(--muted);
  margin-bottom: 20px;
}

.lux-news-side { border-left: 1px solid var(--ivory-deep); padding-left: 40px; counter-reset: luxnews-side 1; }

.lux-news-side-head {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-news-row {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-news-row:last-child { border-bottom: none; }

.lux-news-row .num {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--ivory-deep);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.lux-news-row .num::before {
  counter-increment: luxnews-side;
  content: counter(luxnews-side, decimal-leading-zero);
}

.lux-news-row .date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.lux-news-row h4 {
  font-size: 18px;
  line-height: 1.35;
}

.lux-news-row h4 a:hover { color: var(--gold-dark); }

.lux-news-row .thumb-sm {
  width: 88px;
  height: 68px;
  flex-shrink: 0;
  overflow: hidden;
}

.lux-news-row .thumb-sm img { width: 100%; height: 100%; object-fit: cover; }

/* ── About quote band (≠ industrial split + stats) ── */
.lux-quote-band {
  background: var(--wine);
  color: var(--cream);
  padding: clamp(80px, 10vw, 120px) var(--lux-gutter);
  position: relative;
  overflow: hidden;
}

.lux-quote-band::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 280px;
  color: rgba(255,252,248,.04);
  line-height: 1;
  pointer-events: none;
}

.lux-quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.lux-quote-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 2px solid var(--gold);
  padding: 3px;
}

.lux-quote-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lux-quote-inner .eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.lux-quote-inner blockquote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,252,248,.92);
  margin-bottom: 28px;
  font-weight: 400;
}

.lux-quote-inner .author {
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 32px;
}

/* ── Advantages: horizontal steps (≠ industrial icon grid) ── */
.lux-steps {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--ivory-deep);
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-step {
  flex: 1;
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--ivory-deep);
  transition: background .3s;
}

.lux-step:last-child { border-right: none; }
.lux-step:hover { background: var(--cream); }

.lux-step .num {
  font-family: var(--font-head);
  font-size: 42px;
  color: var(--ivory-deep);
  line-height: 1;
  margin-bottom: 16px;
}

.lux-step h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.lux-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.lux-step .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  opacity: .7;
}

.lux-step .icon img { width: 100%; height: 100%; object-fit: contain; }

/* ── Footer: horizontal two-column ── */
.lux-footer {
  background: var(--charcoal);
  color: rgba(255,252,248,.65);
  padding: 40px var(--lux-gutter) 0;
}

.lux-footer-main {
  max-width: var(--lux-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 32px;
}

.lux-footer-brand { text-align: left; }

.lux-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.lux-footer-logo .lux-logo-square {
  border-color: rgba(184,149,107,.5);
  background: rgba(255,252,248,.04);
}

.lux-footer-name {
  font-family: var(--font-head);
  font-size: 18px;
  color: #fff;
  line-height: 1.25;
}

.lux-footer-tagline {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lux-footer-info {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.lux-footer-info p { margin-bottom: 6px; }
.lux-footer-info i { color: var(--gold); width: 18px; margin-right: 4px; }

.lux-footer-qr img {
  max-width: 88px;
  border: 1px solid rgba(184,149,107,.4);
  padding: 4px;
}

.lux-footer-aside { text-align: left; }

.lux-footer-aside h4 {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 400;
}

.lux-footer-aside h4 + .lux-footer-nav { margin-bottom: 24px; }

.lux-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lux-footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184,149,107,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  overflow: hidden;
  transition: background .3s, border-color .3s;
}

.lux-footer-social a:hover {
  background: rgba(184,149,107,.15);
  border-color: var(--gold);
}

.lux-footer-social img { width: 100%; height: 100%; object-fit: cover; }

.lux-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.lux-footer-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,252,248,.55);
  font-style: italic;
}

.lux-footer-nav a:hover { color: var(--gold-light); }

.lux-footer-bottom {
  max-width: var(--lux-max);
  margin: 0 auto;
  padding: 14px 0;
  font-size: 12px;
  color: rgba(255,252,248,.35);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,252,248,.08);
  text-align: center;
}

/* ── Float: right side vertical bar ── */
.lux-float {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lux-float-item {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--ivory-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 15px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28,26,24,.1);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.lux-float-item:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
  transform: translateX(-2px);
}

.lux-float-item img { width: 22px; height: 22px; object-fit: contain; }

.lux-float-item.back-top {
  background: var(--wine);
  color: var(--gold-light);
  border-color: var(--wine);
}

.lux-float-item.back-top:hover {
  background: var(--gold);
  color: var(--cream);
}

/* ── Inner page hero ── */
.lux-page-head {
  background: var(--cream);
  padding: 48px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-page-head h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 12px;
}

.lux-page-head .subtitle {
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
  margin: 12px auto 0;
}

.lux-breadcrumb {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}

.lux-breadcrumb a { color: var(--gold-dark); }
.lux-breadcrumb a:hover { color: var(--gold); }

/* ── About page: magazine column ── */
.lux-story-hero {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}

.lux-story-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.lux-story-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px var(--lux-gutter) 80px;
}

.lux-story-body .dropcap::first-letter {
  font-family: var(--font-head);
  font-size: 72px;
  float: left;
  line-height: .85;
  margin: 4px 16px 0 0;
  color: var(--gold-dark);
}

.lux-story-body .content { font-size: 20px; line-height: 1.85; }

/* ── Contact page ── */
.lux-contact-page {
  padding: 48px 0 64px;
  background: var(--ivory);
}

.lux-contact-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border: 1px solid var(--ivory-deep);
  overflow: hidden;
  background: var(--cream);
}

.lux-contact-dark {
  background: var(--wine-deep);
  color: var(--cream);
  padding: 56px 48px;
}

.lux-contact-dark h2 {
  color: var(--gold-light);
  font-size: 32px;
  margin-bottom: 12px;
}

.lux-contact-dark > p {
  font-style: italic;
  color: rgba(255,252,248,.65);
  margin-bottom: 40px;
}

.lux-contact-line {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,252,248,.1);
}

.lux-contact-line:last-of-type { border-bottom: none; }

.lux-contact-line label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.lux-contact-line p { font-size: 17px; }
.lux-contact-line a:hover { color: var(--gold-light); }

.lux-contact-qr {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,252,248,.1);
}

.lux-contact-qr img {
  max-width: 110px;
  border: 1px solid rgba(184,149,107,.4);
  padding: 6px;
  margin-top: 10px;
}

.lux-contact-form {
  background: var(--cream);
  padding: 56px 48px;
}

.lux-contact-form h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.lux-contact-form > p {
  color: var(--muted);
  margin-bottom: 32px;
  font-style: italic;
}

.lux-field { margin-bottom: 22px; }

.lux-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.lux-field input,
.lux-field textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--ivory-deep);
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  transition: border-color .3s;
}

.lux-field input:focus,
.lux-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.lux-field textarea { min-height: 120px; resize: vertical; }

.lux-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lux-captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lux-captcha-row input {
  width: 140px;
  max-width: 100%;
  flex-shrink: 0;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--ivory-deep);
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
}

.lux-captcha-row input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.lux-captcha-row .codeimg {
  width: auto;
  max-width: none;
  height: 42px;
  cursor: pointer;
  border: 1px solid var(--ivory-deep);
  padding: 2px 4px;
  background: #fff;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* ── Product catalog: horizontal tabs + list rows ── */
.lux-cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-cat-bar a {
  padding: 8px 22px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 2px;
  border: 1px solid transparent;
  color: var(--muted);
  font-style: italic;
}

.lux-cat-bar a:hover,
.lux-cat-bar a.active {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.lux-catalog-list { display: flex; flex-direction: column; gap: 0; }

.lux-catalog-row {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--ivory-deep);
  transition: background .3s;
}

.lux-catalog-row:hover { background: rgba(255,252,248,.6); }

.lux-catalog-row img {
  width: 280px;
  height: 200px;
  object-fit: cover;
}

.lux-catalog-row h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.lux-catalog-row p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.lux-catalog-row .lux-btn { white-space: nowrap; }

/* ── Product detail ── */
.lux-pdetail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.lux-pdetail-gallery img {
  width: 100%;
  border: 8px solid var(--cream);
  box-shadow: 0 20px 60px rgba(28,26,24,.08);
}

.lux-pdetail-info h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
}

.lux-pdetail-info .content { font-size: 19px; line-height: 1.8; }

/* ── News list / detail ── */
.lux-news-list-page { max-width: 820px; margin: 0 auto; }

.lux-news-list-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-news-list-item h3 {
  font-size: 26px;
  margin: 8px 0 12px;
}

.lux-news-list-item h3 a:hover { color: var(--gold-dark); }

.lux-article {
  max-width: 720px;
  margin: 0 auto;
}

.lux-article-meta {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-article h1 {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 16px;
}

.lux-article .content { font-size: 20px; line-height: 1.85; }

.lux-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ivory-deep);
  font-size: 15px;
}

/* ── Advantages list ── */
.lux-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.lux-value-card {
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid var(--ivory-deep);
  text-align: center;
  transition: border-color .3s, transform .3s;
}

.lux-value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.lux-value-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.lux-value-card h4 { font-size: 19px; margin-bottom: 10px; }
.lux-value-card p { color: var(--muted); font-size: 16px; }

/* ── Message / Search ── */
.lux-message-wrap { max-width: 680px; margin: 0 auto; }

.lux-message-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-message-reply {
  margin-top: 16px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
}

.lux-search-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto 48px;
  border-bottom: 2px solid var(--gold);
}

.lux-search-form input {
  flex: 1;
  padding: 16px 0;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 20px;
}

.lux-search-form input:focus { outline: none; }

.lux-search-form button {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 20px;
  cursor: pointer;
  padding: 0 12px;
}

.lux-search-result {
  padding: 28px 0;
  border-bottom: 1px solid var(--ivory-deep);
}

.lux-search-result h4 { font-size: 22px; margin-bottom: 8px; }
.lux-search-result h4 a:hover { color: var(--gold-dark); }

.content img { max-width: 100%; height: auto; }
.content p { margin-bottom: 1em; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .lux-showcase { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .lux-showcase-item:first-child { grid-row: auto; }
  .lux-news-editorial { grid-template-columns: 1fr; }
  .lux-news-side { border-left: none; padding-left: 0; border-top: 1px solid var(--ivory-deep); padding-top: 36px; }
  .lux-steps { flex-wrap: wrap; }
  .lux-step { flex: 1 1 50%; border-bottom: 1px solid var(--ivory-deep); }
  .lux-contact-split { grid-template-columns: 1fr; }
  .lux-contact-dark, .lux-contact-form { padding: 36px 28px; }
  .lux-pdetail { grid-template-columns: 1fr; }
  .lux-catalog-row { grid-template-columns: 1fr; gap: 16px; }
  .lux-catalog-row img { width: 100%; }
  .lux-footer-main { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .lux-topbar-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 8px var(--lux-gutter); }
  .lux-topbar-contact { flex-wrap: wrap; gap: 10px; }
  .lux-nav-toggle { display: block; margin-left: auto; }
  .lux-header-inner { flex-wrap: wrap; padding: 10px var(--lux-gutter); }
  .lux-logo-name { display: none; }
  .lux-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    background: var(--cream);
    border-top: 1px solid var(--ivory-deep);
    padding: 8px 0;
  }
  .lux-nav.open { display: flex; }
  .lux-nav a { padding: 12px 0; border-bottom: 1px solid var(--ivory-deep); }
  .lux-nav li:last-child a { border-bottom: none; }
  .lux-hero-center h1 { font-size: 32px; }
  .lux-scroll-hint { display: none; }
  .lux-float { display: none !important; }
  .lux-form-row { grid-template-columns: 1fr; }
  .lux-step { flex: 1 1 100%; }
  .lux-article-nav { grid-template-columns: 1fr; }
}
