
:root {
  --plum: #34162f;
  --wine: #7a1437;
  --rose: #c94b7c;
  --gold: #f4d37a;
  --cream: #fff8ef;
  --ink: #221a22;
  --muted: #6f6570;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(52, 22, 47, 0.18);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8ef, #fff);
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7vw;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 20, 55, .1);
}
.brand {
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--wine);
}
nav { display: flex; gap: 18px; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--plum);
  font-weight: 600;
}
nav a.active, nav a:hover { color: var(--rose); }

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: var(--plum);
}
.slider, .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 3.5s ease;
}
.slide.active {
  opacity: .75;
  transform: scale(1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(52,22,47,.88), rgba(122,20,55,.48), rgba(52,22,47,.25));
}
.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 18vh 7vw 10vh;
  color: white;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
}
.hero h1, .page h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin: 10px 0;
  line-height: .95;
}
.hero p:not(.eyebrow) {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  text-decoration: none;
  background: rgba(255,255,255,.12);
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold), #fff0b7);
  color: var(--plum);
  border: 0;
}
.slider-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.75);
  color: var(--plum);
  font-size: 2rem;
  cursor: pointer;
}
.slider-btn.prev { left: 22px; }
.slider-btn.next { right: 22px; }

.intro, .videos, .youtube-box, .page {
  padding: 70px 7vw;
}
.intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.intro h2, .section-title h2, .youtube-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 8px 0 14px;
  color: var(--plum);
}
.intro p:not(.eyebrow), .youtube-box p, .contact-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}
.videos {
  background: #fff;
}
.section-title { text-align: center; margin-bottom: 35px; }
.video-category {
  margin: 0 auto 52px;
  max-width: 1180px;
}
.video-category h3 {
  font-size: 1.7rem;
  color: var(--wine);
  border-left: 5px solid var(--gold);
  padding-left: 14px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.video-grid.one { grid-template-columns: minmax(0, 1fr); max-width: 760px; }
iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #000;
}
.youtube-box {
  margin: 60px 7vw;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--plum), var(--wine));
  color: white;
}
.youtube-box p { color: rgba(255,255,255,.82); max-width: 720px; }
.youtube-box h2 { color: white; }

footer {
  text-align: center;
  padding: 30px 7vw;
  background: var(--plum);
  color: rgba(255,255,255,.8);
}

.page { min-height: 70vh; }
.contact-hero {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}
.contact-hero h1 { color: var(--plum); font-size: clamp(2.7rem, 6vw, 5.2rem); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.contact-card, .contact-form-box, .cms-box {
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-card h2 { color: var(--wine); margin-top: 0; }
.contact-card a { color: var(--plum); font-weight: 700; }
.contact-card small { color: var(--muted); }
.contact-form-box, .cms-box { max-width: 860px; margin: 35px auto; }
form, .cms-box { display: grid; gap: 18px; }
label { display: grid; gap: 8px; color: var(--plum); font-weight: 700; }
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(52,22,47,.18);
  font: inherit;
}
.contact-form-box .btn, .cms-box .btn { color: var(--plum); border-color: rgba(52,22,47,.2); }

@media (max-width: 780px) {
  .site-header { align-items: flex-start; gap: 12px; flex-direction: column; }
  .hero { min-height: 68vh; }
  .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .youtube-box { flex-direction: column; align-items: flex-start; margin: 30px 4vw; }
  .intro, .videos, .youtube-box, .page { padding: 48px 5vw; }
}
