html[data-theme="dark"] {
  --bg: #040d0a;
  --bg-elevated: #0a1a14;
  --surface: #0f241b;
  --logo-ring: #040d0a;
  --text: #f0f7f4;
  --text-muted: #94a89f;
  --accent: #2ecc71;
  --accent-deep: #27ae60;
  --accent-soft: rgba(46, 204, 113, 0.14);
  --luxury-gold: #c5a059;
  --border: rgba(255, 255, 255, 0.07);
  --header-bg: #040d0a;
  --hero-glow: rgba(46, 204, 113, 0.28);
  --shadow: rgba(0, 0, 0, 0.35);
  --shadow-lg: rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --radius-lg: 16px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
  --on-accent: #ffffff;
}

html[data-theme="light"] {
  --bg: #f4f8f5;
  --bg-elevated: #eaf2ec;
  --surface: #deeee4;
  --text: #0a1510;
  --text-muted: #3a5245;
  --accent: #22a85a;
  --accent-deep: #1a8f4a;
  --accent-soft: rgba(34, 168, 90, 0.15);
  --luxury-gold: #8a6a1a;
  --border: rgba(10, 21, 16, 0.12);
  --header-bg: rgba(244, 248, 245, 0.92);
  --hero-glow: rgba(34, 168, 90, 0.18);
  --shadow: rgba(10, 21, 16, 0.1);
  --shadow-lg: rgba(10, 21, 16, 0.16);
  --logo-ring: #f4f8f5;
  --on-accent: #ffffff;
  /* shared tokens (same as dark) */
  --radius: 8px;
  --radius-lg: 16px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

html[data-theme="light"] .site-header {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--logo-ring), 0 4px 16px var(--shadow);
}

.logo-text {
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: none;
  gap: 1.75rem;
}

@media (min-width: 800px) and (max-width: 1024px) {
  .nav {
    gap: 1rem;
  }

  .nav a {
    font-size: 0.86rem;
  }
}

@media (max-width: 799px) {
  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 1.25rem 1.25rem 1.5rem;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
    z-index: 40;
  }

  body.nav-open .nav a {
    padding: 0.65rem 0;
    font-size: 1rem;
  }

  .site-header .wrap.header-inner {
    position: relative;
    flex-wrap: wrap;
  }
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.lang {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  background: var(--bg-elevated);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.is-active {
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: var(--on-accent);
  box-shadow: 0 2px 10px var(--hero-glow);
}

.lang-btn:not(.is-active):hover {
  color: var(--text);
}

.hero {
  position: relative;
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(5rem, 14vw, 8rem);
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -25%, var(--hero-glow), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 40%, rgba(197, 160, 89, 0.06), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(100%, 300px);
  margin-inline: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 16px var(--logo-ring), 0 24px 56px var(--shadow-lg);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--luxury-gold);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: var(--on-accent);
  box-shadow: 0 4px 28px var(--hero-glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 36px var(--hero-glow);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-elevated);
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 0 2rem;
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.prose {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.facts li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.98rem;
}

.facts li strong {
  color: var(--text);
  font-weight: 600;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cards .card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow: 0 8px 32px var(--shadow-lg);
  transform: translateY(-2px);
}

.card-highlight {
  background: linear-gradient(160deg, var(--surface), var(--accent-soft));
}

.card-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.card-highlight p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cards .card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.cards .card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.card-icon {
  display: block;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.card-icon svg {
  display: block;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  max-width: 65ch;
}

/* —— Products —— */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.product-filter {
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.product-filter:hover {
  color: var(--text);
  border-color: var(--accent-soft);
}

.product-filter.is-active {
  color: var(--on-accent);
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border-color: transparent;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card--wide {
    grid-column: span 2;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-lg);
  border-color: var(--accent-soft);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  aspect-ratio: 4 / 3;
  background: #f6f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
}

html[data-theme="light"] .product-media {
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-media--variants {
  aspect-ratio: auto;
  min-height: 200px;
  padding: 1rem 1.25rem;
  background: #f4f6f4;
}

html[data-theme="light"] .product-media--variants {
  background: #fff;
}

.product-variants {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  width: 100%;
  align-items: center;
}

.product-variants img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 639px) {
  .product-variants {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card--wide {
    grid-column: span 1;
  }
}

.product-body {
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--text);
  line-height: 1.3;
}

.product-body > p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.product-flavors {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-flavors li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

#products .note {
  margin-top: 2rem;
}

.contact-grid address {
  font-style: normal;
  margin: 1.5rem 0 0;
  color: var(--text);
  line-height: 1.7;
}

.fineprint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
}

.card-dark {
  background: var(--bg-elevated);
  border-color: var(--border);
  box-shadow: 0 4px 24px var(--shadow);
}

.card-dark h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card-dark > p:first-of-type {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.email-line {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.phone-line {
  margin: 0;
  font-size: 1.05rem;
}

.phone-line a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.phone-line a:hover {
  text-decoration: underline;
}

/* Tarihçe / Geschichte */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 720px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-deep), var(--accent-soft));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.timeline-year {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.timeline-head {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.timeline-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.link-invert {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.link-invert:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--accent);
}

/* Impressum page */
.impressum-page {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  min-height: 60vh;
}

.impressum-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1.5rem;
}

.impressum-page .prose-block {
  color: var(--text-muted);
  max-width: 65ch;
}

.impressum-page .prose-block p {
  margin: 0 0 1rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.back-link:hover {
  text-decoration: underline;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.theme-toggle:hover {
  border-color: var(--accent);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  grid-area: 1 / 1;
}

html[data-theme="dark"] .theme-toggle .icon-sun {
  opacity: 0;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  opacity: 1;
}

html[data-theme="light"] .theme-toggle .icon-sun {
  opacity: 1;
}

html[data-theme="light"] .theme-toggle .icon-moon {
  opacity: 0;
}

.lang-btn {
  min-width: 2.1rem;
  padding-inline: 0.55rem;
}

/* Stats strip */
.stats {
  padding: 0 0 clamp(2.5rem, 6vw, 3.5rem);
  margin-top: -1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section h2 {
  position: relative;
  padding-bottom: 0.5rem;
}

.section h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--luxury-gold));
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--logo-ring);
}

html[data-theme="light"] .logo-img {
  box-shadow: 0 0 0 3px var(--logo-ring), 0 4px 14px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .hero-logo {
  box-shadow: 0 0 0 16px var(--logo-ring), 0 28px 56px rgba(0, 0, 0, 0.14);
}

@media (max-width: 799px) {
  .logo-text {
    display: none;
  }

  .lang-btn {
    font-size: 0.72rem;
    padding: 0.35rem 0.45rem;
  }
}
