:root {
  --bg: #0f1014;
  --bg-soft: #171920;
  --card: #15171d;
  --text: #f4f4f5;
  --muted: #b9bec7;
  --line: rgba(255,255,255,.08);
  --accent: #d6a040;
  --accent-2: #f1c164;
  --shadow: 0 20px 50px rgba(0,0,0,.28);
  --radius: 22px;
  --container: min(1120px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1a1d23;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.skip-link {
  position: absolute; left: 12px; top: -48px; background: #fff; color: #000; padding: 10px 14px; z-index: 2000; border-radius: 10px;
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px);
  background: rgba(15,16,20,.86); border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 18px; }
.brand img { width: 170px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.92); }
.site-nav a { font-size: .96rem; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #111; padding: 10px 16px; border-radius: 999px; font-weight: 700;
}
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid rgba(255,255,255,.14); background: transparent; padding: 10px; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 6px 0; }
.hero {
  position: relative; min-height: 92vh; display: grid; align-items: center; overflow: hidden; background: var(--bg);
}
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(9,11,16,.84) 0%, rgba(9,11,16,.72) 36%, rgba(9,11,16,.2) 100%); }
.hero-content { position: relative; z-index: 1; color: var(--text); padding: 110px 0 70px; max-width: 680px; }
.eyebrow, .section-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(214,160,64,.16); color: var(--accent); font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: .95; margin: 18px 0 16px; text-wrap: balance; }
.hero p { font-size: 1.08rem; max-width: 590px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #101114; }
.btn-outline { border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.06); }
.btn-block { width: 100%; border: 0; cursor: pointer; }
.hero-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points li {
  padding: 10px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: rgba(255,255,255,.94);
}
.section { padding: 88px 0; }
.section-dark { background: var(--bg); color: var(--text); }
.section-soft { background: #faf8f4; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.04; margin: 14px 0 0; }
.section-head p { max-width: 420px; margin: 0; color: inherit; opacity: .8; }
.two-col {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: start;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
}
.feature-card {
  background: #fff; border: 1px solid rgba(18,20,26,.08); border-radius: var(--radius); padding: 24px; box-shadow: 0 15px 35px rgba(0,0,0,.05);
}
.feature-card h3 { margin-top: 0; margin-bottom: 8px; }
.feature-card p { margin: 0; color: #4c5561; }
.feature-card.accent { background: linear-gradient(135deg, #191b22, #101114); color: var(--text); }
.feature-card.accent p { color: rgba(255,255,255,.76); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
}
.gallery-item {
  border: 0; background: transparent; padding: 0; cursor: pointer; border-radius: 22px; overflow: hidden; box-shadow: 0 16px 34px rgba(0,0,0,.16); aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.video-frame {
  position: relative; padding-top: 56.25%; border-radius: 26px; overflow: hidden; box-shadow: 0 24px 54px rgba(0,0,0,.16); background: #111;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.social-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px;
}
.social-card {
  display: flex; align-items: center; gap: 16px; padding: 24px; background: #fff; border-radius: var(--radius); border: 1px solid rgba(18,20,26,.08); box-shadow: 0 14px 34px rgba(0,0,0,.05);
}
.social-icon {
  width: 58px; height: 58px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center; color: #111; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex: 0 0 58px;
}
.social-icon svg { width: 28px; height: 28px; }
.social-card h3 { margin: 0 0 2px; }
.social-card p { margin: 0; color: #576070; }
.contact-section { background: linear-gradient(180deg, #fff 0%, #faf8f4 100%); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: start; }
.contact-list { display: grid; gap: 10px; margin: 24px 0 28px; }
.contact-list a, .contact-list p {
  margin: 0; padding: 14px 16px; border-radius: 16px; background: #fff; border: 1px solid rgba(18,20,26,.08); box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
.map-frame {
  border-radius: 24px; overflow: hidden; min-height: 320px; box-shadow: 0 24px 54px rgba(0,0,0,.1);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.contact-form {
  background: #fff; border-radius: 28px; padding: 28px; border: 1px solid rgba(18,20,26,.08); box-shadow: 0 24px 54px rgba(0,0,0,.08);
}
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { font-weight: 700; }
.field input, .field textarea {
  width: 100%; border: 1px solid #d6dbe3; border-radius: 16px; padding: 14px 16px; outline: 0; transition: border-color .25s ease, box-shadow .25s ease; background: #fff;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(214,160,64,.14); }
.form-note { margin: 14px 0 0; color: #5d6470; font-size: .95rem; }
.site-footer { background: #0f1014; color: rgba(255,255,255,.88); padding: 26px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.footer-logo { width: 120px; }
.site-footer a { color: var(--accent-2); }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #25d366; color: white; box-shadow: 0 18px 30px rgba(0,0,0,.25); z-index: 1000;
}
.floating-whatsapp svg { width: 34px; height: 34px; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 1200;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: min(100%, 980px); max-height: 86vh; border-radius: 20px; box-shadow: 0 20px 55px rgba(0,0,0,.35); }
.lightbox-close {
  position: absolute; top: 16px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
}
@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 6px; padding: 14px; background: rgba(15,16,20,.98); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; border-radius: 12px; }
  .site-nav a:hover { background: rgba(255,255,255,.06); }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; }
  .hero-content { padding: 128px 0 70px; }
  .two-col, .video-wrap, .contact-grid, .section-head { grid-template-columns: 1fr; display: grid; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .brand img { width: 138px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(9,11,16,.78) 0%, rgba(9,11,16,.62) 36%, rgba(9,11,16,.75) 100%); }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .feature-grid, .social-grid { grid-template-columns: 1fr; }
  .gallery-grid { gap: 12px; }
  .section { padding: 72px 0; }
  .contact-form { padding: 22px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-points { gap: 10px; }
  .hero-points li { width: 100%; text-align: center; }
  .floating-whatsapp { width: 58px; height: 58px; right: 14px; bottom: 14px; }
}
