:root {
  --ink: #1f1d1b;
  --muted: #6d6760;
  --line: #e4ded7;
  --stone: #f6f3ef;
  --brand: #6b3236;
  --brand-dark: #442125;
  --gold: #b8915f;
}
body { color: var(--ink); font-family: Arial, Helvetica, sans-serif; background: #fff; }
.site-nav { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.navbar-brand img { width: 148px; height: auto; }
.nav-link { font-weight: 600; color: var(--ink); }
.nav-link.active, .nav-link:hover { color: var(--brand); }
.site-nav .btn { white-space: nowrap; }
.hero { min-height: 720px; background-size: cover; background-position: center; display: flex; align-items: center; color: #fff; padding-top: 96px; }
.hero-inner { max-width: 860px; margin-left: max(12px, calc((100vw - 1140px) / 2)); }
.hero h1 { font-size: clamp(3rem, 8vw, 6.2rem); line-height: .94; font-weight: 800; margin-bottom: 1.25rem; }
.hero .lead { max-width: 680px; font-size: 1.25rem; margin-bottom: 2rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; color: var(--gold); margin-bottom: .75rem; }
.btn-primary { --bs-btn-bg: var(--brand); --bs-btn-border-color: var(--brand); --bs-btn-hover-bg: var(--brand-dark); --bs-btn-hover-border-color: var(--brand-dark); }
.section { padding: 88px 0; }
.section-muted { background: var(--stone); }
.section-heading { max-width: 720px; margin-bottom: 36px; }
.section-heading span { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.section-heading h2, .page-hero h1 { font-weight: 800; letter-spacing: 0; }
.section-heading p { color: var(--muted); font-size: 1.1rem; }
.page-hero { padding: 150px 0 70px; background: linear-gradient(135deg, var(--stone), #fff); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.1rem; }
.image-card, .product-card, .info-box, .contact-card { border: 1px solid var(--line); background: #fff; border-radius: 8px; overflow: hidden; height: 100%; }
.image-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.image-card div, .product-card div, .info-box, .contact-card { padding: 22px; }
.image-card h3, .product-card h3, .info-box h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 .5rem; }
.image-card p, .info-box p { margin: 0; color: var(--muted); }
.feature-img { width: 100%; border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stats div { border-top: 3px solid var(--brand); padding-top: 14px; }
.stats strong { display: block; font-size: 2rem; }
.stats span { color: var(--muted); font-size: .92rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.product-item[hidden] { display: none !important; }
.product-card img, .product-card .no-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--stone); display: block; }
.product-card span { color: var(--brand); font-size: .78rem; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.product-card h3 { margin-top: 4px; font-size: 1rem; }
.gallery-tile { border: 0; padding: 0; width: 100%; background: transparent; border-radius: 8px; overflow: hidden; }
.gallery-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .2s ease; }
.gallery-tile:hover img { transform: scale(1.04); }
.contact-card dl { display: grid; grid-template-columns: 90px 1fr; gap: 8px 16px; margin: 24px 0; }
.contact-card dt { color: var(--muted); }
.contact-card dd { margin: 0; font-weight: 700; }
.site-footer { padding: 34px 0; background: var(--ink); color: #fff; }
.site-footer a { color: #fff; text-decoration: none; font-weight: 700; }
.footer-actions { display: flex; gap: 24px; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.86); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: 8px; }
@media (max-width: 767px) {
  .hero { min-height: 640px; }
  .section { padding: 62px 0; }
  .stats { grid-template-columns: 1fr; }
  .footer-actions { flex-direction: column; gap: 8px; }
  .contact-card dl { grid-template-columns: 1fr; }
}