:root {
  --wine: #741923;
  --wine-dark: #390a10;
  --wine-soft: #962b36;
  --gold: #c6a65b;
  --gold-light: #ead8a0;
  --ink: #211b17;
  --muted: #6f665f;
  --paper: #f8f5ef;
  --white: #fff;
  --line: rgba(57, 10, 16, .14);
  --shadow: 0 22px 60px rgba(35, 14, 10, .13);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-title {
  max-width: 820px;
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: var(--wine-dark);
}
.lead { max-width: 840px; margin: 0; color: var(--muted); font-size: 1.12rem; }

.topbar {
  background: var(--wine-dark);
  color: var(--gold-light);
  padding: 9px 20px;
  text-align: center;
  font-size: .88rem;
  letter-spacing: .03em;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(248, 245, 239, .94);
  border-bottom: 1px solid rgba(57, 10, 16, .08);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: Georgia, serif; font-weight: 700; color: var(--wine-dark); }
.brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 50%; background: #fff; }
.brand span { font-size: 1.18rem; }
.nav { display: flex; align-items: center; gap: 22px; font-size: .93rem; font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--wine); }
.nav-cta { padding: 11px 16px; border-radius: 999px; background: var(--wine); color: #fff !important; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 87% 18%, rgba(198,166,91,.26), transparent 30%),
    linear-gradient(140deg, #fff 0%, #f8f5ef 52%, #f0e7da 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(57,10,16,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(57,10,16,.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent 0, #000 62%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 58px; }
.hero h1 { margin: 0 0 20px; max-width: 720px; color: var(--wine-dark); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 6.7vw, 6.4rem); line-height: .95; letter-spacing: -.04em; }
.hero-copy { max-width: 720px; color: #544a44; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--wine); color: #fff; box-shadow: 0 13px 30px rgba(116,25,35,.24); }
.btn-secondary { border-color: rgba(57,10,16,.22); background: rgba(255,255,255,.75); color: var(--wine-dark); }
.price-line { display: flex; flex-wrap: wrap; gap: 12px; }
.price-chip { padding: 12px 16px; border: 1px solid rgba(116,25,35,.15); border-radius: 14px; background: rgba(255,255,255,.84); color: var(--muted); }
.price-chip strong { color: var(--wine-dark); font-size: 1.08rem; }
.hero-visual { position: relative; min-height: 610px; }
.hero-card { position: absolute; overflow: hidden; border: 8px solid rgba(255,255,255,.92); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main { inset: 25px 0 0 78px; height: 560px; }
.hero-card-logo { top: 0; left: 0; width: 190px; height: 190px; border-radius: 50%; z-index: 2; }
.hero-card-small { right: -15px; bottom: -22px; width: 235px; height: 178px; z-index: 3; }

.stats { background: var(--wine-dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.14); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.75rem; line-height: 1.1; }
.stat span { color: rgba(255,255,255,.72); font-size: .91rem; }

.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 42px; }
.panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 35px rgba(35,14,10,.06); }
.panel h3 { margin: 0 0 15px; color: var(--wine-dark); font-family: Georgia, serif; font-size: 1.55rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid rgba(57,10,16,.08); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--wine); font-weight: 900; }
.notice { margin-top: 22px; padding: 18px 20px; border-left: 4px solid var(--gold); background: #fffaf0; color: #5d514a; }

.beers { background: #efe8df; }
.beer-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 36px; }
.beer-card { min-height: 180px; padding: 24px 20px; border-radius: 18px; background: linear-gradient(160deg,#fff,#f8f2e7); border: 1px solid rgba(57,10,16,.1); }
.beer-number { color: var(--gold); font-family: Georgia, serif; font-size: 2.25rem; line-height: 1; }
.beer-card h3 { margin: 18px 0 7px; color: var(--wine-dark); font-family: Georgia, serif; font-size: 1.25rem; }
.beer-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 160px; gap: 14px; margin-top: 38px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 18px; background: #ddd; cursor: zoom-in; padding: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(9) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(10) { grid-column: span 3; grid-row: span 2; }
.gallery-caption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 8px 10px; border-radius: 10px; background: rgba(24,10,8,.74); color: #fff; font-size: .8rem; text-align: left; }

.history { background: #fff; }
.history-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 56px; align-items: start; }
.history-aside { position: sticky; top: 112px; padding: 30px; border-radius: 22px; background: var(--wine-dark); color: #fff; }
.history-aside img { width: 150px; margin: 0 auto 20px; border-radius: 50%; background: #fff; }
.history-aside strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 2rem; }
.history-aside p { margin-bottom: 0; color: rgba(255,255,255,.76); }
.timeline { border-left: 2px solid rgba(116,25,35,.16); padding-left: 30px; }
.timeline article { position: relative; margin: 0 0 38px; }
.timeline article::before { content: ''; position: absolute; left: -38px; top: 8px; width: 14px; height: 14px; border: 4px solid #fff; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 1px rgba(116,25,35,.18); }
.timeline h3 { margin: 0 0 9px; color: var(--wine-dark); font-family: Georgia, serif; font-size: 1.5rem; }
.timeline p { margin: 0 0 13px; color: #514943; }

.restart { color: #fff; background: linear-gradient(135deg,var(--wine-dark),#701822); }
.restart-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.restart .section-title { color: #fff; }
.restart .eyebrow { color: var(--gold-light); }
.restart p { color: rgba(255,255,255,.8); }
.restart-card { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.08); }
.restart-card strong { display: block; margin-bottom: 8px; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.75rem; }

.contact { background: #ede5da; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.contact-info { padding: 34px; border-radius: 22px; background: var(--wine-dark); color: #fff; }
.contact-info h2 { margin-top: 0; font-family: Georgia, serif; font-size: 2.1rem; }
.contact-info p { color: rgba(255,255,255,.76); }
.contact-info a { color: var(--gold-light); }
.contact-points { display: grid; gap: 13px; margin-top: 26px; }
.contact-point { padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); }
.form-card { padding: 34px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--wine-dark); font-size: .88rem; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid rgba(57,10,16,.18); border-radius: 12px; background: #fff; color: var(--ink); padding: 13px 14px; outline: 0; }
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(116,25,35,.10); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .86rem; }
.checkbox-row input { width: auto; margin-top: 4px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }
.alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 12px; }
.alert-success { background: #e9f7ec; color: #185d28; border: 1px solid #bde4c6; }
.alert-error { background: #fff0f0; color: #7c1b22; border: 1px solid #efc3c6; }
.alert ul { margin: 0; padding-left: 18px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 56px 0 28px; color: rgba(255,255,255,.78); background: #21110f; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.site-footer h2, .site-footer h3 { color: var(--gold-light); font-family: Georgia, serif; }
.site-footer h2 { margin-top: 0; }
.site-footer p { margin: 0 0 8px; }
.site-footer a { color: #fff; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; font-size: .82rem; }

.lightbox { position: fixed; z-index: 100; inset: 0; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(15,8,7,.92); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 12px; box-shadow: 0 25px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(0,0,0,.24); color: #fff; font-size: 1.8rem; cursor: pointer; }

@media (max-width: 980px) {
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 78px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .menu-button { display: inline-grid; place-items: center; }
  .hero-grid, .history-grid, .restart-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; max-width: 610px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .beer-grid { grid-template-columns: repeat(2,1fr); }
  .history-aside { position: static; }
  .gallery-item { grid-column: span 6 !important; grid-row: span 2 !important; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 68px 0; }
  .brand span { display: none; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.6rem); }
  .hero-copy { font-size: 1.02rem; }
  .hero-visual { min-height: 430px; }
  .hero-card-main { inset: 35px 0 0 32px; height: 390px; }
  .hero-card-logo { width: 120px; height: 120px; }
  .hero-card-small { width: 168px; height: 124px; right: -8px; }
  .stats-grid, .offer-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:last-child { border-bottom: 0; }
  .beer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item { grid-column: 1 !important; grid-row: span 1 !important; }
  .field-full { grid-column: auto; }
  .panel, .form-card, .contact-info { padding: 25px; }
  .footer-bottom { flex-direction: column; }
}
