:root {
  --wine: #7a1e38;
  --wine-deep: #4c1224;
  --wine-soft: #9a3a55;
  --ink: #1a1714;
  --muted: #5e574e;
  --line: #e4d9c8;
  --paper: #f6f1e7;
  --paper-2: #ece4d4;
  --cream: #fbf8f1;
  --chartreuse: #9cb53f;
  --chartreuse-deep: #6f8624;
  --sage: #7d8b73;
  --sky: #7fa3c2;
  --mauve: #c9a8b6;
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(76, 18, 36, 0.12);
  --radius: 18px;
  --header: 84px;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Literata", "Source Serif 4", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

dl, dt, dd {
  margin: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--wine);
  color: var(--white);
  padding: 8px 14px;
  z-index: 100;
  border-radius: 8px;
}
.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--chartreuse);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

.page {
  padding: 48px 0 88px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 10px 0 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 10px 0 18px;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.08rem;
}

.block {
  margin-top: 64px;
}

.about-photo {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.btn-chartreuse {
  background: var(--chartreuse);
  color: var(--ink);
}

.muted-copy {
  color: var(--muted);
  margin-top: 0;
}

.lightbox[hidden] {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.nav a:hover,
.nav a.active {
  background: var(--wine);
  color: var(--white);
}

.lang {
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}
.lang a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--muted);
}
.lang a.active {
  background: var(--ink);
  color: var(--white);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(1200px 420px at 80% -10%, color-mix(in srgb, var(--mauve) 45%, transparent), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--paper));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 16px 0 18px;
  max-width: 12ch;
}
.hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #f3ecc4;
  object-fit: cover;
  max-height: 460px;
}
.hero-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--wine);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--wine);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 32s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}
.marquee-track span::after {
  content: " · ";
  color: var(--chartreuse);
  font-style: normal;
  padding-left: 48px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 56px 0;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-top: 10px;
  max-width: 16ch;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}
.about-copy p + p { margin-top: 14px; }
.about-copy a { color: var(--wine); font-weight: 600; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 180px;
}
.card h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.card .n {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--chartreuse-deep);
  font-weight: 700;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mosaic a,
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper-2);
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
}
.mosaic img,
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mosaic a:hover img,
.tile:hover img { transform: scale(1.05); }
.mosaic a:nth-child(1),
.mosaic a:nth-child(6),
.mosaic .tile:nth-child(1),
.mosaic .tile:nth-child(6) { grid-column: span 2; aspect-ratio: 16/10; }
.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(26, 23, 20, 0.78));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 24px;
}
.filters button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ink);
}
.filters button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.cta-band {
  margin: 72px 0 0;
  background: var(--wine-deep);
  color: var(--white);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 { font-size: 2.1rem; max-width: 16ch; }
.cta-band p { color: color-mix(in srgb, var(--white) 75%, var(--mauve)); margin: 10px 0 0; max-width: 46ch; }
.cta-band .btn-primary { background: var(--chartreuse); color: var(--ink); }

.footer {
  background: var(--ink);
  color: #d9d0c4;
  padding: 48px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.footer a { color: var(--white); }
.footer .muted { color: #a79d91; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #3a342e;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: #a79d91;
}
.footer h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.footer .logo-foot { height: 42px; width: auto; margin-bottom: 12px; filter: grayscale(0); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.panel h3 { margin-bottom: 12px; }
.dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 12px;
  font-size: 0.98rem;
}
.dl dt { color: var(--muted); }
.dl a { color: var(--wine); font-weight: 600; text-decoration: none; }
.maps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.map img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #eef3dc;
  display: block;
}
.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

form {
  display: grid;
  gap: 12px;
}
label span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }

.news-list {
  display: grid;
  gap: 16px;
}
.news-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}
.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}
.news-body { padding: 20px 20px 20px 0; }
.news-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.news-body p { margin: 0; color: var(--muted); }
.news-body .more {
  display: inline-block;
  margin-top: 12px;
  color: var(--wine);
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.88);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,.4);
}
.lightbox-cap {
  color: var(--white);
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-serif);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--white);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
}

.price-box {
  background: var(--wine);
  color: var(--white);
  border-radius: 24px;
  padding: 32px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 20px;
  align-items: center;
}
.price-box h3 { color: var(--chartreuse); font-size: 1.4rem; margin-bottom: 8px; }
.price-box p { margin: 0; color: #f3dce3; }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .footer-grid, .news-item, .price-box, .cta-band {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic a:nth-child(1),
  .mosaic a:nth-child(6),
  .mosaic .tile:nth-child(1),
  .mosaic .tile:nth-child(6) { grid-column: span 2; }
  .news-body { padding: 0 18px 18px; }
  .cta-band, .price-box { align-items: start; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .header-inner { position: relative; }
}

@media (max-width: 640px) {
  .cards, .stats { grid-template-columns: 1fr; }
  .wrap, .header-inner { width: min(1180px, calc(100% - 28px)); }
  .hero { padding-top: 40px; }
  .dl { grid-template-columns: 1fr; gap: 4px 0; }
  .dl dt { margin-top: 10px; }
  .footer-bottom { flex-direction: column; }
  .logo img { height: 40px; }
  .lang a { padding: 6px 6px; }
}
