:root {
  --ink: #050505;
  --ink-soft: #d0d0cc;
  --paper: #f4f4f0;
  --paper-2: #e9e9e4;
  --white: #ffffff;
  --copper: #ffc400;
  --copper-dark: #d8a600;
  --line: rgba(5, 5, 5, .16);
  --radius: 0;
  --container: 1240px;
  --shadow: 0 22px 60px rgba(24, 19, 13, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 144px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -60px; z-index: 999; padding: 12px 18px; color: white; background: var(--ink); transition: top .2s; }
.skip-link:focus { top: 20px; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 88px;
  color: var(--white);
  background: rgba(5, 5, 5, .97);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { width: 172px; height: 78px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); font-size: 13px; font-weight: 650; letter-spacing: .02em; }
.main-nav > a:not(.nav-cta) { position: relative; padding-block: 10px; }
.main-nav > a:not(.nav-cta)::after { position: absolute; left: 0; bottom: 4px; width: 0; height: 1px; background: currentColor; content: ""; transition: width .25s ease; }
.main-nav > a:hover::after { width: 100%; }
.nav-cta { padding: 12px 19px; color: var(--ink); background: var(--copper); border: 1px solid var(--copper); transition: .25s ease; }
.nav-cta:hover { color: var(--copper); background: transparent; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; background: transparent; border: 0; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; margin-block: 6px; background: currentColor; transition: transform .25s, opacity .25s; }

.hero { position: relative; min-height: min(850px, 100svh); isolation: isolate; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.98) 31%, rgba(5,5,5,.84) 46%, rgba(5,5,5,.42) 66%, rgba(5,5,5,.1) 100%); content: ""; }
.hero-video { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.08); }
.hero-inner { min-height: min(850px, 100svh); display: flex; align-items: center; padding-top: 88px; }
.hero-copy { width: min(610px, 52%); padding-block: 70px 40px; transform: translateY(-24px); }
.eyebrow, .section-kicker { margin: 0 0 24px; color: var(--copper-dark); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 38px; height: 1px; background: currentColor; }
.hero h1, h2 { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 650; letter-spacing: -.055em; line-height: .94; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(58px, 7.2vw, 106px); }
.hero h1 em { color: var(--copper-dark); font-weight: 400; }
.hero-lead { max-width: 550px; margin: 32px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 26px; border: 1px solid transparent; border-radius: var(--radius); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s, background .25s, color .25s, border-color .25s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--ink); background: var(--copper); border-color: var(--copper); }
.button-dark:hover { color: var(--copper); background: transparent; }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--copper); }
.button-copper { color: var(--ink); background: var(--copper); border-color: var(--copper); }
.button-copper:hover { color: var(--copper); background: transparent; border-color: var(--copper); }
.text-link { font-size: 13px; font-weight: 750; border-bottom: 1px solid currentColor; }
.text-link span { margin-left: 7px; color: var(--copper-dark); }
.hero-proof { display: flex; gap: 0; margin: 56px 0 0; padding: 0; list-style: none; }
.hero-proof li { display: grid; gap: 3px; min-width: 124px; padding-right: 26px; margin-right: 26px; border-right: 1px solid rgba(255,255,255,.22); }
.hero-proof li:last-child { border-right: 0; }
.hero-proof strong { font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.hero-proof span { color: #bdbdb8; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: .8fr 2fr; gap: 60px; align-items: start; }
.intro h2, .section-head h2, .custom h2, .faq h2, .contact h2 { margin: 0; font-size: clamp(42px, 5.3vw, 76px); }
.intro h2 { max-width: 820px; }
.intro-grid > div > p { max-width: 720px; margin: 30px 0 0; color: #5e5850; font-size: 18px; }

.collection { background: var(--paper); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 54px; }
.section-head h2 { max-width: 770px; }
.section-head > p { max-width: 380px; margin: 0 0 6px; color: #696259; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 58px 28px; }
.product-image { position: relative; display: block; overflow: hidden; background: #ece9e3; }
.product-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-image:hover img { transform: scale(1.025); }
.product-badge { position: absolute; left: 18px; top: 18px; padding: 8px 11px; color: var(--ink); background: rgba(255,196,0,.94); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-info { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-top: 21px; }
.product-type { margin: 0 0 4px; color: #756d63; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-family: inherit; font-size: clamp(25px, 2.4vw, 34px); font-weight: 650; letter-spacing: -.04em; }
.product-card-price { margin: 7px 0 0; font-size: 18px; font-weight: 800; }
.product-info > a { margin-bottom: 4px; font-size: 12px; font-weight: 750; border-bottom: 1px solid currentColor; }
.product-info > a span { color: var(--copper-dark); }

.custom { color: var(--white); background: var(--ink); }
.custom-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(56px, 8vw, 120px); align-items: center; }
.custom-visual { position: relative; }
.custom-visual > img { width: 100%; min-height: 620px; object-fit: cover; object-position: 57% center; filter: saturate(.88) contrast(1.03); }
.custom-note { position: absolute; right: -30px; bottom: 30px; display: grid; min-width: 260px; padding: 20px 24px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.custom-note strong { font-family: inherit; font-size: 20px; font-weight: 700; }
.custom-note span { color: #6e665c; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.custom-copy > p:not(.section-kicker) { color: #c2bbb0; font-size: 17px; }
.feature-list { margin: 38px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding-block: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list li > span { color: var(--copper); font-size: 11px; font-weight: 800; }
.feature-list strong { display: block; font-size: 15px; }
.feature-list p { margin: 5px 0 0; color: #9f988e; font-size: 13px; }

.process { background: var(--white); }
.process-head { margin-bottom: 64px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid li { position: relative; min-height: 340px; padding: 36px 38px 40px; border-right: 1px solid var(--line); }
.process-grid li:first-child { border-left: 1px solid var(--line); }
.process-number { color: var(--copper-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.process-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 50px 0 38px; border: 1px solid var(--line); font-family: Georgia, serif; font-size: 26px; color: var(--copper-dark); }
.process-grid h3 { margin: 0; font-family: inherit; font-size: 28px; font-weight: 650; letter-spacing: -.035em; }
.process-grid p { margin: 12px 0 0; color: #6a645b; font-size: 14px; }

.values { padding-block: 82px; background: var(--paper-2); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(30px, 4vw, 58px); }
.values article { text-align: center; }
.values article > span { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 24px; color: var(--copper-dark); border: 1px solid var(--line); border-radius: 50%; font-family: Georgia, serif; font-size: 28px; }
.values h3 { margin: 0; font-family: inherit; font-size: clamp(20px, 1.7vw, 25px); font-weight: 650; line-height: 1.15; letter-spacing: -.035em; }
.values p { margin: 14px 0 0; color: #655f56; font-size: 14px; line-height: 1.7; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 140px); }
.faq-grid > div:first-child > p:last-child { max-width: 440px; margin-top: 28px; color: #696259; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 25px 48px 25px 0; font-family: inherit; font-size: 20px; font-weight: 650; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { position: absolute; top: 37px; right: 8px; width: 16px; height: 1px; background: currentColor; content: ""; transition: transform .2s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 620px; margin: -5px 50px 25px 0; color: #686158; font-size: 14px; }

.contact { color: var(--white); background: #1b1916; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); }
.section-kicker-light { color: var(--copper); }
.contact-copy > p:not(.section-kicker) { max-width: 520px; color: #aaa298; font-size: 17px; }
.contact-phone { display: block; margin-top: 42px; font-family: inherit; font-size: 29px; font-weight: 700; }
.contact-email { color: #bdb5aa; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.25); }
.contact-form { display: grid; gap: 23px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: #d9d3cb; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 0; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3); border-radius: 0; outline: 0; resize: vertical; text-transform: none; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--copper); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #777169; }
.contact-form .button { justify-self: start; margin-top: 12px; }
.form-note { margin: -12px 0 0; color: #888178; font-size: 11px; }

.site-footer { padding: 70px 0 26px; color: #d1cbc2; background: #0d0c0b; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 60px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-logo { width: 230px; height: auto; object-fit: contain; }
.footer-top > p { margin: 0; color: #a8a8a2; font-family: inherit; font-size: 22px; font-weight: 600; line-height: 1.35; }
.footer-top nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; font-size: 12px; }
.footer-top nav a:hover, .footer-bottom a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: #6f6a63; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.whatsapp-fab { position: fixed; z-index: 18; right: 22px; bottom: 22px; display: grid; place-items: center; width: 54px; height: 54px; color: white; background: #217a52; border: 3px solid rgba(255,255,255,.75); border-radius: 50%; box-shadow: 0 12px 28px rgba(0,0,0,.22); font-size: 10px; font-weight: 900; letter-spacing: -.03em; transition: transform .2s, background .2s; }
.whatsapp-fab:hover { transform: translateY(-3px); background: #17613f; }

.legal-page { background: var(--white); }
.legal-header { position: static; color: var(--white); background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.1); }
.legal-main { min-height: 70vh; padding-block: 90px 120px; }
.legal-main article { max-width: 820px; }
.legal-main h1 { margin: 0 0 36px; font-family: inherit; font-size: clamp(44px, 7vw, 76px); font-weight: 650; letter-spacing: -.05em; }
.legal-main h2 { margin: 42px 0 12px; font-size: 27px; letter-spacing: -.02em; line-height: 1.2; }
.legal-main p, .legal-main li { color: #5e5850; }
.legal-main a { color: var(--copper-dark); text-decoration: underline; }

@media (max-width: 980px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { height: 76px; }
  .menu-toggle { display: block; position: relative; z-index: 22; }
  .main-nav { position: fixed; inset: 0; z-index: 21; display: flex; flex-direction: column; justify-content: center; gap: 26px; visibility: hidden; opacity: 0; color: var(--white); background: rgba(5,5,5,.99); font-family: inherit; font-size: 30px; font-weight: 650; transition: opacity .25s, visibility .25s; }
  .main-nav.is-open { visibility: visible; opacity: 1; }
  .main-nav .nav-cta { margin-top: 12px; color: var(--ink); background: var(--copper); border-color: var(--copper); font-family: Inter, sans-serif; font-size: 11px; }
  .menu-open .brand, .menu-open .menu-toggle { z-index: 23; color: var(--white); }
  .menu-open .menu-toggle span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(3) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero-inner { padding-top: 76px; }
  .hero-copy { width: min(610px, 65%); }
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .custom-grid { grid-template-columns: 1fr; }
  .custom-visual { max-width: 760px; }
  .custom-note { right: 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { gap: 50px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 78px; }
  .brand-logo { width: 140px; height: 64px; }
  .hero { min-height: auto; padding-bottom: 0; background: var(--ink); }
  .hero::after { background: linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.96) 48%, rgba(5,5,5,.25) 72%, rgba(5,5,5,.06) 100%); }
  .hero-video { object-position: 58% center; }
  .hero-inner { min-height: 850px; align-items: flex-start; }
  .hero-copy { width: 100%; padding-top: 90px; transform: none; }
  .hero h1 { font-size: clamp(51px, 15vw, 72px); }
  .hero-lead { max-width: 92%; margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 28px; }
  .hero-proof { display: none; }
  .intro h2, .section-head h2, .custom h2, .faq h2, .contact h2 { font-size: clamp(39px, 12vw, 54px); }
  .section-head { align-items: flex-start; flex-direction: column; gap: 24px; margin-bottom: 36px; }
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-info h3 { font-size: 28px; }
  .custom-visual > img { min-height: 430px; }
  .custom-note { right: 10px; bottom: 10px; min-width: 230px; padding: 16px 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; padding: 30px 24px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-grid li:last-child { border-bottom: 0; }
  .process-icon { margin: 30px 0 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 36px; }
  .values article { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
  .field-row { grid-template-columns: 1fr; gap: 23px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 18px; }
  .whatsapp-fab { right: 14px; bottom: 14px; }
}

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