:root {
  --primary: #bc160f;
  --primary-dark: #7a0f0b;
  --accent: #1b1b1b;
  --bg: #fff9f8;
  --surface: #ffffff;
  --text: #1f1f1f;
  --muted: #6a6767;
  --line: rgba(188, 22, 15, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; box-shadow: 0 6px 18px rgba(0,0,0,.14); }
.brand strong { display: block; font-size: 1.05rem; }
.brand span { display: block; font-size: .84rem; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { font-weight: 500; }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; }
.nav-toggle span { display:block; width:28px; height:2px; background:var(--accent); margin:6px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: 0; padding: 14px 22px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 14px 30px rgba(188, 22, 15, .22);
}
.btn-sm { padding: 10px 16px; }
.btn-outline {
  background: transparent; color: var(--primary); border: 1.5px solid rgba(188,22,15,.35); box-shadow:none;
}
.hero { position: relative; min-height: 88svh; display: flex; align-items: center; overflow: hidden; background: #120d0d; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 7, 7, 0.88) 0%, rgba(12, 7, 7, 0.72) 36%, rgba(12, 7, 7, 0.38) 64%, rgba(12, 7, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.32) 100%);
}
.hero-content {
  position: relative; z-index: 1; color: #fff; max-width: 760px; padding: 90px 0;
  background: linear-gradient(135deg, rgba(0,0,0,.34), rgba(0,0,0,.16));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 34px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(2px);
}
.eyebrow {
  display:inline-block; margin-bottom: 16px; padding: 8px 14px; border:1px solid rgba(255,255,255,.28); border-radius:999px; background:rgba(255,255,255,.12);
  color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 6vw, 5.5rem); line-height: .95; margin: 0 0 18px;
  color: #fff; text-shadow: 0 4px 22px rgba(0,0,0,.58);
}
.hero p {
  font-size: 1.1rem; max-width: 620px; color: rgba(255,255,255,.98);
  text-shadow: 0 2px 14px rgba(0,0,0,.48);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.strip { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-grid, .two-col, .video-grid, .contact-grid, .social-grid { display:grid; gap: 34px; }
.intro-grid, .two-col, .video-grid, .social-grid { grid-template-columns: 1.08fr .92fr; }
.intro-grid { padding: 42px 0; align-items: center; }
.contact-card, .feature-card, .pillar, .social-card, .contact-form, .video-frame {
  background: var(--surface); border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius); box-shadow: var(--shadow);
}
.contact-card { padding: 24px; }
.section { padding: 84px 0; }
.alt { background: linear-gradient(180deg, #fff9f8 0%, #fff 100%); }
.section-tag {
  color: var(--primary); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
}
.section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: .98; margin: 10px 0 20px; }
.feature-stack { display: grid; gap: 18px; }
.feature-card { padding: 24px; }
.feature-card h3, .pillar h3 { margin-top: 0; margin-bottom: 8px; }
.pillars { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.pillar { padding: 24px; }
.gallery-grid {
  margin-top: 24px; display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-item {
  padding: 0; border: 0; background: none; border-radius: 24px; 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.05); }
.video-grid, .social-grid { align-items: center; }
.video-frame { overflow: hidden; min-height: 420px; }
.video-frame iframe, .map-frame iframe, .social-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.social-card { overflow: hidden; min-height: 500px; }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.contact-list { display:grid; gap: 10px; margin: 22px 0 28px; }
.contact-list a { font-weight: 600; color: var(--primary-dark); }
.map-frame { border-radius: var(--radius); overflow:hidden; min-height: 300px; box-shadow: var(--shadow); }
.contact-form { padding: 28px; display:grid; gap: 14px; }
.contact-form label { display:grid; gap: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(0,0,0,.1); border-radius: 16px; padding: 14px 16px; font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(188,22,15,.2); border-color: var(--primary); }
.site-footer { background: #111; color: #fff; padding: 22px 0; }
.footer-wrap { display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .95rem; }
.footer-wrap a { color: #fff; text-decoration: underline; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 25; width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 18px 35px rgba(37,211,102,.35);
}
.whatsapp-float svg { width: 31px; height: 31px; fill: #fff; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none; align-items: center; justify-content: center; z-index: 30; padding: 20px;
}
.lightbox.open { display:flex; }
.lightbox img { max-width: min(96vw, 900px); max-height: 86vh; border-radius: 20px; box-shadow: 0 18px 40px rgba(0,0,0,.3); }
.lightbox-close {
  position:absolute; top:18px; right:18px; width:46px; height:46px; border-radius:50%; border:0; background:#fff; font-size:1.9rem; cursor:pointer;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .intro-grid, .two-col, .video-grid, .contact-grid, .social-grid, .pillars, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 7, 7, 0.82) 0%, rgba(12, 7, 7, 0.58) 52%, rgba(12, 7, 7, 0.42) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.26) 100%);
  }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); background: rgba(255,255,255,.98); border-radius: 24px; padding: 16px;
    border: 1px solid rgba(0,0,0,.08); box-shadow: var(--shadow); display:none; flex-direction: column; align-items: flex-start;
  }
  .main-nav.open { display:flex; }
  .intro-grid, .two-col, .video-grid, .contact-grid, .social-grid, .pillars, .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80svh; }
  .hero-content { padding: 26px 22px; }
  .hero h1 { line-height: 1; }
  .section { padding: 68px 0; }
  .video-frame iframe, .social-card iframe { min-height: 320px; }
  .brand strong { font-size: .98rem; }
  .brand span { font-size: .76rem; }
  .footer-wrap { flex-direction: column; }
}
