:root {
  --cocoa: #2c1612;
  --cocoa-2: #3d211b;
  --ink: #24120e;
  --mute: #6d4a3c;
  --cream: #fff6ea;
  --paper: #ffe9d2;
  --raspberry: #d0124d;
  --raspberry-2: #ff4d7a;
  --mint: #1f8a78;
  --mint-2: #2fb39a;
  --butter: #f0b429;
  --foil: #ffd6aa;
  --ok: #1f8a78;
  --shadow: 0 16px 36px rgba(44, 22, 18, 0.22);
  --display: "Young Serif", "Palatino Linotype", Georgia, serif;
  --body: "Literata", Georgia, "Times New Roman", serif;
  --ui: "Figtree", "Segoe UI", sans-serif;
  --script: "Parisienne", "Segoe Script", cursive;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --max: 1160px;
  --dock-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1.02rem, 0.96rem + 0.28vw, 1.14rem);
  line-height: 1.76;
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(240, 180, 41, 0.18), transparent 52%),
    radial-gradient(720px 360px at 108% 4%, rgba(208, 18, 77, 0.16), transparent 48%),
    linear-gradient(180deg, #4a221c 0, #2c1612 220px, #23110e 100%);
  padding-bottom: calc(var(--dock-h) + 16px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 14px,
    rgba(255, 246, 234, 0.035) 14px,
    rgba(255, 246, 234, 0.035) 16px
  );
}

.sk-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sk-drops { position: fixed; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.sk-drop {
  position: absolute;
  width: 12px;
  height: 16px;
  border-radius: 50% 50% 50% 10%;
  opacity: 0.34;
  animation: sk-fall 17s linear infinite;
}
.sk-drop:nth-child(1) { left: 7%; background: #ff4d7a; animation-delay: 0s; }
.sk-drop:nth-child(2) { left: 22%; background: #2fb39a; animation-duration: 20s; animation-delay: -5s; }
.sk-drop:nth-child(3) { left: 39%; background: #f0b429; animation-duration: 15s; animation-delay: -9s; }
.sk-drop:nth-child(4) { left: 58%; background: #ff4d7a; animation-duration: 19s; animation-delay: -3s; }
.sk-drop:nth-child(5) { left: 76%; background: #2fb39a; animation-duration: 16s; animation-delay: -7s; }
.sk-drop:nth-child(6) { left: 91%; background: #f0b429; animation-duration: 22s; animation-delay: -12s; }

@keyframes sk-fall {
  0% { transform: translateY(-10vh) rotate(0deg); }
  100% { transform: translateY(112vh) rotate(240deg); }
}

.sk-wrap, header, main, footer { position: relative; z-index: 3; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.sk-skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.sk-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 8px;
}

.sk-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background:
    linear-gradient(90deg, #d0124d 0 18px, transparent 18px),
    linear-gradient(180deg, #3d211b, #2c1612);
  border-bottom: 3px solid var(--butter);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.sk-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.sk-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--butter);
}
.sk-brand b {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.sk-brand small {
  display: block;
  font-family: var(--script);
  color: var(--foil);
  font-size: 1.05rem;
}

.sk-bar-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.sk-btn {
  font-family: var(--ui);
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 18px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sk-btn:hover { transform: translateY(-2px); }
.sk-btn-in {
  background: linear-gradient(180deg, #ff4d7a, #d0124d);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(208, 18, 77, 0.55);
  animation: sk-pulse 1.8s ease-in-out infinite;
}
.sk-btn-up {
  background: linear-gradient(180deg, #3ec9b0, #1f8a78);
  color: #fff;
}
.sk-btn-ghost {
  background: #fff;
  color: var(--cocoa);
  border: 2px solid #d9b48c;
}
.sk-hero-copy h1,
.sk-paper h2 {
  letter-spacing: 0.01em;
  word-spacing: 0.06em;
}

@keyframes sk-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 122, 0.55); }
  50% { box-shadow: 0 0 0 10px rgba(255, 77, 122, 0); }
}

.sk-hero {
  width: min(var(--max), calc(100% - 28px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.sk-hero-copy,
.sk-hero-card,
.sk-paper,
.sk-jar,
.sk-faq details,
.sk-review,
.sk-event {
  background: linear-gradient(180deg, var(--cream), var(--paper));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.sk-hero-copy {
  padding: 28px 28px 24px;
  border: 3px solid #f3c9a2;
  position: relative;
  overflow: hidden;
}
.sk-hero-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 18, 77, 0.18), transparent 70%);
}
.sk-kicker {
  font-family: var(--ui);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--raspberry);
  margin: 0 0 8px;
}
.sk-hero h1,
.sk-paper h2,
.sk-event h2,
.sk-review h2 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--cocoa);
}
.sk-hero h1 { font-size: clamp(1.8rem, 1.3rem + 2vw, 3rem); }
.sk-lede {
  margin: 0 0 18px;
  color: var(--mute);
  font-size: 1.05rem;
}
.sk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.sk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sk-chip {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 700;
  background: #fff;
  border: 1px dashed #d9b48c;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--cocoa);
}

.sk-hero-card {
  padding: 20px;
  border: 3px solid #f3c9a2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 246, 234, 0.92), rgba(255, 233, 210, 0.95)),
    url("../assets/img/og-cover.jpg") center/cover;
}
.sk-lid {
  align-self: center;
  width: 92px;
  height: 22px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #ff4d7a, #d0124d);
  box-shadow: 0 6px 0 #9c0e3a;
  animation: sk-bob 2.4s ease-in-out infinite;
}
@keyframes sk-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.sk-hero-card p { margin: 12px 0 0; color: var(--cocoa); }
.sk-addr {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(0.86rem, 0.7rem + 0.7vw, 1.02rem);
  background: var(--cocoa);
  color: var(--butter);
  padding: 12px 14px;
  border-radius: 14px;
  word-break: break-all;
}

.sk-marquee {
  margin: 18px 0 0;
  background: repeating-linear-gradient(
    90deg,
    #d0124d 0 18px,
    #fff6ea 18px 36px
  );
  overflow: hidden;
  border-top: 3px solid var(--cocoa);
  border-bottom: 3px solid var(--cocoa);
}
.sk-marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 10px 0;
  animation: sk-slide 28s linear infinite;
  font-family: var(--ui);
  font-weight: 800;
  color: var(--cocoa);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
@keyframes sk-slide {
  to { transform: translateX(-50%); }
}

.sk-slider {
  width: min(var(--max), calc(100% - 28px));
  margin: 22px auto 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
}
.sk-slide {
  display: none;
  min-height: 260px;
  padding: 28px;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  position: relative;
}
.sk-slide.is-on { display: grid; align-content: end; }
.sk-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 22, 18, 0.15), rgba(44, 22, 18, 0.78));
}
.sk-slide > * { position: relative; }
.sk-slide span {
  font-family: var(--ui);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--butter);
}
.sk-slide h2 {
  font-family: var(--display);
  margin: 6px 0 8px;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
}
.sk-dots {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.sk-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 246, 234, 0.4);
  cursor: pointer;
}
.sk-dots button.is-on { background: var(--butter); }

.sk-jars {
  width: min(var(--max), calc(100% - 28px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sk-jar {
  padding: 18px 18px 16px;
  border: 3px solid #f3c9a2;
  position: relative;
}
.sk-jar::before {
  content: "";
  display: block;
  width: 54px;
  height: 12px;
  margin: -28px auto 12px;
  border-radius: 8px 8px 3px 3px;
  background: var(--raspberry);
  box-shadow: 0 4px 0 #9c0e3a;
}
.sk-jar[data-state="yedek"]::before { background: var(--butter); box-shadow: 0 4px 0 #b88614; }
.sk-jar[data-state="mobil"]::before { background: var(--mint); box-shadow: 0 4px 0 #14685a; }
.sk-jar h3 {
  font-family: var(--ui);
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.sk-jar p { margin: 0 0 12px; color: var(--mute); font-size: 0.95rem; }
.sk-code {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--raspberry);
  font-weight: 600;
}

.sk-paper {
  width: min(var(--max), calc(100% - 28px));
  margin: 22px auto 0;
  padding: 26px 26px 22px;
  border: 3px solid #f3c9a2;
}
.sk-paper h2 { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.15rem); }
.sk-paper h3 {
  font-family: var(--ui);
  font-size: 1.15rem;
  margin: 22px 0 8px;
}
.sk-paper p { margin: 0 0 14px; }
.sk-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.sk-split img,
.sk-paper figure img {
  border-radius: 20px;
  border: 3px solid #f3c9a2;
}
.sk-split.reverse { grid-template-columns: 1.1fr 0.9fr; }
figcaption {
  font-family: var(--ui);
  font-size: 0.82rem;
  color: var(--mute);
  margin-top: 8px;
}
.sk-list { padding-left: 18px; margin: 0 0 14px; }
.sk-list li { margin: 0 0 8px; }

.sk-crumbs {
  width: min(var(--max), calc(100% - 28px));
  margin: 16px auto 0;
  font-family: var(--ui);
  font-size: 0.86rem;
  color: var(--foil);
}
.sk-crumbs a { color: var(--butter); text-decoration: none; }
.sk-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sk-crumbs li:not(:last-child)::after { content: " / "; color: var(--foil); margin-left: 6px; }

.sk-review, .sk-event {
  width: min(var(--max), calc(100% - 28px));
  margin: 22px auto 0;
  padding: 24px;
  border: 3px solid #f3c9a2;
}
.sk-stars { color: var(--raspberry); letter-spacing: 2px; font-size: 1.2rem; }
.sk-faq {
  width: min(var(--max), calc(100% - 28px));
  margin: 22px auto 0;
}
.sk-faq h2 {
  font-family: var(--display);
  color: var(--cream);
  margin: 0 0 12px;
}
.sk-faq details {
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 3px solid #f3c9a2;
}
.sk-faq summary {
  font-family: var(--ui);
  font-weight: 800;
  cursor: pointer;
}

.sk-langs {
  width: min(var(--max), calc(100% - 28px));
  margin: 18px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sk-langs a {
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(255, 214, 170, 0.4);
  padding: 6px 10px;
  border-radius: 999px;
}

footer {
  width: min(var(--max), calc(100% - 28px));
  margin: 10px auto 20px;
  color: var(--foil);
  font-size: 0.92rem;
}
footer a { color: var(--butter); }

.sk-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(44, 22, 18, 0.94);
  border-top: 3px solid var(--butter);
  backdrop-filter: blur(8px);
}

@media (max-width: 860px) {
  .sk-hero,
  .sk-jars,
  .sk-split,
  .sk-split.reverse {
    grid-template-columns: 1fr;
  }
  .sk-brand small { display: none; }
  .sk-hero-copy, .sk-paper { padding: 20px 16px; }
  .sk-bar { padding: 8px 10px; }
  .sk-btn { padding: 10px 12px; font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
