/* ============================================================
   Pizzería Artesanal v2 — Carta & Cenere
   Formato editorial: papel, tinta, acento óxido
   ============================================================ */

:root {
  color-scheme: light;

  --paper: #f4ead8;
  --paper-alt: #ebe0ca;
  --ink: #211d1a;
  --ink-soft: #4d443b;
  --ink-muted: #6a5d4d;
  --accent: #a03a1c;
  --accent-hover: #c14e25;
  --rule: rgba(33, 29, 26, 0.22);
  --rule-soft: rgba(33, 29, 26, 0.12);

  --bg: var(--paper);
  --bg-alt: var(--paper-alt);
  --surface: #fffdf7;
  --text: var(--ink);
  --text-muted: var(--ink-muted);

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius: 2px;

  --container: 1120px;
  --section-pad: clamp(4.5rem, 10vw, 7rem);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme='dark'] {
  color-scheme: dark;

  --paper: #191512;
  --paper-alt: #211d1a;
  --ink: #f2ead9;
  --ink-soft: #d6cbb4;
  --ink-muted: #a89b86;
  --accent: #d15a30;
  --accent-hover: #e87040;
  --rule: rgba(242, 234, 217, 0.22);
  --rule-soft: rgba(242, 234, 217, 0.1);

  --bg: var(--paper);
  --bg-alt: var(--paper-alt);
  --surface: #26201b;
  --text: var(--ink);
  --text-muted: var(--ink-muted);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.6rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Masthead / Nav ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
  transition: background var(--transition), border-color var(--transition);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 700;
  white-space: nowrap;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  transition: background 0.25s, color 0.25s;
}

.nav-logo:hover .nav-logo-mark {
  background: var(--ink);
  color: var(--bg);
}

.nav-logo-text {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme='light'] .theme-toggle .icon-sun { display: block; }
html[data-theme='light'] .theme-toggle .icon-moon { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Section helpers ---------- */
.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--rule-soft);
}

.section--paper {
  background: var(--bg-alt);
  transition: background var(--transition);
}

.section-head {
  margin-bottom: 3.25rem;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}

.section-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
  max-width: 20ch;
}

.section-aside {
  max-width: 360px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(3rem, 7vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 130px 1fr 120px;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3.5rem;
}

.hero-meta {
  padding-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  line-height: 2;
  border-left: 1px solid var(--rule);
  padding-left: 1rem;
}

.hero-copy .hero-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-lead {
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-stamp {
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-align: center;
  transform: rotate(8deg);
  opacity: 0.9;
  padding: 0.75rem;
}

.stamp-stars {
  font-size: 0.8rem;
  line-height: 1;
}

.stamp-line {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0.2rem 0;
}

.stamp-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.ticker-dot {
  color: var(--accent);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  touch-action: manipulation;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--ink);
  color: var(--paper);
}

.btn--solid:hover {
  background: var(--accent);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--rule);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
}

.btn--block { width: 100%; }

/* ---------- Manifesto ---------- */
.manifesto {
  margin-bottom: 3.5rem;
}

.manifesto-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.35;
  max-width: 26ch;
  margin-bottom: 2.5rem;
}

.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 720px;
  color: var(--text-muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  border-left: none;
  border-right: none;
}

.stat {
  padding: 1.5rem 1rem 1.25rem;
  border-right: 1px solid var(--rule-soft);
  text-align: center;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ---------- Carta (menú) ---------- */
.carta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.carta-group .carta-title {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink);
}

.carta-item {
  margin-bottom: 1.5rem;
}

.carta-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.carta-item-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  white-space: nowrap;
}

.carta-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--rule);
  min-width: 20px;
}

.carta-item-price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.carta-item-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.carta-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.carta-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.1rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Quotes ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  border-top: 2px solid var(--ink);
  padding-top: 1.5rem;
}

.quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.quote footer {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.quote cite {
  font-style: normal;
}

/* ---------- Hours ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hours-box {
  border: 1px solid var(--rule);
  padding: 2rem;
  background: var(--surface);
  transition: background var(--transition);
}

.hours-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hours-list li span:last-child {
  color: var(--text);
  font-weight: 600;
}

.hours-list .is-closed {
  color: var(--accent) !important;
}

.hours-address {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-top: 1px solid var(--rule);
  transition: border-color 0.25s;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.contact-lead {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}

.contact-list a:hover {
  color: var(--text);
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Form ---------- */
.contact-form {
  border: 1px solid var(--rule);
  padding: 2rem;
  background: var(--surface);
  transition: background var(--transition);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--accent);
}

.form-group .error-msg {
  display: none;
  color: var(--accent);
  font-size: 0.78rem;
  margin-top: 0.35rem;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.4em;
  text-align: center;
}

.form-feedback.is-success {
  color: var(--accent);
}

.form-feedback.is-error {
  color: var(--accent);
}

/* ---------- Colophon / Footer ---------- */
.colophon {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0;
}

.colophon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.colophon-credit a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.colophon-credit a:hover {
  text-decoration: underline;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(179, 64, 31, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  touch-action: manipulation;
}

.whatsapp-float svg { width: 26px; height: 26px; }

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 34px rgba(179, 64, 31, 0.5);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-meta {
    border-left: none;
    border-bottom: 1px solid var(--rule);
    padding-left: 0;
    padding-bottom: 0.75rem;
    display: flex;
    gap: 1.5rem;
  }

  .hero-stamp {
    display: none;
  }

  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--rule-soft); }

  .carta {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .quotes {
    grid-template-columns: 1fr;
  }

  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .manifesto-cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 720px) {
  .nav {
    height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 0.5rem 24px 1rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
    padding: 0.4rem 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  .nav-link::after { display: none; }

  .theme-toggle {
    margin-top: 0.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .carta-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ticker-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
