/* ============================================================
   ESTÉTICA NATURAL — Hoja de estilos
   Paleta: crema, blanco roto, verde salvia, verde oscuro, tierra
   Tipografía: Cormorant Garamond (serif) + Jost (sans-serif)
   ============================================================ */

:root {
  --cream: #F7F3EA;
  --cream-dark: #EDE6D6;
  --sage: #9CAF88;
  --sage-light: #C7D2B8;
  --sage-dark: #6E8261;
  --green-dark: #333F2C;
  --green-darker: #242E1F;
  --earth: #A67C52;
  --earth-light: #D8C3A5;
  --white: #FFFFFF;
  --text: #2B2B22;
  --text-light: #6B6B5A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Segoe UI', sans-serif;

  --container-width: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-height: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, address, blockquote, figure { margin: 0; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 20px;
  z-index: 2000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Grain / noise overlay — sutil, no interfiere con el contenido */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  white-space: nowrap;
}
.btn-small { padding: 11px 22px; font-size: 0.78rem; }
.btn-primary { background: var(--green-dark); color: var(--cream); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--green-dark); color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--cream); transform: translateY(-2px); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--green-dark); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.2;
  color: var(--green-darker);
}
.section-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 46ch;
  margin-top: 22px;
}
.section-header { max-width: 640px; margin-bottom: 60px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease), box-shadow 0.5s var(--ease), height 0.4s var(--ease);
}
.navbar.scrolled {
  height: 72px;
  background: rgba(247, 243, 234, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.5s var(--ease);
}
.navbar.scrolled .logo { color: var(--green-darker); }
.logo span { font-weight: 500; color: var(--sage-light); }
.navbar.scrolled .logo span { color: var(--sage-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-cta-mobile { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background-color 0.4s var(--ease);
}
.navbar.scrolled .menu-toggle span { background: var(--green-darker); }
.menu-toggle.active span { background: var(--green-darker); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg-wrap {
  position: absolute;
  left: 0; right: 0;
  top: -10%;
  height: 120%;
  overflow: hidden;
  will-change: transform;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 22s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,46,31,0.55) 0%, rgba(36,46,31,0.35) 45%, rgba(36,46,31,0.65) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.08;
  margin-bottom: 26px;
}
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 46ch;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-floats { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.float-chip {
  position: absolute;
  padding: 12px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  color: var(--white);
  animation: floatChip 6s ease-in-out infinite;
}
.float-chip--rating { top: 30%; right: 8%; animation-delay: 0s; }
.float-chip--attention { bottom: 22%; left: 6%; animation-delay: 1.2s; }
.float-chip--location { bottom: 12%; right: 12%; animation-delay: 2.4s; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
}
.scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  background: var(--white);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ============================================================
   PRESENTACIÓN
   ============================================================ */
.presentation { padding: 140px 0; background: var(--cream); }
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.presentation-media { overflow: hidden; border-radius: var(--radius); }
.presentation-media img { transition: transform 0.6s var(--ease); }
.highlight-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-top: 34px;
  padding-left: 24px;
  border-left: 2px solid var(--sage);
}

/* ============================================================
   TRATAMIENTOS — Bento grid
   ============================================================ */
.treatments { padding: 140px 0; background: var(--cream-dark); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}
.bento-card {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.bento-card--large { grid-column: span 2; grid-row: span 2; }
.bento-card--wide { grid-column: span 2; }
.bento-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.bento-card:hover img { transform: scale(1.08); }
.bento-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(36,46,31,0.85) 0%, rgba(36,46,31,0.1) 60%, transparent 100%);
  color: var(--white);
}
.bento-overlay h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 8px; }
.bento-overlay p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  max-width: 32ch;
}
.bento-overlay .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  align-self: flex-start;
}
.bento-card:hover .btn { opacity: 1; transform: translateY(0); }

/* ============================================================
   EXPERIENCIA
   ============================================================ */
.experience { padding: 140px 0; background: var(--cream); }
.experience-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-top: 50px;
}
.experience-line-track, .experience-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
}
.experience-line-track { background: var(--cream-dark); }
.experience-line-fill { background: var(--sage-dark); width: 0%; transition: width 0.2s linear; }
.experience-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--sage-light);
  display: block;
  margin-bottom: 18px;
}
.experience-item h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--green-darker); }
.experience-item p { color: var(--text-light); line-height: 1.6; }

/* ============================================================
   GALERÍA — Masonry
   ============================================================ */
.gallery { padding: 140px 0; background: var(--cream-dark); }
.masonry {
  columns: 3 220px;
  column-gap: 20px;
}
.masonry-item {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  break-inside: avoid;
  position: relative;
}
.masonry-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(36,46,31,0.25);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.masonry-item:hover::after { opacity: 1; }
.masonry-item img { width: 100%; transition: transform 0.7s var(--ease); }
.masonry-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 24, 17, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 82vw; max-height: 82vh; border-radius: var(--radius); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  padding: 12px;
  transition: opacity 0.3s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { opacity: 0.6; }
.lightbox-close { top: 24px; right: 32px; font-size: 2.2rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   OPINIONES
   ============================================================ */
.reviews { padding: 140px 0; background: var(--cream); text-align: center; }
.reviews .section-header { margin-left: auto; margin-right: auto; text-align: center; }
.rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-serif);
}
.rating-number { font-size: 2rem; color: var(--green-darker); }
.rating-stars { color: var(--earth); letter-spacing: 2px; }
.rating-of { color: var(--text-light); font-family: var(--font-sans); font-size: 0.9rem; }

.testimonial-slider { position: relative; max-width: 720px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial-slide { flex: 0 0 100%; padding: 0 60px; }
.testimonial-slide p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.6;
  color: var(--green-darker);
}
.testimonial-slide footer {
  margin-top: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--green-dark);
  transition: color 0.3s var(--ease);
}
.testimonial-arrow:hover { color: var(--sage-dark); }
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonial-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-dots .dot.active { background: var(--sage-dark); transform: scale(1.3); }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.location { padding: 140px 0; background: var(--cream-dark); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.location-info address { font-style: normal; font-size: 1.15rem; line-height: 1.7; color: var(--text); margin-top: 20px; }
.location-phone { font-size: 1.3rem; font-family: var(--font-serif); color: var(--sage-dark); margin-top: 10px; }
.location-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.location-tags { margin-top: 36px; display: flex; flex-direction: column; gap: 10px; }
.location-tags li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 22px;
  position: relative;
}
.location-tags li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
}
.location-map { border-radius: var(--radius); overflow: hidden; height: 420px; }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

/* ============================================================
   CONTACTO / RESERVA
   ============================================================ */
.contact { padding: 140px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.form-field label { font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light); }
.form-field input, .form-field select, .form-field textarea {
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  background: transparent;
  padding: 10px 2px;
  color: var(--text);
  transition: border-color 0.3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #B5533C; }
.form-error {
  font-size: 0.76rem;
  color: #B5533C;
  min-height: 14px;
}

.btn-submit { position: relative; margin-top: 8px; align-self: flex-start; }
.btn-submit .btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(247,243,234,0.4);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.is-loading .btn-label { opacity: 0.6; }
.btn-submit.is-loading .btn-spinner { display: inline-block; }
.btn-submit:disabled { cursor: default; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status { font-size: 0.9rem; min-height: 20px; }
.form-status.success { color: var(--sage-dark); }
.form-status.error { color: #B5533C; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  padding: 180px 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.cta-bg-wrap { position: absolute; inset: 0; }
.cta-bg-wrap img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 26s ease-out forwards; }
.cta-overlay { position: absolute; inset: 0; background: rgba(30,38,25,0.72); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-darker); color: rgba(247,243,234,0.75); padding: 60px 0; text-align: center; }
.logo-footer { display: inline-block; margin-bottom: 18px; color: var(--cream); }
.logo-footer span { color: var(--sage-light); }
.site-footer p { font-size: 0.88rem; margin-top: 8px; }
.footer-copy { color: rgba(247,243,234,0.45); margin-top: 20px; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease), background-color 0.3s var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--sage-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .presentation-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .presentation-grid { gap: 50px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .bento-card--large { grid-column: span 2; grid-row: span 1; }
  .bento-card--wide { grid-column: span 2; }
  .experience-line { grid-template-columns: 1fr; gap: 48px; }
  .experience-line-track, .experience-line-fill { width: 2px; height: 100%; top: 0; left: 0; }
  .masonry { columns: 2 200px; }
  .location-map { height: 320px; }
}

@media (max-width: 720px) {
  :root { --nav-height: 72px; }
  .container { padding: 0 22px; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--green-darker); font-size: 1.3rem; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 10px; }
  .menu-toggle { display: flex; }

  .hero-content { max-width: 100%; }
  .hero-floats { display: none; }

  .presentation, .treatments, .experience, .gallery, .reviews, .location, .contact { padding: 90px 0; }
  .form-row { grid-template-columns: 1fr; }

  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .bento-card--large, .bento-card--wide { grid-column: span 1; grid-row: span 1; }

  .masonry { columns: 1 100%; }

  .testimonial-slide { padding: 0 34px; }
  .testimonial-arrow { display: none; }

  .cta-final { padding: 110px 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-bg, .cta-bg-wrap img { animation: none !important; transform: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
