/* --- 12-4: Editorial / Bold — Fumot 12K --- */
:root {
  --bg: #f6f4ef;
  --bg-card: #ebe8e0;
  --text: #1a1916;
  --text-muted: #5c5954;
  --accent: #c44d2e;
  --accent-soft: rgba(196, 77, 46, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
}

/* Subtle noise texture */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 5vw;
  background: transparent;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.cta-nav {
  color: var(--accent);
}

/* --- Hero — overlapping editorial --- */
.hero {
  min-height: 100vh;
  padding: calc(4rem + 6vh) 5vw 6vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32ch;
  margin-bottom: 2rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: rotate(-2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.hero-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.hero-big-number {
  position: absolute;
  right: 5vw;
  bottom: 15%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 600;
  color: var(--accent-soft);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.cta-button {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--text);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.cta-button:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

/* --- Story — asymmetric two-column --- */
.story {
  padding: 5rem 5vw;
  background: var(--text);
  color: var(--bg);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--bg);
}

.story-body {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.story-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.story-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- Specs — big numbers editorial --- */
.specs {
  padding: 5rem 5vw;
  background: var(--bg);
}

.specs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.specs .section-num {
  color: var(--text-muted);
}

.specs-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.specs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.spec-block {
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 6px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.spec-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.spec-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.spec-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- Deals / Preise --- */
.deals {
  padding: 5rem 5vw;
  background: var(--bg-card);
}

.deals-inner {
  max-width: 900px;
  margin: 0 auto;
}

.deals .section-num {
  color: var(--text-muted);
}

.deals-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.deal-tier {
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.deal-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.deal-tier-custom {
  background: var(--accent-soft);
  border: 1px solid rgba(196, 77, 46, 0.3);
}

.deal-qty {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.deal-price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--accent);
}

.deal-unit {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Gallery — overlapping images --- */
.gallery {
  padding: 4rem 5vw;
}

.gallery-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.gallery-a {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(0) rotate(-1deg);
  transition: transform 0.35s ease;
}

.gallery-a:hover {
  transform: translateY(-8px) rotate(0deg);
}

.gallery-b {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(2rem) rotate(1.5deg);
  transition: transform 0.35s ease;
}

.gallery-b:hover {
  transform: translateY(1rem) rotate(0deg);
}

.gallery-inner img {
  height: 260px;
  object-fit: cover;
  display: block;
}

/* --- CTA --- */
.cta-section {
  padding: 5rem 5vw;
  text-align: center;
  background: var(--bg-card);
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.cta-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-button-large {
  padding: 1.25rem 2rem;
  font-size: 1rem;
}

/* --- Footer --- */
.site-footer {
  padding: 1.5rem 5vw;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    transform: none;
  }

  .hero-big-number {
    right: 50%;
    transform: translateX(50%);
    bottom: 5%;
    font-size: clamp(5rem, 25vw, 8rem);
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-text {
    order: 2;
  }

  .story-img {
    order: 1;
  }

  .specs-row {
    grid-template-columns: 1fr 1fr;
  }

  .deals-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-inner {
    grid-template-columns: 1fr;
  }

  .gallery-b {
    transform: none;
  }

  .site-header {
    background: rgba(246, 244, 239, 0.95);
  }
}
