
:root {
  --color-bg: #fff9f7;
  --color-primary: #f47c26;
  --color-primary-soft: #ffb586;
  --color-secondary: #f59ac4;
  --color-dark: #3b2b33;
  --color-text: #493646;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.07);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

header.hero {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #ffe0f0 0, #fff9f7 40%, #ffe3c7 100%);
  padding: 1.25rem 5vw 4rem;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.82);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

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

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.8rem;
  color: #7a6175;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-solid {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 12px 30px rgba(244, 124, 38, 0.45);
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(244, 124, 38, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: rgba(244,124,38,0.45);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: rgba(244,124,38,0.08);
}

.btn-full {
  width: 100%;
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.3vw, 3.1rem);
  margin: 0 0 1rem;
  color: var(--color-dark);
}

.hero-text p {
  margin: 0 0 1.5rem;
  max-width: 32rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-location {
  font-size: 0.95rem;
  color: #6b5465;
}

.hero-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
}

.hero-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-main-image img {
  height: 100%;
  object-fit: cover;
}

.hero-secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.hero-secondary img {
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 4rem 5vw;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.section-header p {
  margin: 0;
  color: #7a6175;
}

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

.card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #6b5465;
}

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

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.section-footer p {
  margin-bottom: 1rem;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: center;
  gap: 1.5rem;
}

.social-card {
  background: #fff;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-label {
  font-weight: 600;
}

.social-handle {
  font-size: 0.9rem;
  color: #7a6175;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-info h3 {
  margin-top: 0;
}

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

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

.contact-note {
  font-size: 0.95rem;
  color: #6b5465;
}

.contact-form {
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem 1.9rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5a4656;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid #e4d0e2;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(245,154,196,0.25);
  background-color: #fff;
}

textarea {
  resize: vertical;
}

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

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

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.33);
  z-index: 50;
}

.whatsapp-icon {
  font-size: 1.9rem;
  color: #fff;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 4, 18, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1200px);
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-media {
    order: -1;
  }

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

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

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

@media (max-width: 720px) {
  header.hero {
    padding: 1rem 1.1rem 3rem;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .hero-content {
    margin-top: 2.3rem;
  }

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

  .hero-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .section {
    padding: 3rem 1.1rem;
  }

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

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

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

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

  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    font-size: 1.7rem;
  }
}
