:root {
  --primary: #ba6d5a;
  --secondary: #8a7206;
  --dark: #5d2a1f;
  --soft: #f8f1ed;
  --text: #4a3a35;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(93, 42, 31, 0.14);
  --radius: 24px;
  --container: min(1120px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fcf7f4 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
}
.topbar-wrap {
  display: flex; justify-content: space-between; align-items: center; padding: 10px 0;
}
.lang-btn {
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}
.hero {
  position: relative;
  min-height: 90vh;
  background: url('assets/hero.jpg') center/cover no-repeat;
  color: var(--white);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(59,27,20,.78), rgba(59,27,20,.36) 45%, rgba(59,27,20,.2));
}
.nav {
  position: relative;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 68px; height: 68px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,.7); box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1.1rem; }
.brand span { font-size: 0.88rem; opacity: .9; }
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-links a { font-weight: 600; }
.hero-content {
  position: relative; z-index: 2; display: grid; align-items: center; min-height: calc(90vh - 110px); padding-bottom: 60px;
}
.hero-copy {
  max-width: 650px;
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(6px);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: .78rem; font-weight: 700; margin-bottom: 10px;
}
.hero h1, .section-heading h2 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  line-height: 1.04;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.lead { font-size: 1.08rem; line-height: 1.75; }
.hero-actions, .map-links, .contact-mini { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.5); }
.section { padding: 86px 0; }
.intro { padding-top: 48px; }
.intro-grid, .video-grid, .contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px;
}
.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px;
}
.soft { background: linear-gradient(135deg, #fff 0%, #f7ebe6 100%); }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: center; align-items: stretch;
}
.stats div {
  background: linear-gradient(180deg, #fbf3ef 0%, #fff 100%);
  border-radius: 22px;
  padding: 22px 12px;
}
.stats strong { display: block; font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading.align-left { text-align: left; margin: 0 0 18px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--dark); }
.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card h3, .form-card h3 { margin-top: 0; color: var(--dark); }
.service-card { border-top: 5px solid var(--primary); }
.promotions-section { background: linear-gradient(180deg, #fcf7f4 0%, #fff 100%); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.gallery-item {
  border: 0; padding: 0; background: #fff; border-radius: 22px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1.2; transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.video-wrap { padding: 12px; }
.video-wrap iframe {
  width: 100%; min-height: 440px; border: 0; border-radius: 20px;
}
.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.social-card {
  display: flex; align-items: center; gap: 18px; min-height: 140px;
}
.social-icon {
  width: 62px; height: 62px; border-radius: 50%; background: var(--soft); color: var(--primary);
  display: grid; place-items: center; font-size: 1.7rem; font-weight: 700;
}
.contact-card, .form-card { height: 100%; }
.contact-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; line-height: 1.7;
}
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #e7d7d0; border-radius: 16px; padding: 14px 16px; background: #fffaf8;
}
.form-note { font-size: .92rem; opacity: .8; margin: 0; }
.footer {
  background: var(--dark); color: #fff; padding: 26px 0;
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.float-btn {
  position: fixed; right: 18px; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow); z-index: 50; font-size: 1.35rem;
}
.call-btn { bottom: 88px; background: var(--primary); }
.whatsapp-btn { bottom: 20px; background: #25d366; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 900px); max-height: 88vh; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: transparent; border: 0; color: #fff; font-size: 2.6rem; cursor: pointer;
}
.fade-in { animation: fadeInUp .9s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 980px) {
  .nav { flex-direction: column; gap: 16px; }
  .nav-links { justify-content: center; }
  .intro-grid, .video-grid, .contact-grid, .cards-3, .social-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { min-height: 84vh; background-position: 62% center; }
  .hero-content { min-height: calc(84vh - 132px); }
  .hero-copy { padding: 22px; }
  .hero h1 { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 12px; font-size: .92rem; }
  .footer-wrap { flex-direction: column; }
  .video-wrap iframe { min-height: 300px; }
}
