:root {
  --wine: #6d0f28;
  --wine-dark: #4e081b;
  --wine-soft: #8a2742;
  --rose: #c26a7f;
  --sand: #f5edf0;
  --white: #ffffff;
  --text: #2d1b22;
  --muted: #6b5660;
  --shadow: 0 18px 45px rgba(77, 8, 27, 0.18);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(109,15,40,.1);
  color: var(--wine);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-tag.light { background: rgba(255,255,255,.15); color: var(--white); }
h1,h2,h3 { margin: 0 0 16px; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 4vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3vw, 3rem); font-family: 'Playfair Display', serif; }
p { margin: 0 0 18px; line-height: 1.75; color: var(--muted); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px; border-radius: 999px; font-weight: 700;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--wine); color: var(--white); box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn-light { background: var(--white); color: var(--wine); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(109,15,40,.08);
}
.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: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.brand strong { display:block; color: var(--wine-dark); }
.brand span { display:block; color: var(--muted); font-size:.83rem; }
.site-nav { display:flex; align-items:center; gap: 20px; }
.site-nav a { color: var(--wine-dark); font-weight: 600; font-size:.95rem; }
.lang-switch { display:flex; gap: 8px; }
.lang-btn {
  border: 1px solid rgba(109,15,40,.2); background: #fff; color: var(--wine-dark);
  border-radius: 999px; padding: 8px 12px; cursor: pointer; font-weight: 700;
}
.lang-btn.active { background: var(--wine); color: var(--white); border-color: var(--wine); }
.menu-toggle { display:none; background:none; border:none; font-size:1.7rem; color: var(--wine-dark); }
.hero { position: relative; min-height: 88vh; display:flex; align-items:center; overflow:hidden; }
.hero-bg, .hero-overlay { position:absolute; inset:0; }
.hero-bg { width:100%; height:100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(60,0,15,.82) 0%, rgba(60,0,15,.52) 45%, rgba(60,0,15,.28) 100%); }
.hero-content { position:relative; z-index:2; color: var(--white); max-width: 760px; padding: 80px 0; }
.hero-content p { color: rgba(255,255,255,.88); max-width: 640px; }
.eyebrow { display:inline-block; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 700; color: #ffd9e2; }
.hero-actions { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 28px; }
.two-col { display:grid; grid-template-columns: 1.2fr .9fr; gap: 38px; align-items:center; }
.card, .stat-card, .social-card, .contact-form { background:#fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.highlight-card { overflow:hidden; }
.highlight-card img { width:100%; aspect-ratio: 1/1; object-fit: cover; }
.card-body { padding: 24px; }
.stats { background: linear-gradient(180deg, var(--sand), #fff); }
.section-heading.centered { text-align:center; max-width: 760px; margin: 0 auto 40px; }
.stat-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { padding: 28px; }
.stat-card h3 { color: var(--wine); font-size: 1.15rem; }
.social-wrap, .video-wrap, .contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items:center; }
.social-list { display:grid; gap: 18px; }
.social-card { display:flex; align-items:center; gap: 18px; padding: 26px; }
.social-card img { width:76px; height:76px; border-radius:50%; object-fit:cover; }
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  border:none; padding:0; background:none; cursor:pointer; border-radius: 18px; overflow:hidden;
  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-frame { position:relative; padding-top: 56.25%; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.video-frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.cta-section { padding-top: 24px; }
.cta-box {
  background: linear-gradient(135deg, var(--wine-dark), var(--wine-soft)); color: var(--white);
  border-radius: 30px; padding: 44px; display:flex; justify-content:space-between; align-items:center; gap: 20px;
}
.cta-box h2 { max-width: 720px; }
.contact-list { display:grid; gap: 12px; margin-top: 18px; }
.contact-list a, .contact-list p { padding: 14px 18px; background: var(--sand); border-radius: 16px; color: var(--text); margin:0; }
.contact-form { padding: 26px; display:grid; gap: 16px; }
.contact-form label { display:grid; gap: 8px; font-weight: 600; color: var(--wine-dark); }
.contact-form input, .contact-form textarea {
  width:100%; border:1px solid rgba(109,15,40,.15); border-radius: 16px; padding: 14px 16px; outline:none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(109,15,40,.08); }
.site-footer { background: var(--wine-dark); color: rgba(255,255,255,.88); padding: 24px 0; }
.footer-wrap { display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; }
.footer-wrap a { color: #fff; }
.floating-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; display:grid; gap: 12px;
}
.fab {
  min-width: 132px; padding: 14px 18px; border-radius: 999px; font-weight: 800; text-align:center;
  box-shadow: var(--shadow); color:#fff;
}
.fab-call { background: var(--wine); }
.fab-wa { background: #1fa855; }
.lightbox {
  position: fixed; inset:0; background: rgba(18,8,12,.88); display:none; place-items:center; padding: 24px; z-index: 90;
}
.lightbox.open { display:grid; }
.lightbox img { max-width:min(100%, 1000px); max-height: 85vh; border-radius: 18px; }
.lightbox-close {
  position:absolute; top:20px; right:20px; width:48px; height:48px; border:none; border-radius:50%;
  font-size:2rem; background:#fff; color: var(--wine-dark); cursor:pointer;
}
@media (max-width: 980px) {
  .site-nav {
    position:absolute; top:82px; left:0; right:0; background:#fff; padding: 18px 16px; border-bottom:1px solid rgba(109,15,40,.08);
    display:none; flex-direction:column; align-items:flex-start;
  }
  .site-nav.open { display:flex; }
  .menu-toggle { display:block; }
  .two-col, .social-wrap, .video-wrap, .contact-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-box { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 720px) {
  .hero { min-height: 78vh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(60,0,15,.76) 0%, rgba(60,0,15,.58) 48%, rgba(60,0,15,.62) 100%); }
  .two-col, .social-wrap, .video-wrap, .contact-grid, .stat-grid, .gallery-grid { grid-template-columns: 1fr; }
  .social-card { flex-direction:column; align-items:flex-start; }
  .brand span { display:none; }
  .floating-actions { right: 12px; bottom: 12px; }
  .fab { min-width: auto; }
  .section { padding: 68px 0; }
}
