/* =========================================================
   LokoRiko — Landing page
   Fonts : Laroka (display) + Ponjoung (texte)
   ========================================================= */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Laroka';
  src: url('../assets/fonts/laroka.woff2') format('woff2'), url('../assets/fonts/laroka.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Ponjoung';
  src: url('../assets/fonts/Ponjoung-Regular.woff2') format('woff2'), url('../assets/fonts/Ponjoung-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Ponjoung';
  src: url('../assets/fonts/Ponjoung-Medium.woff2') format('woff2'), url('../assets/fonts/Ponjoung-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Ponjoung';
  src: url('../assets/fonts/Ponjoung-Bold.woff2') format('woff2'), url('../assets/fonts/Ponjoung-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Ponjoung';
  src: url('../assets/fonts/Ponjoung-Black.woff2') format('woff2'), url('../assets/fonts/Ponjoung-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Ponjoung';
  src: url('../assets/fonts/Ponjoung-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  --orange: #e55411;
  --orange-dark: #c74409;
  --orange-soft: #f3a279;
  --cream: #fff3e3;
  /* header, hero overlay text bg */
  --cream-2: #f7efe2;
  /* fond de sections */
  --cream-3: #f2e8d8;
  /* fond interne catégories */
  --dark: #372825;
  --white: #ffffff;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --wrap: 1240px;
  --gut: clamp(18px, 4vw, 48px);
  --sec-y: clamp(56px, 7vw, 104px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}
.header__inner{
  display: flex !important; 
    justify-content: space-between !important;
}
.sauces .rail {
  padding-left: 0 !important;
}
.price{
  display : none; 
}
.side .price {
  display: none;
}
.testi__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 4vw, 58px);
  height: clamp(38px, 4vw, 58px);
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto clamp(10px, 1.2vw, 18px);
  overflow: hidden;
  line-height: 0;
}

.testi__avatar img {
  display: block;
  width: 68%;
  height: 68%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}

/* ---------- BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box
}

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

body {
  margin: 0;
  background: var(--cream-2);
  color: var(--dark);
  font-family: 'Ponjoung', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit
}

h1,
h2,
h3 {
  margin: 0
}

p {
  margin: 0
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px
}

.wrap {
  width: min(100% - var(--gut)*2, var(--wrap));
  margin-inline: auto
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--orange);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) 0
}

.skip-link:focus {
  left: 0
}

/* ---------- TYPO HELPERS ---------- */
.section-title {
  font-family: 'Laroka', cursive;
  font-weight: 400;
  color: var(--orange);
  font-size: clamp(28px, 3.7vw, 52px);
  line-height: 1.02;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
}

.section-title--left {
  text-align: left
}

.section-title--icon {
  display: flex;
  align-items: center;
  gap: .42em
}

.section-title--icon img {
  width: clamp(34px, 3.4vw, 52px);
  height: auto
}

/* ---------- BUTTONS ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: 'Ponjoung', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1;
  padding: .72em 1.5em;
  border-radius: var(--r-sm);
  transition: transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(229, 84, 17, .22)
}

.btn:active {
  transform: translateY(0)
}

.btn--lg {
  padding: .85em 2em;
  font-size: clamp(15px, 1.25vw, 19px);
  border-radius: 12px
}

.btn--sm {
  padding: .6em 1.15em;
  font-size: clamp(12px, .95vw, 14px);
  border-radius: 8px
}

.btn--orange:hover {
  background: var(--orange-dark)
}

.btn--cream {
  --btn-bg: var(--cream);
  --btn-fg: var(--orange)
}

.btn--cream:hover {
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14)
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--orange);
  border: 2px solid var(--orange);
  padding: calc(.72em - 2px) calc(1.5em - 2px)
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--cream)
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow .3s var(--ease)
}

.header.is-stuck {
  box-shadow: 0 4px 22px rgba(55, 40, 37, .10)
}

.header__inner {
  width: min(100% - var(--gut)*1.4, 1560px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: clamp(62px, 5.3vw, 86px);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 34px)
}

.header__nav--right {
  justify-content: flex-end
}

.nav-link {
  font-weight: 700;
  color: var(--orange);
  font-size: clamp(13px, 1.05vw, 16px);
  position: relative;
  padding-block: 4px;
  transition: color .25s var(--ease)
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
  border-radius: 2px
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left
}

.header__logo img {
  width: clamp(150px, 15vw, 246px);
  height: auto
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px
}

.burger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  transition: transform .3s var(--ease), opacity .2s
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px var(--gut) 22px;
  background: var(--cream);
  border-top: 1px solid rgba(229, 84, 17, .16)
}

.mobile-menu__link {
  font-weight: 700;
  color: var(--orange);
  padding: 12px 0;
  font-size: 17px;
  border-bottom: 1px solid rgba(229, 84, 17, .12)
}

.mobile-menu__cta {
  margin-top: 16px;
  align-self: flex-start
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(520px, 86vh, 900px);
  display: grid;
  place-items: center;
  overflow: hidden
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 12, 4, .42) 0%, rgba(30, 12, 4, .14) 46%, rgba(30, 12, 4, .34) 100%)
}

.hero__content {
  position: relative;
  text-align: center;
  width: min(100% - var(--gut)*2, 980px);
  padding-block: clamp(40px, 8vw, 90px)
}

.hero__title {
  font-family: 'Laroka', cursive;
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(28px, 4.3vw, 62px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .35);
}

.hero__text {
  color: var(--cream);
  margin: clamp(14px, 1.8vw, 22px) auto 0;
  max-width: 660px;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.45;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}

.hero__content .btn {
  margin-top: clamp(18px, 2.2vw, 28px)
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  position: relative;
  background: var(--orange);
  padding-top: clamp(38px, 5vw, 70px);
  overflow: hidden
}

.about__mark {
  position: absolute;
  right: -3%;
  top: -6%;
  width: clamp(180px, 20vw, 330px);
  opacity: .9;
  pointer-events: none
}

.about__inner {
  width: min(100% - var(--gut)*2, 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-bottom: clamp(30px, 4vw, 54px);
  padding-right: clamp(0px, 14vw, 220px)
}

.about__head {
  position: relative
}

.about__arrow {
  position: absolute;
  top: -34px;
  left: 36%;
  width: clamp(58px, 5vw, 80px)
}

.about__kicker {
  font-family: 'Laroka', cursive;
  color: var(--cream);
  text-transform: uppercase;
  font-size: clamp(22px, 2.7vw, 38px);
  line-height: 1;
  letter-spacing: .02em
}

.about__wordmark {
  width: clamp(160px, 17vw, 270px);
  margin-top: 6px
}

.about__body p {
  color: var(--cream);
  font-weight: 700;
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 1.45
}

.about__body .btn {
  margin-top: clamp(14px, 1.6vw, 22px);
  float: right
}

.about__strip {
  --strip-gap: clamp(10px, 1.3vw, 20px);
  display: flex;
  gap: var(--strip-gap);
  align-items: stretch;
  padding-left: var(--strip-gap);
  overflow: hidden;
}

.about__card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 100/148;
  flex: 0 0 calc((100% - var(--strip-gap)*4.6)/4.55);
}

.about__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.about__card:hover img {
  transform: scale(1.06)
}

/* =========================================================
   PATTERN (bandes + cadre)
   ========================================================= */
.pattern-band {
  height: clamp(26px, 2.6vw, 38px);
  background-repeat: repeat;
  background-position: center
}

.pattern-band--cream {
  background-image: url('../assets/img/pattern.png');
  background-size: auto clamp(84px, 8vw, 116px)
}

.pattern-band--orange {
  background-image: url('../assets/img/pattern-orange.png');
  background-size: auto clamp(84px, 8vw, 116px)
}

.pattern-frame {
  background-image: url('../assets/img/pattern.png');
  background-size: auto clamp(92px, 9vw, 132px);
  padding: clamp(18px, 2vw, 30px) clamp(18px, 2vw, 30px);
}

.pattern-frame__inner {
  background: var(--cream-3);
  padding: clamp(34px, 4.4vw, 66px) 0 clamp(26px, 3vw, 44px);
  overflow: hidden;
}

/* =========================================================
   CATÉGORIES
   ========================================================= */
.categories {
  background: var(--cream-2)
}

.categories .section-title {
  margin-bottom: clamp(26px, 3.4vw, 50px)
}

.cat-carousel {
  position: relative
}

.cat-track {
  display: flex;
  gap: clamp(14px, 1.7vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 26px clamp(16px, 10vw, 190px) 34px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-track::-webkit-scrollbar {
  display: none
}

.cat-card {
  flex: 0 0 clamp(196px, 20.5vw, 296px);
  scroll-snap-align: center;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(16px, 1.6vw, 24px) clamp(12px, 1.2vw, 18px) clamp(18px, 1.8vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(55, 40, 37, .06);
  opacity: .42;
  transform: scale(.93);
  transition: opacity .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}

.cat-card.is-active {
  opacity: 1;
  transform: scale(1.09);
  box-shadow: 0 18px 42px rgba(55, 40, 37, .14);
  z-index: 2
}

.cat-card.is-near {
  opacity: 1;
  transform: scale(1)
}

.cat-card__media {
  width: 100%;
  aspect-ratio: 1/.96;
  display: grid;
  place-items: center
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s var(--ease)
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.05)
}

.cat-card__title {
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  font-size: clamp(14px, 1.35vw, 20px);
  line-height: 1.1
}

/* ---------- flèches du carrousel catégories ---------- */
.cat-carousel .carousel-arrow {
  z-index: 3;
  top: 0;
  bottom: 19px;
  margin-block: auto;
  width: clamp(34px, 3.4vw, 52px);
  height: clamp(34px, 3.4vw, 52px);
  transform: none;
  background: var(--orange);
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(229, 84, 17, .24);
}

.cat-carousel .carousel-arrow svg {
  width: 48%
}

.cat-carousel .carousel-arrow--prev {
  left: clamp(4px, 1.5vw, 28px)
}

.cat-carousel .carousel-arrow--next {
  right: clamp(4px, 1.5vw, 28px)
}

.cat-carousel .carousel-arrow:hover {
  background: var(--orange-dark);
  transform: scale(1.08)
}

.cat-carousel .carousel-arrow:active {
  transform: scale(.96);
  transition-duration: .09s
}

.cat-carousel .carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
  transform: scale(.92)
}

@media (max-width:720px) {
  .cat-carousel .carousel-arrow {
    width: 34px;
    height: 34px
  }

  .cat-carousel .carousel-arrow--prev {
    left: 2px
  }

  .cat-carousel .carousel-arrow--next {
    right: 2px
  }
}

@media (prefers-reduced-motion:reduce) {

  .cat-carousel .carousel-arrow:hover,
  .cat-carousel .carousel-arrow:active {
    transform: none
  }
}

``` *Orange circle,
cream chevron,
34px on mobile. `bottom:19px` centres them on the cards rather than on the block including the dots.*

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px
}

.dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange-soft);
  transition: transform .3s var(--ease), background-color .3s var(--ease)
}

.dots button.is-active {
  background: var(--orange);
  transform: scale(1.28)
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  position: relative;
  background: var(--cream-2);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  padding-right: var(--gut);
}

.services__media {
  position: relative;
  align-self: stretch;
  min-height: clamp(320px, 36vw, 520px)
}

.services__media>img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%
}

.services__badge {
  position: absolute;
  left: clamp(14px, 2.6vw, 44px);
  bottom: clamp(14px, 2.6vw, 42px);
  width: clamp(96px, 11vw, 168px)
}

.services__body {
  padding-block: clamp(34px, 4vw, 60px);
  max-width: 640px
}

.services__body p {
  margin-top: clamp(12px, 1.4vw, 20px);
  text-align: justify;
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(12.5px, 1.05vw, 16px);
  line-height: 1.5
}

.services__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 20px);
  margin-top: clamp(16px, 2vw, 28px)
}

.services__disc {
  position: absolute;
  right: clamp(10px, 2.4vw, 44px);
  bottom: clamp(18px, 3vw, 52px);
  width: clamp(64px, 7.6vw, 116px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
}

.services__disc img {
  width: 66%
}

/* =========================================================
   BEST SELLERS
   ========================================================= */
.best {
  position: relative;
  background: var(--cream-2);
  padding-block: clamp(34px, 4.4vw, 66px) var(--sec-y);
  overflow: hidden
}

.best .wrap {
  width: min(100% - var(--gut)*2, 1500px)
}

.best__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.best__grid {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 3.6vw, 58px);
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 42px) clamp(18px, 6vw, 104px);
}

.prod {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 100/134;
  background: var(--cream-3)
}

.prod img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease)
}

.prod:hover img {
  transform: scale(1.06)
}

.prod__tag {
  position: absolute;
  left: clamp(10px, 1.2vw, 20px);
  bottom: clamp(10px, 1.2vw, 20px);
  background: var(--orange);
  color: var(--cream);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 1.12;
  text-align: center;
  padding: .55em 1.05em;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(255, 243, 227, .85);
  transition: transform .35s var(--ease)
}

.prod:hover .prod__tag {
  transform: translateY(-3px)
}

.best__watermark {
  position: absolute;
  right: -7%;
  bottom: 2%;
  width: clamp(200px, 27vw, 430px);
  z-index: 1;
  pointer-events: none;
  user-select: none
}

/* =========================================================
   CONCEPT
   ========================================================= */
.concept__band {
  background: var(--orange);
  padding-block: clamp(30px, 3.8vw, 58px)
}

.concept__bandInner {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px)
}

.concept__title {
  font-family: 'Laroka', cursive;
  color: var(--cream);
  text-transform: uppercase;
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: .01em
}

.concept__arrow {
  width: clamp(46px, 4.6vw, 74px);
  align-self: end;
  margin-bottom: 6px
}

.concept__text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(12px, 1.5vw, 22px)
}

.concept__text p {
  color: var(--cream);
  font-weight: 700;
  font-size: clamp(12.5px, 1.05vw, 16px);
  line-height: 1.45;
  text-align: left
}

.concept__carousel {
  position: relative;
  overflow: hidden
}

.concept__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none
}

.concept__track::-webkit-scrollbar {
  display: none
}

.concept__slide {
  flex: 0 0 100%;
  scroll-snap-align: center
}

.concept__slide img {
  width: 100%;
  height: clamp(220px, 30vw, 430px);
  object-fit: cover
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(42px, 4.2vw, 64px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  transition: transform .3s var(--ease), background-color .3s var(--ease)
}

.carousel-arrow svg {
  width: 52%
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.09);
  background: #fff
}

.carousel-arrow--prev {
  left: clamp(12px, 3vw, 44px)
}

.carousel-arrow--next {
  right: clamp(12px, 3vw, 44px)
}

/* =========================================================
   VALEURS
   ========================================================= */
.values {
  background: var(--cream-2);
  padding-block: clamp(38px, 5vw, 80px)
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4.4vw, 72px)
}

.value {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.7vw, 26px)
}

.value img {
  width: clamp(42px, 4.6vw, 70px);
  height: auto;
  flex: 0 0 auto;
  margin-top: 2px
}

.value h3 {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.2
}

.value p {
  margin-top: 2px;
  text-align: justify;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.42;
  color: var(--dark)
}

/* =========================================================
   SOCIAL
   ========================================================= */
.social {
  background: var(--cream-2);
  padding-top: clamp(34px, 4.4vw, 64px);
  overflow: hidden
}

.social__head {
  text-align: center
}

.social__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 22px);
  margin-top: clamp(18px, 2.2vw, 32px)
}

.social__gallery {
  margin-top: clamp(26px, 3.4vw, 52px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 26px);
  align-items: start;
  background: linear-gradient(180deg, var(--cream-2) 0 58%, var(--orange) 58% 100%);
}

.social__col--a .gal {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0
}

.social__col--d .gal {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0
}

.social__col {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vw, 26px)
}

.social__col--a {
  padding-bottom: clamp(0px, 3vw, 44px)
}

.social__col--b {
  padding-top: clamp(34px, 7vw, 120px)
}

.social__col--c {
  padding-top: clamp(14px, 2.4vw, 40px);
  padding-bottom: clamp(20px, 4vw, 70px)
}

.social__col--d {
  padding-top: clamp(48px, 10vw, 170px)
}

.gal {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 100/128
}

.gal--tall {
  aspect-ratio: 100/152
}

.gal--short {
  aspect-ratio: 100/86
}

.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease)
}

.gal:hover img {
  transform: scale(1.07)
}

.social__wordmark {
  width: min(100%, 300px);
  margin-inline: auto;
  opacity: .98
}

.social__col--b .social__wordmark {
  order: 2;
  margin-top: clamp(14px, 2.6vw, 42px)
}

.social__col--b .gal {
  order: 1
}

.social__quote {
  background: var(--orange);
  color: var(--cream);
  text-align: center;
  font-family: 'Laroka', cursive;
  text-transform: uppercase;
  font-size: clamp(22px, 3.1vw, 44px);
  line-height: 1;
  padding: clamp(26px, 3.4vw, 54px) var(--gut) clamp(30px, 3.8vw, 58px);
  margin: 0
}

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.testimonials {
  background: var(--cream-2);
  padding-block: clamp(38px, 5vw, 80px) clamp(30px, 3.6vw, 58px)
}

.testi-track {
  display: flex;
  gap: clamp(16px, 2.4vw, 42px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: clamp(22px, 2.6vw, 40px)
}

.testi-track::-webkit-scrollbar {
  display: none
}

.testi {
  flex: 0 0 calc((100% - clamp(16px, 2.4vw, 42px)*2)/3);
  scroll-snap-align: start;
  background: var(--orange);
  border-radius: var(--r-md);
  padding: clamp(20px, 2.2vw, 32px) clamp(18px, 2.2vw, 34px) clamp(20px, 2.4vw, 34px);
  text-align: center;
  color: var(--cream);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease)
}

.testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(229, 84, 17, .24)
}

.testi__avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 4vw, 58px);
  height: clamp(38px, 4vw, 58px);
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto clamp(10px, 1.2vw, 18px);
  overflow: hidden;
  line-height: 0;
}

.testi__avatar img {
  display: block;
  width: 68%;
  height: 68%;
  object-fit: contain;
  object-position: center;
  margin: 0;
}

.testi h3 {
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(14px, 1.2vw, 18px)
}

.testi p {
  margin-top: .6em;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.4
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--cream-2);
  border-top: 1px solid rgba(229, 84, 17, .35)
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  padding-block: clamp(30px, 3.6vw, 58px)
}

.footer__logo img {
  width: clamp(96px, 9vw, 140px)
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 40px)
}

.footer__nav a {
  font-weight: 700;
  color: var(--orange);
  font-size: clamp(13px, 1.05vw, 17px);
  transition: opacity .25s var(--ease)
}

.footer__nav a:hover {
  opacity: .7
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: stretch
}

.footer__social .btn {
  justify-content: center;
  min-width: clamp(108px, 10vw, 142px)
}

.footer__bar {
  background: var(--orange);
  color: var(--cream);
  padding-block: clamp(12px, 1.3vw, 18px)
}

.footer__barInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: clamp(11px, .85vw, 13px);
  font-weight: 700
}

.footer__legal a {
  transition: opacity .25s var(--ease)
}

.footer__legal a:hover {
  opacity: .75;
  text-decoration: underline
}

.footer__health {
  text-align: center;
  font-size: clamp(11px, .85vw, 13px);
  font-weight: 700;
  margin-top: 6px
}

.footer__health a {
  text-decoration: underline
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

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

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important
  }
}

/* =========================================================
   RESPONSIVE — TABLETTE
   ========================================================= */
@media (max-width:1100px) {
  .header__nav {
    display: none
  }

  .header__inner {
    grid-template-columns: auto 1fr auto
  }

  .header__logo {
    justify-self: start
  }

  .burger {
    display: flex
  }

  .mobile-menu {
    display: flex
  }

  .mobile-menu[hidden] {
    display: none
  }

  .about__inner {
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 20px
  }

  .about__body .btn {
    float: none;
    display: inline-flex
  }

  .about__mark {
    width: clamp(110px, 20vw, 170px);
    right: -5%;
    top: 2%;
    bottom: auto;
    opacity: .45
  }

  .services {
    grid-template-columns: 1fr;
    padding-right: 0
  }

  .services__media {
    min-height: min(58vw, 420px)
  }

  .services__body {
    padding-inline: var(--gut);
    max-width: none
  }

  .services__disc {
    width: 72px;
    right: var(--gut);
    top: calc(min(58vw, 420px) - 36px);
    bottom: auto
  }

  .concept__bandInner {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .concept__arrow {
    display: none
  }

  .concept__text {
    align-items: flex-start
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 620px
  }

  .value p {
    text-align: left
  }

  .testi {
    flex: 0 0 calc((100% - clamp(16px, 2.4vw, 42px))/2)
  }

  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center
  }

  .footer__social {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
  }

  .footer__barInner {
    justify-content: center;
    text-align: center
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width:720px) {
  :root {
    --r-lg: 20px;
    --r-md: 14px
  }

  .hero {
    min-height: 74vh
  }

  .hero__title {
    font-size: clamp(26px, 8.4vw, 40px)
  }

  .hero__text {
    font-size: 14px
  }

  .about {
    padding-top: 34px
  }

  .about__arrow {
    width: 52px;
    top: -28px;
    left: auto;
    right: 14%
  }

  .about__strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-inline: var(--gut);
    scrollbar-width: none
  }

  .about__strip::-webkit-scrollbar {
    display: none
  }

  .about__card {
    flex: 0 0 63%;
    scroll-snap-align: center;
    border-radius: var(--r-lg) var(--r-lg) 0 0
  }

  .pattern-frame {
    padding: 14px 12px
  }

  .pattern-frame__inner {
    padding-top: 30px
  }

  .cat-track {
    padding: 20px 22px 28px
  }

  .cat-card {
    flex-basis: 66%
  }

  .cat-card.is-active {
    transform: scale(1.02)
  }

  .cat-card.is-near {
    transform: scale(.96)
  }

  .best__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .prod__tag {
    font-size: 12px;
    padding: .5em .8em;
    border-radius: 9px
  }

  .best__watermark {
    width: 170px;
    right: -14%;
    bottom: -2%;
    opacity: .85
  }

  .social__gallery {
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(180deg, var(--cream-2) 0 52%, var(--orange) 52% 100%);
    padding-inline: 12px;
    gap: 12px
  }

  .social__col--b,
  .social__col--c,
  .social__col--d {
    padding-top: 0
  }

  .social__col--d {
    padding-top: 24px
  }

  .social__wordmark {
    width: min(100%, 190px)
  }

  .testi {
    flex: 0 0 84%
  }

  .footer__nav {
    gap: 12px 18px
  }

  .footer__legal {
    line-height: 1.7
  }
}

@media (max-width:420px) {
  .best__grid {
    grid-template-columns: 1fr
  }

  .prod {
    aspect-ratio: 100/118
  }
}