:root {
  --bg: #fff4f8;
  --bg-soft: #fde7ef;
  --pink: #d41468;
  --pink-soft: #f7b3cf;
  --berry: #4b092d;
  --berry-dark: #210015;
  --text: #2b1b24;
  --muted: #7c6470;
  --white: #ffffff;
  --border: rgba(212, 20, 104, 0.18);

  --font-head: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;

  --shadow: 0 18px 40px rgba(75, 9, 45, 0.16);
  --radius: 22px;
}

/* Reset */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #180612;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo img {
  width: 150px;
  height: auto;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--berry);
  border-radius: 2px;
}

.main-nav {
  position: absolute;
  top: 72px;
  left: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  padding: 12px 4px;
  color: var(--berry);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.main-nav a:last-child {
  border-bottom: 0;
}

/* Basics */

section {
  padding: 64px 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--berry);
}

h1,
h2 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 12vw, 4.8rem);
}

h1 span,
h2 span {
  display: block;
  color: var(--pink);
  font-style: italic;
}

h2 {
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  text-align: center;
}

h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.btn-primary,
.btn-secondary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 24px rgba(212, 20, 104, 0.26);
}

.btn-secondary {
  color: var(--pink);
  border: 1px solid var(--pink);
  background: transparent;
}

.btn-light {
  color: var(--berry);
  background: var(--white);
}

/* Hero */

.hero {
  /* min-height: calc(100vh - 72px);*/
  display: flex;
  align-items: center;
  padding: 72px 22px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(33, 0, 21, 0.92), rgba(33, 0, 21, 0.55), rgba(33, 0, 21, 0.25)),
    url("../img/mobile-kopf.jpg") center / cover no-repeat;
}

.hero-content {
  max-width: 520px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--pink);
}

.hero-text {
  max-width: 420px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

/* Intro */

.intro {
  background: var(--white);
}

.intro-card {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.intro-card h2 {
  margin-bottom: 18px;
}

.intro-card p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature {
  padding: 26px 22px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature span {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pink);
  background: var(--bg-soft);
  font-size: 1.5rem;
}

.feature h3 {
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Products */

.product-slider {
  position: relative;
  margin-bottom: 34px;
}

.product-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 22px;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(75, 9, 45, 0.12);
}

.slider-btn {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(75, 9, 45, 0.25);
}

.slider-prev {
  left: -8px;
}

.slider-next {
  right: -8px;
}

@media (min-width: 768px) {
  .product-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (min-width: 1100px) {
  .product-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

.slider-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* About */

.about-section {
  padding: 0;
  background: var(--berry-dark);
  color: var(--white);
}

.about-content {
  padding: 64px 22px;
}

.about-content h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: 22px;
}

.about-content h2 span {
  color: var(--pink-soft);
}

.about-content p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Contact */

.contact-section {
  text-align: center;
  background: var(--white);
}

.contact-section h2 {
  margin-bottom: 18px;
}

.contact-section p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.contact-buttons {
  display: grid;
  gap: 12px;
}

/* Footer */

.site-footer {
  padding: 42px 22px;
  color: rgba(255, 255, 255, 0.76);
  background: #180612;
  text-align: center;
}

.site-footer img {
  width: 150px;
  margin: 0 auto 18px;
}

.site-footer p {
  margin-bottom: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
}

.site-footer a {
  font-size: 0.82rem;
}

/* Tablet */

@media (min-width: 768px) {
  section {
    padding: 86px 44px;
  }

  .site-header {
    padding: 18px 44px;
  }

  .logo img {
    width: 180px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-buttons {
    max-width: 480px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .about-content {
    padding: 86px 44px;
  }

  .about-image img {
    height: 100%;
    min-height: 500px;
  }
}

/* Desktop */

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav a {
    padding: 0;
    border: 0;
  }

  .hero {
    padding: 110px 8vw;
  }

  .intro,
  .products-section,
  .contact-section {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-content {
    padding: 110px 8vw;
  }
}