*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #060b14; }
body { background: #060b14; color: #f5f0e8; font-family: 'DM Sans', system-ui, sans-serif; }
::selection { background: #b8922a40; color: #f5f0e8; }

section { padding: clamp(60px, 8vw, 100px) 0; background: #060b14; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); width: 100%; border-left: 1px solid #152033; border-right: 1px solid #152033; }

.label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #b8922a; display: flex; align-items: center; }
.divider { width: 36px; height: 1px; background: #b8922a; display: inline-block; flex-shrink: 0; margin-right: 10px; }
.section-heading { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 3.5vw, 52px); font-weight: 400; line-height: 1.15; color: #f5f0e8; }
.section-heading em { font-style: italic; color: #d4a842; }
.body-text { color: #c4b89e; line-height: 1.85; font-size: 15px; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: #060b14; border-bottom: 1px solid #152033; }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); height: 68px; display: flex; align-items: center; gap: 16px; border-left: 1px solid #152033; border-right: 1px solid #152033; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-brand img { height: 38px; width: auto; object-fit: contain; }
.nav-brand-name { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; letter-spacing: .08em; color: #c4b89e; white-space: nowrap; }
.nav-links { display: flex; gap: clamp(16px, 2.5vw, 32px); list-style: none; margin-left: auto; }
.nav-links a { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: #c4b89e; text-decoration: none; font-weight: 300; }
.nav-links a:hover, .nav-links a.active { color: #f5f0e8; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; width: 36px; height: 36px; flex-shrink: 0; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #f5f0e8; border-radius: 2px; transition: transform .3s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* LANG BAR */
.lang-bar { display: flex; justify-content: flex-end; padding: 10px clamp(20px, 4vw, 60px); border-bottom: 1px solid #152033; background: #060b14; }
.lang-btn { background: none; border: none; cursor: pointer; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .15em; display: flex; align-items: center; padding: 0; }
.lang-sep { color: #152033; margin: 0 8px; }
.lang-active { color: #f5f0e8; }
.lang-btn span:not(.lang-sep):not(.lang-active) { color: #9a9080; }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: #060b14; flex-direction: column; }
.mobile-menu.open { display: flex; }
.menu-bg-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); height: 70vw; max-height: 400px; width: auto; object-fit: contain; opacity: .19; pointer-events: none; }
.menu-header { display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px, 5vw, 40px); height: 68px; border-bottom: 1px solid #152033; flex-shrink: 0; }
.menu-close { background: none; border: none; cursor: pointer; color: #f5f0e8; font-size: 28px; line-height: 1; padding: 4px; }
.menu-links { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(20px, 5vw, 40px); position: relative; z-index: 1; }
.menu-links a { display: block; padding: 20px 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(22px, 5vw, 32px); color: #f5f0e8; text-decoration: none; border-bottom: 1px solid #152033; letter-spacing: .05em; }
.menu-cta { display: block; padding: 20px 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(22px, 5vw, 32px); color: #b8922a !important; text-decoration: none; letter-spacing: .05em; }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 11px 28px; background: #b8922a; color: #060b14; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 500; cursor: pointer; border: none; font-family: 'DM Sans', system-ui, sans-serif; }
.btn-ghost { display: inline-block; padding: 10px 28px; border: 1px solid #c4b89e50; color: #c4b89e; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 300; cursor: pointer; background: none; font-family: 'DM Sans', system-ui, sans-serif; }

/* HERO */
#hero { padding: 0; min-height: calc(100vh - 41px); display: flex; align-items: center; position: relative; background: #060b14; }
.hero-container { padding-top: 40px; padding-bottom: 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: flex-start; gap: clamp(24px, 4vw, 60px); }
.hero-logo { display: flex; justify-content: center; align-items: flex-start; }
.hero-logo img { width: clamp(200px, 28vw, 460px); height: auto; object-fit: contain; opacity: .85; }
.hero-text h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(36px, 5.5vw, 90px); font-weight: 400; line-height: 1; letter-spacing: -.01em; color: #c4b89e; margin-bottom: 24px; }
.hero-sub { font-size: clamp(14px, 1.5vw, 17px); color: #c4b89e; line-height: 1.8; font-weight: 300; margin-bottom: 40px; max-width: 420px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; margin-left: -24px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-scroll span { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: #b8922a; opacity: .35; }
.hero-line { width: 1px; height: 36px; background: #b8922a; opacity: .35; }

/* STATS */
.stat-strip { border-top: 1px solid #152033; border-bottom: 1px solid #152033; background: #0d1525; }
.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); max-width: 1400px; margin: 0 auto; border-left: 1px solid #152033; border-right: 1px solid #152033; padding: 0 clamp(20px, 4vw, 60px); }
.stat-item { padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px); border-right: 1px solid #152033; text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(32px, 4vw, 52px); color: #b8922a; line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #9a9080; margin-top: 6px; font-family: 'DM Mono', monospace; }

/* ABOUT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { color: #b8922a; font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.value-title { font-size: 13px; font-weight: 500; color: #f5f0e8; margin-bottom: 2px; }
.value-desc { font-size: 12px; color: #9a9080; }
.about-visual { position: relative; }
.about-card { background: #0d1525; border: 1px solid #152033; padding: clamp(28px, 5vw, 52px); aspect-ratio: 4/5; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; contain: layout style paint; }
.about-lines { position: absolute; inset: 0; pointer-events: none; }
.about-lines div { position: absolute; left: 0; right: 0; height: 1px; background: #15203360; }
.about-lines div:nth-child(1) { top: 14%; }
.about-lines div:nth-child(2) { top: 28%; }
.about-lines div:nth-child(3) { top: 42%; }
.about-lines div:nth-child(4) { top: 56%; }
.about-lines div:nth-child(5) { top: 70%; }
.about-lines div:nth-child(6) { top: 84%; }
.about-card-content { position: relative; z-index: 1; }
.about-deco { position: absolute; top: -12px; right: -12px; width: 50%; height: 35%; border: 1px solid #b8922a20; z-index: 0; pointer-events: none; }

/* PRODUCTS */
.tab-list { display: flex; border-bottom: 1px solid #152033; margin-bottom: 40px; overflow-x: auto; scrollbar-width: none; }
.tab-list::-webkit-scrollbar { display: none; }
.tab { padding: 12px clamp(10px, 2vw, 22px); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #9a9080; background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; font-family: 'DM Sans', system-ui, sans-serif; flex-shrink: 0; }
.tab.active { color: #b8922a; border-bottom-color: #b8922a; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 2px; }
.product-card { aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; position: relative; overflow: hidden; cursor: pointer; contain: layout style; }
.product-card.hidden { display: none; }
.product-swatch { position: absolute; inset: 0; }
.product-swatch img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: relative; z-index: 1; }
.product-cat { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: #b8922a; font-family: 'DM Mono', monospace; }
.product-name { font-family: 'Playfair Display', Georgia, serif; font-size: 14px; margin-top: 3px; color: #f5f0e8; }

/* FAQ */
.faq-item { border-bottom: 1px solid #152033; }
.faq-q { width: 100%; text-align: left; padding: 22px 0; background: none; border: none; color: #f5f0e8; font-size: clamp(14px, 2vw, 17px); font-family: 'Playfair Display', Georgia, serif; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon { color: #b8922a; font-size: 20px; flex-shrink: 0; line-height: 1; transition: transform .3s; }
.faq-icon.open { transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.22,1,.36,1); }
.faq-body.open { max-height: 400px; }
.faq-body p { padding-bottom: 22px; color: #c4b89e; line-height: 1.8; font-size: 14px; }

/* CONTACT */
.contact-info { margin-bottom: 0; }
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #152033; align-items: flex-start; }
.contact-row a { color: #c4b89e; text-decoration: none; font-size: 14px; }
.directions-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: #b8922a; text-decoration: none; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid #b8922a40; }
.map-wrap { margin-top: 20px; width: 100%; height: 240px; display: block; }
@media (max-width: 1024px) { .map-wrap { height: 200px; } }
.map-placeholder { width: 100%; height: 100%; background: #0d1525; border: 1px solid #152033; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #b8922a; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.map-placeholder span:first-child { font-size: 24px; }
.contact-form-wrap { background: #060b14; padding: clamp(20px, 5vw, 44px); border: 1px solid #152033; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #9a9080; margin-bottom: 7px; font-family: 'DM Mono', monospace; }
.form-input { width: 100%; background: #0d1525; border: 1px solid #152033; color: #f5f0e8; padding: 12px 14px; font-size: 14px; font-family: 'DM Sans', system-ui, sans-serif; outline: none; -webkit-appearance: none; border-radius: 0; }
.form-input:focus { border-color: #b8922a; }
.form-input::placeholder { color: #9a9080; }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* FOOTER */
footer { border-top: 1px solid #152033; padding: clamp(40px, 6vw, 72px) 0 32px; background: #060b14; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(20px, 5vw, 56px); margin-bottom: 40px; }
.footer-desc { color: #9a9080; font-size: 13px; line-height: 1.8; }
.footer-heading { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #b8922a; margin-bottom: 18px; font-family: 'DM Mono', monospace; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9a9080; text-decoration: none; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid #15203340; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 11px; color: #9a9080; font-family: 'DM Mono', monospace; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo { display: flex; justify-content: center; align-items: center; padding: 24px 0 0; order: -1; }
  .hero-logo img { width: clamp(140px, 55vw, 240px); }
  .nav-brand-name { font-size: 14px; }
}
@media (max-width: 400px) { .values-grid { grid-template-columns: 1fr; } }
