
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2b1c18;
  background-color: #faf7f4;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.soft-bg {
  background: #f5eee7;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3c2313;
}

.section-lead {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(34, 18, 10, 0.96);
  backdrop-filter: blur(10px);
  color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f3d28c;
}

.brand-title {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  font-size: 0.75rem;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #fdf6ee;
  text-decoration: none;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: #f3d28c;
  color: #2c130a;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #f3d28c;
  color: #f3d28c;
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-size: 1.3rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 14, 9, 0.85), rgba(31, 14, 9, 0.3));
  z-index: -1;
}

.hero-content {
  padding: 5rem 0 4rem;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 1.02rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.8rem;
}

.hero-badges span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(243, 210, 140, 0.96);
  color: #3b2014;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: #a62e22;
  border-color: #a62e22;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn.primary:hover {
  background: #bf3c2e;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.btn.ghost {
  background: transparent;
  border-color: #f3d28c;
  color: #f9e6c4;
}

.btn.ghost:hover {
  background: rgba(0,0,0,0.3);
}

/* Two columns layout */
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}

/* Feature list */
.feature-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

/* Highlight card */
.highlight-card {
  background: #2a140a;
  color: #fdf3e5;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.highlight-card h3 {
  margin-top: 0;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 1rem;
}

.mini-gallery img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

/* Catalog section */
.catalog-section {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.catalog-card {
  background: radial-gradient(circle at top left, #f3d28c, #7a2117);
  color: #30140e;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.catalog-card p {
  font-size: 0.96rem;
}

.catalog-card .tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #7d2518;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.note {
  font-size: 0.82rem;
  opacity: 0.9;
  margin-top: 0.75rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  aspect-ratio: 4 / 3;
  background: #ddd;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* Video section */
.video-section {
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Social */
.social-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: #3b2314;
  color: #fdf2e1;
  text-decoration: none;
  font-size: 0.92rem;
}

.social-btn:hover {
  background: #5a3220;
}

.fb-embed iframe {
  border-radius: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #7a2117;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid #d4c3b3;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  background: #fdfaf7;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #a62e22;
  box-shadow: 0 0 0 1px rgba(166, 46, 34, 0.15);
  background: #fff;
}

.form-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Floating buttons */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 1rem;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float {
  bottom: 1rem;
}

.call-float {
  bottom: 4.4rem;
  background: #a62e22;
}

.whatsapp-float:hover,
.call-float:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.32);
}

/* Footer */
.main-footer {
  background: #1b0e09;
  color: #f2e3d2;
  padding: 1.5rem 0 1.75rem;
  margin-top: 2rem;
  font-size: 0.82rem;
}

.footer-content {
  text-align: center;
}

.main-footer a {
  color: #f3d28c;
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 920px) {
  .two-columns,
  .catalog-section,
  .social-section,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-content {
    padding-inline: 0.15rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background: #2b1410;
    padding: 0.75rem 1rem 1rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding-top: 4.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-float,
  .call-float {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
