:root {
  --bg: #0d1414;
  --surface: #111b1b;
  --surface-2: #172626;
  --text: #eef6f3;
  --muted: #b7c5bf;
  --accent: #f0a11f;
  --accent-2: #2f7d32;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0,0,0,.28);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #091111 0%, #0e1919 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner, .nav-wrap, .footer-inner, .intro-grid, .hero-actions, .social-links, .about-points { display: flex; align-items: center; }
.topbar-inner { justify-content: space-between; min-height: 58px; }
.badge {
  background: rgba(240,161,31,.14);
  color: #ffd089;
  padding: .6rem .9rem;
  border-radius: 999px;
  font-size: .9rem;
  border: 1px solid rgba(240,161,31,.22);
}
.lang-switch { display: inline-flex; gap: .4rem; }
.lang-btn {
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: .45rem .8rem;
  cursor: pointer;
}
.lang-btn.active { background: var(--accent); color: #241503; border-color: transparent; }
.header {
  position: sticky;
  top: 58px;
  z-index: 998;
  background: rgba(9,17,17,.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { justify-content: space-between; min-height: 82px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,.12); }
.brand strong { display: block; font-size: 1rem; }
.brand span { color: var(--muted); font-size: .9rem; }
.nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--white); }
.menu-toggle { display: none; background: transparent; border: 0; color: var(--white); font-size: 1.7rem; cursor: pointer; }
.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; filter: saturate(1.05) contrast(1.02); }
.hero-overlay { background: linear-gradient(110deg, rgba(5,9,9,.82) 15%, rgba(8,14,14,.46) 55%, rgba(8,14,14,.74) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 7rem 0; }
.eyebrow, .section-tag {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .82rem;
  color: #f7c35b;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero h1, .section-head h2, .about h2, .video-copy h2, .contact-info h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.04;
  margin: 0 0 1rem;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); max-width: 700px; }
.hero-text { max-width: 650px; font-size: 1.08rem; color: #e4efea; line-height: 1.8; }
.hero-actions { gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), #ffd280); color: #241503; }
.btn-secondary { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.btn:hover { transform: translateY(-2px); }
.intro-strip { padding: 1.4rem 0 0; }
.intro-grid { gap: 1rem; align-items: stretch; flex-wrap: wrap; }
.intro-grid article, .info-card, .about-card, .social-card, .facebook-box, .contact-form, .contact-info {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-grid article { flex: 1 1 250px; padding: 1.35rem; }
.intro-grid strong { display: block; margin-bottom: .5rem; }
.intro-grid p, .section-head p, .section-copy p, .info-card p, .social-card p, .video-copy p, .contact-info p { color: var(--muted); line-height: 1.8; }
.section { padding: 6rem 0; }
.section-head { max-width: 760px; margin: 0 auto 2rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.about-grid, .video-grid, .social-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}
.about h2, .video-copy h2, .contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); }
.about-points { flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.about-points span {
  background: rgba(240,161,31,.12);
  border: 1px solid rgba(240,161,31,.18);
  color: #ffdba0;
  border-radius: 999px;
  padding: .7rem 1rem;
  font-size: .92rem;
}
.about-card { padding: 1.4rem; }
.about-card img { width: 100%; max-width: 340px; margin: 0 auto 1rem; border-radius: var(--radius-sm); background: #fff; }
.cards-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.info-card { padding: 1.5rem; }
.info-card h3 { margin-top: 0; font-size: 1.2rem; }
.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  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); }
.social-grid { align-items: stretch; }
.social-card, .facebook-box, .contact-form, .contact-info { padding: 1.6rem; }
.social-links { gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.social-links a {
  padding: .85rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.facebook-box iframe, .video-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
}
.video-wrap iframe { min-height: 420px; }
.contact-list { display: grid; gap: .8rem; }
.contact-list a, .contact-list p {
  margin: 0;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
}
.contact-form { display: grid; gap: 1rem; }
.contact-form label span { display: block; margin-bottom: .45rem; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: var(--white);
  border-radius: 14px;
  padding: .95rem 1rem;
  outline: none;
}
.footer {
  padding: 1.4rem 0 2.4rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer p { margin: 0; text-align: center; color: var(--muted); }
.footer a { color: #ffd089; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  z-index: 999;
}
.floating-whatsapp svg { width: 32px; fill: #fff; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1200;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 920px); max-height: 84vh; border-radius: 20px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}
.fade-up { opacity: 0; transform: translateY(24px); transition: .75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .about-grid, .video-grid, .social-grid, .contact-grid, .gallery-grid, .cards-grid { grid-template-columns: 1fr 1fr; }
  .header { top: 58px; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    padding: 1rem;
    background: rgba(9,17,17,.96);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .about-grid, .video-grid, .social-grid, .contact-grid, .gallery-grid, .cards-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 5rem 0 4rem; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .topbar-inner { gap: 1rem; }
  .video-wrap iframe { min-height: 260px; }
}
