*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --red: #ff365f;
  --ink: #17151d;
  --coal: #17151d;
  --paper: #fff7ef;
  --white: #ffffff;
  --muted: rgba(23, 21, 29, 0.66);
  --line: rgba(23, 21, 29, 0.1);
  --blue: #315dff;
  --teal: #13d47f;
  --yellow: #f7ff4d;
  --pink: #ff365f;
  --shadow: 0 18px 38px rgba(23, 21, 29, 0.07);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2.2rem;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav.is-scrolled,
.nav.is-open {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(23, 21, 29, 0.08);
}

.nav__logo img {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav.is-scrolled .nav__logo img,
.nav.is-open .nav__logo img {
  filter: none;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 1.45rem;
}

.nav__links a,
.nav__cta {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__cta {
  border-radius: 999px;
  border: 2px solid currentColor;
  padding: 0.74rem 1.25rem;
}

.nav__menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav__menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.label {
  margin: 0 0 0.9rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem 2rem 2rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 21, 29, 0.98) 0%, rgba(23, 21, 29, 0.9) 44%, rgba(23, 21, 29, 0.76) 100%),
    var(--coal);
  text-align: left;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(90deg, rgba(255, 54, 95, 0.22), transparent 42%),
    linear-gradient(0deg, rgba(49, 93, 255, 0.18), transparent 46%);
  opacity: 0.78;
}

.hero::after {
  right: -10vw;
  bottom: -18vh;
  width: 48vw;
  height: 48vh;
  background: var(--yellow);
  opacity: 0.12;
  transform: rotate(-8deg);
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  min-height: calc(100svh - 9rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 2.25rem;
  align-items: center;
}

.hero__copy {
  max-width: 700px;
  padding: 2rem 0 2.8rem;
}

.hero h1 {
  margin: 0;
  font-size: 5.85rem;
  line-height: 0.91;
  font-weight: 950;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.045em;
}

.hero h1 span:nth-child(n + 2) {
  color: var(--red);
}

.hero p:not(.label) {
  max-width: 560px;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.14rem;
  line-height: 1.72;
}

.hero__media {
  height: min(680px, calc(100svh - 10rem));
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero__photo {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero__photo--main {
  grid-column: 1 / 8;
  grid-row: 1 / 6;
}

.hero__photo--wide {
  z-index: 2;
  grid-column: 6 / 13;
  grid-row: 5 / 9;
}

.hero__photo--small {
  grid-column: 8 / 13;
  grid-row: 2 / 5;
}

.hero__photo--tall {
  grid-column: 1 / 5;
  grid-row: 6 / 9;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 360ms ease;
}

.hero__photo--main img {
  object-position: 50% 52%;
}

.hero__photo--wide img {
  object-position: 54% 50%;
}

.hero__photo--small img {
  object-position: 68% 52%;
}

.hero__photo--tall img {
  object-position: 66% 52%;
}

.hero__photo:hover img {
  transform: scale(1.035);
}

.hero__photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.85rem 0.95rem;
  background: linear-gradient(180deg, rgba(23, 21, 29, 0), rgba(23, 21, 29, 0.9));
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__actions,
.button {
  display: flex;
  align-items: center;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 2.35rem;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 0 rgba(23, 21, 29, 0.14);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 0 rgba(23, 21, 29, 0.11);
}

.button--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--whatsapp {
  background: #22c55e;
  border-color: #22c55e;
  color: var(--white);
}

.ticker {
  overflow: hidden;
  background: var(--yellow);
  border-bottom: 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: moveTicker 28s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.4rem;
  color: rgba(23, 21, 29, 0.72);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 1.4rem;
  background: var(--red);
}

@keyframes moveTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.intro,
.photo-story,
.brands,
.quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.intro {
  min-height: 620px;
  background: var(--paper);
  border-bottom: 0;
}

.intro__copy {
  padding: 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro__copy h2,
.photo-story__copy h2,
.section-head h2,
.brands__copy h2,
.quote__form h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro__copy p:not(.label),
.photo-story__copy p,
.section-head p:not(.label),
.brands__copy p,
.quote__form p:not(.label) {
  max-width: 560px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.intro__image {
  margin: 2rem;
  min-height: calc(620px - 4rem);
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 22px 45px rgba(23, 21, 29, 0.12);
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-story {
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 100svh;
  gap: 1rem;
  padding: 7rem 2rem 2rem;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 0%, rgba(247, 255, 77, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(255, 54, 95, 0.2), transparent 30%),
    var(--coal);
  color: var(--white);
}

.photo-story .label {
  color: var(--yellow);
}

.photo-story__copy {
  min-height: 0;
  height: min(640px, calc(100svh - 9rem));
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.035);
}

.photo-story__copy p:not(.label) {
  color: rgba(255, 255, 255, 0.68);
}

.photo-story__grid {
  min-height: 0;
  height: min(640px, calc(100svh - 9rem));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.03);
  transition: transform 260ms ease;
}

.story-card:nth-child(1) img {
  object-position: 50% 38%;
}

.story-card:nth-child(2) img {
  object-position: 48% 46%;
}

.story-card:nth-child(3) img {
  object-position: 55% 52%;
}

.story-card:nth-child(4) img {
  object-position: 50% 58%;
}

.story-card:nth-child(5) img {
  object-position: 50% 50%;
}

.story-card:nth-child(6) img {
  object-position: 50% 48%;
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(23, 21, 29, 0), rgba(23, 21, 29, 0.92));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote__form label span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote__form input,
.quote__form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  outline: none;
}

.samples {
  padding: 7rem 2rem;
  background: var(--paper);
  border-top: 0;
}

.section-head {
  max-width: 1180px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
}

.section-head .label {
  grid-column: 1 / -1;
  margin-bottom: -2rem;
}

.sample-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 1rem;
}

.sample {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.sample--big {
  grid-column: span 2;
  grid-row: span 2;
}

.sample--wide {
  grid-column: span 2;
}

.sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.sample:hover img {
  transform: scale(1.03);
}

.sample figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(16, 17, 22, 0), rgba(16, 17, 22, 0.9));
  color: var(--white);
  font-weight: 900;
}

.statement {
  padding: 7rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--coal);
  border-top: 0;
  border-bottom: 0;
}

.statement h2,
.statement__text {
  max-width: 1050px;
  margin: 0;
  color: var(--white);
  font-size: 5rem;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.statement__text span {
  display: block;
}

.statement__red {
  color: var(--red);
}

.brands {
  background: var(--paper);
  border-bottom: 0;
}

.brands__copy {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 2rem 2rem 0;
}

.brand-grid img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 2rem;
  background: var(--white);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
  filter: grayscale(1) contrast(1.1);
}

.process {
  padding: 7rem 2rem;
  background: var(--paper);
}

.steps {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  min-height: 280px;
  padding: 1.55rem;
  background: var(--white);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.step span {
  display: block;
  margin-bottom: 3rem;
  color: var(--red);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 950;
}

.step h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote {
  background: var(--paper);
  border-top: 0;
}

.quote__image {
  min-height: 680px;
  overflow: hidden;
  margin: 2rem;
  border-radius: 1.6rem;
  box-shadow: 0 22px 45px rgba(23, 21, 29, 0.12);
}

.quote__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote__form {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 0.9rem;
  margin: 2rem 0 2rem 2rem;
  background: var(--white);
  border-radius: 1.6rem 0 0 1.6rem;
  box-shadow: -24px 0 55px rgba(23, 21, 29, 0.08);
}

.quote__form .label,
.quote__form h2 {
  grid-column: 1 / -1;
}

.quote__form h2 {
  font-size: 3.6rem;
}

.quote__form label {
  display: grid;
  gap: 0.45rem;
}

.quote__form label span {
  color: var(--muted);
}

.quote__wide {
  grid-column: 1 / -1;
}

.quote__form textarea {
  resize: vertical;
}

.quote__actions {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0.85rem;
}

.quote__actions .button {
  width: 100%;
  min-width: 0;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--paper);
  color: rgba(23, 21, 29, 0.62);
}

.footer img {
  width: 96px;
  height: auto;
}

.footer p {
  margin: 0;
  font-size: 0.82rem;
}

.hero__copy > *,
.hero__photo,
.nav__logo,
.nav__links a,
.nav__cta,
.story-card,
.sample,
.button {
  will-change: transform, opacity;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 4.7rem;
  }

  .hero__layout {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
  }

  .hero__media {
    height: min(600px, calc(100svh - 10rem));
    min-height: 480px;
  }

  .intro__copy h2,
  .photo-story__copy h2,
  .section-head h2,
  .brands__copy h2,
  .quote__form h2 {
    font-size: 3.25rem;
  }

  .statement h2 {
    font-size: 4rem;
  }
}

@media (max-width: 940px) {
  .nav {
    grid-template-columns: auto auto;
    padding: 0.9rem 1rem;
  }

  .nav__cta {
    display: none;
  }

  .nav__menu {
    display: flex;
    justify-self: end;
  }

  .nav__links {
    position: fixed;
    inset: 72px 1rem auto;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 1rem 0.3rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__links a:last-child {
    border-bottom: 0;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 1rem 1rem;
  }

  .hero__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__copy {
    max-width: 760px;
    padding: 2rem 0 0;
  }

  .hero__media {
    height: 540px;
    min-height: 0;
  }

  .intro,
  .photo-story,
  .brands,
  .quote,
  .section-head {
    grid-template-columns: 1fr;
  }

  .intro,
  .quote {
    min-height: auto;
  }

  .intro__copy,
  .photo-story__copy,
  .brands__copy,
  .quote__form {
    padding: 4rem 2rem;
  }

  .photo-story {
    padding: 1rem;
  }

  .photo-story__copy,
  .photo-story__grid {
    height: auto;
    min-height: auto;
    grid-template-rows: none;
  }

  .photo-story__grid {
    gap: 1.25rem;
    grid-auto-rows: 240px;
  }

  .intro__image,
  .quote__image,
  .quote__form {
    margin: 1rem;
    border-radius: 1.2rem;
  }

  .brand-grid {
    padding: 0 1rem 3rem;
  }

  .intro__image,
  .quote__image {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .photo-story__copy {
    min-height: auto;
  }

  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

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

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

@media (max-width: 620px) {
  .hero {
    padding: 6rem 1rem 1rem;
  }

  .hero h1 {
    width: auto;
    font-size: 2.45rem;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero p:not(.label) {
    font-size: 1rem;
  }

  .hero__media {
    height: 500px;
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }

  .hero__photo--main {
    grid-column: 1 / 13;
    grid-row: 1 / 4;
  }

  .hero__photo--wide {
    grid-column: 1 / 13;
    grid-row: 6 / 9;
  }

  .hero__photo--small {
    grid-column: 1 / 7;
    grid-row: 4 / 6;
  }

  .hero__photo--tall {
    grid-column: 7 / 13;
    grid-row: 4 / 6;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .button {
    width: min(100%, 300px);
    min-width: 0;
    padding-inline: 1.35rem;
  }

  .intro__copy,
  .photo-story__copy,
  .brands__copy,
  .quote__form {
    padding: 3.5rem 1rem;
  }

  .intro__copy h2,
  .photo-story__copy h2,
  .section-head h2,
  .brands__copy h2,
  .quote__form h2 {
    font-size: 2.45rem;
  }

  .photo-story {
    padding: 1rem;
  }

  .photo-story__copy {
    min-height: auto;
  }

  .photo-story__grid {
    grid-template-columns: 1fr;
    gap: 1.85rem;
    grid-auto-rows: auto;
  }

  .story-card,
  .story-card--large,
  .story-card--tall {
    aspect-ratio: 1 / 1;
    grid-column: auto;
    grid-row: auto;
  }

  .story-card:nth-child(1) {
    aspect-ratio: 9 / 20;
  }

  .story-card:nth-child(4),
  .story-card:nth-child(5) {
    aspect-ratio: 9 / 16;
  }

  .story-card img {
    height: 100%;
    object-fit: contain;
    background: var(--coal);
  }

  .samples,
  .statement,
  .process {
    padding: 4.5rem 1rem;
  }

  .section-head {
    gap: 1.7rem;
    margin-bottom: 2rem;
  }

  .section-head .label {
    margin-bottom: -1.2rem;
  }

  .sample-grid,
  .steps,
  .brand-grid,
  .quote__form,
  .quote__actions {
    grid-template-columns: 1fr;
  }

  .sample-grid {
    grid-auto-rows: auto;
  }

  .sample-grid,
  .brand-grid,
  .steps {
    gap: 1.85rem;
  }

  .sample--big,
  .sample--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .sample {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .sample:nth-child(1) {
    aspect-ratio: 20 / 9;
  }

  .sample:nth-child(3),
  .sample:nth-child(6) {
    aspect-ratio: 9 / 20;
  }

  .sample:nth-child(5) {
    aspect-ratio: 3 / 4;
  }

  .sample:nth-child(7),
  .sample:nth-child(8) {
    aspect-ratio: 9 / 16;
  }

  .sample img {
    height: 100%;
    object-fit: contain;
    background: var(--white);
  }

  .intro__image img,
  .quote__image img {
    object-fit: contain;
    background: var(--white);
  }

  .statement h2 {
    font-size: 2.65rem;
  }

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

/* ===== WHATSAPP FLOAT ===== */
.wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa:hover { transform: scale(1.1); }
.wa svg { width: 28px; height: 28px; fill: #fff; }
