:root {
  --gold: #f8b400;
  --orange: #ff6b00;
  --coral: #ff3d4a;
  --black: #212121;
  --cream: #fff5c7;
  --accent: #e65f09;
  --text: #2a1f0d;
  --soft: rgba(255, 233, 153, 0.92);
  --shadow: 0 32px 80px rgba(34, 17, 0, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #FFFDF7;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 214, 87, 0.3), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 35%);
  pointer-events: none;
  z-index: -1;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: backdrop-filter 0.35s ease, background-color 0.35s ease, padding 0.3s ease;
  background: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(34, 17, 0, 0.12);
  padding: 0.85rem 1.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  color: var(--black);
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(248, 180, 0, 0.25);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.25s ease;
  font-weight: 500;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 14px;
  background: rgba(255, 248, 231, 0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
  transition: transform 0.3s ease;
}

.mobile-toggle.open span {
  transform: rotate(45deg);
}

.mobile-toggle.open span::before {
  transform: rotate(90deg) translateX(0);
  opacity: 0;
}

.mobile-toggle.open span::after {
  transform: rotate(90deg) translateX(0);
  opacity: 0;
}

.mobile-menu {
  position: fixed;
  inset: 72px 1.5rem auto 1.5rem;
  background: rgba(255, 248, 231, 0.98);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  padding: 1rem 0 3rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 141, 0, 0.32), rgba(255, 167, 60, 0.22) 45%, rgba(255, 248, 231, 0.18));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  will-change: transform;
  z-index: -2;
}

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center top, rgba(227, 193, 40, 0.12), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeUp 1.1s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  color: black;
  letter-spacing: -0.04em;
  text-shadow: 0 25px 55px rgba(0,0,0,0.28);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: black;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  color: black;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff9f1c, #ff6b00);
  color: #fff;
  box-shadow: 0 22px 45px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ffb84a, #ff7a1b);
  box-shadow: 0 28px 60px rgba(255, 107, 0, 0.32);
}

section {
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title span {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.about-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  min-height: 400px;
  height: auto;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  background: rgba(255, 244, 206, 0.96);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  /* height: auto; */
  /* min-height: auto; */
  overflow: hidden;
  height: 700px !important;
}

.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.about-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #444;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 247, 215, 0.95);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(34,17,0,0.1);
  border: 1px solid rgba(255, 155, 26, 0.18);
  animation: float 8s ease-in-out infinite;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.4s;
}

.feature-icon {
  min-width: 46px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 2px rgba(26,26,26,0.08);
}

.feature-copy {
  font-weight: 600;
  color: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: rgba(255, 243, 206, 0.98);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 75px rgba(26,26,26,0.18);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card-content {
  padding: 1.8rem;
}

.product-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.product-card span {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #d15f00;
  font-weight: 600;
}

.product-card .card-btn {
  display: inline-flex;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card .card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(26,26,26,0.22);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background: rgba(255, 244, 214, 0.96);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 123, 24, 0.18);
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-box:nth-child(1) {
  transition-delay: 0.05s;
}

.feature-box:nth-child(2) {
  transition-delay: 0.15s;
}

.feature-box:nth-child(3) {
  transition-delay: 0.25s;
}

.feature-box span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  margin-bottom: 1.3rem;
  box-shadow: inset 0 0 0 2px rgba(26,26,26,0.08);
  font-size: 1.4rem;
}

.feature-box h4 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.feature-box p {
  color: #4f4230;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: linear-gradient(180deg, #ffb74d, #ff984d);
  color: #1f1300;
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-card p {
  color: #000;
  line-height: 1.7;
}

.contact-form {
  background: rgba(255, 244, 206, 0.98);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #4d3c25;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(26,26,26,0.14);
  border-radius: 18px;
  background: #fff;
  padding: 1rem 1.1rem;
  margin-bottom: 1.15rem;
  font-size: 1rem;
  color: var(--black);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(227,193,40,0.12);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.form-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.submit-btn {
  position: relative;
  width: min(220px, 100%);
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: #ff7a00;
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

.submit-btn .loader {
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.submit-btn.loading .loader {
  opacity: 1;
}

.map-card {
  width: 100%;
  max-width: 100%;
  border-radius: 32px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(255, 234, 185, 0.98), rgba(255, 221, 150, 0.98));
  border: 1px solid rgba(255, 157, 45, 0.18);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  color: #633800;
  font-size: 1rem;
  text-align: center;
  padding: 1.5rem;
  gap: 1rem;
}

.map-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 20px;
}

footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #2d1800 0%, #422700 100%);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 16px 35px rgba(18, 140, 126, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 45px rgba(18, 140, 126, 0.34);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-links,
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a,
.social-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.drop-group {
  position: absolute;
  inset: auto 0 0 auto;
  display: grid;
  gap: 1rem;
  pointer-events: none;
  transform: translateX(-15%);
}

.drop {
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, rgba(227,193,40,0.95), rgba(139,69,19,0.9));
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  opacity: 0.8;
  animation: drip 4s ease-in-out infinite;
}

.drop:nth-child(2) {
  width: 14px;
  height: 14px;
  animation-delay: 0.85s;
  transform: rotate(35deg);
}

.drop:nth-child(3) {
  width: 20px;
  height: 20px;
  animation-delay: 1.7s;
  transform: rotate(52deg);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes drip {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.9; }
  50% { transform: translateY(-24px) rotate(45deg); opacity: 0.45; }
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.85fr;
  }
}

@media (max-width: 1024px) {
  nav {
    gap: 1.4rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1rem;
  }

  nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .about-content,
  .contact-form,
  .map-card {
    padding: 1.8rem;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .feature-item {
    padding: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 1rem;
    bottom: 1rem;
  }
}

.drop-group--offset {
  top: 14rem;
  left: 2rem;
}

.social-links--spaced {
  margin-top: 1rem;
}
