
:root {
  --bg: #0b0909;
  --bg-soft: #151010;
  --surface: rgba(255,255,255,.05);
  --surface-strong: rgba(255,255,255,.08);
  --text: #f8f3ef;
  --muted: #d7c8be;
  --red: #d31319;
  --red-deep: #93080d;
  --gold: #f4c96b;
  --line: rgba(255,255,255,.11);
  --radius: 26px;
  --shadow: 0 24px 60px rgba(0,0,0,.34);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: 'Inter', sans-serif; color: var(--text);
  background: radial-gradient(circle at top left, rgba(211,19,25,.14), transparent 28%), linear-gradient(180deg, #0b0909, #140f0f 45%, #0c0909 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; margin: 0 0 14px; line-height: .95; }
h1 { font-size: clamp(2.7rem, 7vw, 5.9rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.45rem, 3vw, 2rem); }
p { margin: 0; line-height: 1.7; color: var(--muted); }
.header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(18px);
  background: rgba(10,8,8,.72); border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 84px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 62px; height: 62px; object-fit: contain; border-radius: 18px; box-shadow: 0 10px 30px rgba(211,19,25,.22); }
.brand strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: .9; }
.brand span { display: block; color: #f2dede; font-size: .9rem; margin-top: 3px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; padding: 5px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.06);
}
.lang-btn {
  border: 0; background: transparent; color: #fff; padding: 8px 14px; border-radius: 999px; cursor: pointer; font-weight: 700;
}
.lang-btn.active { background: linear-gradient(135deg, var(--red), var(--red-deep)); }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: #f8f2ee; font-weight: 600; }
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.nav-cta { padding: 12px 18px; background: linear-gradient(135deg, var(--red), var(--red-deep)); box-shadow: 0 16px 35px rgba(211,19,25,.26); }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: transparent; color: white; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { display:block; width:20px; height:2px; background:#fff; border-radius:999px; }
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; }
.hero-media {
  position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.3), rgba(0,0,0,.18)), url('../images/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,6,.42), rgba(8,6,6,.78) 68%, #0b0909 100%), radial-gradient(circle at 50% 15%, rgba(255,255,255,.08), transparent 24%);
}
.hero-content { position: relative; z-index: 1; padding: 144px 0 84px; max-width: 920px; }
.eyebrow, .section-tag, .social-badge {
  display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.08); color: #fff; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem;
}
.eyebrow { margin-bottom: 20px; }
.hero p { max-width: 720px; font-size: 1.08rem; color: #f2e1d8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { padding: 16px 26px; }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-deep)); color:#fff; box-shadow: 0 18px 35px rgba(211,19,25,.24); }
.btn-secondary { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); color: #fff; }
.btn-full { width: 100%; border: 0; cursor: pointer; }
.hero-cards, .cards-grid, .social-grid, .contact-grid { display: grid; gap: 20px; }
.hero-cards { grid-template-columns: repeat(3, minmax(0,1fr)); 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,.09); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-cards article { padding: 22px; }
.hero-cards strong { display: block; margin-bottom: 8px; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-copy { margin-top: 6px; }
.split-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 32px; color: #f1e5dc; }
.check-list li::before { content:'✓'; position:absolute; left:0; top:0; width:22px; height:22px; border-radius:50%; display:grid; place-items:center; background: rgba(211,19,25,.18); color: var(--gold); font-weight:800; }
.intro-card { padding: 14px; }
.intro-card img { border-radius: 20px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.cards-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-card { padding: 30px; }
.service-icon { width: 60px; height: 60px; border-radius: 18px; display:grid; place-items:center; background: rgba(211,19,25,.16); font-size: 1.7rem; margin-bottom: 18px; }
.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:22px; min-height:220px; box-shadow: var(--shadow); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-layout { align-items: center; }
.video-frame { border-radius: 30px; overflow:hidden; background:#000; border:1px solid rgba(255,255,255,.1); min-height: 560px; box-shadow: var(--shadow); }
.video-frame iframe { width:100%; height:100%; min-height:560px; border:0; }
.social-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.social-card { padding: 30px; position: relative; overflow:hidden; }
.social-card::after { content:''; position:absolute; right:-16px; bottom:-26px; width:180px; height:180px; border-radius:50%; background: radial-gradient(circle, rgba(211,19,25,.18), transparent 65%); }
.social-card img { width: 76px; height: 76px; object-fit: contain; margin: 18px 0; }
.contact-grid { grid-template-columns: 1fr .98fr; align-items:start; }
.contact-panel, .form-panel { padding: 30px; }
.contact-list { display:grid; gap: 14px; margin: 22px 0; }
.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:24px; }
.contact-form { display:grid; gap:16px; }
.contact-form label { display:grid; gap:9px; color:#fff; 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: #fff; padding: 16px 18px; outline:none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #c8b0a5; }
.footer { padding: 24px 0 36px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { text-align:center; }
.footer a { color: var(--gold); }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; width: 62px; height:62px; border-radius:50%; z-index:55; display:grid; place-items:center;
  background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 20px 34px rgba(34,197,94,.28);
}
.floating-whatsapp svg { width: 34px; height:34px; fill:#fff; }
.lightbox {
  position: fixed; inset:0; z-index:80; padding:24px; display:grid; place-items:center; background: rgba(0,0,0,.9); opacity:0; pointer-events:none; transition: opacity .24s ease;
}
.lightbox.is-open { opacity:1; pointer-events:auto; }
.lightbox figure { margin:0; }
.lightbox img { max-width:min(100%, 1080px); max-height:78vh; border-radius:20px; box-shadow: var(--shadow); }
.lightbox p { margin-top:14px; text-align:center; color:#fff; }
.lightbox-close { position:absolute; top:14px; right:14px; width:48px; height:48px; border-radius:50%; border:0; background: rgba(255,255,255,.14); color:#fff; font-size:2rem; cursor:pointer; }
.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:.08s; }
.delay-2 { transition-delay:.16s; }
@media (max-width: 980px) {
  .menu-toggle { display:inline-flex; }
  .nav {
    position:absolute; top: calc(100% + 10px); left: 0; right: 0; display:none; flex-direction:column; align-items:stretch;
    background: rgba(12,9,9,.97); border:1px solid var(--line); border-radius: 24px; padding: 18px; box-shadow: var(--shadow);
  }
  .nav.is-open { display:flex; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 128px; }
  .hero-cards, .cards-grid, .social-grid, .contact-grid, .split-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-frame, .video-frame iframe { min-height: 430px; }
}
@media (max-width: 680px) {
  .container { width: calc(100% - 22px); }
  .section { padding: 74px 0; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 52px; height: 52px; }
  .brand strong { font-size: 1.7rem; }
  .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; }
  .video-frame, .video-frame iframe { min-height: 320px; }
  .floating-whatsapp { width:58px; height:58px; }
}
