:root {
  --bg: #0e0b0b;
  --bg-soft: #171212;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #f8f1ea;
  --muted: #cfbeb5;
  --line: rgba(255,255,255,0.12);
  --red: #c90f14;
  --red-strong: #eb1d23;
  --gold: #d4b17c;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201,15,20,.16), transparent 28%),
    radial-gradient(circle at top right, rgba(212,177,124,.08), transparent 24%),
    var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--gold); background: rgba(255,255,255,0.04); font-size: .9rem; margin-bottom: 18px;
}
.section-heading { max-width: 760px; margin-bottom: 36px; }
h1, h2, h3, .brand strong {
  font-family: 'Cormorant Garamond', serif;
  line-height: .98;
  margin: 0 0 16px;
}
h1 { font-size: clamp(3rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2rem); }
p { color: var(--muted); line-height: 1.75; margin: 0; }
.site-shell { overflow: hidden; }
.header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(14,11,11,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(201,15,20,.35)); }
.brand strong { display: block; font-size: 2rem; margin: 0; }
.brand span { display: block; color: var(--muted); font-size: .9rem; margin-top: -2px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: #f8efe6; font-weight: 600; transition: .25s ease; }
.nav a:hover { color: var(--gold); }
.nav-cta {
  padding: 12px 18px; background: linear-gradient(135deg, var(--red), var(--red-strong));
  border-radius: 999px; box-shadow: 0 10px 30px rgba(201,15,20,.28);
}
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,.04); align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: white; }
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.08)), url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(14,11,11,.35) 0%, rgba(14,11,11,.6) 65%, var(--bg) 100%),
    radial-gradient(circle at 20% 25%, rgba(201,15,20,.28), transparent 22%);
}
.hero-content { position: relative; z-index: 1; padding: 140px 0 72px; max-width: 880px; }
.eyebrow {
  display: inline-flex; padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff;
  margin-bottom: 24px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem;
}
.hero h1 { max-width: 980px; text-wrap: balance; }
.hero p { font-size: 1.08rem; max-width: 720px; color: #f4dfd4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 24px; border-radius: 999px;
  font-weight: 800; letter-spacing: .02em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-strong)); color: #fff; box-shadow: 0 16px 35px rgba(201,15,20,.3); }
.btn-secondary { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; }
.btn-full { width: 100%; border: 0; cursor: pointer; }
.hero-cards {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 38px;
}
.hero-cards article, .intro-card, .service-card, .social-card, .contact-panel, .form-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-cards article { padding: 20px; }
.hero-cards strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.hero-cards span { color: var(--muted); line-height: 1.6; font-size: .95rem; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.check-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.check-list li {
  position: relative; padding-left: 32px; color: #eee1d7; line-height: 1.6;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; background: rgba(201,15,20,.15); color: var(--gold); font-weight: 800;
}
.intro-card { padding: 14px; }
.intro-card img { border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.service-card { padding: 28px; }
.service-icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  background: rgba(201,15,20,.14); font-size: 1.7rem; margin-bottom: 16px;
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.gallery-item {
  border: 0; padding: 0; background: transparent; cursor: zoom-in; overflow: hidden; border-radius: 20px;
  box-shadow: var(--shadow); min-height: 220px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.video-frame {
  border-radius: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
  background: #000; min-height: 540px;
}
.video-frame iframe { width: 100%; height: 100%; min-height: 540px; border: 0; }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.social-card { padding: 30px; position: relative; overflow: hidden; }
.social-card::after {
  content: ''; position: absolute; inset: auto -20% -30% auto; width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,15,20,.18), transparent 65%);
}
.social-card img { width: 76px; height: 76px; object-fit: contain; margin-bottom: 18px; }
.social-badge {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid var(--line);
  color: var(--gold); font-size: .88rem; margin-bottom: 18px;
}
.contact-grid { display: grid; grid-template-columns: 1fr .96fr; gap: 24px; align-items: start; }
.contact-panel, .form-panel { padding: 30px; }
.contact-list { display: grid; gap: 14px; margin-bottom: 22px; }
.contact-list a, .contact-list p {
  padding: 16px 18px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 18px;
}
.map-frame, .map-frame iframe { width: 100%; min-height: 320px; border: 0; border-radius: 22px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 10px; color: #f8efe6; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
  color: white; padding: 16px 18px; outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #ceb8ad; }
.form-note { font-size: .93rem; }
.footer { padding: 22px 0 36px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { text-align: center; }
.footer p { color: #e5d6cd; }
.footer a { color: var(--gold); }
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; width: 62px; height: 62px; border-radius: 50%; z-index: 60;
  display: grid; place-items: center; background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 18px 35px rgba(34,197,94,.28);
}
.floating-whatsapp svg { width: 34px; height: 34px; fill: white; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9); display: grid; place-items: center; padding: 24px; z-index: 100;
  opacity: 0; pointer-events: none; transition: .25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(100%, 1080px); max-height: 78vh; border-radius: 18px; box-shadow: var(--shadow); }
.lightbox p { margin-top: 16px; text-align: center; color: #fff; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12); color: white; font-size: 2rem;
}
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch;
    padding: 18px; background: rgba(14,11,11,.96); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 120px; }
  .hero-cards, .cards-grid, .gallery-grid, .grid-2, .video-wrap, .social-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-frame, .video-frame iframe { min-height: 420px; }
}
@media (max-width: 680px) {
  .section { padding: 74px 0; }
  .container { width: min(100% - 22px, 1120px); }
  .brand strong { font-size: 1.6rem; }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { min-height: 260px; }
  .contact-panel, .form-panel, .service-card, .social-card { padding: 22px; }
  .floating-whatsapp { width: 58px; height: 58px; }
}
