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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background-color: #faf7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.responsive-img {
  width: 100%;
  border-radius: 12px;
}

header.hero {
  background: linear-gradient(135deg, #ff6a00 0%, #ff9500 45%, #ffdd99 100%);
  color: #fff;
  padding-bottom: 3rem;
}

.top-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.8);
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-actions {
  display: flex;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.primary-btn {
  background: #fff;
  color: #ff6a00;
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.ghost-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.ghost-btn:hover {
  background: rgba(255,255,255,0.22);
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.15rem, 3vw + 1rem, 3rem);
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.hero-location {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 30rem;
}

.hero-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* Sections */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6a00;
  margin-bottom: 0.35rem;
}

.section-header p {
  color: #555;
}

/* Video section */

.video-section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}

.video-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 2.2rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 0.9rem;
}

.icon-list {
  list-style: none;
  margin-top: 0.5rem;
}

.icon-list li {
  margin-bottom: 0.4rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.75rem;
}

.about-photo img {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: #c44b00;
}

/* Gallery */

.gallery-section {
  background: #fff7ec;
  border-radius: 32px;
}

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

.gallery-thumb {
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.96;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}

/* Lightbox */

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

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox img {
  max-height: 90vh;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Social */

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.social-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.social-card h3 {
  margin-bottom: 0.5rem;
  color: #c44b00;
}

.fb-embed iframe {
  width: 100%;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 2rem;
  align-items: start;
}

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

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

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #555;
}

.contact-info h3 {
  margin-bottom: 0.75rem;
  color: #c44b00;
}

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

.map-placeholder {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  background: #fff7ec;
  font-size: 0.9rem;
}

/* Footer */

.main-footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  font-size: 0.9rem;
  color: #555;
}

.main-footer p + p {
  margin-top: 0.25rem;
}

/* WhatsApp button */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #25d366;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  z-index: 100;
}

.wa-icon {
  font-size: 1.5rem;
  color: #fff;
}

/* Animations */

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.7s ease forwards;
}

.section:nth-of-type(odd).fade-in {
  animation-delay: 0.15s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 840px) {
  .hero-content {
    grid-template-columns: minmax(0,1fr);
    padding-top: 1rem;
  }
  .hero-media {
    order: -1;
  }
  .top-actions {
    display: none;
  }
}

@media (max-width: 720px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0,1fr);
  }

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

  .section {
    padding-inline: 1.1rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}
