/*
Theme Name: Beautiq Studio V2
Theme URI: https://beautiqstudio.nl
Author: Alle Media Beheer
Description: Maatwerkthema v2 voor Beautiq Studio — full-bleed hero, carrousels en mobile-first UX. Specialist in Ombre Powder Brows, brow lamination en PMU in Rotterdam.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: beautiq-v2
*/

/* ---------- Custom properties ---------- */
:root {
  --cream: #f7f2ec;
  --cream-deep: #efe6da;
  --white: #fffdfb;
  --ink: #1c1714;
  --ink-soft: #6b6058;
  --bronze: #a87e58;
  --bronze-soft: #d9c3ae;
  --line: rgba(28, 23, 20, 0.12);
  --radius: 20px;
  --shadow: 0 20px 60px -24px rgba(28, 23, 20, 0.28);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.7rem, 6.4vw, 4.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; }
p { margin: 0 0 1em; }
.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section-head { max-width: 640px; }
.section-head p { color: var(--ink-soft); }
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--bronze); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--bronze-soft); transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255, 253, 251, 0.5); color: var(--white); background: rgba(28, 23, 20, 0.18); backdrop-filter: blur(4px); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(28, 23, 20, 0.36); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; position: relative; z-index: 70; }
.brand img { height: 26px; width: auto; transition: filter 0.3s ease; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .btn { padding: 0.7rem 1.5rem; }

/* Header boven donkere hero: licht logo en lichte links */
.site-header:not(.is-scrolled) .brand img { filter: invert(1) brightness(1.4); }
.site-header:not(.is-scrolled) .site-nav a:not(.btn) { color: var(--cream); }
.site-header:not(.is-scrolled) .nav-toggle span,
.site-header:not(.is-scrolled) .nav-toggle::before,
.site-header:not(.is-scrolled) .nav-toggle::after { background: var(--cream); }
.site-header:not(.is-scrolled) .site-nav .btn--primary { background: var(--cream); color: var(--ink); }
.site-header.is-scrolled {
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
/* Drawer open: logo en hamburger altijd licht (drawer is donker) */
body.nav-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
body.nav-open .site-header .brand img { filter: invert(1) brightness(1.4); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  position: relative;
  z-index: 70;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

/* ---------- Hero banner ---------- */
.hero-banner {
  position: relative;
  min-height: clamp(560px, 92svh, 860px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-banner__bg {
  position: absolute;
  inset: 0;
}
.hero-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 23, 20, 0.62) 0%, rgba(28, 23, 20, 0.42) 38%, rgba(28, 23, 20, 0.15) 64%, rgba(28, 23, 20, 0.03) 85%, transparent 100%),
    linear-gradient(0deg, rgba(28, 23, 20, 0.30) 0%, transparent 50%);
}
.hero-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-banner .container { position: relative; z-index: 2; padding: calc(var(--header-h) + 2rem) 0 4.5rem; }
.hero-banner__content { max-width: 640px; }
.hero-banner .eyebrow { color: var(--bronze-soft); }
.hero-banner .lead { color: rgba(255, 253, 251, 0.85); }
.hero-banner__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.9rem 0 2.3rem; }
.hero-banner__scroll {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 253, 251, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-banner__scroll::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(rgba(255, 253, 251, 0.7), transparent);
  animation: scrollhint 2.2s ease-in-out infinite;
}
@keyframes scrollhint { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 84s linear infinite;
}
.marquee__group { display: flex; }
.marquee__group span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.marquee__group span::after { content: "✦"; font-size: 0.7rem; font-style: normal; color: var(--bronze-soft); margin: 0 1.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Carrousel (generiek) ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0.25rem 0.5rem;
  margin: -0.25rem -0.25rem 0;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel__nav { display: flex; gap: 0.6rem; flex-shrink: 0; }
.carousel__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}
.carousel__btn:hover:not(:disabled) { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.carousel__btn:disabled { opacity: 0.3; cursor: default; }
.carousel__progress {
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  margin-top: 1.6rem;
  overflow: hidden;
}
.carousel__progress span {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--bronze);
  border-radius: 999px;
  transition: width 0.2s ease, transform 0.2s ease;
}

/* ---------- Video-reel ---------- */
.reel { background: var(--ink); }
.reel__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.reel__video {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- Diensten & prijzen ---------- */
.pricing { background: var(--cream); }
.section-head--center { margin-inline: auto; text-align: center; }
.price-list {
  max-width: 760px;
  margin: clamp(2rem, 5vw, 3.2rem) auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.3rem, 4vw, 3rem);
}
.price-list__group + .price-list__group { margin-top: 4.2rem; }
.price-list__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 1rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.7rem;
  margin-bottom: 0.4rem;
}
.price-list__head h3 { font-size: 1.55rem; margin: 0; }
.price-list__head p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.price-list__cta { text-align: center; margin-top: 2.6rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.price-row:last-of-type { border-bottom: 0; }
.price-row small { display: block; font-size: 0.82rem; color: var(--ink-soft); }
.price-row .price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; white-space: nowrap; }
.pricing__footnote { text-align: center; color: var(--ink-soft); font-size: 0.92rem; margin-top: 2.4rem; }
.pricing__footnote a { color: var(--bronze); }
.pricing__footnote a:hover { color: var(--ink); }

/* ---------- Resultaten ---------- */
.results { background: var(--white); }
.results .carousel__track { align-items: stretch; }
.result-tile {
  position: relative;
  width: min(70vw, 300px);
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
}
.result-tile--wide { width: min(86vw, 480px); }
.result-tile img, .result-tile video {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 9 / 16;
  transition: transform 0.5s ease;
}
.result-tile--wide img { aspect-ratio: 8 / 5; }
.result-tile:hover img { transform: scale(1.04); }
.results__tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: rgba(28, 23, 20, 0.78);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}
.results__cta { text-align: center; margin-top: 2.4rem; color: var(--ink-soft); }
.results__cta a { color: var(--bronze); font-weight: 500; }
.results__cta a:hover { color: var(--ink); }

/* ---------- Over ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__media { position: relative; max-width: 460px; }
.about__media img {
  border-radius: 240px 240px var(--radius) var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute;
  right: -1rem; bottom: 1.8rem;
  background: var(--white);
  border-radius: 16px;
  padding: 0.8rem 1.3rem;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  line-height: 1.4;
}
.about__badge strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; display: block; }
.about blockquote {
  margin: 1.8rem 0 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--bronze);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}
.about blockquote footer { font-family: var(--font-body); font-size: 0.85rem; font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.7rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink); color: var(--cream); text-align: center; }
.reviews__score { font-family: var(--font-display); font-size: clamp(3.4rem, 8vw, 5.5rem); font-weight: 600; line-height: 1; }
.reviews__stars { color: var(--bronze-soft); font-size: 1.4rem; letter-spacing: 0.35em; margin: 0.6rem 0 0.4rem; }
.reviews__sub { color: rgba(247, 242, 236, 0.65); font-size: 0.95rem; }
.reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.6rem;
  text-align: left;
}
.review-card {
  margin: 0;
  background: rgba(247, 242, 236, 0.06);
  border: 1px solid rgba(247, 242, 236, 0.16);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.review-card blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}
.review-card figcaption { font-size: 0.9rem; display: flex; flex-direction: column; gap: 0.15rem; }
.review-card figcaption span { color: var(--bronze-soft); font-size: 0.82rem; letter-spacing: 0.14em; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: clamp(2rem, 5vw, 3.2rem);
}
.contact__list { display: grid; gap: 1.3rem; margin-bottom: 2.2rem; }
.contact__list li { display: grid; gap: 0.15rem; }
.contact__list .label { font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); font-weight: 500; }
.contact__list a:hover { color: var(--bronze); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.hours td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 400; }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  height: 100%;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.socials { display: flex; gap: 1rem; margin-top: 0.4rem; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.socials a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bronze); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); max-width: 620px; margin-inline: auto; }
.cta-band p { color: rgba(255, 253, 251, 0.85); max-width: 520px; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247, 242, 236, 0.72); padding: 3.5rem 0 2rem; font-size: 0.92rem; }
.site-footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(247, 242, 236, 0.12); }
.site-footer img { height: 22px; width: auto; filter: invert(1); opacity: 0.9; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.site-footer a:hover { color: var(--cream); }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; padding-top: 1.6rem; font-size: 0.82rem; color: rgba(247, 242, 236, 0.45); }

/* ---------- Sticky mobiele boekbalk ---------- */
.book-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: none;
  gap: 0.7rem;
  padding: 0.7rem max(0.9rem, env(safe-area-inset-left)) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 30px -12px rgba(28, 23, 20, 0.25);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.book-bar.is-visible { transform: none; }
.book-bar .btn--primary { flex: 1; }
.book-bar__call {
  width: 50px; height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.book-bar__call svg { width: 19px; height: 19px; fill: var(--ink); }

/* ---------- Reveal animatie ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero-banner__scroll::after { animation: none; }
  .carousel__track { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .reel__grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .reel__grid::-webkit-scrollbar { display: none; }
  .reel__video { flex: 0 0 38vw; scroll-snap-align: start; }
  .about__media { margin-inline: auto; }
  .reviews__cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }

  /* Drawer: donker paneel dat van rechts inschuift, altijd crème tekst */
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.7rem;
    padding: var(--header-h) 2rem 3rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.26, 0.99), visibility 0s linear 0.4s;
    z-index: 65;
  }
  body.nav-open .site-nav {
    transform: none;
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.26, 0.99);
  }
  .site-nav a:not(.btn) {
    color: var(--cream) !important;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .site-nav a:not(.btn)::after { bottom: 4px; }
  .site-nav .btn--primary {
    background: var(--cream) !important;
    color: var(--ink) !important;
    margin-top: 0.8rem;
    padding: 0.95rem 2.6rem !important;
    font-size: 1rem;
  }

  /* Drawer-items zachtjes laten invliegen */
  .site-nav > * { opacity: 0; transform: translateY(14px); transition: opacity 0.3s ease, transform 0.3s ease; }
  body.nav-open .site-nav > * { opacity: 1; transform: none; }
  body.nav-open .site-nav > :nth-child(1) { transition-delay: 0.12s; }
  body.nav-open .site-nav > :nth-child(2) { transition-delay: 0.17s; }
  body.nav-open .site-nav > :nth-child(3) { transition-delay: 0.22s; }
  body.nav-open .site-nav > :nth-child(4) { transition-delay: 0.27s; }
  body.nav-open .site-nav > :nth-child(5) { transition-delay: 0.32s; }
  body.nav-open .site-nav > :nth-child(6) { transition-delay: 0.37s; }

  body.nav-open { overflow: hidden; }

  /* Hamburger wordt kruisje, altijd crème boven het donkere paneel */
  body.nav-open .nav-toggle span { opacity: 0; }
  body.nav-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); background: var(--cream); }
  body.nav-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); background: var(--cream); }

  .section-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .reel__video { flex-basis: 66.667vw; }
  .carousel__nav { display: none; }
  .book-bar { display: flex; }
  .site-footer { padding-bottom: 6.5rem; }
  .hero-banner__actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  .site-nav { transition: none; }
  .site-nav > * { transition: none; opacity: 1; transform: none; }
}
