:root {
  --wine: #6a1e2a;
  --wine-deep: #4a111d;
  --gold: #b58b45;
  --paper: #f8f4ee;
  --ink: #23181b;
  --muted: #6f6264;
  --line: rgba(35, 24, 27, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px min(5vw, 56px);
  background: rgba(248, 244, 238, 0.94);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; border: 0; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand strong { display: block; color: var(--wine); font-size: 20px; letter-spacing: 0.02em; }
.brand span { display: block; color: var(--gold); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 22px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.nav__links a { text-decoration: none; border-bottom: 1px solid transparent; }
.nav__links a:hover { border-color: var(--gold); }
.hero {
  min-height: 74vh;
  display: grid; align-items: center;
  padding: 84px min(7vw, 92px);
  color: var(--paper);
  background: linear-gradient(90deg, rgba(74,17,29,0.94), rgba(106,30,42,0.78)), var(--hero-image) center/cover;
}
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; }
h1, h2 { margin: 0; line-height: 0.98; text-transform: uppercase; }
h1 { max-width: 900px; font-size: clamp(46px, 8vw, 104px); letter-spacing: 0.01em; }
h1 .gold, h2 .gold { color: #f8d48e; }
.hero p { max-width: 680px; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.55; color: rgba(248,244,238,0.84); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px;
  text-decoration: none; border: 0;
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--wine { background: var(--wine); color: var(--paper); }
.btn--ghost { box-shadow: inset 0 0 0 1px rgba(248,244,238,0.45); color: var(--paper); }
.section { padding: 82px min(7vw, 92px); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 190px;
}
.card h3 { margin: 0 0 12px; color: var(--wine); font-size: 21px; }
.card p, .lead { color: var(--muted); line-height: 1.65; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split img { width: 100%; height: auto; display: block; border: 1px solid var(--line); }
.quote { background: var(--wine-deep); color: var(--paper); }
.quote p { max-width: 720px; color: rgba(248,244,238,0.78); line-height: 1.7; }
.footer { padding: 34px min(7vw, 92px); background: var(--ink); color: rgba(248,244,238,0.72); }
@media (max-width: 760px) {
  .nav { padding: 14px 18px; }
  .nav__links { display: none; }
  .hero, .section { padding-left: 24px; padding-right: 24px; }
  .grid, .split { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}
