:root {
  --bg: #f7f3ea;
  --fg: #2a241c;
  --muted: #766d61;
  --line: #dfd6c8;
  --soft: #eee7dc;
  --card: #fffdf9;
  --accent: #a75b35;
  --dark: #211c16;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(42, 36, 28, .16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { max-width: 760px; }
.narrow-left { max-width: 820px; margin-left: max(16px, calc((100vw - 1180px) / 2)); }
.center { text-align: center; }
.max-text { max-width: 680px; margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(247, 243, 234, .84);
  border-bottom: 1px solid rgba(223, 214, 200, .8);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a,
.mobile-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s ease;
}
.desktop-nav a:hover,
.mobile-nav a:hover { color: var(--fg); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.icon-button:hover { color: var(--fg); }
.header-search {
  width: 48px;
  height: 48px;
}
.header-search svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}
.mobile-toggle { display: none; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: var(--bg);
}
.mobile-nav.is-open { display: grid; gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.button--dark { background: var(--dark); color: var(--bg); }
.button--outline { border-color: var(--line); color: var(--fg); background: transparent; }
.button--light { background: var(--bg); color: var(--fg); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center-row { justify-content: center; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}
h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { font-size: 24px; }
p { margin: 0; }

.section {
  padding: 96px 0;
  background: var(--bg);
}
.section--white { background: var(--card); }
.section--muted,
.stats-band { background: var(--soft); }
.section--dark {
  background: var(--dark);
  color: var(--bg);
}
.section-heading { margin-bottom: 54px; }
.section-heading h2 span { color: var(--muted); }
.section-heading p,
.eyebrow {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 12px;
}
.wide { max-width: 760px; }
.category-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.category-intro h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}
.category-intro p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  text-transform: none;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg), var(--soft), var(--bg));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 84px;
}
.hero-copy p,
.about-hero p,
.contact-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 24px 0 34px;
}
.hero-media {
  position: relative;
  max-width: 510px;
  margin-left: auto;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.floating-badge {
  position: absolute;
  left: -36px;
  bottom: -28px;
  background: var(--card);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.floating-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}
.floating-badge span { color: var(--muted); font-size: 12px; }
.quick-links {
  display: flex;
  gap: 34px;
  margin-top: 60px;
}
.quick-links a {
  display: grid;
  gap: 2px;
}
.quick-links span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}
.quick-links i {
  width: 34px;
  height: 34px;
  margin-top: 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
}

.category-cards,
.collection-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.image-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.image-card:hover img { transform: scale(1.06); }
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.06));
}
.image-card div,
.image-card i {
  position: relative;
  z-index: 1;
}
.image-card span {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}
.image-card i {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--fg);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .2s ease;
  font-style: normal;
}
.image-card:hover i { opacity: 1; }

.quote-section {
  padding: 96px 0;
}
blockquote {
  margin: 28px 0;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.32;
  font-style: italic;
}
.quote-source { font-weight: 700; }
.quote-source span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.immersive {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}
.immersive .container { position: relative; }
.immersive-copy { max-width: 560px; }
.immersive-copy p {
  color: rgba(255,255,255,.82);
  margin: 24px 0 32px;
}

.value-grid,
.values-six,
.product-grid,
.office-grid,
.contact-cards {
  display: grid;
  gap: 26px;
}
.value-grid { grid-template-columns: repeat(2, 1fr); }
.values-six { grid-template-columns: repeat(3, 1fr); }
.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
}
.value-number {
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
  color: rgba(118,109,97,.28);
  margin-bottom: 22px;
}
.value-card p { color: var(--muted); margin-top: 14px; }
.statement { margin: 76px auto 40px; }
.wide-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 34px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.cta-simple p { color: var(--muted); margin: 18px auto 30px; max-width: 620px; }

.page-hero {
  min-height: 52vh;
  margin-top: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero--tall { min-height: 62vh; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
}
.page-hero div {
  position: relative;
  width: min(780px, calc(100% - 32px));
}
.page-hero p {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero span {
  display: block;
  font-size: 18px;
  color: rgba(255,255,255,.88);
  margin-top: 18px;
}

.category-list { display: grid; gap: 72px; }
.category-row,
.collection-detail,
.factory-grid,
.contact-grid,
.catalog-grid,
.specs-grid,
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.category-row--reverse img,
.collection-detail--reverse img { order: 2; }
.category-row img,
.collection-detail img,
.factory-grid > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.category-row p,
.collection-detail p,
.factory-grid p { color: var(--muted); margin: 16px 0 24px; }
.category-row h4 {
  margin: 28px 0 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.link-list,
.plain-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.link-list a { display: inline-flex; align-items: center; gap: 8px; }

.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-grid--three { grid-template-columns: repeat(3, 1fr); }
.product-card {
  display: block;
  background: var(--card);
  border: 1px solid rgba(223,214,200,.6);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card div { padding: 18px; }
.product-card p,
.product-card span { color: var(--muted); font-size: 12px; }
.product-card h3 { font-size: 20px; margin: 4px 0 6px; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.check-grid span,
.feature-list span,
.plain-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check-grid svg,
.feature-list svg,
.plain-checks svg { color: var(--accent); flex: 0 0 auto; margin-top: 4px; }
.stat-row,
.stat-grid {
  display: flex;
  gap: 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin: 24px 0;
}
.stat-row strong,
.stat-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
}
.stat-row span,
.stat-grid span { color: var(--muted); font-size: 12px; }
.catalog-cover { position: relative; }
.catalog-cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: .82;
}
.catalog-cover div {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: var(--card);
  color: var(--fg);
  padding: 36px;
  text-align: center;
  min-width: 250px;
}
.catalog-cover strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
}

.about-hero { padding-top: 140px; }
.stats-band { padding: 52px 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0;
  margin: 0;
  text-align: center;
}
.timeline {
  margin-top: 60px;
  display: grid;
  gap: 22px;
}
.timeline article {
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--card);
}
.timeline strong {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 24px;
}
.factory-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.factory-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}
.factory-images img:nth-child(2) { margin-top: 34px; }
.dark-checks li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
  flex: 0 0 auto;
}

.contact-hero { padding-top: 140px; padding-bottom: 54px; }
.contact-info-section { padding: 0 0 70px; }
.contact-cards {
  grid-template-columns: repeat(4, 1fr);
}
.contact-cards article,
.office-grid article,
.side-card,
.response-card,
.form-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
}
.contact-cards p,
.office-grid p,
.office-grid span,
.side-card span,
.response-card p { color: var(--muted); font-size: 14px; }
.form-panel h2 { margin-bottom: 10px; }
.form-panel > p { color: var(--muted); margin-bottom: 24px; }
.lumina-form { display: grid; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lumina-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}
.lumina-form input,
.lumina-form select,
.lumina-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--fg);
  padding: 13px 14px;
  font: inherit;
}
.lumina-form textarea { resize: vertical; }
.notice-success {
  padding: 14px;
  margin: 18px 0;
  border-radius: 8px;
  background: #e7f4e5;
  color: #245a2c;
}
.contact-side { display: grid; gap: 24px; }
.side-card a {
  display: grid;
  gap: 2px;
  padding: 16px;
  margin-top: 12px;
  background: var(--soft);
  border-radius: 8px;
}
.showroom-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.showroom-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.showroom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.62), transparent);
}
.showroom-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  z-index: 1;
}
.showroom-card span { display: block; font-size: 12px; text-transform: uppercase; }
.office-grid { grid-template-columns: repeat(4, 1fr); }

.breadcrumb-wrap {
  margin-top: 76px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.breadcrumbs {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs strong { color: var(--fg); }
.product-detail-top { padding-top: 56px; }
.product-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.product-gallery__thumbs button {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}
.product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.product-info > p { color: var(--muted); margin: 18px 0 28px; }
.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}
.feature-list h3 {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin-bottom: 26px;
}
.quick-specs div {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
}
.quick-specs svg { font-size: 24px; color: var(--muted); }
.quick-specs span { color: var(--muted); font-size: 12px; }
.spec-table {
  background: var(--card);
  border: 1px solid var(--line);
  margin: 26px 0 34px;
}
.spec-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}
.spec-table div:last-child { border-bottom: 0; }
.spec-table span { color: var(--muted); }
.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.section-head-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.site-footer {
  background: var(--soft);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.35fr;
  gap: 46px;
}
.footer-brand p,
.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--muted);
  font-size: 14px;
}
.site-footer h3 {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form button {
  width: 46px;
  border-radius: 8px;
  border: 0;
  background: var(--dark);
  color: var(--bg);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.footer-wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(70px, 12vw, 150px);
  line-height: 1;
  color: rgba(118,109,97,.14);
  text-align: center;
  margin-top: 42px;
}

.page-shell {
  padding: 140px 0 90px;
}

@media (max-width: 980px) {
  .desktop-nav, .header-quote, .header-actions .header-search { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero-grid,
  .category-row,
  .collection-detail,
  .factory-grid,
  .contact-grid,
  .catalog-grid,
  .specs-grid,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero-copy { text-align: center; }
  .hero-copy .button-row,
  .quick-links { justify-content: center; }
  .hero-media { margin: 0 auto; }
  .category-cards,
  .collection-overview,
  .values-six,
  .product-grid,
  .product-grid--three,
  .contact-cards,
  .office-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .category-row--reverse img,
  .collection-detail--reverse img { order: 0; }
}

@media (max-width: 640px) {
  .site-header__inner { height: 66px; }
  .brand { font-size: 22px; }
  .section { padding: 68px 0; }
  .hero { padding-top: 104px; }
  .hero-grid { gap: 34px; }
  .hero-copy p, .about-hero p, .contact-hero p { font-size: 16px; }
  .button-row, .quick-links, .footer-bottom { flex-direction: column; align-items: stretch; }
  .quick-links { gap: 18px; }
  .floating-badge { left: 14px; bottom: 14px; padding: 14px 16px; }
  .floating-badge strong { font-size: 30px; }
  .category-cards,
  .collection-overview,
  .value-grid,
  .values-six,
  .product-grid,
  .product-grid--three,
  .contact-cards,
  .office-grid,
  .footer-grid,
  .stat-grid,
  .form-row,
  .quick-specs {
    grid-template-columns: 1fr;
  }
  .image-card { min-height: 340px; }
  .wide-image { aspect-ratio: 4 / 3; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { margin-top: 66px; }
  .about-hero, .contact-hero { padding-top: 110px; }
  .breadcrumb-wrap { margin-top: 66px; }
  .spec-table div { display: grid; gap: 4px; }
}
