:root {
  --bg: #16151a;
  --bg-alt: #1d1c22;
  --card: #232229;
  --text: #f2ede6;
  --text-muted: #b9b3ab;
  --accent: #e08a2b;
  --accent-light: #f2a94e;
  --border: #33323a;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  margin: 0 0 0.9em;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 21, 26, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--accent-light); }

/* HERO */
.hero {
  padding: 90px 24px 70px;
  background: radial-gradient(circle at 80% 0%, #26212a 0%, var(--bg) 55%);
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 0.25em;
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 1.6em; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a1610;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent-light); color: var(--accent-light); transform: translateY(-1px); }

.hero-image img {
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 100%;
}

/* STATS STRIP */
.stats-strip {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (max-width: 860px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { margin-top: 44px; padding-top: 32px; }
}

/* SECTIONS */
.section { padding: 90px 24px; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 22ch;
  margin-bottom: 0.7em;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  margin-top: 1.5em;
}

.about-text p { font-size: 1.03rem; }

.about-portrait img {
  border-radius: 16px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 20px 45px -18px rgba(0,0,0,0.55);
}

/* TIMELINE */
.timeline {
  margin-top: 2.2em;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.timeline-item:last-child { border-bottom: 1px solid var(--border); }

.timeline-year {
  font-family: 'Playfair Display', serif;
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 600;
  padding-top: 2px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}

.timeline-content p { margin: 0; font-size: 0.98rem; }

/* SHOP */
.shop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.shop-image img {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 45px -18px rgba(0,0,0,0.55);
}

.shop-text h2 { margin-bottom: 0.4em; }
.shop-text p { font-size: 1.05rem; }

/* KONTAKT */
.kontakt-section { text-align: center; }
.kontakt-sub { max-width: 48ch; margin: 0 auto 2em; }

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.kontakt-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.kontakt-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.kontakt-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.kontakt-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-light);
  word-break: break-word;
}

.social-links {
  margin-top: 2.4em;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-links a { color: var(--text); font-weight: 600; }
.social-links a:hover { color: var(--accent-light); }
.social-links .dot { margin: 0 12px; color: var(--border); }

/* FOOTER */
.footer {
  padding: 34px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 340px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 300px; margin: 0 auto; order: -1; }
  .shop-inner { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.85rem; }
  .section { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .hero { padding: 60px 18px 48px; }
}
