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

:root {
  --bg: #f5f1ec;
  --bg-alt: #ffffff;
  --primary: #5a3f87;
  --primary-dark: #3d295f;
  --accent: #c89a4b;
  --text: #2b2b2b;
  --muted: #777777;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

/* Layout */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(245, 241, 236, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.5rem;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

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

.brand-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.brand-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Nav */

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

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav .nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 10px 25px rgba(90, 63, 135, 0.35);
}

.main-nav .nav-cta::after {
  display: none;
}

/* Nav toggle (mobile) */

.nav-toggle {
  display: none;
  width: 40px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 4px 6px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 99px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: brightness(0.68);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 15%, rgba(255,255,255,0.16), transparent 50%),
              linear-gradient(120deg, rgba(90,63,135,0.88), rgba(31,26,61,0.9));
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
  max-width: 640px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
  color: #f9e9d3;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 3.3vw + 1.2rem, 3.6rem);
  margin: 0 0 0.75rem;
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.hero-tags span {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

/* Buttons */

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

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0 15px 35px rgba(28, 14, 63, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(28, 14, 63, 0.7);
}

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

.section .btn.outline {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.section .btn.outline:hover {
  background: rgba(90,63,135,0.06);
}

.btn.full {
  width: 100%;
}

/* Sections */

main {
  margin-top: 4rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

/* Two column */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

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

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

/* Image collage */

.image-collage {
  position: relative;
  display: grid;
  gap: 1rem;
}

.image-collage img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.image-collage img:nth-child(1) {
  transform: translateY(10px);
}

.image-collage img:nth-child(2) {
  transform: translateX(28px);
}

/* Cards */

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

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.8);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.card p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

/* Highlights */

.highlight {
  background: radial-gradient(circle at top left, #fff6e7, #f0e8ff);
}

.highlights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

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

.number-item {
  background: rgba(255,255,255,0.8);
  border-radius: 18px;
  padding: 1rem 1rem 0.85rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.9);
}

.number {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Video */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

/* Gallery */

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

.gallery-item {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.3);
  filter: brightness(1.05);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}

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

/* Social */

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.social-card.fb {
  background: radial-gradient(circle at top left, #4267b2, #1b366f);
}

.social-card.ig {
  background: radial-gradient(circle at top left, #f58529, #dd2a7b, #833ab4);
}

.social-label {
  font-size: 0.86rem;
  opacity: 0.95;
}

.social-user {
  font-weight: 700;
  font-size: 1.02rem;
}

.social-preview img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Map */

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact */

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.contact-list a {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.contact-form {
  background: #fff;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  border: 1px solid rgba(255,255,255,0.9);
}

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

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

label {
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(90,63,135,0.18);
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 35px rgba(0,0,0,0.45);
  z-index: 50;
  font-size: 0.9rem;
}

.whatsapp-float::before {
  content: "✆";
  margin-right: 0.4rem;
}

/* Footer */

.site-footer {
  background: #1b132f;
  color: #e7ddff;
  padding: 2rem 0 1.4rem;
  margin-top: 2rem;
  font-size: 0.85rem;
}

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

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

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

.footer-madeby {
  text-align: center;
  margin-top: 1rem;
  color: #c2b8e6;
}

.footer-madeby a {
  color: #fff;
  text-decoration: none;
}

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

/* Responsive */

@media (max-width: 960px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .two-column,
  .social-grid,
  .contact-grid,
  .highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-collage img:nth-child(2) {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1rem;
  }

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

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .main-nav.open {
    max-height: 260px;
  }

  .main-nav a {
    padding: 0.3rem 0;
  }

  .hero {
    min-height: 82vh;
  }

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

  .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: 520px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

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

  .gallery-item {
    height: 160px;
  }

  .brand-title {
    font-size: 1rem;
  }
}
