:root {
  --brown-950: #2a1208;
  --brown-900: #3d1b0c;
  --brown-800: #552611;
  --brown-700: #6b3318;
  --olive-800: #4e5d18;
  --olive-700: #60731d;
  --olive-600: #748925;
  --gold-600: #bf7c25;
  --gold-500: #d49738;
  --cream-50: #fffdf8;
  --cream-100: #f8f1e4;
  --cream-200: #eee0ca;
  --ink: #211a15;
  --muted: #6f655e;
  --white: #fff;
  --border: rgba(61,27,12,.13);
  --shadow: 0 18px 50px rgba(48, 25, 12, .12);
  --radius: 24px;
  --radius-sm: 15px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.no-scroll { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section--soft { background: #f4ecde; }
.section--dark { background: var(--brown-950); color: var(--cream-50); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--olive-700); font-weight: 800; text-transform: uppercase;
  letter-spacing: .11em; font-size: .78rem; margin-bottom: 12px;
}
.eyebrow::before { content:""; width: 28px; height: 2px; background: var(--gold-500); }
h1,h2,h3 { line-height: 1.08; margin: 0 0 16px; font-family: Georgia, "Times New Roman", serif; color: var(--brown-950); }
h1 { font-size: clamp(2.5rem, 6vw, 5.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
.section--dark h2,.section--dark h3 { color: var(--cream-50); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 760px; }
.section--dark .lead { color: #d9cfc5; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; text-decoration: none; transition: .2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--olive-700); color: white; box-shadow: 0 9px 24px rgba(96,115,29,.22); }
.btn--primary:hover { background: var(--olive-800); }
.btn--secondary { background: var(--brown-900); color: white; }
.btn--ghost { border-color: var(--border); background: rgba(255,255,255,.74); color: var(--brown-900); }
.btn--light { background: var(--cream-50); color: var(--brown-900); }
.btn--small { min-height: 40px; padding: 0 15px; font-size: .9rem; }
.btn svg { width: 18px; height: 18px; }

.topbar { background: var(--brown-950); color: #f2e7db; font-size: .88rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { text-decoration: none; font-weight: 800; }
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,253,248,.94);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(61,27,12,.08);
}
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { width: 112px; height: 72px; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { text-decoration: none; padding: 10px 12px; border-radius: 10px; font-size: .93rem; font-weight: 750; color: #4f4138; }
.nav__links a:hover, .nav__links a:focus-visible { background: var(--cream-100); color: var(--brown-900); }
.nav__actions { display: flex; align-items: center; gap: 9px; }
.cart-button { position: relative; }
.cart-count {
  min-width: 21px; height: 21px; padding: 0 5px; border-radius: 999px; position: absolute; right: -7px; top: -8px;
  display: grid; place-items: center; background: var(--gold-500); color: var(--brown-950); font-size: .72rem; font-weight: 900;
}
.mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; background: white; }
.mobile-toggle span { display: block; width: 18px; height: 2px; background: var(--brown-950); margin: 4px auto; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg,#fbf5e9 0%,#fffdf8 55%,#f0e3c9 100%); }
.hero::before, .hero::after { content:""; position:absolute; border-radius:50%; filter: blur(2px); opacity:.45; pointer-events:none; }
.hero::before { width: 520px; height: 520px; background: #d6bd69; right: -170px; top: -220px; }
.hero::after { width: 390px; height: 390px; background: #879a43; right: 10%; bottom: -290px; }
.hero__inner { min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero__copy { padding: 70px 0; }
.hero__copy h1 span { color: var(--olive-700); }
.hero__copy .lead { margin-bottom: 28px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__badges span { border: 1px solid var(--border); background: rgba(255,255,255,.72); padding: 8px 12px; border-radius: 999px; font-size: .87rem; font-weight: 760; }
.hero__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-card {
  width: min(440px, 100%); background: #fffaf0; border: 1px solid rgba(61,27,12,.11); border-radius: 36px;
  padding: 26px; box-shadow: 0 28px 70px rgba(48,25,12,.18); position: relative; z-index: 2;
}
.hero-card::before { content:""; position:absolute; inset: 12px; border: 1px dashed rgba(96,115,29,.28); border-radius: 26px; pointer-events:none; }
.hero-card img { width: 100%; aspect-ratio: 1/1; object-fit: contain; border-radius: 24px; }
.hero-card__footer { padding: 8px 12px 0; display:flex; justify-content:space-between; align-items:end; gap:20px; position:relative; z-index:2; }
.hero-card__footer strong { display:block; color: var(--brown-950); font-size:1.07rem; }
.hero-card__footer span { color: var(--muted); font-size:.88rem; }

.trust-strip { background: var(--brown-900); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 25px 30px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: none; }
.trust-item strong { display:block; font-family: Georgia,serif; font-size: 2rem; color: #f4cf84; line-height:1; margin-bottom: 4px; }
.trust-item span { color: #efe5dc; }

.intro-grid { display:grid; grid-template-columns: .82fr 1.18fr; gap:70px; align-items:start; }
.feature-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:18px; }
.feature-card { background:white; border:1px solid var(--border); padding:24px; border-radius: var(--radius-sm); box-shadow:0 10px 30px rgba(48,25,12,.06); }
.feature-icon { width:46px; height:46px; border-radius:14px; display:grid; place-items:center; background:#f0ead5; color:var(--olive-800); font-weight:900; margin-bottom:16px; }
.feature-card p { margin:0; color:var(--muted); font-size:.95rem; }

.section-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:34px; }
.section-head__actions { display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.searchbox { position:relative; min-width:min(320px,100%); }
.searchbox input { width:100%; min-height:46px; border:1px solid var(--border); border-radius:999px; background:white; padding:0 18px 0 44px; outline:none; }
.searchbox input:focus { border-color: var(--olive-700); box-shadow:0 0 0 4px rgba(96,115,29,.1); }
.searchbox svg { position:absolute; left:16px; top:50%; width:18px; transform:translateY(-50%); color:var(--muted); }
.filters { display:flex; flex-wrap:wrap; gap:9px; margin-bottom:28px; }
.filter-btn { border:1px solid var(--border); background:white; border-radius:999px; padding:9px 14px; font-weight:750; color:#5b4d43; }
.filter-btn.active { background:var(--brown-900); color:white; border-color:var(--brown-900); }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.product-card { background:white; border:1px solid var(--border); border-radius:20px; padding:22px; display:flex; flex-direction:column; min-height:255px; transition:.2s ease; position:relative; overflow:hidden; }
.product-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); border-color:rgba(96,115,29,.28); }
.product-card__top { display:flex; justify-content:space-between; gap:16px; align-items:start; }
.product-card__category { color:var(--olive-700); font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.product-card__badge { background:#f3e4bf; color:#6b4013; font-size:.72rem; font-weight:900; padding:5px 8px; border-radius:999px; white-space:nowrap; }
.product-card h3 { margin-top:13px; font-size:1.48rem; }
.product-card p { color:var(--muted); font-size:.93rem; margin:0 0 20px; flex:1; }
.product-card__footer { display:flex; justify-content:space-between; gap:12px; align-items:center; border-top:1px solid #f0e7db; padding-top:16px; }
.product-price { font-weight:900; color:var(--brown-900); }
.product-empty { grid-column:1/-1; text-align:center; padding:48px; color:var(--muted); border:1px dashed var(--border); border-radius:20px; }

.season-banner { border-radius:30px; padding:38px; background: linear-gradient(120deg,var(--olive-800),#768f2f); color:white; display:grid; grid-template-columns:1.2fr .8fr; gap:30px; align-items:center; overflow:hidden; position:relative; }
.season-banner::after { content:""; position:absolute; width:280px; height:280px; border:55px solid rgba(255,255,255,.08); border-radius:50%; right:-70px; top:-90px; }
.season-banner h2 { color:white; }
.season-banner p { color:#eff4db; margin-bottom:0; }
.season-banner__cta { position:relative; z-index:1; display:flex; justify-content:flex-end; gap:10px; flex-wrap:wrap; }

.services-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.service-card { background:white; border:1px solid var(--border); border-radius:18px; padding:22px; min-height:210px; }
.service-card .service-num { color:#c7a96b; font-weight:900; font-size:.8rem; letter-spacing:.13em; }
.service-card h3 { font-size:1.25rem; margin-top:28px; }
.service-card p { margin:0; color:var(--muted); font-size:.92rem; }

.b2b-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:start; }
.b2b-panel { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.11); border-radius:24px; padding:26px; }
.b2b-list { list-style:none; padding:0; margin:0; display:grid; gap:13px; }
.b2b-list li { display:flex; gap:12px; align-items:flex-start; color:#eee1d7; }
.b2b-list li::before { content:"✓"; width:25px; height:25px; border-radius:50%; background:var(--olive-600); display:grid; place-items:center; color:white; font-weight:900; flex:0 0 25px; }
.logo-list { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:24px; }
.logo-pill { padding:13px 14px; border-radius:12px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08); color:#f3e8dd; font-weight:750; font-size:.9rem; }

.story-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:60px; align-items:center; }
.story-visual { background:var(--cream-100); border:1px solid var(--border); border-radius:30px; min-height:420px; position:relative; overflow:hidden; display:grid; place-items:center; padding:40px; }
.story-visual::before { content:"1992"; position:absolute; font-family:Georgia,serif; font-size:12rem; font-weight:900; color:rgba(96,115,29,.08); bottom:-36px; right:-20px; }
.story-visual img { width:min(320px,80%); position:relative; z-index:2; }
.story-copy p { color:var(--muted); }
.story-note { border-left:4px solid var(--gold-500); padding:8px 0 8px 18px; margin:24px 0; font-weight:760; color:#4f4138; }

.contact-wrap { display:grid; grid-template-columns:.85fr 1.15fr; gap:38px; align-items:start; }
.contact-card { background:var(--brown-900); color:white; border-radius:28px; padding:34px; position:sticky; top:118px; }
.contact-card h2 { color:white; }
.contact-card .lead { color:#dfd2c8; }
.contact-list { display:grid; gap:12px; margin:28px 0; }
.contact-link { display:flex; gap:12px; align-items:center; text-decoration:none; padding:13px 14px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); border-radius:14px; }
.contact-link strong { display:block; font-size:.9rem; }
.contact-link span { color:#e0d3ca; font-size:.9rem; }
.form-card { background:white; border:1px solid var(--border); border-radius:28px; padding:30px; box-shadow:0 14px 38px rgba(48,25,12,.07); }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.field { display:grid; gap:7px; }
.field--full { grid-column:1/-1; }
.field label { font-weight:800; font-size:.9rem; }
.field input,.field textarea,.field select { width:100%; border:1px solid var(--border); border-radius:13px; padding:12px 14px; background:#fffdf9; outline:none; }
.field input:focus,.field textarea:focus,.field select:focus { border-color:var(--olive-700); box-shadow:0 0 0 4px rgba(96,115,29,.1); }
.field textarea { min-height:120px; resize:vertical; }
.form-hint { color:var(--muted); font-size:.83rem; margin:12px 0 0; }

.footer { background:#1f1009; color:#d8cbbf; padding:52px 0 24px; }
.footer__grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:40px; }
.footer img { width:120px; filter:saturate(.9); margin-bottom:16px; }
.footer h3 { color:white; font-family:inherit; font-size:1rem; }
.footer a { color:#e7ddd4; text-decoration:none; display:block; margin:7px 0; }
.footer__bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.1); margin-top:36px; padding-top:20px; font-size:.86rem; }

.drawer-backdrop { position:fixed; inset:0; background:rgba(22,11,5,.48); z-index:80; opacity:0; pointer-events:none; transition:.22s ease; }
.drawer-backdrop.open { opacity:1; pointer-events:auto; }
.drawer { position:fixed; z-index:90; top:0; right:0; width:min(460px,100%); height:100dvh; background:var(--cream-50); box-shadow:-20px 0 60px rgba(0,0,0,.18); transform:translateX(102%); transition:.26s ease; display:flex; flex-direction:column; }
.drawer.open { transform:translateX(0); }
.drawer__head { padding:22px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--border); }
.drawer__head h3 { margin:0; }
.icon-btn { width:42px; height:42px; border-radius:50%; border:1px solid var(--border); background:white; font-size:1.3rem; }
.drawer__body { padding:18px 22px; overflow:auto; flex:1; }
.drawer-item { display:grid; grid-template-columns:1fr auto; gap:12px; border-bottom:1px solid var(--border); padding:15px 0; }
.drawer-item__cat { color:var(--olive-700); font-size:.76rem; font-weight:900; text-transform:uppercase; }
.drawer-item__name { font-weight:850; margin:2px 0 7px; }
.qty { display:flex; align-items:center; gap:8px; }
.qty button { width:30px; height:30px; border-radius:8px; border:1px solid var(--border); background:white; }
.remove-btn { border:0; background:transparent; color:#8f5f49; font-weight:800; font-size:.82rem; padding:0; }
.drawer__foot { padding:20px 22px; border-top:1px solid var(--border); background:white; }
.drawer__foot .btn { width:100%; }
.empty-cart { text-align:center; padding:55px 15px; color:var(--muted); }

.modal { position:fixed; inset:0; z-index:110; display:grid; place-items:center; padding:20px; background:rgba(22,11,5,.58); opacity:0; pointer-events:none; transition:.2s ease; }
.modal.open { opacity:1; pointer-events:auto; }
.modal__card { width:min(680px,100%); max-height:90dvh; overflow:auto; background:var(--cream-50); border-radius:24px; padding:28px; box-shadow:0 28px 80px rgba(0,0,0,.3); transform:translateY(12px); transition:.2s ease; }
.modal.open .modal__card { transform:translateY(0); }
.modal__head { display:flex; justify-content:space-between; gap:20px; align-items:start; }
.modal__head h3 { font-size:1.8rem; }
.request-preview { white-space:pre-wrap; background:#f3eadf; border:1px solid var(--border); padding:15px; border-radius:14px; font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:.85rem; margin:16px 0; }
.modal__actions { display:flex; gap:10px; flex-wrap:wrap; }
.toast { position:fixed; left:50%; bottom:24px; transform:translate(-50%,30px); background:var(--brown-950); color:white; padding:11px 16px; border-radius:999px; opacity:0; pointer-events:none; z-index:140; transition:.2s ease; font-weight:800; font-size:.9rem; }
.toast.show { opacity:1; transform:translate(-50%,0); }

@media (max-width: 1050px) {
  .nav__links { display:none; position:absolute; top:84px; left:20px; right:20px; background:white; border:1px solid var(--border); border-radius:18px; padding:12px; box-shadow:var(--shadow); }
  .nav__links.open { display:grid; }
  .nav__links a { padding:12px 14px; }
  .mobile-toggle { display:block; }
  .nav__actions .desktop-cta { display:none; }
  .hero__inner { grid-template-columns:1fr; min-height:auto; gap:0; padding-bottom:60px; }
  .hero__copy { padding-bottom:28px; }
  .hero__visual { min-height:390px; }
  .hero-card { width:min(400px,80%); }
  .intro-grid,.b2b-grid,.story-grid,.contact-wrap { grid-template-columns:1fr; gap:38px; }
  .contact-card { position:relative; top:auto; }
  .services-grid { grid-template-columns:repeat(3,1fr); }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .footer__grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width:min(100% - 26px,1180px); }
  .section { padding:64px 0; }
  .topbar__inner { min-height:34px; font-size:.78rem; }
  .topbar__inner span:first-child { display:none; }
  .nav { min-height:72px; }
  .brand img { width:88px; height:58px; }
  .nav__links { top:73px; }
  .hero__copy { padding-top:48px; }
  .hero__visual { min-height:330px; }
  .hero-card { width:92%; padding:18px; border-radius:26px; }
  .hero-card__footer { flex-direction:column; align-items:flex-start; gap:4px; }
  .trust-grid { grid-template-columns:1fr; padding:9px 0; }
  .trust-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.1); padding:16px 2px; display:flex; align-items:baseline; gap:12px; }
  .trust-item:last-child { border-bottom:0; }
  .trust-item strong { font-size:1.7rem; }
  .feature-grid { grid-template-columns:1fr; }
  .section-head { display:block; }
  .section-head__actions { justify-content:flex-start; margin-top:18px; }
  .searchbox { min-width:100%; }
  .product-grid { grid-template-columns:1fr; }
  .season-banner { grid-template-columns:1fr; padding:28px 22px; }
  .season-banner__cta { justify-content:flex-start; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { min-height:0; }
  .logo-list { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .field--full { grid-column:auto; }
  .footer__grid { grid-template-columns:1fr; }
  .footer__bottom { flex-direction:column; }
  .modal__card { padding:22px 18px; }
}
