:root {
  --navy: #07324a;
  --navy-900: #031d2b;
  --navy-800: #05283c;
  --cream: #f3ecd9;
  --cream-2: #fbf7ee;
  --paper: #fffaf0;
  --terracotta: #d75a16;
  --terracotta-2: #b94710;
  --copper: #d9894a;
  --teal: #30a9bd;
  --ink: #0b2633;
  --muted: #66747b;
  --line: rgba(7, 50, 74, .13);
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(5, 31, 46, .12);
  --shadow-card: 0 22px 70px rgba(5, 31, 46, .16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-2);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  background: var(--terracotta);
  color: var(--white);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-cream {
  background: var(--cream);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .96;
}

p {
  line-height: 1.68;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(255,255,255,.22), transparent 42%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-2));
  box-shadow: 0 14px 32px rgba(215, 90, 22, .24);
}

.btn--dark {
  color: var(--white);
  background: var(--navy);
}

.btn--dark:hover {
  background: var(--navy-900);
}

.btn--outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 22px;
  color: var(--terracotta);
  font-size: .9rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform .25s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: var(--cream);
  color: var(--navy);
  transition: opacity .55s ease, visibility .55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.preloader__seal {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(7, 50, 74, .14);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1000;
  width: min(1120px, calc(100% - 32px));
  height: 68px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 16px 0 22px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  background: rgba(251, 247, 238, .88);
  box-shadow: 0 14px 50px rgba(4, 30, 45, .16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    width .25s ease,
    height .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  height: 62px;
  background: rgba(251, 247, 238, .96);
  box-shadow: 0 12px 38px rgba(4, 30, 45, .16);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 145px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--navy-900);
  font-size: .88rem;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--terracotta);
  transition: width .25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.header-cta {
  min-height: 46px;
  padding-inline: 24px;
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  height: 86svh;
  max-height: 780px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(217, 90, 22, .2), transparent 24%),
    linear-gradient(90deg, rgba(3,29,43,.94) 0%, rgba(3,29,43,.78) 42%, rgba(3,29,43,.34) 100%),
    linear-gradient(180deg, rgba(3,29,43,.18) 0%, rgba(3,29,43,.72) 100%);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.9) contrast(1.02);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
  padding-top: 82px;
}

.hero__copy {
  max-width: 670px;
}

.hero h1 {
  max-width: 640px;
  color: var(--paper);
  font-size: clamp(3.6rem, 7vw, 6.7rem);
}

.hero__lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background: rgba(3, 29, 43, .44);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: .98;
}

.hero-card__line {
  height: 1px;
  margin: 20px 0;
  background: rgba(255,255,255,.14);
}

.hero-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.76);
  font-size: .92rem;
}

.hero-card li {
  position: relative;
  padding-left: 18px;
}

.hero-card li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* Brand strip */
.brand-strip {
  padding: 26px 0;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}

.brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.brand-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 22px;
  background: rgba(255,255,255,.72);
}

.brand-strip__item span {
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 900;
}

.brand-strip__item strong {
  color: var(--navy);
  font-size: .95rem;
}

/* Products */
.products {
  padding: 78px 0 88px;
}

.section-heading {
  max-width: 760px;
}

.section-heading--center {
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 610px;
  margin: 18px auto 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 330px;
  padding: 18px;
  border: 1px solid rgba(7, 50, 74, .11);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 90, 22, .22);
  box-shadow: var(--shadow-card);
}

.product-card__media {
  min-height: 294px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(217,90,22,.1), transparent 45%),
    linear-gradient(180deg, rgba(7,50,74,.08), rgba(255,255,255,.22));
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 8px 14px 28px;
}

.product-card__tag {
  margin: 0 0 8px;
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-card h3 {
  color: var(--navy);
  font-size: clamp(2.1rem, 3.1vw, 3rem);
}

.product-card__text {
  max-width: 330px;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: .98rem;
}

.choice {
  display: inline-flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
}

.choice__item {
  min-width: 78px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 900;
  transition:
    background .2s ease,
    color .2s ease;
}

.choice__item.is-active {
  color: var(--white);
  background: var(--navy);
}

.product-card__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.product-card__bottom strong {
  color: var(--navy);
  font-size: 1.2rem;
  white-space: nowrap;
}

.product-card__bottom .btn {
  min-height: 42px;
  padding-inline: 18px;
}

/* Origin */
.origin {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 600px;
  background: var(--cream-2);
}

.origin__media {
  min-height: 520px;
  overflow: hidden;
}

.origin__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 92px);
}

.origin__content h2 {
  max-width: 590px;
  color: var(--navy);
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
}

.origin__content p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
}

.origin__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.origin__facts div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.66);
}

.origin__facts strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.origin__facts span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

/* Sensory */
.sensory {
  padding: 82px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(217,90,22,.16), transparent 25%),
    var(--navy-900);
  overflow: hidden;
}

.sensory__grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.sensory__copy h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.sensory__copy p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
}

.sensory-slider {
  width: 100%;
  overflow: hidden;
}

.sensory-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  backdrop-filter: blur(18px);
}

.sensory-card span {
  color: var(--copper);
  font-size: .85rem;
  font-weight: 900;
}

.sensory-card strong {
  display: block;
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: .95;
}

.sensory-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.66);
}

/* B2B */
.b2b {
  padding: 82px 0;
}

.b2b__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .8fr);
  gap: 54px;
  align-items: center;
}

.b2b__copy h2 {
  max-width: 650px;
  color: var(--navy);
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
}

.b2b__copy p {
  max-width: 620px;
  margin: 20px 0 26px;
  color: var(--muted);
}

.b2b__cards {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow-soft);
}

.b2b__cards article {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.68);
}

.b2b__cards span {
  color: var(--terracotta);
  font-weight: 900;
  font-size: .84rem;
}

.b2b__cards strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1;
}

.b2b__cards p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
  background: var(--navy-900);
  overflow: hidden;
}

.gallery__item {
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.02);
  transition:
    transform .65s ease,
    filter .65s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}

/* Contact */
.contact {
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,29,43,.96), rgba(3,29,43,.87)),
    url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=2200&auto=format&fit=crop") center/cover;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 54px;
  align-items: center;
}

.contact__copy h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.4vw, 5.3rem);
}

.contact__copy p {
  max-width: 620px;
  margin: 20px 0 26px;
  color: rgba(255,255,255,.72);
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(18px);
}

.contact-card__label {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 2.3rem;
}

.contact-card span,
.contact-card a {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.76);
}

.contact-card a:hover {
  color: var(--white);
}

.contact-card hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

/* Footer */
.footer {
  padding: 26px 0;
  color: rgba(255,255,255,.74);
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer img {
  width: 124px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer a,
.footer p {
  margin: 0;
  font-size: .84rem;
}

.footer a:hover {
  color: var(--white);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 34px rgba(18,140,126,.28);
  font-size: .9rem;
  font-weight: 900;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18,140,126,.34);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: smooth;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 170px 1fr auto;
  }

  .brand img {
    width: 132px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
  }

  .hero-card {
    max-width: 480px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 260px 1fr;
  }

  .origin,
  .sensory__grid,
  .b2b__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .origin__media {
    min-height: 420px;
  }

  .sensory__copy {
    max-width: 620px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer img {
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    height: 64px;
    grid-template-columns: 1fr auto;
    width: min(100% - 22px, 1120px);
    padding: 0 12px 0 18px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: rgba(7,50,74,.08);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition:
      transform .25s ease,
      opacity .25s ease;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 26px;
    background: rgba(251,247,238,.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity .22s ease,
      transform .22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 690px;
    height: auto;
    max-height: none;
    padding: 120px 0 58px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 5.6rem);
  }

  .brand-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products,
  .sensory,
  .b2b,
  .contact {
    padding: 68px 0;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__media {
    min-height: 280px;
  }

  .product-card__info {
    padding: 24px 6px 8px;
  }

  .product-card__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .origin__content {
    padding: 68px 24px;
  }

  .origin__facts {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .gallery__item {
    height: 220px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 122px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero__lead {
    font-size: .98rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 22px;
  }

  .brand-strip__grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .origin__content h2,
  .b2b__copy h2,
  .contact__copy h2 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .product-card__media {
    min-height: 240px;
  }

  .sensory-card {
    min-height: 200px;
  }

  .contact-card {
    padding: 26px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 106px;
    height: 46px;
  }
}