/* =========================================================
   R.DESIGN — Presentation & Visual Design
   Nahied Rasa Popal
   ========================================================= */

:root {
  --magenta:      #e6007e;
  --magenta-deep: #c2185b;
  --plum:         #3b0a2e;
  --plum-2:       #2a0820;
  --purple:       #6a1b9a;
  --coral:        #ff7a59;
  --cream:        #f3efe9;
  --ink:          #160b13;
  --ink-soft:     #4a3b45;
  --white:        #ffffff;

  --grad-hero: linear-gradient(120deg, #2a0820 0%, #6a1b9a 38%, #c2185b 70%, #ff7a59 110%);
  --grad-cta:  linear-gradient(125deg, #3b0a2e 0%, #7b1366 35%, #d6096d 72%, #ff7a59 115%);

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* keep anchored sections clear of the fixed header */
section[id] { scroll-margin-top: 92px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.eyebrow--dark { color: var(--magenta-deep); }

.section-head { margin-bottom: clamp(36px, 6vw, 70px); }
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-top: .35em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover { transform: translateY(-3px); }

.btn--solid {
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 12px 34px -14px rgba(0,0,0,.5);
}
.btn--solid:hover { background: var(--magenta); color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--dark {
  background: var(--ink);
  color: #fff;
  margin-top: 2rem;
}
.btn--dark:hover { background: var(--magenta); }

.btn--lg { font-size: .92rem; padding: 1.25em 2.6em; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .4s var(--ease), backdrop-filter .4s var(--ease),
              box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 20px 0;
}
.nav__inner {
  width: 100%; max-width: 1340px;
  margin-inline: auto; padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { margin-right: auto; }
.nav__logo img { height: clamp(36px, 4.6vw, 56px); width: auto; transition: height .4s var(--ease); }

.nav__links { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.nav__links a {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  padding: .6em 1.4em !important;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.nav__cta:hover { background: #fff; color: var(--plum); border-color: #fff; }

/* language switch */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: clamp(14px, 2vw, 26px);
}
.nav__lang span {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}
.nav__lang button {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 4px 2px;
  transition: color .3s var(--ease);
}
.nav__lang button:hover { color: #fff; }
.nav__lang button.is-active { color: #fff; border-bottom: 1px solid var(--magenta); }

/* scrolled state */
.nav.is-scrolled {
  background: rgba(28, 8, 22, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.7);
  padding: 12px 0;
}
.nav.is-scrolled .nav__logo img { height: clamp(32px, 3.8vw, 44px); }

/* burger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 42px;
  margin-left: 16px;
  background: none; border: none; cursor: pointer;
}
.nav__toggle span {
  display: block; height: 2px; width: 26px;
  background: #fff; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% center;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(33,8,26,.92) 0%, rgba(43,10,40,.62) 45%, rgba(43,10,40,.18) 100%),
    var(--grad-hero);
  mix-blend-mode: multiply;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,6,16,.55) 100%);
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding-inline: var(--gut);
  padding-top: 140px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 8.2vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  max-width: 14ch;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.hero__title em { font-weight: 500; color: #ffd9ec; }

.hero__lead {
  margin-top: 1.6rem;
  max-width: 44ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,.9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2.6rem; }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.55); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrolldot 1.6s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(-3px); }
  40% { opacity: 1; }
  80%,100% { opacity: 0; transform: translateY(12px); }
}

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.intro {
  background: var(--cream);
  padding: clamp(80px, 14vw, 170px) 0;
}
.intro__kicker {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--magenta-deep); margin-bottom: 1.6rem;
}
.intro__statement {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -.01em;
  max-width: 22ch;
  color: var(--ink);
}
.intro__statement span {
  font-style: italic;
  color: var(--magenta-deep);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 12vw, 150px) 0;
}
.services .section-title { color: #fff; }

.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.service {
  background: var(--ink);
  padding: clamp(30px, 4vw, 48px);
  transition: background-color .45s var(--ease);
  position: relative;
}
.service:hover { background: #2c2c30; }

/* logo tile filling the 6th cell */
.service--logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service--logo:hover { background: var(--ink); }
.service--logo img {
  width: min(70%, 240px);
  height: auto;
  opacity: .9;
}
.service__no {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--magenta);
  letter-spacing: .05em;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 1rem 0 .8rem;
  line-height: 1.15;
}
.service p {
  font-weight: 300;
  font-size: .98rem;
  color: rgba(255,255,255,.72);
  max-width: 34ch;
}

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work {
  background: var(--cream);
  padding: clamp(80px, 12vw, 150px) 0 clamp(40px, 6vw, 80px);
}
.work .section-title { color: var(--ink); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
  padding-inline: var(--gut);
  max-width: 1320px;
  margin-inline: auto;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
}
.gallery__item--tall { aspect-ratio: 3 / 4; grid-row: span 2; }
.gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 16 / 7; }

.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 26px 24px 20px;
  display: flex; flex-direction: column; gap: 2px;
  background: linear-gradient(180deg, transparent, rgba(20,6,16,.78));
  color: #fff;
  transform: translateY(8px); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery__item figcaption span {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--magenta);
}
.gallery__item figcaption em {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
  padding: clamp(70px, 12vw, 150px) 0;
}
.about__grid {
  display: block;
}
.about__text { max-width: 60ch; }
.about__text .section-title { color: var(--ink); margin-bottom: 1.6rem; }
.about__text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 1.1rem;
}
.about__highlight {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem) !important;
  line-height: 1.32;
  color: var(--ink) !important;
  margin-top: 1.6rem;
}
.about__highlight em {
  font-style: italic;
  color: var(--magenta-deep);
}
/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  color: #fff;
  padding: clamp(90px, 15vw, 190px) 0;
  text-align: center;
  overflow: hidden;
}
.contact__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--grad-cta);
  background-size: 220% 220%;
  animation: gradientShift 18s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.contact__inner { position: relative; z-index: 2; }
.contact__inner .eyebrow { margin-bottom: 1.4rem; }
.contact__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: 1;
}
.contact__title em { font-style: italic; color: #ffd9ec; }
.contact__lead {
  max-width: 40ch; margin: 1.4rem auto 2.6rem;
  font-weight: 300; font-size: 1.1rem; color: rgba(255,255,255,.9);
}
.contact__links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 4rem;
}
.contact__links li { display: flex; flex-direction: column; gap: .35rem; }
.contact__links span {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.contact__links a {
  font-family: var(--serif); font-size: 1.05rem;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .3s var(--ease);
}
.contact__links a:hover { border-color: rgba(255,255,255,.7); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--plum-2);
  color: rgba(255,255,255,.7);
  padding: 46px 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 22px;
}
.footer__logo img { height: 26px; opacity: .92; }
.footer__copy { font-size: .8rem; letter-spacing: .04em; }
.footer__social { display: flex; gap: 26px; }
.footer__social a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  transition: color .3s var(--ease);
}
.footer__social a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .about__grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .services__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .services__list { grid-template-columns: 1fr; }
  .service--logo { padding: 40px clamp(30px, 4vw, 48px); }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto;
    width: min(78vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 0 38px;
    background: rgba(24, 7, 19, .97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; }
  .nav__cta { margin-top: 10px; }

  body.menu-open { overflow: hidden; }
  .nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--tall, .gallery__item--wide {
    aspect-ratio: 4 / 3; grid-row: auto; grid-column: auto;
  }
  .gallery__item figcaption { transform: translateY(0); opacity: 1; }

  .hero__content { padding-top: 130px; }
}

@media (max-width: 480px) {
  .about__stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions { width: 100%; }
}

/* ============================================================
   LEGAL / IMPRESSUM / DATENSCHUTZ PAGES
   ============================================================ */
/* dark nav permanently on light sub-pages so the white logo/links stay readable */
.nav--solid {
  background: rgba(28, 8, 22, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, .7);
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(120px, 15vw, 180px) var(--gut) clamp(60px, 9vw, 120px);
}
.legal__hint {
  font-size: .85rem; color: var(--ink-soft); font-style: italic;
  border-left: 3px solid var(--magenta); padding: 4px 0 4px 16px; margin-bottom: 2.4em;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: .9em;
  color: var(--ink);
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 2.2em 0 .5em;
  color: var(--ink);
}
.legal p, .legal address {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1em;
  line-height: 1.75;
}
.legal address { white-space: pre-line; }
.legal a { color: var(--magenta-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal .legal__ph { color: var(--magenta-deep); font-weight: 500; }

.legal-footer {
  background: var(--plum-2);
  color: rgba(255,255,255,.7);
  padding: 30px 0;
  text-align: center;
  font-size: .8rem; letter-spacing: .04em;
}
.legal-footer a { color: rgba(255,255,255,.85); }

/* ============================================================
   COOKIE CONSENT / CMP
   ============================================================ */
.cmp {
  position: fixed; z-index: 200;
  left: 50%; bottom: clamp(12px, 3vw, 28px);
  transform: translateX(-50%);
  width: min(960px, calc(100% - 28px));
  background: rgba(28, 8, 22, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .7);
  padding: clamp(20px, 3vw, 28px);
}
.cmp[hidden] { display: none; }
.cmp__inner {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); flex-wrap: wrap;
}
.cmp__text { flex: 1 1 320px; }
.cmp__text h3 { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; margin-bottom: .4rem; }
.cmp__text p { font-size: .9rem; font-weight: 300; color: rgba(255, 255, 255, .78); line-height: 1.6; }
.cmp__text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cmp__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.btn-cmp {
  font-family: var(--sans); font-weight: 500; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .85em 1.5em; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all .3s var(--ease); white-space: nowrap;
}
.btn-cmp--solid { background: #fff; color: var(--plum); }
.btn-cmp--solid:hover { background: var(--magenta); color: #fff; }
.btn-cmp--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-cmp--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

.cmp-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.cmp-modal[hidden] { display: none; }
.cmp-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 4, 11, .6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.cmp-modal__box {
  position: relative; z-index: 1;
  width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--cream); color: var(--ink);
  border-radius: 16px; padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
}
.cmp-modal__box h3 { font-family: var(--serif); font-weight: 700; font-size: 1.6rem; margin-bottom: .5rem; }
.cmp-modal__intro { color: var(--ink-soft); font-weight: 300; font-size: .95rem; margin-bottom: 1.6rem; }
.cmp-cat { display: flex; flex-direction: column; gap: 14px; margin-bottom: 1.8rem; }
.cmp-cat li { border: 1px solid rgba(22, 11, 19, .12); border-radius: 12px; padding: 18px 20px; }
.cmp-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: .4rem; }
.cmp-cat__head strong { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; }
.cmp-cat__always { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta-deep); }
.cmp-cat p { font-size: .88rem; font-weight: 300; color: var(--ink-soft); line-height: 1.6; }
.cmp-modal__actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cmp-modal__actions .btn-cmp--ghost { color: var(--ink); border-color: rgba(22, 11, 19, .25); }
.cmp-modal__actions .btn-cmp--ghost:hover { border-color: var(--ink); background: rgba(22, 11, 19, .05); }
.cmp-modal__actions .btn-cmp--solid { background: var(--ink); color: #fff; }
.cmp-modal__actions .btn-cmp--solid:hover { background: var(--magenta); }

.cmp-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.cmp-switch input { opacity: 0; width: 0; height: 0; }
.cmp-switch span { position: absolute; inset: 0; cursor: pointer; background: rgba(22, 11, 19, .2); border-radius: 999px; transition: background .3s var(--ease); }
.cmp-switch span::before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .3s var(--ease); }
.cmp-switch input:checked + span { background: var(--magenta); }
.cmp-switch input:checked + span::before { transform: translateX(20px); }
.cmp-switch input:focus-visible + span { outline: 2px solid var(--magenta-deep); outline-offset: 2px; }

@media (max-width: 600px) {
  .cmp__actions { width: 100%; }
  .cmp__actions .btn-cmp { flex: 1 1 auto; }
}
