:root {
  --bg: #F5F1EB;
  --paper: #FFFFFF;
  --ink: #3C2415;
  --accent: #8B4513;
  --accent-2: #A0522D;
  --green: #6B8E23;
  --muted: #7A6F66;
  --shadow: 0 10px 30px rgba(60,36,21,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; height: auto; border-radius: var(--radius-sm); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  margin: 0 0 12px;
}

p { margin: 0 0 12px; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--accent-2); }
.btn--ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn--small { padding: 8px 14px; font-size: 14px; }

.muted { color: var(--muted); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,241,235,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
  color: var(--ink); 
}
.logo img { height: 40px; width: 40px; flex-shrink: 0; color: var(--ink); }
.logo-text { display: flex; flex-direction: column; }
.logo-family { font-family: Inter, system-ui, sans-serif; font-size: 12px; letter-spacing: .06em; text-transform: lowercase; color: var(--muted); }
.logo-brand { font-family: "Playfair Display", Georgia, serif; font-weight: 800; font-size: 22px; line-height: 1; }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; opacity: 0.9; }
.nav a:hover { opacity: 1; }
.burger { display: none; background: transparent; border: 0; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 1px; }

/* Hero */
.hero { padding: 48px 0 24px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.hero-text h1 { font-size: clamp(32px, 5vw, 56px); }
.hero-text p { font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); }
.hero-image img { border-radius: 24px; box-shadow: var(--shadow); }
.cta { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

/* Requisites block */
.requisites { margin-top: 12px; color: var(--muted); font-size: 14px; display: grid; gap: 4px; }

/* Sections */
.section { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }

/* About */
.about-photo img { aspect-ratio: 4/5; object-fit: cover; }
.list-check { list-style: none; padding: 0; margin: 12px 0 0; }
.list-check li { padding-left: 28px; position: relative; margin: 8px 0; }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* Benefits */
.benefits .cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--paper); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); }
.card .icon { font-size: 28px; }

/* Products */
.products .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.products figure { margin: 0; }
.products figcaption { margin-top: 8px; color: var(--muted); font-size: 14px; }

/* Health */
.list-dots { list-style: disc; padding-left: 18px; }
.health-photo img { aspect-ratio: 4/5; object-fit: cover; }
details { margin-top: 10px; }
.more { color: var(--muted); }

/* Locations */
.locations-intro { text-align: center; font-size: 18px; margin-bottom: 32px; color: var(--muted); }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.location-group { background: var(--paper); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); }
.location-group h3 { font-family: "Playfair Display", Georgia, serif; font-size: 20px; margin: 0 0 12px; color: var(--accent); }
.location-group p { margin: 0; color: var(--ink); }
.location-list { list-style: none; padding: 0; margin: 12px 0 0; }
.location-list li { padding: 6px 0; padding-left: 20px; position: relative; color: var(--ink); }
.location-list li::before { content: "📍"; position: absolute; left: 0; }

/* Contacts */

/* Footer */
.site-footer { padding: 24px 0 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }

/* Reveal animations */
[data-reveal] { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .benefits .cards { grid-template-columns: repeat(2, 1fr); }
  .products .gallery { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; position: absolute; right: 16px; top: 56px; background: var(--paper); padding: 12px; border-radius: 12px; box-shadow: var(--shadow); flex-direction: column; }
  .nav.open { display: flex; }
  .burger { display: inline-block; }
}

@media (max-width: 520px) {
  .benefits .cards { grid-template-columns: 1fr; }
  .products .gallery { grid-template-columns: 1fr; }
}


