/* =========================================================
   HairStudio Poznań – wspólny arkusz stylów
   Paleta: granat #0F1E47 / róż #EC2D7E / biel #FFF
   Font: Poppins (Google Fonts)
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F1E47;
  --navy-2: #15265a;
  --navy-3: #0a1638;
  --pink: #EC2D7E;
  --pink-2: #d61f6c;
  --pink-soft: #fce4ee;
  --text: #1c2541;
  --text-muted: #5a6585;
  --text-light: #7e87a3;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --border: #e6e8ef;
  --shadow-sm: 0 1px 3px rgba(15, 30, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 30, 71, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 30, 71, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(236, 45, 126, 0.35);
}
.btn-primary:hover { background: var(--pink-2); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(236, 45, 126, 0.45); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-row { display: flex; align-items: center; gap: 8px; }
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text .pink { color: var(--pink); }
.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 4px;
  margin-top: 4px;
  text-align: left;
}
.logo-scissors {
  width: 26px;
  height: 26px;
  color: var(--pink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--pink); }
.main-nav a.active {
  color: var(--navy);
  font-weight: 600;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    padding: 8px 0;
  }
  .main-nav { gap: 0; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { background: var(--pink-soft); color: var(--pink); }

  .nav-toggle { display: flex; }
  .nav-cta .btn { padding: 11px 18px; font-size: 12px; }
}
@media (max-width: 480px) {
  .nav-cta .btn-primary { display: none; }
  .nav-wrap { padding-block: 14px; }
}

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: -1px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1rem;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ---------- HERO ---------- */
.hero { padding: 0 0 80px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
  padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  padding-right: 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 8px 0 22px;
}
.hero p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 460px; }

/* Hero visual: cutout image on a circular backdrop */
.hero-visual {
  position: relative;
  aspect-ratio: 1/0.84;
  display: block;
  overflow: visible;
}
/* Image fills the FULL hero height, anchored bottom-right */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}
/* Half-circle backdrop - anchored to the right edge */
.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 105%;
  height: 190%;
  border-radius: 9999px 0 0 9999px;
  background: linear-gradient(to right, rgba(207, 211, 222, 0) 0%, rgba(224, 227, 235, 0.6) 50%, #cfd3de 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-image img {
  width: 655px;
  height: 750px;
  max-width: none;
  object-fit: cover;
  object-position: bottom center;
  margin: 0 0 -90px 73px;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; padding-left: 24px; padding-right: 24px; }
  .hero p { max-width: none; }
  .hero-visual { aspect-ratio: 1/1; max-width: 460px; margin: 0 auto; }
  .hero-image::before { width: 80%; height: 100%; aspect-ratio: auto; right: 0; left: auto; bottom: 0; top: 0; transform: none; border-radius: 9999px 0 0 9999px; }
  .hero-image img { width: 100%; height: auto; margin: 0; max-width: 100%; }
}

/* ---------- FEATURES (3-up) ---------- */
.features {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
}
.feature + .feature::before {
  content: "";
  position: absolute;
  left: -16px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.feature p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature + .feature::before { display: none; }
}

/* ---------- PORTFOLIO TEASER ---------- */
.portfolio-teaser {
  background: var(--bg-alt);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.teaser-text h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.8px;
}
.teaser-text p { color: var(--text-muted); margin-bottom: 26px; max-width: 380px; }
.teaser-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.teaser-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.teaser-images .img-card {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.teaser-images .img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.teaser-images img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .teaser-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  color: #fff;
}
.cta-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(236, 45, 126, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}
.cta-icon svg { width: 32px; height: 32px; }
.cta-text h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 6px; }
.cta-text p { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-banner-wrap { padding: 40px 0 0; }
@media (max-width: 760px) {
  .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .cta-icon { margin: 0 auto; }
  .cta-banner .btn { justify-self: center; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-3);
  color: #fff;
  padding: 64px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text .pink { color: var(--pink); }
.footer-brand .logo-sub { color: #fff; }
.footer-tag {
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease;
}
.socials a:hover { transform: translateY(-3px); }
.socials .fb { background: #1877F2; }
.socials .ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.socials svg { width: 18px; height: 18px; color: #fff; }

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: #fff;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--pink); }
.footer-col a.active { color: var(--pink); }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
.contact-list svg { width: 16px; height: 16px; color: var(--pink); margin-top: 4px; }

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
.hours-list li span:last-child { color: #fff; font-weight: 500; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bar a:hover { color: var(--pink); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------- PAGE HEADER ---------- */
.page-head {
  padding: 64px 0 24px;
}
.page-head h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -2px;
}
.page-head h1.center { text-align: center; }
.page-head .lead {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 1.05rem;
}
.page-head .lead.center { text-align: center; }

/* ---------- PRICING (cennik) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px 24px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(236, 45, 126, 0.35), 0 12px 30px rgba(236, 45, 126, 0.25), 0 0 40px rgba(236, 45, 126, 0.18);
  border-color: var(--pink);
}
.price-icon {
  display: flex; justify-content: center;
  margin-bottom: 18px;
  height: 80px;
  align-items: center;
}
.price-icon svg { width: 64px; height: 64px; color: var(--navy); }
.price-card.pink .price-icon svg { color: var(--pink); }
.price-card h3 {
  text-align: center;
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.price-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.price-list li .price { color: var(--navy); font-weight: 500; flex-shrink: 0; }
.pricing-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-light);
  font-size: 0.85rem;
}
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- O NAS ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 24px 0 80px;
}
.about-text h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 600;
}
.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 4/4.5;
  background: #ddd;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { text-align: center; padding: 18px 12px 22px; }
.team-info h4 {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-info p { color: var(--text-muted); font-size: 0.88rem; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- PORTFOLIO ---------- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
  transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.active { background: var(--pink); color: #fff; border-color: var(--pink); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.portfolio-grid .photo-card {
  aspect-ratio: 1/1.15;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #e2e2e2;
  cursor: pointer;
  position: relative;
  transition: transform .25s ease;
}
.portfolio-grid .photo-card:hover { transform: scale(1.03); }
.portfolio-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-grid .photo-card:hover img { transform: scale(1.06); }
.photo-card.hidden { display: none; }
.load-more-wrap { text-align: center; margin-top: 40px; }
@media (max-width: 960px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- KONTAKT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 24px 0 60px;
}
.contact-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(236,45,126,0.15);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { align-self: flex-start; }
.form-success {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #e7f7ec;
  color: #196f3d;
  font-size: 0.9rem;
  display: none;
}
.form-success.show { display: block; }

.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-info-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text);
  font-size: 0.95rem;
}
.contact-info-list .ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-list svg { width: 16px; height: 16px; }
.contact-info-list strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-info-list span { color: var(--text-muted); }

.hours-block { margin-top: 28px; }
.hours-block h4 {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hours-block ul { list-style: none; }
.hours-block li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.hours-block li span:last-child { color: var(--navy); font-weight: 500; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #e8eaf0;
  aspect-ratio: 1/1.05;
  position: relative;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .map-wrap { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { grid-column: auto; }
}

/* ---------- UTIL ---------- */
.fade-in { animation: fadeUp .6s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
