/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f3f3f3;
  --mid-gray: #e0e0e0;
  --text: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #888888;
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-light: #fef2f2;
  --red-soft: #fde8e8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red-dark);
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--off-white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.red-line {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid-gray);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.header__logo span {
  color: var(--red);
}

.header__nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header__nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.header__nav a:hover {
  color: var(--red);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.header__cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

.header__cta::after {
  display: none !important;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(168deg, var(--white) 60%, var(--red-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--red);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--red-light);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 480px;
}

.hero__disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, var(--red-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.1));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== PRICE TAG ===== */
.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--white);
  border: 2px solid var(--red);
  padding: 10px 24px;
  border-radius: 50px;
}

.hero__price-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
}

.hero__price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--red);
}

/* ===== BENEFITS ===== */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.benefit-card__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== CONTENT IMAGE SECTIONS ===== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse > * {
  direction: ltr;
}

.content-split__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-split__image:hover img {
  transform: scale(1.03);
}

.content-split__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.content-split__body p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.content-split__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.content-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--text-secondary);
}

.content-split__list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--red);
}

/* ===== INGREDIENTS ===== */
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ingredient-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.ingredient-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== AUDIENCE ===== */
.audience__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  transition: box-shadow var(--transition);
}

.audience-item:hover {
  box-shadow: var(--shadow-sm);
}

.audience-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.audience-item__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.audience-item__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== HOW TO USE ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== ORDER FORM ===== */
.order-section {
  background: linear-gradient(168deg, var(--red-light) 0%, var(--white) 100%);
}

.order-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mid-gray);
}

.order-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.order-card__subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.order-card__price {
  text-align: center;
  margin-bottom: 28px;
}

.order-card__price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
  background: var(--red-light);
  border-top: 2px solid var(--red);
  padding: 20px 0;
  text-align: center;
}

.disclaimer-banner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.disclaimer-banner svg {
  vertical-align: middle;
  margin-right: 6px;
  color: var(--red);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand span {
  color: var(--red);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__heading {
  font-weight: 700;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer__contact-line svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.visible {
  transform: translateY(0);
}

.cookie-modal__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-modal__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-modal__text a {
  text-decoration: underline;
}

.cookie-modal__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cookie-btn--accept {
  background: var(--red);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--red-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--mid-gray);
}

.cookie-btn--decline:hover {
  border-color: var(--text-secondary);
}

/* ===== INNER PAGES ===== */
.page-hero {
  padding: 100px 0 48px;
  background: linear-gradient(168deg, var(--white) 60%, var(--red-light) 100%);
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.contact-info-card__label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-info-card__value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== SUCCESS PAGE ===== */
.success-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.success-card {
  text-align: center;
  max-width: 520px;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.success-card__icon {
  width: 80px;
  height: 80px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-card__icon svg {
  width: 40px;
  height: 40px;
  color: var(--red);
}

.success-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-card__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-card__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}

.success-card__btn:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== ABOUT PAGE ===== */
.about-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.about-value {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}

.about-value__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-value__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__desc,
  .hero__disclaimer {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__image {
    max-height: 340px;
  }

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

  .content-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-split--reverse {
    direction: ltr;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateY(0);
  }

  .header__burger {
    display: flex;
  }

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

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

  .order-card {
    padding: 32px 24px;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
