:root {
  --bg: #f8f5ef;
  --surface: #ffffff;
  --surface-2: #f0ece2;
  --text: #17333a;
  --muted: #5c6f72;
  --primary: #0e7c86;
  --primary-dark: #0a5660;
  --accent: #d9af4d;
  --shadow: 0 18px 50px rgba(18, 42, 47, 0.12);
  --radius: 24px;
  --container: min(1120px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 92px 0; }
.alt { background: linear-gradient(180deg, rgba(14,124,134,.06), rgba(217,175,77,.08)); }

.lang-switcher {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 30;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  padding: 6px;
  backdrop-filter: blur(8px);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.lang-btn.active { background: var(--primary); color: #fff; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(120deg, rgba(7,30,34,.82), rgba(7,30,34,.36) 48%, rgba(7,30,34,.24)),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.4));
}
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,.35);
}
.brand strong {
  display: block;
  font-size: 1.05rem;
}
.brand span { color: rgba(255,255,255,.82); font-size: .92rem; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: #fff;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  transition: .25s ease;
}
.nav-links a:hover { background: rgba(255,255,255,.12); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 120px;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.hero h1,
.section-heading h2,
.intro h2,
.location-text h2,
.video-text h2,
.contact-copy h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.04;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: #fff;
  text-wrap: balance;
}
.hero p {
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  max-width: 640px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.15); }
.btn-primary { background: var(--accent); color: #1d2a2d; }
.btn-secondary { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.35); }

.grid-2,
.video-layout,
.location-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}
.card,
.info-stack,
.experience-card,
.social-card,
.contact-form,
.contact-copy {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { padding: 34px; }
.card p, .video-text p, .contact-copy p, .location-text p, .section-heading p { color: var(--muted); line-height: 1.75; }
.info-stack { padding: 22px; display: grid; gap: 16px; }
.info-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface-2);
  display: grid;
  gap: 5px;
}
.info-item strong { font-size: .92rem; color: var(--primary-dark); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading .eyebrow { background: rgba(14,124,134,.11); color: var(--primary-dark); }
.section-heading h2, .intro h2, .location-text h2, .video-text h2, .contact-copy h2 { font-size: clamp(2rem, 3vw, 3.3rem); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.experience-card {
  padding: 28px;
  min-height: 230px;
}
.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14,124,134,.12), rgba(217,175,77,.16));
  margin-bottom: 18px;
}
.experience-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.experience-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.video-frame,
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}
.video-frame iframe,
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.social-card {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-card img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 20px;
}
.social-card strong { display: block; font-size: 1.08rem; }
.social-card span { color: var(--muted); }
.location-text, .contact-copy { padding: 34px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.contact-form { padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23,51,58,.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(14,124,134,.18);
  border-color: var(--primary);
}
.site-footer {
  padding: 24px 0 48px;
  background: #0b1e22;
  color: rgba(255,255,255,.8);
}
.footer-inner { text-align: center; }
.footer-inner a { color: #fff; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(37,211,102,.35);
  z-index: 30;
}
.whatsapp-float svg { width: 30px; fill: #fff; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 12, .86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 45;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  background: #fff;
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: rise .8s ease forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .grid-2,
  .video-layout,
  .location-layout,
  .contact-layout,
  .cards-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar { gap: 18px; flex-direction: column; align-items: flex-start; }
  .nav-links { flex-wrap: wrap; gap: 10px; }
  .hero-content { padding: 46px 0 100px; }
}
@media (max-width: 640px) {
  .section { padding: 74px 0; }
  .gallery-grid { gap: 12px; }
  .gallery-item, .card, .experience-card, .social-card, .contact-form, .contact-copy, .info-stack, .video-frame, .map-frame { border-radius: 20px; }
  .brand img { width: 56px; height: 56px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(7,30,34,.7), rgba(7,30,34,.46), rgba(7,30,34,.68));
  }
  .hero p { font-size: 1rem; }
  .lang-switcher { top: auto; bottom: 92px; }
}
