:root {
  --bg: #0a0a0b;
  --bg-alt: #131315;
  --bg-card: #1a1a1d;
  --text: #f5f3f0;
  --text-dim: #a9a49e;
  --accent: #e5222a;
  --accent-dim: #9c1a1f;
  --gold: #d4af37;
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-logo, .offer-num, .about-badge-num {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.accent { color: var(--accent); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,10,11,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: #25D366;
  color: #0a0a0b;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { background: #2fe075; transform: translateY(-1px); }

@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 100px;
  overflow: hidden;
  background: #0a0a0b;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 46%, rgba(0,0,0,0.72), rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.75) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.35) 65%, rgba(10,10,11,0.95) 100%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-eyebrow .dash { width: 24px; height: 2px; background: var(--gold); display: inline-block; }
.hero-title {
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.92;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-sub {
  color: var(--text-dim);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 480px;
  margin: 0 auto 38px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: #25D366;
  color: #0a0a0b;
}
.btn-primary:hover { background: #2fe075; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: var(--text); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  font-weight: 600;
}
.hero-scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

/* ===== INFO STRIP ===== */
.info {
  background: var(--bg-alt);
  padding: 56px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.info-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.info-card h3 {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.info-card p { color: var(--text-dim); margin-bottom: 4px; }
.info-card p a { color: var(--text); font-weight: 600; }
.info-card p a:hover { color: var(--accent); }
.info-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.center { text-align: center; }

/* ===== OFFER (numbered grid) ===== */
.offer { padding: 100px 20px 90px; max-width: var(--max); margin: 0 auto; }
.offer-title { font-size: clamp(30px, 5vw, 48px); margin-bottom: 50px; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.offer-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
  transition: background 0.2s ease;
}
.offer-card:hover { background: #1f1f23; }
.offer-num {
  display: block;
  font-size: 44px;
  color: rgba(255,255,255,0.12);
  margin-bottom: 14px;
}
.offer-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.offer-card p { color: var(--text-dim); font-size: 15px; }

/* ===== ABOUT ===== */
.about { padding: 100px 20px; }
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo .photo-placeholder,
.gallery-item.placeholder {
  background: repeating-linear-gradient(45deg, #1c1c1f, #1c1c1f 10px, #232326 10px, #232326 20px);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.15);
}
.about-photo .photo-placeholder { aspect-ratio: 4/5; }
.about-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(229,34,42,0.35);
}
.about-badge-num { font-size: 34px; line-height: 1; }
.about-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-text h2 { font-size: clamp(30px, 4.2vw, 44px); margin-bottom: 20px; line-height: 1.05; }
.about-text p { color: var(--text-dim); margin-bottom: 16px; }
.about-cta { margin-top: 8px; }

/* ===== HIGHLIGHTS / GALLERY ===== */
.highlights { padding: 100px 20px; background: var(--bg-alt); }
.highlights h2 { font-size: clamp(30px, 4.2vw, 44px); margin-bottom: 10px; }
.highlights-sub { color: var(--text-dim); margin-bottom: 44px; }
.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; }

/* ===== SOCIAL BANNER ===== */
.social-banner { padding: 100px 20px; text-align: center; }
.social-banner h2 { font-size: clamp(30px, 4.2vw, 44px); margin: 6px 0 36px; }
.social-row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.social-link:hover { border-color: var(--accent); background: rgba(229,34,42,0.08); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.social-link-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #0a0a0b;
}
.social-link-whatsapp:hover {
  background: #2fe075;
  border-color: #2fe075;
  color: #0a0a0b;
}

/* ===== FOOTER ===== */
.footer {
  padding: 44px 20px 56px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--text-dim);
  font-size: 14px;
}
.footer-cta {
  display: inline-block;
  margin-top: 14px;
  color: #25D366;
  font-weight: 700;
}
.footer-cta:hover { color: #2fe075; }

/* ===== RESPONSIVE / MOBILE OPTIMIZATION ===== */
@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo .photo-placeholder { aspect-ratio: 16/10; }
  .about-photo img { aspect-ratio: 4/3; }
  .about-badge { width: 92px; height: 92px; bottom: -14px; right: 14px; }
  .about-badge-num { font-size: 26px; }
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 12px 16px; }
  .nav-logo { font-size: 17px; }
  .nav-cta { padding: 11px 18px; font-size: 12.5px; }
  .hero { padding: 100px 16px 80px; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .btn { padding: 16px 24px; font-size: 15px; }
  .info, .offer, .about, .highlights, .social-banner { padding-left: 16px; padding-right: 16px; }
  .offer { padding-top: 70px; padding-bottom: 60px; }
  .about { padding-top: 70px; padding-bottom: 70px; }
  .highlights { padding-top: 70px; padding-bottom: 70px; }
  .social-banner { padding-top: 70px; padding-bottom: 70px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .social-row { gap: 10px; }
  .social-link { padding: 11px 16px; font-size: 14px; }
}

/* Respect users who've asked for reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; }
}
