:root {
  --primary:        #8B0020;
  --primary-dark:   #6B0018;
  --primary-light:  #A8002A;
  --secondary:      #C8956C;
  --accent:         #E8C9A8;
  --bg:             #FDFAF6;
  --bg-alt:         #F5EDE3;
  --dark:           #1C1C1C;
  --text:           #2C2C2C;
  --muted:          #6B6B6B;
  --white:          #FFFFFF;
  --border:         #E0D5C8;
  --r:              10px;
  --r-lg:           16px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow:         0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:      0 8px 40px rgba(0,0,0,.13);
  --ease:           .25s ease;
  --max:            1200px;
  --font:           'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary-light); }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,250,246,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1.2rem; color: var(--primary); letter-spacing: -.02em;
}
.nav__logo img { height: 34px; width: auto; }

#nav-check { display: none; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--ease);
}
#nav-check:checked + .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#nav-check:checked + .nav__toggle span:nth-child(2) { opacity: 0; }
#nav-check:checked + .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav__links a {
  font-size: .92rem; font-weight: 600; color: var(--text);
  padding: .25rem 0; border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r);
  font-size: .93rem; font-weight: 700; cursor: pointer;
  transition: all var(--ease); border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,0,32,.3);
}
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover {
  background: var(--bg); color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 90vh; display: flex; align-items: center; padding-top: 68px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 55%, #EDD5BA 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -15%; right: -8%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,32,.07) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -5%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,108,.12) 0%, transparent 70%);
}
.hero__inner {
  max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-block; background: rgba(139,0,32,.1); color: var(--primary);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.03em; color: var(--dark); margin-bottom: 1.25rem;
}
.hero__title span { color: var(--primary); }
.hero__text { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg-alt), var(--accent));
  display: flex; align-items: center; justify-content: center;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTIONS ─────────────────────────────────────── */
.section       { padding: 5rem 1.5rem; }
.section--alt  { background: var(--bg-alt); }
.container     { max-width: var(--max); margin: 0 auto; }

.label {
  display: inline-block; background: rgba(139,0,32,.1); color: var(--primary);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; margin-bottom: .9rem;
}
h2.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  letter-spacing: -.025em; color: var(--dark); margin-bottom: .9rem; line-height: 1.2;
}
p.section-sub {
  font-size: 1.02rem; color: var(--muted); line-height: 1.75; max-width: 620px;
}

/* ── ABOUT ────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; background: linear-gradient(160deg, var(--bg-alt), var(--accent));
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body { display: flex; flex-direction: column; gap: 1.1rem; }
.about-body p { color: var(--muted); line-height: 1.8; }
.about-body strong { color: var(--text); }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: .5rem; }
.stat {
  text-align: center; padding: 1.25rem; background: var(--white);
  border-radius: var(--r); box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.stat-n { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: .2rem; }
.stat-l { font-size: .75rem; color: var(--muted); font-weight: 600; }

/* ── BRAND CARDS ──────────────────────────────────── */
.brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.brand-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2.25rem;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease); position: relative; overflow: hidden;
}
.brand-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-badge {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .28rem .75rem; border-radius: 100px; margin-bottom: 1rem;
}
.brand-badge--consumer { background: rgba(200,149,108,.15); color: #7A4E2D; }
.brand-badge--pro      { background: rgba(139,0,32,.1); color: var(--primary); }
.brand-logo { height: 44px; object-fit: contain; margin-bottom: 1rem; }
.brand-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: .6rem; }
.brand-card p { color: var(--muted); line-height: 1.75; font-size: .93rem; }

/* ── PRODUCT CARDS ────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.75rem;
}
.product-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__thumb {
  width: 100%; height: 195px; object-fit: cover;
  background: linear-gradient(135deg, var(--bg-alt), var(--accent));
}
.product-card__thumb-placeholder {
  width: 100%; height: 195px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  font-size: 2.5rem;
}
.product-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-card__cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: .4rem;
}
.product-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; line-height: 1.3; }
.product-card p  { font-size: .88rem; color: var(--muted); line-height: 1.75; flex: 1; }
.product-card__foot {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.product-card__foot-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem;
}
.tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag {
  font-size: .72rem; padding: .2rem .6rem; border-radius: 100px;
  background: var(--bg-alt); color: var(--muted); border: 1px solid var(--border);
}
.tag--primary { background: rgba(139,0,32,.08); color: var(--primary); border-color: rgba(139,0,32,.2); }

/* ── PAGE HEADER ──────────────────────────────────── */
.page-header {
  padding-top: 68px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}
.page-header__inner { max-width: var(--max); margin: 0 auto; padding: 3.5rem 1.5rem 3rem; }
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--dark);
  letter-spacing: -.03em; margin-bottom: .75rem;
}
.page-header p { font-size: 1.02rem; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.divider { width: 52px; height: 4px; background: var(--primary); border-radius: 2px; margin: 1.25rem auto; }

/* ── CTA BAND ─────────────────────────────────────── */
.cta { background: var(--primary); color: var(--white); text-align: center; padding: 5rem 1.5rem; }
.cta h2 { font-size: clamp(1.75rem,4vw,2.4rem); font-weight: 800; margin-bottom: .9rem; letter-spacing: -.025em; }
.cta p  { font-size: 1.02rem; opacity: .85; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── CONTACT ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(139,0,32,.1);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary); font-style: normal;
  font-size: 1.2rem; line-height: 1;
}
.contact-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .15rem; }
.contact-val   { font-size: .93rem; color: var(--text); font-weight: 500; line-height: 1.5; }

/* ── FORM ─────────────────────────────────────────── */
.form-box {
  background: var(--white); border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: .83rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; }
.form-input,
.form-textarea {
  width: 100%; padding: .72rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font); font-size: .93rem;
  color: var(--text); background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease); outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,0,32,.1); background: var(--white);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alert {
  padding: .9rem 1.2rem; border-radius: var(--r); margin-bottom: 1.5rem;
  font-size: .88rem; font-weight: 600;
}
.alert-ok  { background: rgba(34,139,34,.1); color: #1a6b1a; border: 1px solid rgba(34,139,34,.25); }
.alert-err { background: rgba(139,0,32,.08); color: var(--primary); border: 1px solid rgba(139,0,32,.2); }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 4rem 1.5rem 2rem; }
.footer__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: .6rem; letter-spacing: -.02em; }
.footer__tagline { font-size: .83rem; margin-bottom: 1.1rem; line-height: 1.6; }
.footer__addr { font-size: .8rem; line-height: 1.7; }
.footer__addr a { color: rgba(255,255,255,.55); }
.footer__addr a:hover { color: #fff; }
.footer__col-title { color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.footer__nav { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer__nav a { color: rgba(255,255,255,.55); font-size: .83rem; transition: color var(--ease); }
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .78rem;
}
.footer__bottom a { color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: #fff; }

/* ── LANG SWITCH ──────────────────────────────────── */
.nav__lang {
  display: flex; align-items: center; gap: .28rem;
  margin-left: .5rem; padding-left: 1.25rem;
  border-left: 1px solid var(--border);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
}
.nav__lang-cur { color: var(--primary); }
.nav__lang-sep { color: var(--border); font-weight: 400; }
.nav__lang a   { color: var(--muted); border-bottom: none !important; padding: 0 !important; }
.nav__lang a:hover { color: var(--primary); border-bottom: none !important; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner    { grid-template-columns: 1fr; text-align: center; }
  .hero__actions  { justify-content: center; }
  .hero__visual   { order: -1; max-width: 420px; margin: 0 auto; }
  .about-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .brands-grid    { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0; background: var(--bg);
    padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); gap: 0;
  }
  .nav__links li a {
    display: block; padding: .85rem 0; border-bottom: 1px solid var(--border);
    font-size: .97rem;
  }
  .nav__links li:last-child a { border-bottom: none; }
  .nav__lang { border-left: none; border-top: 1px solid var(--border); padding: .85rem 0; margin-left: 0; }
  .nav__lang a, .nav__lang-cur, .nav__lang-sep { font-size: .93rem; }
  #nav-check:checked ~ .nav__links { display: flex; }

  .section { padding: 3.5rem 1.25rem; }
  .hero__inner { padding: 3rem 1.25rem; gap: 2rem; }
  .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta { padding: 3.5rem 1.25rem; }
}
