:root {
  --bg: #0c1218;
  --bg-elev: #141c26;
  --ink: #f2ebe0;
  --muted: #9aa6b5;
  --gold: #c4a56a;
  --gold-soft: #d8bd86;
  --line: rgba(242, 235, 224, 0.12);
  --accent: #2e4a3a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 165, 106, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(46, 74, 58, 0.28), transparent 50%),
    var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 5vw;
  backdrop-filter: blur(14px);
  background: rgba(12, 18, 24, 0.82);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.nav a:hover { color: var(--ink); }
.header-cta {
  font-size: 14px;
  font-weight: 800;
  padding: 12px 22px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #1a1208;
}
.header-cta:hover { background: var(--gold-soft); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 72px 5vw 64px;
  min-height: calc(100vh - 72px);
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero-lead {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  min-height: 52px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--gold); color: #1a1208; }
.btn-primary:hover { background: var(--gold-soft); }
.btn-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-soft);
}
.btn-secondary:hover { background: rgba(196,165,106,.12); }
.btn-card {
  width: 100%;
  margin-top: 10px;
  min-height: 44px;
  padding: 12px 16px;
  font-size: 14px;
  background: var(--gold);
  color: #1a1208;
  border: 0;
}
.btn-card:hover { background: var(--gold-soft); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-stats {
  list-style: none;
  display: flex;
  gap: 28px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}
.hero-stats span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 18%;
  background: radial-gradient(circle, rgba(196,165,106,.22), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.55));
}

.about, .catalog, .why, .contacts {
  padding: 72px 5vw;
}
.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 28, 38, 0.45);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.about h2, .catalog h2, .why h2, .contacts h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 16px;
}
.about > .about-grid > div > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 420px;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-points article {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(12, 18, 24, 0.5);
}
.about-points h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--gold-soft);
}
.about-points p { color: var(--muted); font-size: 14px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
}
.section-head p { color: var(--muted); }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color .2s ease, transform .2s ease;
}
.product-card:hover {
  border-color: rgba(196,165,106,.45);
  transform: translateY(-2px);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #0a0f14;
}
.product-card .body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card .cat {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.product-card .taste {
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.why-grid article {
  padding: 24px 20px;
  border-top: 2px solid var(--gold);
  background: rgba(20, 28, 38, 0.6);
}
.why-num {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.why-grid h3 { font-size: 17px; margin-bottom: 10px; }
.why-grid p { color: var(--muted); font-size: 14px; }

.contacts-card {
  max-width: 720px;
  padding: 40px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(196,165,106,.1), transparent 45%),
    var(--bg-elev);
}
.contacts-card p {
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
}
.contact-rows a:hover { color: var(--gold-soft); }

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 5vw 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.72);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}
.modal-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.modal-body { padding: 36px 32px; }
.modal-cat {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 22px;
}
.modal-meta {
  display: grid;
  gap: 14px;
}
.modal-meta div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.modal-meta dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.modal-meta dd { color: var(--ink); font-size: 15px; }
.modal-order { margin-top: 24px; width: 100%; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .hero, .about-grid, .modal-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .hero-visual img { width: min(100%, 320px); margin: 0 auto; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .product-grid, .about-points, .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .contacts-card { padding: 24px; }
}
