/* =============================================================================
   Hưng Khúc — styles.css
   Cảm giác editorial kiểu MKBHD nhưng ấm & "người thật" hơn.
   Mobile-first, không phụ thuộc thư viện ngoài.
   ========================================================================== */

/* ----- Design tokens ----------------------------------------------------- */
:root {
  --bg: #fbf9f4;        /* nền trắng ấm */
  --bg-2: #f3efe6;      /* nền phụ nhạt */
  --ink: #1a1a18;       /* chữ gần đen */
  --ink-soft: #565650;  /* chữ phụ */
  --line: #e4ded1;      /* đường kẻ mảnh */
  --accent: #f7c948;    /* vàng highlight (bút dạ quang) */
  --dark: #121212;      /* nền tối: Deal ngon + footer */
  --dark-2: #1e1e1c;    /* thẻ trên nền tối */
  --dark-line: #34332f;
  --on-dark: #f4f1ea;   /* chữ trên nền tối */
  --on-dark-soft: #a8a59d;

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -24px rgba(20, 18, 12, 0.35);

  --font: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  /* Font hiển thị (display) cho các tiêu đề lớn — cá tính, editorial */
  --font-display: "Bricolage Grotesque", "Be Vietnam Pro", system-ui, sans-serif;
}

/* ----- Reset nhẹ --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

/* ----- Layout helpers ---------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.025em;
}

.section-head p {
  color: var(--ink-soft);
  margin: 14px 0 0;
  font-size: 1.02rem;
}

/* Highlight vàng kiểu bút dạ quang */
.hl {
  background: linear-gradient(
    to top,
    rgba(247, 201, 72, 0.85) 0%,
    rgba(247, 201, 72, 0.85) 42%,
    transparent 42%
  );
  padding: 0 0.06em;
  border-radius: 2px;
}

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: #000;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #1a1a18;
}
.btn--accent:hover {
  filter: brightness(1.05);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 0.88rem;
}

.btn--block {
  width: 100%;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ----- [1] NAV ----------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--ink-soft);
  font-weight: 700;
  border: 1px solid var(--line);
  flex: none;
}

.nav__menu {
  display: none;
  gap: 26px;
  margin-left: 14px;
}

.nav__menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav__menu a:hover {
  color: var(--ink);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav__social {
  display: none;
  gap: 4px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  border: none;
  transition: background 0.15s ease;
}
.icon-btn:hover {
  background: var(--bg-2);
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}

.nav__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.hamburger span::before {
  top: -6px;
}
.hamburger span::after {
  top: 6px;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0 18px;
}
.mobile-menu a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__social {
  display: flex;
  gap: 8px;
  padding-top: 14px;
}

/* ----- [2] HERO ---------------------------------------------------------- */
.hero {
  padding: 56px 0 40px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 82px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 15ch;
}
.hero__desc {
  margin: 26px 0 0;
  max-width: 56ch;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  color: var(--ink-soft);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ----- [3] DẢI NIỀM TIN -------------------------------------------------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust__grid {
  display: grid;
  gap: 22px;
  padding: 30px 0;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 300; /* mỏng, tinh tế */
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
.trust__item svg {
  width: 24px;
  height: 24px;
  color: var(--ink);
  stroke-width: 1.5; /* nét mảnh hơn cho icon */
  flex: none;
}

/* ----- [4] DEAL NGON (nền tối, slider ngang) ----------------------------- */
.deals {
  background: var(--dark);
  color: var(--on-dark);
}
.deals .eyebrow {
  color: var(--accent);
}
.deals .section-head h2 {
  color: #fff;
}
.deals .section-head p {
  color: var(--on-dark-soft);
}

.deals__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.deals__head .section-head {
  margin-bottom: 0;
}

.slider {
  position: relative;
}
.slider__nav {
  display: none;
  gap: 8px;
}
.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  background: var(--dark-2);
  color: var(--on-dark);
  display: grid;
  place-items: center;
}
.slider__btn:hover {
  border-color: var(--accent);
}
.slider__btn svg {
  width: 20px;
  height: 20px;
}

.slider__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--dark-line) transparent;
}
.slider__track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.slider__track::-webkit-scrollbar {
  height: 6px;
}
.slider__track::-webkit-scrollbar-thumb {
  background: var(--dark-line);
  border-radius: 100px;
}

.deal-card {
  scroll-snap-align: start;
  flex: 0 0 78%;
  max-width: 320px;
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  user-select: none;
}
.deal-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.deal-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #1a1a18;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 100px;
}
.deal-card__name {
  font-size: 1.12rem;
  font-weight: 800;
}
.deal-card__desc {
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  margin: 8px 0 14px;
  flex: 1;
}
.deal-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.deal-card__new {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.deal-card__old {
  color: var(--on-dark-soft);
  text-decoration: line-through;
  font-size: 0.92rem;
}
.deal-card__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px dashed var(--dark-line);
  border-radius: 10px;
  padding: 8px 8px 8px 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--on-dark-soft);
}
.deal-card__code b {
  color: var(--accent);
  letter-spacing: 0.04em;
}
.copy-btn {
  border: none;
  background: var(--dark-line);
  color: var(--on-dark);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}
.copy-btn:hover {
  background: var(--accent);
  color: #1a1a18;
}

.deals__foot {
  margin-top: 8px;
}
.deals__foot .link-more {
  color: var(--accent);
  border-color: var(--accent);
}

/* ----- [5] SẢN PHẨM ------------------------------------------------------ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.tab {
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 100px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.15s ease;
}
.tab:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

/* Badge số lượng còn lại trên thẻ deal (homepage slider + trang sản phẩm) */
.qty-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--accent);
  color: #1a1a18;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  padding: 4px 11px;
  border-radius: 100px;
}
.product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__name {
  font-size: 1.12rem;
  font-weight: 800;
}
.product-card__reason {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 9px 0 16px;
  flex: 1;
}
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.shop-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg-2);
  padding: 5px 11px;
  border-radius: 100px;
}
.shop-tag--deal {
  background: var(--accent);
  color: #1a1a18;
}

/* Hộp mã giảm giá trên thẻ deal trong trang sản phẩm (nền sáng) */
.product-card__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px dashed var(--ink-soft);
  border-radius: 10px;
  padding: 8px 8px 8px 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.product-card__code b {
  color: var(--ink);
  letter-spacing: 0.04em;
}
.product-card .copy-btn {
  background: var(--bg-2);
  color: var(--ink);
}
.product-card .copy-btn:hover {
  background: var(--accent);
  color: #1a1a18;
}

.section-foot {
  margin-top: 36px;
  text-align: center;
}

/* ----- Placeholder ảnh --------------------------------------------------- */
/* Ảnh thật trong các khung cố định: lấp đầy & cắt gọn (bỏ viền đen thumbnail) */
.deal-card__media img,
.product-card__media img,
.video-card__media img,
.short-card img,
.about__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: repeating-linear-gradient(
      -45deg,
      var(--bg-2),
      var(--bg-2) 12px,
      #ece6d8 12px,
      #ece6d8 24px
    );
}
.ph--dark {
  color: var(--on-dark-soft);
  background: repeating-linear-gradient(
      -45deg,
      #1a1a18,
      #1a1a18 12px,
      #232320 12px,
      #232320 24px
    );
}

/* ----- [6] VIDEO --------------------------------------------------------- */
.video__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.video__head .section-head {
  margin-bottom: 0;
}

.video-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.82);
  display: grid;
  place-items: center;
}
.play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}
.video-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin: 12px 0 6px;
}
.video-card__meta {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.subhead {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 48px 0 20px;
}

.shorts-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.short-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.short-card .ph {
  position: absolute;
  inset: 0;
}
.short-card__label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(18, 18, 18, 0.85);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 6px;
}
.short-card__title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 12px;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0) 100%
  );
}

/* ----- [7] VỀ TÔI — slideshow ------------------------------------------- */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  touch-action: pan-y;
}
.about__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.about__slide.active {
  opacity: 1;
}
.about__text {
  display: flex;
  flex-direction: column;
}
/* Nhãn nhỏ phía trên (cấp 1: ngữ cảnh) */
.about .eyebrow {
  color: var(--ink-soft);
  margin-bottom: 18px;
}
/* Câu trích (cấp 2: nội dung chính — nhẹ, dễ đọc, KHÔNG bold dày) */
.about__quote {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  min-height: 5em;
  margin: 0;
  transition: opacity 0.4s ease;
}
.about__quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 14px;
}
/* Chữ ký (cấp 3: nguồn) */
.about__sign {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: fit-content;
}
.about__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}
.about__arrows {
  display: flex;
  gap: 8px;
}
.about__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.about__arrow:hover {
  background: var(--ink);
  color: #fff;
}
.about__arrow svg {
  width: 18px;
  height: 18px;
}
.about__dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  padding: 0;
}
.dot.active {
  background: var(--ink);
  width: 26px;
  border-radius: 100px;
  transition: width 0.25s ease;
}

/* ----- [8] MINH BẠCH AFFILIATE ------------------------------------------ */
.disclosure {
  padding: 40px 0;
}
.disclosure__box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1.5px dashed var(--ink-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
}
.disclosure__box svg {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--ink);
  margin-top: 2px;
}
.disclosure__box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ----- [9] FOOTER -------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: var(--on-dark);
}
.footer__inner {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer__desc {
  color: var(--on-dark-soft);
  max-width: 40ch;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social .icon-btn {
  color: var(--on-dark);
  border: 1px solid var(--dark-line);
}
.footer__social .icon-btn:hover {
  background: var(--dark-2);
}
.footer__copy {
  color: var(--on-dark-soft);
  font-size: 0.85rem;
  border-top: 1px solid var(--dark-line);
  padding-top: 16px;
  margin-top: 4px;
}

/* ----- Toast (copy mã) --------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ----- Trang products.html ---------------------------------------------- */
.page-head {
  padding: 48px 0 8px;
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 56px);
  letter-spacing: -0.03em;
}
.page-head .back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 18px;
}
.page-head .back:hover {
  color: var(--ink);
}

/* ===== Tablet / Desktop ================================================== */
@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shorts-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .deal-card {
    flex-basis: 48%;
  }
  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 880px) {
  body {
    font-size: 18px;
  }
  .section {
    padding: 90px 0;
  }
  .nav__menu {
    display: flex;
  }
  .nav__social {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
  }
  .hamburger {
    display: none;
  }
  .slider__nav {
    display: flex;
  }
  .deal-card {
    flex-basis: 30%;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .hero {
    padding: 84px 0 56px;
  }
}

/* ----- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
