/* ============================================================
   Oakly® — Modern Furnica · Hero
   ============================================================ */

:root {
  --white:       #ffffff;
  --white-soft:  rgba(255, 255, 255, 0.82);
  --white-dim:   rgba(255, 255, 255, 0.55);
  --bar:         rgba(70, 64, 58, 0.46);
  --chip:        rgba(22, 19, 16, 0.5);
  --btn:         #131110;
  --dark:        #131110;
  --oak:         #131110;
  --hero-bg:     #f3ede4;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:  cubic-bezier(0.45, 0, 0.15, 1);

  --font-sans:   "DM Sans", "General Sans", "Poppins", system-ui, -apple-system, sans-serif;
  --font-head:   "Sora", "DM Sans", "General Sans", sans-serif;
  --font-eyebrow: "Manrope", "DM Sans", sans-serif;
  --font-mono:   "Space Mono", ui-monospace, monospace;

  --pad-x: clamp(1.4rem, 3.2vw, 3.2rem);
}

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

html { overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--dark);
  /* Not clipping overflow-x here — see shop.css's body rule for why
     (breaks position:sticky descendants). <html> already clips it. */
}

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

/* ============================================================
   Intro curtain
   ============================================================ */

.curtain {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  pointer-events: none;
}

.curtain__panel {
  flex: 1;
  background: var(--dark);
  transform: scaleY(1);
}

.curtain__panel--left  { transform-origin: top; }
.curtain__panel--right { transform-origin: bottom; }

.is-loaded .curtain__panel {
  transition: transform 1.05s var(--ease-soft);
  transform: scaleY(0);
}

.is-loaded .curtain__panel--right { transition-delay: 0.1s; }

/* ============================================================
   Hero shell
   ============================================================ */

/* Outer neutral canvas the hero card sits on, like a windowed app */
.hero-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(0.7rem, 1.8vw, 1.5rem);
  background: var(--hero-bg);
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - clamp(1.4rem, 3.6vw, 3rem));
  height: calc(100svh - clamp(1.4rem, 3.6vw, 3rem));
  min-height: 560px;
  border-radius: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.4);
  background: var(--hero-bg);
}

/* -- Background --------------------------------------------------
   Photo with a dark wash so the white type stays readable. The
   hero-stage canvas behind the rounded corners still matches the
   section below. */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.08);
  animation: hero-kenburns 26s var(--ease-soft) infinite alternate;
}

@keyframes hero-kenburns {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-1.2%, -1%, 0); }
}

/* Full-bleed beige wash so centered white type always reads,
   whatever the photo underneath. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(41, 33, 24, 0.66) 0%, rgba(41, 33, 24, 0.42) 30%, rgba(41, 33, 24, 0.5) 62%, rgba(41, 33, 24, 0.78) 100%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.4;
}

.hero__glow--a {
  top: -10%;
  left: 8%;
  width: clamp(220px, 30vw, 480px);
  height: clamp(220px, 30vw, 480px);
  background: radial-gradient(circle, rgba(199, 154, 91, 0.4) 0%, rgba(199, 154, 91, 0) 70%);
  animation: glow-drift-a 18s ease-in-out infinite alternate;
}

.hero__glow--b {
  bottom: -12%;
  right: 6%;
  width: clamp(220px, 34vw, 520px);
  height: clamp(220px, 34vw, 520px);
  background: radial-gradient(circle, rgba(255, 244, 224, 0.5) 0%, rgba(255, 244, 224, 0) 70%);
  animation: glow-drift-b 22s ease-in-out infinite alternate;
}

@keyframes glow-drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 6%) scale(1.15); }
}

@keyframes glow-drift-b {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, -5%) scale(1.1); }
}

.hero__grain {
  position: absolute;
  inset: -100%;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  animation: grain-shift 9s steps(10) infinite;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-4%, -6%); }
  30% { transform: translate(5%, -3%); }
  50% { transform: translate(-6%, 4%); }
  70% { transform: translate(3%, 6%); }
  90% { transform: translate(-3%, 2%); }
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 7vw, 7.5rem);
  padding: clamp(1.2rem, 2.8vw, 2.4rem) var(--pad-x);
  transition: background-color 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out), padding 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

/* Sticky frosted state once the page scrolls past the hero — same light
   beige frosted-glass material as the footer, so they correlate. */
body.is-scrolled .nav {
  position: fixed;
  padding-block: clamp(0.7rem, 1.6vw, 1.2rem);
  background: rgba(243, 237, 228, 0.55);
  backdrop-filter: blur(30px) saturate(1.15);
  -webkit-backdrop-filter: blur(30px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 30px -22px rgba(40, 28, 16, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* Grain over the frosted bar, matching the footer's texture */
body.is-scrolled .nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
}

body.is-scrolled .nav__logo { filter: none; }
body.is-scrolled .nav__item a { color: var(--ink); }
body.is-scrolled .nav__burger-bar { background: var(--ink); }
body.is-scrolled .nav__dot { background: rgba(32, 26, 20, 0.35); }

.nav__brand {
  display: inline-flex;
  opacity: 0;
  transform: translateY(-14px);
}

.is-loaded .nav__brand {
  transition: opacity 0.7s var(--ease-out) 0.4s, transform 0.7s var(--ease-out) 0.4s;
  opacity: 1;
  transform: translateY(0);
}

/* logo.svg is near-black — invert it to white over the hero photo */
.nav__logo {
  height: clamp(36px, 3.8vw, 52px);
  width: auto;
  display: block;
  filter: invert(1) brightness(1.6);
  transition: filter 0.3s var(--ease-out);
}

/* Wrapper around links + CTA. On desktop it's transparent to layout
   (display: contents) so existing flex rules on .nav still apply. */
.nav__menu {
  display: contents;
}

.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.9em, 1.8vw, 1.6em);
  list-style: none;
  font-weight: 400;
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* -- Mobile hamburger -------------------------------------------- */

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  margin-left: auto;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__burger-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.25s var(--ease-out), width 0.25s var(--ease-out), background-color 0.3s var(--ease-out);
}

.nav__burger-bar:nth-child(2) { width: 70%; }

.nav.is-menu-open .nav__burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-menu-open .nav__burger-bar:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__burger-bar:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

.nav__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.nav__item a { position: relative; padding-bottom: 0.3em; color: var(--white); opacity: 0.75; transition: opacity 0.3s var(--ease-out), color 0.3s var(--ease-out); }
.nav__item a:hover { opacity: 1; }

.nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav__item a[aria-current="page"] { opacity: 1; }
.nav__item a[aria-current="page"]::after,
.nav__item a:hover::after { transform: scaleX(1); }

.nav__item {
  opacity: 0;
  transform: translateY(-16px);
}

.is-loaded .nav__item {
  transition:
    opacity 0.6s var(--ease-out) calc(0.52s + var(--i) * 0.07s),
    transform 0.6s var(--ease-out) calc(0.52s + var(--i) * 0.07s);
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Hero content — centered headline + social proof + email capture
   ============================================================ */

.hero__content {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: min(620px, 88%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* -- Social proof --------------------------------------------- */

.hero__social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px);
}

.is-loaded .hero__social {
  transition: opacity 0.7s var(--ease-out) 0.4s, transform 0.7s var(--ease-out) 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.hero__avatars { display: flex; }

.hero__avatar {
  width: 30px;
  height: 30px;
  display: block;
  flex: none;
  border-radius: 50%;
  margin-left: -9px;
  overflow: hidden;
  border: 1.5px solid rgba(10, 8, 7, 0.7);
  background: #3a3128;
  animation: avatar-bob 3.6s var(--ease-soft) infinite;
  animation-delay: calc(var(--i, 0) * 0.25s);
}

.hero__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero__avatar:first-child { margin-left: 0; }

@keyframes avatar-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero__social-text {
  font-size: 0.78rem;
  color: var(--white);
  white-space: nowrap;
}

.hero__social-text b { font-weight: 700; }

/* -- Headline --------------------------------------------------- */

.hero__title {
  margin-top: 1.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
}

.hero__title-line {
  display: block;
  overflow: hidden;
  transform: translateY(110%);
  filter: blur(6px);
  opacity: 0;
}

.is-loaded .hero__title-line {
  transition: transform 0.85s var(--ease-out) var(--d, 1.3s), filter 0.7s var(--ease-out) var(--d, 1.3s), opacity 0.6s var(--ease-out) var(--d, 1.3s);
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
}

.hero__title-line:nth-child(1) { --d: 0.55s; }
.hero__title-line:nth-child(2) { --d: 0.68s; }

.hero__sub {
  margin-top: 1.1rem;
  max-width: 42ch;
  font-weight: 300;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.6;
  color: var(--white);
  opacity: 0;
  transform: translateY(18px);
}

.is-loaded .hero__sub {
  transition: opacity 0.7s var(--ease-out) 0.85s, transform 0.7s var(--ease-out) 0.85s;
  opacity: 1;
  transform: translateY(0);
}

/* -- Email capture: frosted glass pill -------------------------- */

.hero__capture {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin-top: 1.9rem;
  padding: 0.35rem 0.35rem 0.35rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px -26px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.is-loaded .hero__capture {
  transition:
    opacity 0.7s var(--ease-out) 1.1s, transform 0.7s var(--ease-out) 1.1s,
    border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  opacity: 1;
  transform: translateY(0);
}

.hero__capture:focus-within {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px -26px rgba(0, 0, 0, 0.65), 0 0 0 3px rgba(199, 154, 91, 0.25);
}

/* Slow diagonal shimmer sweeping across the frosted bar */
.hero__capture-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.16) 46%, transparent 62%);
  transform: translateX(-100%);
  animation: capture-shine 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes capture-shine {
  0%, 30% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.hero__capture input {
  position: relative;
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.6rem 0;
}

.hero__capture input::placeholder { color: rgba(255, 255, 255, 0.62); }

.hero__capture button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: #1c1916;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.hero__capture button svg { width: 1.1em; height: 1.1em; }
.hero__capture button:hover { transform: scale(1.06); }

.hero__capture.is-sent button { background: var(--oak); color: var(--white); }
.hero__capture.is-sent { border-color: rgba(199, 154, 91, 0.6); animation: capture-pulse 1.2s var(--ease-out); }

@keyframes capture-pulse {
  0%   { box-shadow: 0 24px 60px -26px rgba(0,0,0,0.65), 0 0 0 0 rgba(199, 154, 91, 0.5); }
  100% { box-shadow: 0 24px 60px -26px rgba(0,0,0,0.65), 0 0 0 14px rgba(199, 154, 91, 0); }
}

.hero__capture-note {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(14px);
}

.is-loaded .hero__capture-note {
  transition: opacity 0.7s var(--ease-out) 1.35s, transform 0.7s var(--ease-out) 1.35s;
  opacity: 0.7;
  transform: translateY(0);
}

/* ============================================================
   Testimonial carousel — frosted cards docked at hero bottom
   ============================================================ */

.hero__reviews {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem clamp(1.2rem, 3vw, 3rem) clamp(1.4rem, 3.4vh, 2.2rem);
  background: linear-gradient(to top, rgba(8, 7, 6, 0.6) 0%, rgba(8, 7, 6, 0) 100%);
  opacity: 0;
  transform: translateY(24px);
}

.is-loaded .hero__reviews {
  transition: opacity 0.9s var(--ease-out) 1.5s, transform 0.9s var(--ease-out) 1.5s;
  opacity: 1;
  transform: translateY(0);
}

.hero__reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 0.9rem;
}

.hero__reviews-title {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
}

.hero__reviews-quote {
  font-size: 1.6em;
  line-height: 0;
  color: var(--oak);
}

.hero__reviews-nav { display: flex; gap: 0.5rem; }

.hero__reviews-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.hero__reviews-nav button svg { width: 15px; height: 15px; }
.hero__reviews-nav button:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.06); }

.hero__reviews-track {
  display: flex;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.2rem clamp(0.5rem, 2vw, 1.5rem) 0.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
}

.hero__reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(220px, 26vw, 270px);
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 0.4s var(--ease-out);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.13);
}

.review-card__text {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--white);
  min-height: 3.2em;
}

.review-card__foot {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.review-card__avatar {
  width: 26px;
  height: 26px;
  flex: none;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.review-card__who { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.review-card__who b { font-size: 0.78rem; font-weight: 600; color: var(--white); }
.review-card__who span { font-size: 0.68rem; color: var(--white); opacity: 0.65; }

.review-card__rating {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.review-card__rating svg {
  width: 12px; height: 12px;
  color: #c8cacd;
  animation: star-shimmer 2.2s ease-in-out infinite;
}

@keyframes star-shimmer {
  0%, 100% { color: #9a9ea3; filter: brightness(0.9); }
  50%      { color: #f4f6f8; filter: brightness(1.6) drop-shadow(0 0 3px rgba(255,255,255,0.7)); }
}

.hero__reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero__reviews-dots button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.hero__reviews-dots button.is-active {
  width: 16px;
  border-radius: 3px;
  background: var(--white);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .hero { min-height: 680px; }
  .hero__content { top: 44%; }
  .review-card { width: clamp(200px, 60vw, 240px); }
}

@media (max-width: 720px) {
  .nav { position: relative; }

  .nav__burger { display: flex; }

  .nav__menu {
    display: block;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(17, 15, 14, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: max-height 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
  }

  .nav.is-menu-open .nav__menu {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    margin-left: 0;
    padding: 1.6rem var(--pad-x) 1.8rem;
    font-size: 0.95rem;
  }

  .nav__dot { display: none; }

  .hero-stage { padding: 0.5rem; }
  .hero { min-height: 760px; border-radius: 14px; }

  .hero__content { top: 40%; width: 90%; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.6rem); margin-top: 1.1rem; }
  .hero__sub { font-size: 0.86rem; }
  .hero__social-text { font-size: 0.7rem; }

  .hero__reviews { padding: 1.2rem 1rem 1.4rem; }
  .hero__reviews-nav { display: none; }
  .review-card { width: 74vw; }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }

  .hero__title-line, .hero__sub, .hero__social, .hero__capture, .hero__capture-note,
  .hero__reviews, .hero__avatar,
  .nav__brand, .nav__item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
