:root {
  --bg: #f2eadc;
  --bg-soft: #fbf7f0;
  --text: #193d49;
  --text-soft: #4d6570;
  --primary: #2e6c73;
  --primary-dark: #1c4f56;
  --gold: #c5a46d;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(25, 61, 73, 0.12);
  --radius: 24px;
  --transition: all 0.35s ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-soft);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.alt-bg { background: linear-gradient(180deg, #f8f4ec 0%, #efe5d7 100%); }
.topbar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.topbar a { color: #f8e6bc; font-weight: 600; }
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 240, 0.82);
  border-bottom: 1px solid rgba(46, 108, 115, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(46, 108, 115, 0.18);
}
.brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  line-height: 1;
}
.brand span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  font-weight: 600;
  color: var(--text-soft);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.nav a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px auto;
  transition: var(--transition);
}
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(17, 42, 49, 0.78) 0%, rgba(25, 61, 73, 0.58) 40%, rgba(25, 61, 73, 0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  gap: 34px;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(248, 230, 188, 0.2);
  color: #f8e6bc;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.section-tag {
  background: rgba(46, 108, 115, 0.1);
  color: var(--primary-dark);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
  margin: 18px 0 18px;
  color: var(--white);
  text-shadow: 0 8px 26px rgba(0,0,0,0.22);
}
.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ddc08c);
  color: #23444d;
  box-shadow: 0 12px 28px rgba(197, 164, 109, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary, .btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  color: var(--primary-dark);
  border-color: rgba(46, 108, 115, 0.2);
  background: rgba(46, 108, 115, 0.06);
}
.hero-card, .brand-panel, .card, .map-card, .contact-card, .social-card, .video-frame {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(46, 108, 115, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 28px;
  background: rgba(251, 247, 240, 0.88);
}
.hero-badge {
  display: inline-block;
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(46, 108, 115, 0.12);
  font-weight: 600;
}
.hero-card li:last-child { border-bottom: 0; }
.intro-grid, .highlights-grid, .video-grid, .location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.section-copy h2, .section-head h2, .contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 16px 0 18px;
  line-height: 1;
}
.section-copy p, .section-head p, .highlight-copy p {
  color: var(--text-soft);
  line-height: 1.85;
}
.brand-panel {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand-panel img {
  width: 112px;
  height: 112px;
  border-radius: 20px;
  object-fit: cover;
}
.brand-panel h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}
.brand-panel p { margin: 0; color: var(--text-soft); }
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  padding: 26px;
}
.card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--text-soft); line-height: 1.75; }
.highlight-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.check-list div {
  padding: 14px 16px;
  background: rgba(46, 108, 115, 0.08);
  border-radius: 16px;
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border: 0;
  background: var(--white);
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.video-frame {
  overflow: hidden;
  padding: 0;
}
.video-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.social-card {
  padding: 26px;
  transition: var(--transition);
}
.social-card:hover { transform: translateY(-4px); }
.social-card span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.social-card strong {
  font-size: 1.25rem;
}
.map-card {
  overflow: hidden;
  min-height: 580px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
}
.contact-card {
  padding: 28px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
  color: var(--text-soft);
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(46, 108, 115, 0.14);
  background: #fffdf9;
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text);
}
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 28px 0;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer a { color: #f8e6bc; }
.floating-btn {
  position: fixed;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}
.floating-btn svg { width: 28px; height: 28px; fill: white; }
.floating-btn.whatsapp { bottom: 22px; background: #25d366; }
.floating-btn.call { bottom: 90px; background: var(--primary-dark); }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 18, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 60;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(92vw, 760px);
  max-height: 84vh;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
@media (max-width: 980px) {
  .hero-content,
  .intro-grid,
  .highlights-grid,
  .video-grid,
  .location-grid,
  .cards-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: rgba(251, 247, 240, 0.97);
    border: 1px solid rgba(46, 108, 115, 0.1);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { min-height: 86vh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(17, 42, 49, 0.78) 0%, rgba(25, 61, 73, 0.5) 55%, rgba(25, 61, 73, 0.36) 100%); }
  .hero-content,
  .intro-grid,
  .highlights-grid,
  .video-grid,
  .location-grid,
  .gallery-grid,
  .social-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { padding: 22px; }
  .brand-panel {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .topbar { font-size: 0.82rem; gap: 10px; }
  .brand strong { font-size: 1.6rem; }
  .footer-content { justify-content: center; text-align: center; }
  .floating-btn.call { bottom: 88px; }
}
