/* Hơ Mông — Homepage */

body.home {
  background: var(--purple-950);
  color: rgba(255, 255, 255, 0.88);
}

/* ── Header ── */
.home-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 5, 51, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}

.home-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
}

.home-header__logo img {
  height: 56px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.home-header__logo:hover img { transform: scale(1.04); }

.home-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.home-nav__link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  transition: var(--transition);
}

.home-nav__link:hover,
.home-nav__link--active {
  color: var(--gold-light);
  background: rgba(251, 191, 36, 0.12);
}

.home-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 3px;
  margin-right: 8px;
}

.lang-switch__btn {
  padding: 6px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-switch__btn.active {
  background: var(--gold);
  color: var(--purple-950);
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: 1.125rem;
  transition: var(--transition);
}

.icon-btn:hover {
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.icon-btn .badge {
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: var(--purple-950);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

/* Search overlay */
.search-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.search-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}

.search-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.search-panel.is-open .search-panel__backdrop { opacity: 1; }

.search-panel__box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: var(--purple-900);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-panel.is-open .search-panel__box { transform: translateY(0); }

.search-panel__form {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.search-panel__input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  outline: none;
}

.search-panel__input::placeholder { color: rgba(255, 255, 255, 0.45); }

.search-panel__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.search-panel__close {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  padding: 10px;
}

/* ── Hero Carousel ── */
.hero {
  position: relative;
  min-height: 88vh;
  max-height: 920px;
  overflow: hidden;
  background: var(--purple-950);
}

.hero__track { position: relative; height: 88vh; max-height: 920px; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.hero__slide--active { opacity: 1; visibility: visible; }

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.hero__slide--active .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(26, 5, 51, 0.94) 0%,
    rgba(76, 29, 149, 0.78) 50%,
    rgba(220, 38, 38, 0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 40px 0 72px;
}

.hero__badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-950);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  animation: pulse-badge 2s ease-in-out infinite;
}

.hero__badge--red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, #ef4444, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title em {
  display: block;
  font-style: normal;
  font-size: 0.65em;
  color: var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
  margin-top: 6px;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.countdown__box {
  text-align: center;
  min-width: 72px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius);
}

.countdown__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown__lbl {
  font-size: 0.625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.countdown__sep {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(239, 68, 68, 0.45);
  transition: all 0.35s ease;
}

.btn-cta:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(239, 68, 68, 0.55);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.hero__arrow:hover { background: rgba(251, 191, 36, 0.3); color: var(--gold-light); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.hero__dot--active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

/* ── Categories ── */
.categories {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--purple-950) 0%, #1a0533 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
}

.section-head__label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 10px;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.2);
}

.cat-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-card__img { transform: scale(1.08); }

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26, 5, 51, 0.92) 100%);
}

.cat-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}

/* ── Video / Our Story ── */
.story {
  padding: 72px 0;
  background: #1a0533;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}

.story__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.story__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 1rem;
}

.story__player {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.story__player video,
.story__player iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* ── Core Values ── */
.values {
  padding: 72px 0;
  background: var(--purple-950);
  border-top: 1px solid rgba(251, 191, 36, 0.1);
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.value-card__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(251, 191, 36, 0.45);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

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

.value-card:hover .value-card__icon img { transform: scale(1.1); }

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ── Flash Sale ── */
.flash {
  padding: 72px 0 96px;
  background: linear-gradient(160deg, #1a0533 0%, var(--purple-900) 50%, var(--purple-950) 100%);
}

.flash__head { text-align: center; margin-bottom: 44px; }

.flash__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ef4444, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.flash__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.flash__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.flash-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.flash-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.2);
}

.flash-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.flash-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flash-card:hover .flash-card__img-wrap img { transform: scale(1.06); }

.flash-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 999px;
}

.flash-card__body { padding: 16px; }

.flash-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.flash-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.flash-card__price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gold-light);
}

.flash-card__price--old {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.flash-card__stock {
  margin-bottom: 14px;
}

.flash-card__stock-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.flash-card__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.flash-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, var(--gold));
  border-radius: 999px;
  transition: width 1s ease;
}

.flash-card__btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ef4444, var(--gold));
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.flash-card__btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* ── Footer (doubleboss-style) ── */
.home-footer {
  padding: 64px 0 0;
  background: linear-gradient(180deg, #0a0218 0%, #0f0320 100%);
  border-top: 1px solid rgba(251, 191, 36, 0.15);
  position: relative;
}

.home-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), var(--gold), rgba(239, 68, 68, 0.4), transparent);
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.home-footer__brand { max-width: 320px; }

.home-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.home-footer__logo img {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
}

.home-footer__logo:hover img { transform: scale(1.04); }

.home-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.home-footer__social {
  display: flex;
  gap: 10px;
}

.home-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: all 0.25s ease;
}

.home-footer__social-link:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.4);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.home-footer__heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.home-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.home-footer__list i {
  color: var(--gold);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.home-footer__list a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.home-footer__list a:hover { color: var(--gold-light); }

.home-footer__links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-footer__links-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.home-footer__links-list a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.home-footer__newsletter-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.home-footer__newsletter {
  display: flex;
  gap: 8px;
}

.home-footer__newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 0.8125rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.home-footer__newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.home-footer__newsletter input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.12);
}

.home-footer__newsletter button {
  padding: 12px 18px;
  background: linear-gradient(135deg, #ef4444, var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s;
}

.home-footer__newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.home-footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.home-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Mobile nav drawer ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1500;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--purple-900);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__close {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .categories__grid,
  .flash__grid { grid-template-columns: repeat(2, 1fr); }
  .story__inner { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .home-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .home-footer__brand { grid-column: span 2; max-width: none; }
}

@media (max-width: 768px) {
  .home-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: block; }
  .lang-switch__btn { padding: 6px 8px; font-size: 0.625rem; }
  .hero { min-height: 75vh; }
  .hero__track { height: 75vh; }
  .hero__arrow { width: 40px; height: 40px; }
  .countdown__box { min-width: 60px; padding: 10px; }
  .countdown__num { font-size: 1.375rem; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .flash__grid { grid-template-columns: 1fr; }
  .home-header__logo img { height: 44px; }
  .hero__title { font-size: 2.25rem; }
  .home-footer { padding-top: 48px; }
  .home-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .home-footer__brand { grid-column: span 1; }
  .home-footer__newsletter { flex-direction: column; }
  .home-footer__newsletter button { width: 100%; }
}
