:root {
  --wine: #c30052;
  --wine-strong: #a30046;
  --ink: #1a0b0b;
  --text: #222222;
  --muted: #5b5b5b;
  --bg: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

[data-aos] {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.no-aos [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

img {
  max-width: 100%;
  display: block;
}

.top-bar {
  width: 100%;
  background: var(--white);
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 7vw;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}

.top-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-info .dot {
  width: 8px;
  height: 8px;
  background: var(--wine);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(195, 0, 82, 0.1);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-actions .wa {
  color: var(--wine);
  font-weight: 700;
}

.hero {
  position: relative;
  z-index: 0;
  padding: 110px 7vw 140px;
  color: var(--white);
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0e0a10;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px 10px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  width: fit-content;
  max-width: 100%;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}

.brand-logo {
  display: block;
  height: 100px;
  width: auto;
}

.nav-links {
  display: none;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.5);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 18px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(195, 0, 82, 0.35);
}

.btn.primary:hover {
  background: var(--wine-strong);
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn.ghost {
  background: var(--white);
  color: var(--ink);
  border-color: transparent;
}

.btn.ghost:hover {
  box-shadow: var(--shadow);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

main {
  background: radial-gradient(circle at 10% 20%, rgba(195, 0, 82, 0.05), transparent 35%), radial-gradient(circle at 90% 10%, rgba(26, 11, 11, 0.06), transparent 35%), var(--white);
}

.hero-video {
  padding-top: 120px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: url('banners dF/AdobeStock_247450116.jpeg') center/cover no-repeat;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)), radial-gradient(circle at 12% 8%, rgba(195, 0, 82, 0.26), transparent 30%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.18), transparent 35%);
  pointer-events: none;
  z-index: 1;
}

.hero-centered {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
}

.hero-sub-compact {
  margin: 0 auto 16px;
  max-width: 620px;
}

.hero-actions-center {
  justify-content: center;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
  margin: 18px auto 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

section {
  padding: 90px 7vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-header p {
  color: var(--muted);
}

.gallery-group {
  margin-bottom: 28px;
}

.gallery-group .group-title {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--ink);
  text-align: left;
}

.collection .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.82)), var(--bg, #ccc);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-bar {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(195, 0, 82, 0.1), rgba(26, 11, 11, 0.08));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
  background: linear-gradient(120deg, rgba(195, 0, 82, 0.04), rgba(26, 11, 11, 0.02));
}

.about-media {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  height: 420px;
  background: linear-gradient(120deg, rgba(26, 11, 11, 0.6), rgba(26, 11, 11, 0.25)), url('banners dF/AdobeStock_1780568748.jpeg') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 220px;
}

.about-badge strong {
  color: var(--wine);
  font-size: 20px;
}

.about-content p {
  color: var(--muted);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.about-points div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  background: #ddd;
}

.gallery-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonials {
  background: linear-gradient(180deg, rgba(26, 11, 11, 0.06), rgba(195, 0, 82, 0.05));
}

.testimonial-slider {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-size: 20px;
  color: var(--ink);
}

.testimonial-author {
  color: var(--wine);
  font-weight: 700;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dots button.active {
  background: var(--wine);
  transform: scale(1.1);
}

.cta-section {
  background: var(--bg);
}

.cta-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  align-items: center;
}

.cta-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.cta-meta div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-side {
  background: linear-gradient(135deg, rgba(195, 0, 82, 0.05), rgba(26, 11, 11, 0.03));
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
}

.lead-form {
  background: radial-gradient(circle at 15% 15%, rgba(195, 0, 82, 0.07), transparent 35%), var(--white);
}

.lead-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  font-size: 14px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.form input {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #ddd;
  font-family: inherit;
}

.form input:focus {
  outline: 2px solid rgba(195, 0, 82, 0.2);
  border-color: rgba(195, 0, 82, 0.3);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq {
  background: var(--bg);
}

.faq-items {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  margin-top: 10px;
}

.footer {
  background: #f7f7f7;
  color: var(--ink);
  padding: 50px 7vw 30px;
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer a {
  color: var(--ink);
}

.footer .brand-mark { color: var(--ink); }
.footer .brand-o { color: var(--wine); }

.footer-copy {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.floating-wa {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 15;
}

.floating-wa .wa-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

  section {
    padding: 70px 6vw;
  }

  .hero {
    padding-top: 40px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .map-embed {
    min-height: 240px;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: none;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 240px;
  }

  .floating-wa {
    left: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }

  section {
    padding: 60px 5vw;
  }
}
