/* Sanitaria YAA — distintivo + moderno
   Tipografía: Barlow Condensed + Lora | Paleta: logo (#05275f, #006eb6, #46a51c, #d62828) */

:root {
  --navy: #05275f;
  --blue: #006eb6;
  --green: #46a51c;
  --red: #e02020;
  --ink: #1a1a1a;
  --muted: #5c636e;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: #e5e1d9;
  --gradient-brand: linear-gradient(135deg, #064890 0%, #006eb6 50%, #238a50 100%);
  --shadow-sm: 0 2px 8px rgba(5, 39, 95, 0.06);
  --shadow-md: 0 8px 32px rgba(5, 39, 95, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --header-h: 72px;
  --sticky-bar-h: 64px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Lora', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(1080px, 90%);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-head { margin-bottom: 40px; }
.section-head--compact { margin-bottom: 28px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-head--line {
  padding-bottom: 20px;
  border-bottom: 3px solid var(--navy);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* Header moderno */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  contain: layout style;
  transform: translateZ(0);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.header.scrolled {
  background: var(--white);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
}

.header__nav a {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.header__nav a:hover,
.header__nav a.is-active {
  color: var(--navy);
  background: rgba(5, 39, 95, 0.06);
}
.header__nav a.is-active { font-weight: 700; }

.header__call {
  margin-left: auto;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__call-text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.header__call-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn--call {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(214, 40, 40, 0.35);
}
.btn--call:hover {
  background: #c41a1a;
  box-shadow: 0 8px 28px rgba(224, 32, 32, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--wa {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--wa:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { font-size: 1.25rem; padding: 18px 40px; }
.btn--full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  padding: calc(var(--header-h) + 56px) 0 80px;
  overflow: hidden;
  contain: layout style paint;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  transform: translateZ(0);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
}

.hero__pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-opacity 2s var(--ease) infinite;
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 18px 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.92);
}

.hero__chips svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.hero__figure {
  position: relative;
  margin: 0;
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--white);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

/* Triage cards */
.triage {
  padding: 56px 0;
  background: var(--white);
  scroll-margin-top: calc(var(--header-h) + 16px);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.triage__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.triage__grid a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.triage__grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.triage__urgent {
  background: rgba(214, 40, 40, 0.06) !important;
  border-color: rgba(214, 40, 40, 0.2) !important;
}
.triage__urgent:hover { border-color: var(--red) !important; }

.triage__wa:hover {
  border-color: rgba(37, 211, 102, 0.45) !important;
  background: rgba(37, 211, 102, 0.06) !important;
}

.triage__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.triage__urgent .triage__num { color: var(--red); }

.triage__text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
}

/* Services editorial */
.services {
  padding: 80px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.services__list { counter-reset: svc; }

.services__list li {
  counter-increment: svc;
  scroll-margin-top: calc(var(--header-h) + 24px);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 24px;
  padding: 28px 24px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  align-items: start;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.services__list li:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 110, 182, 0.25);
}

.services__list li::before {
  content: counter(svc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.services__list h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.services__list p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.9375rem;
}

/* About */
.about {
  padding: 80px 0;
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about__tags li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  background: var(--paper);
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
}

/* About gallery carousel */
.about-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 12px 16px;
  align-items: center;
}

.about-carousel__viewport {
  overflow: hidden;
  grid-column: 2;
  grid-row: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-carousel__track {
  display: flex;
  transition: transform 0.35s var(--ease);
  will-change: transform;
}

.about-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}

.about-carousel__slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  flex-shrink: 0;
}

@media (hover: hover) {
  .about-carousel__btn:hover:not(:disabled) {
    background: var(--paper);
    border-color: var(--blue);
  }
}

.about-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.about-carousel__btn--prev { grid-column: 1; grid-row: 1; }
.about-carousel__btn--next { grid-column: 3; grid-row: 1; }

.about-carousel__dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.about-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.about-carousel__dot.is-active {
  background: var(--blue);
  transform: scale(1.2);
}

.services__list p strong {
  color: var(--navy);
  font-weight: 600;
}

/* Quotes cards */
.quotes {
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* Reviews grid */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.quote-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease);
}
.quote-card:hover { box-shadow: var(--shadow-md); }

.quote-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.quote-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.quote-card__source {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.quote-card__source time {
  font-weight: 400;
}

.quotes__more {
  margin-top: 32px;
  text-align: center;
}

.quote-card blockquote p {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.quote-card blockquote {
  margin-bottom: 20px;
}

.quote-card figcaption {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

/* FAQ */
.faq {
  padding: 64px 0;
  background: var(--white);
  scroll-margin-top: calc(var(--header-h) + 16px);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq__item[open] {
  border-color: rgba(0, 110, 182, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Contact */
.contact {
  padding: 80px 0;
  background: var(--paper);
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.contact__layout {
  max-width: 640px;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact__channels li {
  margin-bottom: 8px;
}

.contact__channels a {
  display: block;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact__channels a:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--blue);
}

.contact__channels strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact__channels span {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}

/* Footer */
.footer {
  padding: 32px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-size: 0.875rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand img {
  height: 44px;
  width: auto;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer__areas {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

@media (hover: hover) {
  .footer__social a:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
  }
}

.footer__social a:active {
  background: var(--green);
  border-color: var(--green);
}

/* Sticky contact bar (mobile) */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  height: var(--sticky-bar-h);
  padding: 8px 12px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(5, 39, 95, 0.1);
  gap: 8px;
}

.sticky-bar__call {
  flex: 1.5;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  box-shadow: none;
}

.sticky-bar__call:hover {
  transform: none;
}

.sticky-bar__wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: var(--white);
  transition: background 0.2s var(--ease);
}

.sticky-bar__wa:hover {
  background: #1fb855;
}

/* WhatsApp float (desktop) */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 90;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.wa-float:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

/* Responsive */
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 959px) {
  .header__nav { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .header__nav.open a { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: var(--sticky-bar-h);
  }

  .header__call { display: none; }
  .header__toggle { display: flex; margin-left: auto; }

  .sticky-bar {
    display: flex;
  }

  .wa-float {
    display: none;
  }

  .triage__grid { grid-template-columns: 1fr; }

  .about__layout {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .header__toggle.open span:nth-child(2) { opacity: 0; }
  .header__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}
