:root {
  --red: #b3121f;
  --red-dark: #8a0d17;
  --red-soft: #fbe9ea;
  --ink: #2a0a0e;
  --text: #3d2a2c;
  --muted: #7a6567;
  --cream: #fbf7f4;
  --cream-2: #f6efe9;
  --white: #ffffff;
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0e6e6;
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.logo-mark { width: 34px; height: 34px; }
.nav { display: flex; gap: 34px; font-size: .95rem; font-weight: 500; }
.nav a { color: var(--ink); position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--red); transition: width .25s; }
.nav a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .2s, background .2s, box-shadow .2s;
  border: 2px solid transparent; cursor: pointer; font-family: inherit;
}
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 10px 24px -10px rgba(179,18,31,.6); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% 20%, #6d0b14 0%, transparent 60%),
              linear-gradient(135deg, #2a0a0e 0%, #4a0c13 55%, #7a0f19 100%);
  color: var(--white);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; min-height: 600px; padding-top: 70px; padding-bottom: 70px; }
.eyebrow { display: inline-block; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: #ffb3b9; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; font-weight: 600; letter-spacing: -.02em; margin-bottom: 22px; }
.hero p { font-size: 1.1rem; color: #f3d6d8; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.35)); }

/* ---------- Category strip ---------- */
.strip { background: var(--ink); color: #f3d6d8; }
.strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; padding-top: 20px; padding-bottom: 20px; font-size: .9rem; font-weight: 500; letter-spacing: .04em; }
.strip span { display: inline-flex; align-items: center; gap: 10px; }
.strip span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--red); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.2; font-weight: 600; color: var(--ink); letter-spacing: -.015em; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Partner */
.partner { background: var(--cream); }
.partner .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.partner-art { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 30px 60px -30px rgba(42,10,14,.25); }
.partner p { font-size: 1.08rem; margin-bottom: 30px; color: var(--text); }
.checks { list-style: none; margin-bottom: 36px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/13px no-repeat; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--white); border: 1px solid #f0e3e3; border-radius: var(--radius); padding: 38px 32px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(179,18,31,.35); border-color: transparent; }
.icon { width: 60px; height: 60px; border-radius: 16px; background: var(--red-soft); display: grid; place-items: center; margin-bottom: 24px; }
.icon svg { width: 30px; height: 30px; stroke: var(--red); }
.card h3 { font-size: 1.2rem; color: var(--ink); font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }

/* Products */
.products { background: var(--cream-2); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--white); padding: 30px 26px 28px; min-height: 250px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .25s, box-shadow .25s; }
.product:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(42,10,14,.35); }
.product .p-icon { position: absolute; top: 26px; left: 26px; width: 64px; height: 64px; }
.product .p-icon svg { width: 100%; height: 100%; stroke: var(--red); }
.product h3 { font-size: 1.08rem; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
.product p { font-size: .9rem; color: var(--muted); }
.product.featured { grid-column: span 2; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); }
.product.featured h3 { color: var(--white); font-size: 1.4rem; }
.product.featured p { color: #ffd9dc; max-width: 360px; }
.product.featured .p-icon svg { stroke: var(--white); }

/* Process */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { padding: 34px 30px; border-radius: var(--radius); background: var(--cream); position: relative; }
.step::before { counter-increment: step; content: "0" counter(step); display: block; font-size: 2.6rem; font-weight: 700; color: var(--red); opacity: .25; line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 1.15rem; color: var(--ink); font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* CTA + Contact */
.contact { background: linear-gradient(135deg, #2a0a0e 0%, #5a0c15 100%); color: var(--white); }
.contact .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact h2 { color: var(--white); }
.contact .lead { color: #f3d6d8; font-size: 1.08rem; margin-bottom: 34px; }
.contact-info { display: grid; gap: 18px; }
.contact-info a, .contact-info div { display: flex; gap: 14px; align-items: center; color: #fbe9ea; }
.contact-info svg { width: 22px; height: 22px; stroke: #ff8e97; flex: none; }
form { background: var(--white); color: var(--text); border-radius: 20px; padding: 38px; display: grid; gap: 16px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.5); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 6px; font-size: .85rem; font-weight: 500; color: var(--ink); }
input, select, textarea { font: inherit; font-size: .95rem; padding: 13px 15px; border: 1.5px solid #ecdede; border-radius: 10px; background: var(--cream); color: var(--ink); transition: border-color .2s, background .2s; width: 100%; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); background: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .8rem; color: var(--muted); }
.form-msg { padding: 14px 16px; border-radius: 10px; font-size: .92rem; display: none; }
.form-msg.ok { display: block; background: #e8f6ec; color: #1d6b35; }
.form-msg.err { display: block; background: var(--red-soft); color: var(--red-dark); }

/* Footer */
.footer { background: #1a0609; color: #c9aeb1; padding: 60px 0 30px; font-size: .9rem; }
.footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .logo { color: var(--white); margin-bottom: 14px; }
.footer h4 { color: var(--white); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a:hover { color: var(--white); }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid #3a1518; padding-top: 24px; margin-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; }

/* Legal pages */
.legal { padding: 80px 0; background: var(--cream); min-height: 70vh; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: 2.2rem; color: var(--ink); font-weight: 600; margin-bottom: 30px; }
.legal h2 { font-size: 1.25rem; margin: 32px 0 10px; }
.legal p { margin-bottom: 12px; }
.placeholder { background: #fff3cd; padding: 2px 6px; border-radius: 4px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap, .partner .wrap, .contact .wrap { grid-template-columns: 1fr; }
  .hero .wrap { min-height: 0; text-align: left; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .values-grid, .steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
  .footer .wrap > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--white); border-bottom: 1px solid #f0e6e6; display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 16px 24px; border-top: 1px solid #f5eeee; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  section { padding: 70px 0; }
  .wrap { padding: 0 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .product.featured { grid-column: auto; }
  .row { grid-template-columns: 1fr; }
  form { padding: 26px 20px; }
  .partner-art { padding: 24px; }
}
