:root {
  --wine: #7a1c1c;
  --wine-deep: #4a1010;
  --ink: #161210;
  --cream: #f4ece1;
  --paper: #fffaf3;
  --gold: #c4a35a;
  --gold-soft: #e8d5a3;
  --muted: #6f6559;
  --line: rgba(196, 163, 90, 0.35);
  --shadow: 0 24px 60px rgba(22, 18, 16, 0.18);
  --radius: 18px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

h1, h2, h3, .serif { font-family: "Cormorant Garamond", Georgia, serif; }

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: 0.95; font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; font-weight: 600; }
h3 { font-size: 1.55rem; font-weight: 600; }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }

.skip {
  position: absolute;
  left: -999px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
}

.skip:focus { left: 12px; top: 12px; z-index: 80; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(22, 18, 16, 0.88);
  color: var(--cream);
  border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--gold);
}

.logo strong { display: block; font-size: 0.95rem; letter-spacing: 0.04em; }
.logo small { color: var(--gold-soft); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a { font-size: 0.92rem; opacity: 0.88; }
.nav a:hover, .nav a.active { opacity: 1; color: var(--gold-soft); }

.nav-drop { position: relative; }
.nav-drop summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.92rem;
  opacity: 0.88;
}
.nav-drop summary::-webkit-details-marker { display: none; }
.nav-drop div {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  background: #1d1714;
  border: 1px solid var(--line);
  min-width: 180px;
  padding: 10px 0;
  display: grid;
}
.nav-drop div a { padding: 8px 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-wine { background: var(--wine); color: white; }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.btn-dark { background: var(--ink); color: var(--cream); }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 8px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  color: var(--cream);
  display: grid;
  place-items: end start;
  overflow: hidden;
}

.hero video, .hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,18,16,0.25) 0%, rgba(22,18,16,0.72) 70%, rgba(22,18,16,0.9) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero p { max-width: 52ch; margin-top: 18px; font-size: 1.12rem; }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--cream);
}

.trust article {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
}

/* Sections */
.section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 42px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.frame img, .frame video { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.caption-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(22,18,16,0.82);
  color: var(--cream);
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
}

.grid-3, .grid-4, .cards { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white;
  border: 1px solid #eee4d6;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22,18,16,0.05);
}

.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card-body p { color: var(--muted); margin-top: 8px; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
}

.cuts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.cuts li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #efe6d8;
  font-size: 0.95rem;
}

.cuts b { font-weight: 600; }

.band {
  background: var(--wine-deep);
  color: var(--cream);
  padding: 72px 0;
}

.timeline { display: grid; gap: 0; }
.timeline article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.quote {
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.video-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-block iframe, .video-block video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.form {
  display: grid;
  gap: 14px;
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid #eee4d6;
}

label { font-size: 0.86rem; font-weight: 600; }
input, textarea, select {
  width: 100%;
  border: 1px solid #e4d9c8;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdf9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.info-list { display: grid; gap: 18px; }
.info-list p { color: var(--muted); }

.legal {
  padding: 64px 0 100px;
  max-width: 860px;
}
.legal h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 8px 0 18px; }
.legal h2 { font-size: 1.6rem; margin: 32px 0 10px; }
.legal p, .legal li { color: #3f382f; margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }

.ads-table, .kw-wrap {
  background: white;
  border: 1px solid #eee4d6;
  border-radius: var(--radius);
  overflow: hidden;
}

.ads-row, .kw-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #f0e7d8;
}

.count { font-variant-numeric: tabular-nums; color: var(--muted); font-size: 0.82rem; }
.copy {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.8rem;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--cream);
  border: 1px solid #e8dcc8;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.footer h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 12px; }
.footer a { opacity: 0.82; display: block; margin: 6px 0; }
.footer small, .fine { color: #b7ad9f; font-size: 0.82rem; }

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #25d366;
  color: #083b1a;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.cookies {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  background: #1d1714;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: none;
  max-width: 720px;
  margin-inline: auto;
}

.cookies.show { display: block; }
.cookies p { margin: 8px 0 14px; color: #ddd3c6; }

.notice {
  background: #eef7ee;
  color: #1d4a2a;
  padding: 12px 14px;
  border-radius: 12px;
  display: none;
}

@media (max-width: 980px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 78px 0 auto;
    background: #1d1714;
    padding: 18px 24px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .nav-drop div { position: static; border: 0; padding: 8px 0 0 12px; }
  .trust, .grid-3, .grid-4, .split, .contact-grid, .footer-grid, .timeline article, .cuts {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 78vh; }
}

@media (max-width: 640px) {
  .ads-row, .kw-item { grid-template-columns: 1fr; }
}
