:root {
  --bg: #ffffff;
  --text: #151515;
  --muted: #666666;
  --line: #ececec;
  --accent: #b32727;
  --accent-2: #111111;
  --soft: #faf7f4;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.45;
  z-index: -1;
}
.shape-1 { width: 220px; height: 220px; background: rgba(179,39,39,0.13); top: 5%; left: -40px; }
.shape-2 { width: 240px; height: 240px; background: rgba(215,190,150,0.18); right: -60px; top: 30%; }
.shape-3 { width: 200px; height: 200px; background: rgba(0,0,0,0.05); left: 20%; bottom: 8%; }

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand h1 {
  margin: 6px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.2;
}

.brand-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--accent-2);
  color: #fff;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding: 56px 0 40px;
}

.hero h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
}

.hero-text,
.section-heading p,
.product-content p,
.pricing-box p,
.social-box p,
.phone-text {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
}

.btn {
  padding: 15px 24px;
  font-size: 0.96rem;
}
.btn-primary {
  background: linear-gradient(135deg, #c93636, #991f1f);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: #fafafa; }
.btn-large { padding-inline: 28px; }

.hero-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}
.info-card.highlight {
  background: linear-gradient(145deg, #fff8f8, #fff3f0);
}
.info-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  color: var(--accent);
}
.info-card strong { display: block; font-size: 1rem; line-height: 1.35; }
.info-card small { display: block; margin-top: 6px; color: var(--muted); }

.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-card { inset: 40px 0 40px 60px; }
.small-card { width: 220px; height: 220px; }
.small-top { top: 0; left: 0; }
.small-bottom { right: 0; bottom: 0; }

.section { padding: 42px 0 26px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.section-heading h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}
.section-heading.center { text-align: center; max-width: 860px; margin: 0 auto 28px; }

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.mini-feature span { color: var(--accent); font-size: 1.2rem; font-weight: 800; }
.mini-feature p { margin: 0; font-weight: 600; }

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-card {
  grid-column: span 4;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}
.gallery-card.tall { grid-row: span 2; }
.gallery-card.wide { grid-column: span 8; }
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.gallery-card figcaption {
  padding: 16px 18px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.product-image { aspect-ratio: 4 / 3; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-content { padding: 22px; }
.product-content h4 { margin: 0 0 8px; font-size: 1.25rem; }

.colors-wrap,
.social-box,
.pricing-box,
.cta-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.colors-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 34px;
  align-items: center;
}
.color-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.color-tags span {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--soft);
  border: 1px solid var(--line);
}

.pricing-box {
  padding: 42px;
  text-align: center;
  background: linear-gradient(145deg, #fff, #fff6f2);
}
.pricing-box h3 {
  margin: 6px 0 8px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.pricing-box h3 span { color: var(--accent); }

.cta-box {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff, #faf7f4);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.phone-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-2);
}

.social-box {
  text-align: center;
  padding: 34px;
}
.social-box h3 { margin: 8px 0 10px; font-size: 2rem; }

.site-footer {
  margin-top: 24px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-wrap h4 { margin: 0 0 6px; }
.footer-wrap p { margin: 0; color: var(--muted); }
.footer-wrap a { font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}
.wa-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero,
  .two-col,
  .colors-wrap,
  .cta-box,
  .footer-wrap { grid-template-columns: 1fr; display: grid; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 520px; }
  .main-card { inset: 60px 0 20px 40px; }
  .cta-actions { align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero { grid-template-columns: 1fr; padding-top: 28px; }
  .hero-info,
  .intro-grid,
  .product-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .main-card { inset: 58px 0 10px 24px; }
  .small-card { width: 150px; height: 150px; }
  .masonry-grid { grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card.wide { grid-column: auto; }
  .colors-wrap { padding: 24px; }
  .color-tags { justify-content: flex-start; }
  .footer-wrap { display: flex; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero h2 { font-size: 2rem; }
  .section-heading h3 { font-size: 1.7rem; }
  .whatsapp-float span:last-child { display: none; }
  .whatsapp-float { padding: 14px; }
  .hero-visual { min-height: 390px; }
  .main-card { inset: 46px 0 0 18px; }
  .small-card { width: 120px; height: 120px; }
  .pricing-box, .social-box, .cta-box { padding: 24px; }
}
