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

:root {
  --red: #C41E3A;
  --red-dark: #9B1631;
  --gold: #D4A853;
  --gold-light: #F2E0A7;
  --cream: #FEFBF5;
  --white: #FFFFFF;
  --green: #6B8E5A;
  --green-light: #EDF4EA;
  --brown: #5C3D2E;
  --dark: #1A1A1A;
  --dark-surface: #222222;
  --gray: #999999;
  --gray-light: #E5E5E5;
  --text: #2D2D2D;
  --text-light: #777777;
  --radius: 8px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon { width: 38px; height: 38px; }
.nav-logo .logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  display: none;
}
.nav.scrolled .nav-logo .logo-text {
  color: var(--text);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}
.nav.scrolled .nav-links a {
  color: var(--text);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
  touch-action: manipulation;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span {
  background: var(--text);
}

/* ── HERO ─────────────────────────────── */
.hero {
  background: var(--dark);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,168,83,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(196,30,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(107,142,90,0.06) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-logo img {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 16px rgba(196,30,58,0.3));
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2s infinite;
}
.hero-scroll svg { display: block; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── BUTTONS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,30,58,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--red);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ── SECTIONS ─────────────────────────── */
.section {
  padding: 100px 24px;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-cream {
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 10px;
}
.section-dark .section-label { color: var(--gold); }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brown);
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}
.section-dark .section-header p { color: var(--gray); }

/* ── HERO STATUS (above logo) ─────────── */
.hero-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-status .status-text { font-size: 0.9rem; }
.hero-status .status-text.open { color: var(--green); }
.hero-status .status-text.closed { color: var(--red); }
.status-sub-hero {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.status-sub-hero.closed { color: rgba(255,255,255,0.4); }
.status-sub-hero.open { color: rgba(107,142,90,0.7); }
.hero-status .hero-status-info { text-align: left; line-height: 1.4; }

/* ── HOURS BANNER ─────────────────────── */
.hours-banner {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-light);
}
.hours-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hours-status {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.status-dot.open {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(107,142,90,0.2);
  animation: pulse-dot 2s infinite;
}
.status-dot.closed {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(196,30,58,0.15);
  animation: blink-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 5px rgba(107,142,90,0.2); }
  50% { box-shadow: 0 0 0 12px rgba(107,142,90,0.05); }
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.status-text { font-weight: 700; font-size: 0.95rem; }
.status-text.open { color: var(--green); }
.status-text.closed { color: var(--red); }
.status-sub { font-size: 0.85rem; color: var(--text-light); }
.status-sub.closed { color: var(--gray); }

.status-cat {
  display: none;
  width: 48px;
  height: 36px;
  flex-shrink: 0;
}
.status-cat.visible { display: inline-block; }
.sleeping-cat .cat-body {
  fill: none; stroke: var(--brown); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.sleeping-cat .cat-z {
  fill: none; stroke: var(--brown); stroke-width: 1.5; stroke-linecap: round; opacity: 0;
}
.sleeping-cat .cat-z.v { opacity: 1; animation: zFloat 2s ease-in-out infinite; }
.sleeping-cat .cat-z.d1 { animation-delay: 0.7s; }
.sleeping-cat .cat-z.d2 { animation-delay: 1.4s; }
.cat-breath { animation: catBreath 3s ease-in-out infinite; transform-origin: 40px 45px; }
@keyframes zFloat {
  0% { transform: translate(0,0) scale(1); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(-10px,-14px) scale(1.4); opacity: 0; }
}
@keyframes catBreath {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(1.05); }
}

.hours-list { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.hours-block { text-align: center; }
.hours-block .days { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.hours-block .time { font-size: 0.85rem; color: var(--text-light); }
.hours-block .closed-text { font-size: 0.85rem; color: var(--gray); }

/* ── GRID ─────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

/* ── CATEGORY CARDS ───────────────────── */
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: 1px solid var(--gray-light);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--red);
}
.cat-card-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.cat-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.cat-card .arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.2rem;
  color: var(--red);
  transition: transform 0.2s;
}
.cat-card:hover .arrow { transform: translateX(4px); }

/* ── SORTIMENT GRID ───────────────────── */
.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.sortiment-item {
  background: var(--dark-surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s, border-color 0.25s;
}
.sortiment-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.sortiment-item .si-flag { font-size: 2rem; margin-bottom: 12px; }
.sortiment-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sortiment-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── ABOUT SECTION ────────────────────── */
.about-text { max-width: 560px; }
.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-visual {
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 16px;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 60%);
}
.about-visual span {
  position: relative;
  z-index: 1;
  font-size: 4rem;
}

/* ── PROSPEKT CTA ──────────────────────── */
.prospekt-cta {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.prospekt-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.section-dark .prospekt-icon { background: rgba(255,255,255,0.08); }
.prospekt-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.section-dark .prospekt-cta h3 { color: var(--white); }
.prospekt-cta p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.section-dark .prospekt-cta p { color: var(--gray); }
.prospekt-hint {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 16px;
  font-style: italic;
}

/* ── FOOTER ───────────────────────────── */
.maps-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.maps-link:hover { opacity: 0.7; }
.footer {
  background: var(--dark);
  color: var(--gray);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 0; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-nav-col h5 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-nav-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
}

/* ── PAGE HERO ────────────────────────── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 120px 24px 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
}

/* ── CARD (subpages) ──────────────────── */
.text-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
}
.text-card h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--brown);
}
.text-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.text-card p:last-child { margin-bottom: 0; }
.text-card.text-center { text-align: center; }

/* ── ADDRESS ──────────────────────────── */
.address-badge {
  display: inline-block;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-top: 16px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
}

/* ── PROSPEKT DOWNLOAD ────────────────── */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 768px) {
  .nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.3rem;
    z-index: 1000;
  }
  .nav-links a {
    color: var(--text);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-logo .logo-text { display: inline; }

  .nav-links.open ~ .nav-toggle span {
    background: var(--text);
  }
  .nav .nav-links a {
    color: var(--text);
  }
  .nav.scrolled .nav-links a {
    color: var(--text);
  }

  .hero { min-height: 90vh; padding: 80px 20px 50px; }
  .hero h1 { font-size: 2rem; }
  .hero-logo img { width: 80px; height: 80px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .section { padding: 60px 20px; }
  .section-header { margin-bottom: 36px; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { min-height: 240px; }

  .hours-banner-inner { flex-direction: column; gap: 16px; }
  .hours-list { gap: 16px; }

  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-nav { gap: 32px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; height: 60px; }
  .hero { padding: 70px 16px 40px; }
  .section { padding: 40px 16px; }
  .section-header h2 { font-size: 1.6rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .sortiment-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 16px 40px; }
  .text-card { padding: 24px; }
}

/* ── CONSTRUCTION OVERLAY ──────────────── */
.construction-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.construction-overlay.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.construction-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.construction-icon {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.construction-card h2 { font-size: 1.4rem; color: var(--brown); margin-bottom: 12px; }
.construction-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 8px; line-height: 1.6; }
.construction-hint { font-weight: 600; color: var(--green) !important; margin-bottom: 24px !important; }
.construction-card .btn { min-width: 200px; justify-content: center; }
