:root {
  --burgundy: #81131e;
  --burgundy-dark: #640d16;
  --gold: #d8a31e;
  --ink: #25262a;
  --muted: #63666d;
  --line: #e2e3e5;
  --cool: #f5f6f7;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 24px 70px rgb(33 24 24 / 12%);
  --shell: min(1400px, calc(100% - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(88px, 9vw, 150px); }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 100;
  padding: 12px 18px; border-radius: 8px; background: var(--burgundy); color: white;
}
.skip-link:focus { top: 16px; }

.site-header {
  height: 92px; position: relative; z-index: 30; background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid rgb(0 0 0 / 7%);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; color: var(--burgundy); }
.brand-logo { display: block; width: 170px; height: 85px; object-fit: cover; object-position: center; }
.site-nav { display: flex; align-items: center; gap: 52px; height: 100%; }
.site-nav a {
  position: relative; display: flex; align-items: center; height: 100%;
  color: #35363a; font-size: 15px; font-weight: 600;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 25px; height: 2px;
  background: var(--burgundy); transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.site-nav a.active { color: var(--burgundy); }
.menu-toggle { display: none; background: none; border: 0; width: 48px; height: 48px; padding: 12px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--burgundy); transition: transform .25s ease; }

.hero { min-height: clamp(620px, calc(100vh - 300px), 800px); display: grid; grid-template-columns: 46% 54%; background: var(--white); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 7vw, 124px) clamp(42px, 6vw, 112px); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(54px, 5.2vw, 94px); line-height: .98; letter-spacing: -.065em; font-weight: 800; }
.hero h1 span { display: block; margin-top: .14em; color: var(--burgundy); }
.gold-line { width: 112px; height: 3px; margin: clamp(32px, 4vw, 58px) 0 30px; background: var(--gold); }
.hero-copy > p { max-width: 630px; margin: 0; font-size: clamp(18px, 1.45vw, 25px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 40px; }
.button {
  display: inline-flex; min-height: 58px; align-items: center; justify-content: center;
  padding: 0 28px; border: 1px solid transparent; border-radius: 7px;
  font-size: 15px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--burgundy); color: var(--white); box-shadow: 0 12px 26px rgb(129 19 30 / 20%); }
.button-primary:hover { background: var(--burgundy-dark); box-shadow: 0 16px 34px rgb(129 19 30 / 28%); }
.button-outline { border-color: var(--gold); color: var(--ink); }
.button-outline:hover { background: #fff9e9; }
.hero-media { margin: 0; min-height: inherit; overflow: hidden; }
.hero-media img { height: 100%; object-fit: cover; object-position: 54% center; }

.section-index { margin: 0 0 26px; color: var(--burgundy); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.section-index.light { color: #ffd266; }
.legacy { display: grid; grid-template-columns: minmax(380px, .9fr) 1.1fr; align-items: center; gap: clamp(60px, 8vw, 140px); padding-top: 54px; }
.legacy-visual { position: relative; min-height: 460px; overflow: hidden; border-radius: var(--radius); background: var(--cool); }
.legacy-visual img { height: 100%; min-height: 460px; object-fit: cover; filter: contrast(.85) brightness(1.04); }
.legacy-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 35%, rgb(129 19 30 / 12%)); }
.legacy h2, .products-heading h2, .samples h2, .factory h2, .manufacturing h2, .flooring h2, .contact h2 {
  margin: 0; font-size: clamp(42px, 4.6vw, 76px); line-height: 1.05; letter-spacing: -.055em;
}
.legacy h2 em { color: var(--burgundy); font-style: normal; }
.legacy-copy > p:last-child, .samples-copy > p:last-child, .factory-copy > p:not(.section-index) {
  max-width: 690px; margin: 32px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75;
}

.products { padding-bottom: 0; background: var(--cool); }
.products-heading { display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; gap: clamp(54px, 6vw, 100px); margin-bottom: 64px; }
.products-heading h2 { color: var(--burgundy); }
.products-heading > div { align-self: center; }
.products-heading > div > p:last-child { max-width: 520px; margin: 32px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.products-heading figure { min-height: 410px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.products-heading figure img { height: 100%; object-fit: cover; }
.product-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); background: white; }
.product-item { min-width: 0; border-right: 1px solid var(--line); }
.product-item:last-child { border-right: 0; }
.product-label { min-height: 112px; padding: 27px 24px 22px; }
.product-label span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.product-label h3 { margin: 9px 0 0; font-size: clamp(17px, 1.35vw, 22px); letter-spacing: -.03em; }
.product-item img { height: clamp(235px, 22vw, 365px); object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-item { overflow: hidden; }
.product-item:hover img { transform: scale(1.035); }

.manufacturing { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--burgundy); color: white; }
.manufacturing-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(76px, 8vw, 140px); background: radial-gradient(circle at 20% 20%, #a41c28, var(--burgundy) 57%, var(--burgundy-dark)); }
.manufacturing h2 { max-width: 680px; }
.manufacturing ul { display: grid; gap: 25px; margin: 50px 0 0; padding: 0; list-style: none; }
.manufacturing li { position: relative; padding-left: 24px; font-size: 18px; }
.manufacturing li::before { content: ""; position: absolute; left: 0; top: .28em; width: 3px; height: 1em; background: var(--gold); }
.manufacturing figure { margin: 0; min-width: 0; overflow: hidden; }
.manufacturing figure img { height: 100%; object-fit: cover; }

.flooring { display: grid; grid-template-columns: 43% 57%; min-height: 720px; background: var(--white); }
.flooring-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 4.5vw, 78px); }
.flooring h2 { max-width: 700px; color: var(--burgundy); font-size: clamp(42px, 3.9vw, 64px); }
.flooring h2::after { content: ""; display: block; width: 50px; height: 3px; margin-top: 30px; background: var(--gold); }
.flooring-copy > p:not(.section-index) { max-width: 620px; margin: 32px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.flooring ul { display: grid; gap: 22px; margin: 46px 0 0; padding: 0; list-style: none; }
.flooring li { position: relative; padding-left: 30px; font-size: 17px; font-weight: 600; }
.flooring li::before { content: ""; position: absolute; left: 0; top: .15em; width: 3px; height: 1.15em; background: var(--gold); }
.flooring-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.flooring-photo img { height: 100%; object-fit: cover; object-position: center; }

.samples { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(60px, 8vw, 140px); }
.samples h2 { color: var(--burgundy); }
.sample-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 280px); gap: 18px; }
.sample { position: relative; margin: 0; overflow: hidden; border-radius: 14px; background: var(--cool); }
.sample-large { grid-row: span 2; }
.sample img { height: 100%; object-fit: cover; }
.sample figcaption { position: absolute; left: 16px; bottom: 16px; padding: 9px 13px; border-radius: 6px; background: rgb(255 255 255 / 90%); color: var(--burgundy); font-size: 12px; font-weight: 800; backdrop-filter: blur(8px); }

.factory { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(60px, 7vw, 120px); border-top: 1px solid var(--line); }
.factory h2 { color: var(--burgundy); }
.factory-meta { color: var(--ink) !important; font-size: 13px !important; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.factory-photo { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.factory-photo img { aspect-ratio: 16 / 9; object-fit: cover; }
.factory-photo figcaption { position: absolute; right: 18px; bottom: 18px; padding: 11px 15px; border-radius: 6px; background: rgb(255 255 255 / 90%); font-size: 12px; font-weight: 700; backdrop-filter: blur(8px); }

.contact { padding-block: clamp(82px, 8vw, 130px); color: white; background: linear-gradient(120deg, var(--burgundy-dark), var(--burgundy) 55%, #a91e2b); border-bottom: 3px solid var(--gold); }
.contact-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 8vw, 130px); align-items: center; }
.contact-intro { padding-right: 50px; border-right: 1px solid rgb(255 210 102 / 70%); }
.contact-intro p:last-child { margin: 28px 0 0; color: rgb(255 255 255 / 78%); font-size: 18px; line-height: 1.7; }
.contact-details { display: grid; gap: 38px; font-style: normal; }
.contact-row { display: flex; align-items: center; gap: 24px; width: fit-content; }
.contact-row svg { flex: 0 0 58px; width: 58px; height: 58px; padding: 15px; border: 1px solid var(--gold); border-radius: 50%; fill: var(--gold); }
.contact-row span { display: flex; flex-direction: column; gap: 7px; }
.contact-row small { color: #ffd875; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-row strong { font-size: clamp(18px, 2vw, 29px); line-height: 1.35; }
.contact-row:hover strong { color: #ffe09a; }

.site-footer { padding-block: 35px; background: white; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand .brand-logo { width: 140px; height: 70px; }
.site-footer p { margin: 0; color: #45474c; font-size: 13px; }
.site-footer .image-note { color: #84868b; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 56px, 1200px); }
  .hero { grid-template-columns: 48% 52%; }
  .hero-copy { padding-inline: 52px; }
  .hero h1 { font-size: clamp(54px, 6vw, 76px); }
  .product-rail { grid-template-columns: repeat(3, 1fr); }
  .product-item:nth-child(3) { border-right: 0; }
  .product-item { border-bottom: 1px solid var(--line); }
  .manufacturing-copy { padding: 72px; }
  .flooring-copy { padding: 72px; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 40px); }
  .site-header { height: 76px; }
  .brand-logo { width: 142px; height: 71px; }
  .menu-toggle { display: block; position: relative; z-index: 32; cursor: pointer; }
  .site-nav {
    position: fixed; inset: 0; z-index: 31; display: flex; flex-direction: column; justify-content: center; gap: 0;
    height: auto; padding: 100px 36px; background: white; transform: translateX(100%); transition: transform .32s ease;
  }
  .site-nav.open { transform: none; }
  .site-nav a { flex: 0 0 auto; width: min(100%, 420px); height: auto; padding: 20px 0; font-size: 26px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 640px; padding: 82px 28px 68px; }
  .hero h1 { font-size: clamp(52px, 13vw, 78px); }
  .hero-media { min-height: 68vh; }
  .legacy, .samples, .factory, .products-heading, .contact-inner { grid-template-columns: 1fr; }
  .legacy, .samples, .factory { gap: 54px; }
  .legacy-visual { order: 2; }
  .products-heading { align-items: start; gap: 46px; }
  .products-heading figure { min-height: 380px; }
  .manufacturing { grid-template-columns: 1fr; min-height: auto; }
  .manufacturing-copy { min-height: 570px; padding: 72px 28px; }
  .manufacturing figure { height: 62vh; }
  .flooring { grid-template-columns: 1fr; min-height: auto; }
  .flooring-copy { min-height: 570px; padding: 72px 28px; }
  .flooring-photo { height: 62vh; }
  .sample-grid { grid-template-rows: repeat(2, 220px); }
  .contact-intro { padding: 0 0 50px; border-right: 0; border-bottom: 1px solid rgb(255 210 102 / 70%); }
  .contact-inner { gap: 50px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 30px); }
  .section { padding-block: 78px; }
  .hero-copy { min-height: calc(100svh - 76px); padding-inline: 20px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-media { min-height: 58vh; }
  .legacy-visual, .legacy-visual img { min-height: 370px; }
  .legacy h2, .products-heading h2, .samples h2, .factory h2, .manufacturing h2, .flooring h2, .contact h2 { font-size: clamp(38px, 12vw, 56px); }
  .product-rail {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }
  .products-heading figure { min-height: 300px; }
  .product-item { flex: 0 0 82vw; border-right: 1px solid var(--line); border-bottom: 0; scroll-snap-align: start; }
  .product-item img { height: 350px; }
  .manufacturing figure { height: 430px; }
  .flooring-photo { height: 430px; }
  .sample-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 180px; }
  .sample-large { grid-column: span 2; grid-row: auto; }
  .factory-photo img { aspect-ratio: 4 / 3; }
  .contact-row { align-items: flex-start; gap: 16px; }
  .contact-row svg { flex-basis: 48px; width: 48px; height: 48px; padding: 12px; }
  .contact-row strong { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
