/* Whisk PRO Cookbook — editorial, schlicht, hochwertig */

:root {
  --accent: #ef1b7d;
  --accent-dark: #bd075b;
  --accent-soft: rgba(239, 27, 125, 0.1);
  --bg: #ffffff;
  --bg-soft: #faf7f8;
  --bg-ink: #121212;
  --text: #121212;
  --text-muted: #5a5a5a;
  --border: rgba(166, 17, 97, 0.18);
  --radius: 4px;
  --radius-pill: 999px;
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-script: "Dancing Script", cursive;
  --font-sans: "Inter", system-ui, sans-serif;
  --container: 1040px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.age-locked {
  overflow: hidden;
}

.cookbook-topbar {
  height: 5px;
  background: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 2, 6, 0.92);
  backdrop-filter: blur(6px);
}

.age-gate[hidden] {
  display: none;
}

.age-card {
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  border-top: 6px solid var(--accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.age-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.age-card p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-decline {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.age-legal {
  margin-top: 1.5rem !important;
  font-size: 0.78rem !important;
  color: #999 !important;
}

.age-legal a {
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mascot {
  width: 2.55rem;
  height: 2rem;
  object-fit: contain;
  object-position: center;
  margin-right: -0.15rem;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.logo-pro {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
  margin-top: 0.35rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

@media (max-width: 760px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
}

/* Typography helpers */
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.12;
}

.en-keyword {
  color: var(--accent);
  font-style: italic;
}

.kink-word {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.section-title--light {
  color: #fff;
}

.section-sub {
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  max-width: 38rem;
  font-size: 1.02rem;
}

.section-sub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-sub--light {
  color: rgba(255, 255, 255, 0.82);
}

/* Hero — Whisk brand world */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 78% 50%, rgba(239, 27, 125, 0.43), transparent 25rem),
    radial-gradient(circle at 12% 5%, rgba(239, 27, 125, 0.22), transparent 20rem),
    #0b0a0d;
  color: #fff;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  pointer-events: none;
}

.hero::before {
  top: 26%;
}

.hero::after {
  bottom: 20%;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 380px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.hero-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-spark {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.7;
  transform: rotate(-16deg);
}

.hero-brand .logo-script {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #fff;
  text-shadow: 2px 2px 0 var(--accent), 0 0 28px rgba(239, 27, 125, 0.55);
}

.hero-brand .logo-pro {
  color: #ff9bc8;
  opacity: 1;
  letter-spacing: 0.12em;
  max-width: 9rem;
  line-height: 1.35;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  color: #ffb8d7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.hero h1 em {
  color: #ff78b5;
  font-style: normal;
}

.hero-tagline {
  margin: -0.7rem 0 1.25rem;
  color: #fff;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 30rem;
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 23rem;
  display: grid;
  place-items: center;
}

.hero-mascot-glow {
  position: absolute;
  width: min(30rem, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(70px);
  opacity: 0.5;
}

.hero-visual .hero-mascot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 34rem;
  height: auto;
  filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.45));
  transform: rotate(-2deg);
}

.hero-credit {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #ffb8d7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-brand,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    max-width: 430px;
    min-height: 0;
    margin: 0 auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }
}

/* Clear product definition */
.product-clarity {
  background: #fff;
}

.product-clarity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.product-clarity-media {
  margin: 0;
  overflow: hidden;
  background: #f4e6ed;
  box-shadow: 18px 18px 0 #f8d5e6;
}

.product-clarity-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-clarity-copy > p:not(.section-eyebrow) {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-points {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1.75rem 0 0;
  padding: 0;
}

.product-points li {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-top: 1px solid #eadde3;
}

.product-points strong {
  color: var(--accent-dark);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-points span {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .product-clarity-layout {
    grid-template-columns: 1fr;
  }

  .product-clarity-media {
    box-shadow: 10px 10px 0 #f8d5e6;
  }
}

/* wildaswhisk brand world */
.brand-manifest {
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 27, 125, 0.12), transparent 20rem),
    linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}

.brand-manifest-head {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.brand-manifest-head .section-title {
  color: var(--bg-ink);
  text-transform: none;
  letter-spacing: 0.01em;
}

.brand-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.brand-pillar {
  position: relative;
  overflow: hidden;
  min-height: 29rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg-ink);
  color: #fff;
  isolation: isolate;
}

.brand-pillar::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, rgba(5, 3, 5, 0.96));
}

.brand-pillar-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.brand-pillar-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-pillar-media--mascot {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(239, 27, 125, 0.76), rgba(12, 8, 12, 0.98) 64%);
}

.brand-pillar-media--mascot img {
  width: 122%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 1rem rgba(0, 0, 0, 0.4));
  transform: rotate(-5deg) translateY(-0.45rem);
}

.brand-pillar-label {
  margin: 0 0 0.4rem;
  color: #ff94c5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-pillar h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.brand-pillar p:last-child {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.make-it-yours {
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0;
  padding: clamp(1.5rem, 4vw, 2.65rem);
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) 1.2fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(239, 27, 125, 0.28);
  border-left: 5px solid var(--accent);
  background: #fff;
  box-shadow: 0 1.25rem 3.5rem rgba(70, 6, 37, 0.08);
}

.make-it-yours h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.1;
}

.make-it-yours p {
  margin: 0;
  color: var(--text-muted);
}

.make-it-yours strong {
  color: var(--accent-dark);
}

.creator-note {
  max-width: 48rem;
  margin: 1.4rem auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.creator-note span {
  color: var(--accent);
}

@media (max-width: 820px) {
  .brand-pillars {
    grid-template-columns: 1fr;
  }

  .brand-pillar {
    min-height: 25rem;
  }

  .brand-pillar-media--mascot img {
    width: min(31rem, 105%);
  }

  .make-it-yours {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  position: relative;
}

.section--soft {
  background: var(--bg-soft);
}

.section--accent {
  background: var(--accent);
  color: #fff;
}

.section--ink {
  background: var(--bg-ink);
  color: #fff;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head--bar {
  padding-left: 1.25rem;
  border-left: 5px solid var(--accent);
}

.section-head--center {
  text-align: center;
}

/* Teaser */
.teaser-grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.teaser-card {
  margin: 0;
  text-align: center;
}

.teaser-fig {
  margin: 0 0 1rem;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  background: #f0eced;
}

.teaser-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-caption {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: 0.02em;
  color: var(--text);
}

.teaser-hot {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.teaser-question {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 auto 2.5rem;
  max-width: 40rem;
}

.teaser-modes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.teaser-mode {
  margin: 0;
  text-align: center;
}

.teaser-mode-fig {
  margin: 0 0 1rem;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1 / 1;
  background: #f0eced;
}

.teaser-mode-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-mode h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.35rem;
  color: var(--accent);
}

.teaser-mode p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .teaser-modes {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .teaser-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Examples */
.examples-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.examples-card {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
}

.examples-fig {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.examples-fig img,
.examples-fig video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.examples-fig--video {
  background: #111;
}

.examples-fig--video video {
  object-fit: contain;
}

.examples-caption {
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--text);
}

@media (max-width: 640px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
}

/* Play styles */
.play-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.play-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.play-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.15rem;
  color: var(--text);
}

.play-card .play-en {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.play-card .play-mood {
  font-style: italic;
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.play-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.play-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.play-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Surrender */
.surrender {
  text-align: center;
}

.surrender-block {
  max-width: 34rem;
  margin: 0 auto;
}

.surrender-block p {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin: 0.35rem 0;
}

.surrender-note {
  font-family: var(--font-sans) !important;
  font-size: 0.98rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-top: 1.75rem !important;
  letter-spacing: 0 !important;
}

/* Toy im Detail — tabs */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.detail-visual {
  position: sticky;
  top: 96px;
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.detail-tab {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}

.detail-tab[aria-selected="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.detail-panel {
  display: none;
}

.detail-panel[data-active="true"] {
  display: block;
}

.detail-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

.detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}

.detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.detail-panel strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-visual {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Lieferumfang */
.liefer-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.liefer-card {
  background: var(--accent);
  color: #fff;
  padding: 1.35rem 1.25rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.liefer-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.liefer-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.liefer-card--wide {
  grid-column: span 2;
}

.extras-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.extras-block h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.extras-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .liefer-card--wide {
    grid-column: span 1;
  }
}

/* Features */
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.feature-icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* Connect guide */
.connect-intro {
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.connect-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.connect-step {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 2rem 2.5rem;
  align-items: center;
}

.connect-step-reverse {
  grid-template-columns: minmax(220px, 280px) 1fr;
}

.connect-step-reverse .connect-step-text {
  order: 2;
}

.connect-step-reverse .phone-frame {
  order: 1;
}

.connect-step-text {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-badge {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connect-step-text h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.connect-step-text p {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step-tip {
  font-size: 0.9rem !important;
  padding: 0.75rem 0.9rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  color: var(--text) !important;
}

.connect-step-text code {
  font-size: 0.88em;
  background: var(--bg-soft);
  padding: 0.12em 0.35em;
  border-radius: 3px;
}

.phone-frame {
  margin: 0;
  position: relative;
  padding: 0.6rem 0.6rem 0.9rem;
  background: #f3f3f3;
  border-radius: 24px;
  border: 2px solid #ddd;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #e8e8e8;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.connect-step-device-shot {
  grid-template-columns: 1fr minmax(260px, 520px);
}

.device-shot-frame {
  margin: 0;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.device-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .connect-step,
  .connect-step-reverse {
    grid-template-columns: 1fr;
  }

  .connect-step-reverse .connect-step-text,
  .connect-step-reverse .phone-frame {
    order: unset;
  }

  .phone-frame {
    max-width: 280px;
    margin: 0 auto;
  }

  .connect-step-device-shot {
    grid-template-columns: 1fr;
  }
}

/* Telegram section */
.telegram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.telegram-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.telegram-card .tg-icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.telegram-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.telegram-card p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.telegram-card .btn {
  margin-top: auto;
}

/* Etsy CTA */
.etsy-cta {
  text-align: center;
}

.etsy-box {
  background: var(--accent);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 3.75rem) clamp(1.5rem, 5vw, 3rem);
  max-width: 720px;
  margin: 0 auto;
  border: 3px solid #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.etsy-box .section-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.etsy-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.etsy-box p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Contact strip */
.contact-strip {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-strip a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-strip a:hover {
  text-decoration: underline;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-brand .logo-script {
  font-size: 1.75rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 24rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  color: #999;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Legal pages */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-page a {
  color: var(--accent);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.legal-placeholder {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-style: italic;
  color: var(--text);
}
