/* ============================================================
   Blandin & Delloye — pure own CSS clone
   Tokens and typography scraped from original app.css
   ============================================================ */

/* ------------------- FONTS ------------------- */
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Light.woff2") format("woff2"),
       url("../fonts/Graphik-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular.woff2") format("woff2"),
       url("../fonts/Graphik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Medium.woff2") format("woff2"),
       url("../fonts/Graphik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Bold.woff2") format("woff2"),
       url("../fonts/Graphik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roxborough CF";
  src: url("../fonts/roxborough-cf-light.woff2") format("woff2"),
       url("../fonts/roxborough-cf-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roxborough CF";
  src: url("../fonts/roxborough-cf-regular.woff2") format("woff2"),
       url("../fonts/roxborough-cf-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roxborough CF";
  src: url("../fonts/roxborough-cf-medium.woff2") format("woff2"),
       url("../fonts/roxborough-cf-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roxborough CF";
  src: url("../fonts/roxborough-cf-bold.woff2") format("woff2"),
       url("../fonts/roxborough-cf-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ------------------- TOKENS ------------------- */
:root {
  --c-beige:       #FFFDF6;
  --c-black:       #1C1C1C;
  --c-very-dark:   #141414;
  --c-dark-grey:   #424242;
  --c-grey:        #999999;
  --c-light-grey:  #BBBBBB;
  --c-mint:        #E5EDE9;
  --c-white:       #FFFFFF;

  --ff-sans:   "Graphik", system-ui, sans-serif;
  --ff-serif:  "Roxborough CF", "Cormorant Garamond", serif;

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;

  --header-height: 90px;

  --container-padding: clamp(20px, 5vw, 60px);

  --radius-sm: 2px;
  --radius-md: 4px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
}

/* ------------------- RESET ------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-black);
  background: var(--c-beige);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ------------------- UTILITIES ------------------- */
.container,
.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
.container { max-width: 1380px; }
.container-fluid { max-width: 1680px; }

.bg-beige { background-color: var(--c-beige); }
.bg-black { background-color: var(--c-black); color: var(--c-white); }
.c-white  { color: var(--c-white); }
.ta-c     { text-align: center !important; }
.tt-u     { text-transform: uppercase !important; letter-spacing: 0.04em; }
.mt-sm    { margin-top: 0.75rem; }
.mt-md    { margin-top: 1.5rem; }
.mt-lg    { margin-top: 2.5rem; }

.cms p + p { margin-top: 0.9em; }
.cms       { font-weight: var(--fw-regular); line-height: 1.7; color: var(--c-dark-grey); }
.bg-black .cms { color: var(--c-light-grey); }

/* ------------------- TYPOGRAPHY ------------------- */
.sub-title {
  font-family: var(--ff-serif);
  font-weight: var(--fw-regular);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.title-sm  { font-family: var(--ff-serif); font-weight: 300; line-height: 1.2; font-size: 1.125rem; }
.title-md  { font-family: var(--ff-serif); font-weight: 300; line-height: 1.2; font-size: 1.5rem; letter-spacing: 0.02em; }
.title-lg  { font-family: var(--ff-serif); font-weight: 300; line-height: 1.2; font-size: clamp(1.875rem, 2.2vw + 0.5rem, 2rem); }
.title-xl-small { font-family: var(--ff-serif); font-weight: 300; line-height: 1.15; font-size: clamp(1.875rem, 2.78vw + 0.5rem, 2.5rem); }
.title-xl  { font-family: var(--ff-serif); font-weight: 300; line-height: 1.15; font-size: clamp(1.875rem, 3.33vw + 0.5rem, 3rem); }
.title-xxl { font-family: var(--ff-serif); font-weight: 300; line-height: 1.08;  font-size: clamp(2.25rem, 5.5vw + 0.5rem, 5rem); }

.title-line { display: block; }

.title-lines .title-line {
  position: relative;
  padding-bottom: 0.35em;
}
.title-lines .title-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.9s var(--ease-out) 0.25s;
}
.title-lines.is-visible .title-line::after,
.title-lines[data-revealed] .title-line::after {
  width: 44px;
}

/* ------------------- BUTTONS ------------------- */
.btn {
  --btn-fg: currentColor;
  --btn-bg: transparent;
  --btn-br: currentColor;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  font-family: var(--ff-sans);
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-br);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s var(--ease-out);
  cursor: pointer;
}
.btn > span:first-child { position: relative; z-index: 2; }
.btn .btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-black);
  color: var(--c-white);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-out);
  z-index: 1;
}
.btn:hover .btn-overlay { transform: translateY(0); }

.btn-solid {
  --btn-bg: var(--c-black);
  --btn-fg: var(--c-white);
  --btn-br: var(--c-black);
}
.btn-solid .btn-overlay { background: var(--c-beige); color: var(--c-black); }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--c-white);
  --btn-br: rgba(255,255,255,0.6);
}
.btn-outline .btn-overlay { background: var(--c-white); color: var(--c-black); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-white);
  --btn-br: rgba(255,255,255,0.55);
}
.btn-ghost .btn-overlay { background: var(--c-white); color: var(--c-black); }

.btn-big {
  min-height: 58px;
  padding: 18px 32px;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
}

/* ------------------- LINKS ------------------- */
.link {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.link.link-line {
  position: relative;
  padding-bottom: 6px;
}
.link.link-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}
.link.link-line:hover::after { width: 70px; }
.link-white { color: var(--c-white); }
.link-black { color: var(--c-black); }

/* ------------------- PAGE LOADER ------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-beige);
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s var(--ease-out);
}
.page-loader.hidden { opacity: 0; }
.loader-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--c-black);
  border-top-color: transparent;
  animation: loader-spin 1s linear infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }

/* ------------------- HEADER ------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 90;
  background: transparent;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.header.is-scrolled {
  background: var(--c-beige);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header.is-scrolled .logo,
.header.is-scrolled .item-link,
.header.is-scrolled .btn-menu,
.header.is-scrolled .current-lang { color: var(--c-black); }

.header.has-dark-bg .logo,
.header.has-dark-bg .item-link,
.header.has-dark-bg .btn-menu,
.header.has-dark-bg .current-lang { color: var(--c-white); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 24px;
}
.main-nav { display: flex; align-items: center; gap: 24px; }
.btn-menu { display: none; color: inherit; }
.burger-lines {
  display: grid;
  gap: 5px;
  width: 26px;
}
.burger-lines span {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.burger-lines span:nth-child(2) { width: 70%; margin-left: auto; }
body.menu-open .burger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger-lines span:nth-child(2) { opacity: 0; }
body.menu-open .burger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.item-menu {
  display: flex;
  gap: 28px;
  color: inherit;
}
.item-menu .item-link {
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
}
.item-menu .item-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right 0.4s var(--ease-out);
}
.item-menu .item-link:hover::after { right: 0; }

.logo { color: var(--c-white); display: inline-flex; line-height: 1; }
.logo-mark,
.footer-logo .logo-mark {
  display: inline-block;
  width: 190px;
  height: 26px;
  background-color: currentColor;
  -webkit-mask: url("../images/logo-brand.svg") center / contain no-repeat;
          mask: url("../images/logo-brand.svg") center / contain no-repeat;
}
.footer-logo { color: var(--c-black); }
.footer-logo .logo-mark { width: 220px; height: 30px; }
@media (max-width: 960px) {
  .logo-mark { width: 150px; height: 20px; }
}

.header-other { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }

.lang-container { position: relative; color: inherit; }
.current-lang {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
}
.flag {
  display: inline-block;
  width: 14px;
  height: 10px;
  background: linear-gradient(to bottom, #002c80 0%, #002c80 33%, #fff 33%, #fff 66%, #C8102E 66%);
  border-radius: 1px;
}
.flag-en { background: linear-gradient(#0a2472,#0a2472); position: relative; }
.flag-en::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%);
}
.flag-es { background: linear-gradient(to bottom, #AA151B 0%, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%); }
.flag-fr { background: linear-gradient(to right, #002c80 0%, #002c80 33%, #fff 33%, #fff 66%, #C8102E 66%); }

.chev {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 2px;
}
.lang-list {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--c-beige);
  color: var(--c-black);
  padding: 8px 12px;
  min-width: 90px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.lang-container.open .lang-list,
.lang-container:hover .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-header { color: var(--c-white); }
.header.is-scrolled .cta-header { color: var(--c-white); background: var(--c-black); border-color: var(--c-black); }
.header.is-scrolled .cta-header .btn-overlay { background: var(--c-beige); color: var(--c-black); }

/* ------------------- MOBILE MENU ------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--c-beige);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu-inner {
  padding: calc(var(--header-height) + 20px) var(--container-padding) 40px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mobile-menu-top { display: flex; justify-content: flex-end; margin-bottom: 20px; }
.mobile-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.close-icon {
  width: 14px; height: 14px;
  position: relative;
}
.close-icon::before, .close-icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: var(--c-black);
}
.close-icon::before { transform: rotate(45deg); }
.close-icon::after  { transform: rotate(-45deg); }

.mobile-main-nav li a {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-secondary-nav {
  margin-top: auto;
  padding-top: 32px;
}
.mobile-secondary-nav li a {
  display: block;
  padding: 8px 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-dark-grey);
}

/* ------------------- SECTION SPACING ------------------- */
.section {
  padding-block: clamp(70px, 10vw, 140px);
  position: relative;
}
.section > .container { position: relative; }
.section-head {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: clamp(40px, 6vw, 80px);
  text-align: center;
}
.section-head .title-xl,
.section-head .title-xxl,
.section-head .title-lines { text-align: center; }
.section-head .cms { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ------------------- HERO ------------------- */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding-block: var(--header-height);
  background-color: var(--c-black);
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(0,0,0,0.45) 80%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.banner-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.banner .sub-title { display: inline-block; margin-bottom: 1.25rem; }
.banner h1 {
  margin-top: 0.2em;
  text-align: center;
}
.banner h1 .title-line { display: block; }
.banner-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(32px, 5vw, 56px);
}
.banner-links .btn { min-width: 180px; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}
.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 50%;
  background: var(--c-white);
  animation: scroll-line 2s var(--ease-in-out) infinite;
}
@keyframes scroll-line {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ------------------- SECTION: SLIDERS / UNIVERSE GRID ------------------- */
.universe-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  column-gap: clamp(16px, 2vw, 28px);
  row-gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.universe-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--c-very-dark);
  border-radius: var(--radius-sm);
  isolation: isolate;
  color: var(--c-white);
}
/* Desktop: exact original grid (4 cards in 2 rows, alternating offsets) */
@media (min-width: 1024px) {
  .universe-card:nth-child(1) { grid-column: 1 / span 6;  grid-row: 1; aspect-ratio: 4 / 5; }
  .universe-card:nth-child(2) { grid-column: 8 / span 5;  grid-row: 1; aspect-ratio: 4 / 5; align-self: center; }
  .universe-card:nth-child(3) { grid-column: 1 / span 5;  grid-row: 2; aspect-ratio: 4 / 5; align-self: center; }
  .universe-card:nth-child(4) { grid-column: 7 / span 6;  grid-row: 2; aspect-ratio: 4 / 5; }
}
@media (max-width: 1023px) {
  .universe-card { grid-column: 1 / -1; }
}
.universe-card .slider-universe {
  position: absolute;
  inset: 0;
}
.universe-card .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.universe-card .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}
.universe-name {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-weight: 300;
}
.universe-card .style-name {
  position: absolute;
  bottom: 26px;
  left: 24px;
  z-index: 2;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-family: var(--ff-sans);
}
.universe-card.static::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}

/* Swiper nav arrows (universe) */
.slider-universe .swiper-button-prev,
.slider-universe .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translateY(-50%);
  color: var(--c-white);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), background 0.3s;
  display: grid; place-items: center;
  cursor: pointer;
}
.slider-universe .swiper-button-prev { left: 18px; }
.slider-universe .swiper-button-next { right: 18px; }
.universe-card:hover .slider-universe .swiper-button-prev,
.universe-card:hover .slider-universe .swiper-button-next { opacity: 1; }
.slider-universe .swiper-button-prev::after,
.slider-universe .swiper-button-next::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}
.slider-universe .swiper-button-prev::after { transform: rotate(-135deg); }
.slider-universe .swiper-button-next::after { transform: rotate(45deg); }

/* ------------------- SECTION: SHOWROOMS ------------------- */
.showrooms-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.showrooms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 26px;
  align-content: start;
}
.showroom-item {
  display: inline-flex;
  padding: 8px 0;
  color: rgba(255,255,255,0.35);
  transition: color 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
}
.showroom-item h3 {
  font-size: clamp(1.5rem, 3vw + 0.25rem, 2.75rem);
  line-height: 1.15;
  color: inherit;
}
.showroom-item:hover { color: rgba(255,255,255,0.75); }
.showroom-item.active { color: var(--c-white); }

.showrooms-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .showrooms-details {
    grid-template-columns: 1fr;
    position: sticky;
    top: calc(var(--header-height) + 20px);
  }
}

.showrooms-images {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.showroom-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s var(--ease-out), transform 1.2s var(--ease-out);
}
.showroom-img.active { opacity: 1; transform: scale(1); }
.showroom-img img { width: 100%; height: 100%; object-fit: cover; }

.showrooms-infos {
  position: relative;
  min-height: 260px;
  margin-top: 20px;
}
.showroom-infos {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.showroom-infos.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.showroom-infos > * + * { margin-top: 12px; }
.showroom-infos .address {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--c-white);
}
.showroom-infos .phone {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
}
.showroom-infos .btn { margin-top: 28px; }

@media (max-width: 900px) {
  .showrooms-layout { grid-template-columns: 1fr; }
  .showroom-item h3 { font-size: 1.5rem; }
  .showrooms-list { gap: 4px 16px; }
}

/* ------------------- SECTION: PRODUCTS ------------------- */
.universe-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 56px;
  justify-content: center;
  margin-bottom: 36px;
}
.universe-tab {
  color: var(--c-grey);
  transition: color 0.3s var(--ease-out);
  position: relative;
  padding-bottom: 8px;
}
.universe-tab h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: inherit;
}
.universe-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-out);
}
.universe-tab:hover { color: var(--c-black); }
.universe-tab.active { color: var(--c-black); }
.universe-tab.active::after { width: 36px; }

.universe-panels { position: relative; }
.universe-panel { display: none; }
.universe-panel.active { display: block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--c-black);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--c-white);
  border-radius: var(--radius-sm);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  transition: background 0.4s var(--ease-out);
}
.product-card .card-label {
  position: absolute;
  inset: auto 0 28px 0;
  text-align: center;
  z-index: 2;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.product-card .card-hover {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  background: rgba(20,20,20,0.78);
}
.product-card:hover::before { background: rgba(20,20,20,0.1); }
.product-card:hover .card-label { opacity: 0; transform: translateY(20px); }
.product-card:hover .card-hover { opacity: 1; transform: translateY(0); }

/* ------------------- SECTION: WHO ------------------- */
.section-who { padding: 0; }
.who-header {
  position: relative;
  min-height: 62svh;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  padding: 120px 0;
}
.who-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
}
.who-header .container { position: relative; }

.who-main {
  background: var(--c-beige);
  padding-block: clamp(80px, 10vw, 140px);
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 140px);
}
.swm-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.swm-item.reverse { direction: rtl; }
.swm-item.reverse > * { direction: ltr; }
.swm-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.swm-slider { width: 100%; height: 100%; }
.swm-slider .swiper-slide {
  background-size: cover;
  background-position: center;
}
.swm-content { padding: 0; }
.swm-text { max-width: 560px; }
.swm-text .title-line { display: block; }
.swm-text-slider { overflow: hidden; }
.swiper-controls-inline {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.swiper-controls-inline .swiper-button-prev,
.swiper-controls-inline .swiper-button-next {
  position: static;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  color: var(--c-black);
}
.swiper-controls-inline .swiper-button-prev::after,
.swiper-controls-inline .swiper-button-next::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}
.swiper-controls-inline .swiper-button-prev::after { transform: rotate(-135deg); margin-left: 3px; }
.swiper-controls-inline .swiper-button-next::after { transform: rotate(45deg); margin-right: 3px; }
.swiper-controls-inline .swiper-button-prev:hover,
.swiper-controls-inline .swiper-button-next:hover { background: var(--c-black); color: var(--c-white); }

@media (max-width: 900px) {
  .swm-item { grid-template-columns: 1fr; }
  .swm-item.reverse { direction: ltr; }
}

/* ------------------- SECTION: INSTAGRAM ------------------- */
.ig-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
}
.ig-handle {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.ig-handle:hover { color: var(--c-white); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.ig-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  transition: background 0.4s var(--ease-out);
}
.ig-item:hover::before { background: rgba(0,0,0,0.55); }
.ig-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.ig-glyph::after {
  content: "";
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, transparent 24%, rgba(255,255,255,0.9) 24%, rgba(255,255,255,0.9) 28%, transparent 28%);
}
.ig-item:hover .ig-glyph { opacity: 1; }

/* ------------------- SECTION: TEAM ------------------- */
.section-team .section-head { margin-bottom: 60px; }
.team-slider { padding-inline: 0; }
.team-card {
  color: var(--c-white);
  text-align: left;
  width: 280px !important;
}
.team-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #222;
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1s var(--ease-out);
}
.team-card:hover .team-img img { transform: scale(1.04); }
.team-name { margin-top: 16px; }
.team-role {
  margin-top: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.team-controls {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.team-progress {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
}
.team-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: var(--c-white);
  transition: width 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.team-buttons { display: flex; gap: 12px; }
.team-buttons .swiper-button-prev,
.team-buttons .swiper-button-next {
  position: static;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: var(--c-white);
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.team-buttons .swiper-button-prev::after,
.team-buttons .swiper-button-next::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}
.team-buttons .swiper-button-prev::after { transform: rotate(-135deg); margin-left: 3px; }
.team-buttons .swiper-button-next::after { transform: rotate(45deg); margin-right: 3px; }
.team-buttons .swiper-button-prev:hover,
.team-buttons .swiper-button-next:hover { background: var(--c-white); color: var(--c-black); }

/* ------------------- SECTION: NEWS ------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

.news-card .news-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.news-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s var(--ease-out);
}
.news-card:hover img { transform: scale(1.05); }
.news-body { padding-top: 16px; }
.news-date {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--c-grey);
  text-transform: uppercase;
}
.news-body .title-md {
  font-size: clamp(1.15rem, 1.4vw + 0.4rem, 1.45rem);
}

/* ------------------- FOOTER ------------------- */
.footer {
  background: var(--c-mint);
  color: var(--c-black);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: clamp(30px, 4vw, 70px);
  padding-block: 60px;
  align-items: start;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { color: var(--c-black); display: inline-block; margin-bottom: 24px; }
.footer-about-text {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 320px;
  color: var(--c-dark-grey);
}
.footer-social { margin-top: 28px; }
.footer-social h4 {
  font-family: var(--ff-sans);
  font-weight: var(--fw-bold);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}
.footer-social ul { display: flex; gap: 14px; }
.rs-link {
  display: inline-block;
  width: 32px; height: 32px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0,0,0,0.25);
  transition: background-color 0.3s, border-color 0.3s;
}
.rs-link:hover { background-color: var(--c-black); border-color: var(--c-black); filter: invert(1); }
.rs-fb { background-image: url("../images/facebook.png"); }
.rs-ig { background-image: url("../images/instagram.png"); }
.rs-li { background-image: url("../images/linkedin.png"); }

.footer-menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-menu ul li + li { margin-top: 10px; }
.footer-menu a {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--c-black);
  position: relative;
  transition: opacity 0.3s;
}
.footer-menu a:hover { opacity: 0.65; }

.footer-contact { max-width: 280px; }
.footer-contact h4 { font-family: var(--ff-serif); font-weight: 400; font-size: 1rem; }
.footer-contact p {
  margin-top: 14px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--c-dark-grey);
}
.footer-contact .link { margin-top: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  display: flex;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--c-dark-grey);
}
.legals ul { display: flex; gap: 22px; flex-wrap: wrap; }
.legals a, .legals-btn {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--c-dark-grey);
  transition: color 0.3s;
}
.legals a:hover, .legals-btn:hover { color: var(--c-black); }

/* ------------------- REVEAL ANIMATIONS ------------------- */
@keyframes reveal-up {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes reveal-line {
  from { opacity: 0; transform: translate3d(0, 110%, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

[data-reveal],
[data-reveal-delay] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: transform, opacity;
}
[data-reveal].is-in,
[data-reveal-delay].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal-stagger] { opacity: 1; }
[data-reveal-stagger] .title-line {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 110%, 0);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
  will-change: transform, opacity;
}
[data-reveal-stagger].is-in .title-line { opacity: 1; transform: translate3d(0, 0, 0); }
[data-reveal-stagger].is-in .title-line:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-stagger].is-in .title-line:nth-child(3) { transition-delay: 0.30s; }

/* Hero auto-play on page load — no JS required */
.banner .sub-title {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: reveal-up 1s var(--ease-out) 0.35s forwards;
}
.banner h1 .title-line {
  display: block;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  animation: reveal-up 1.1s var(--ease-out) forwards;
}
.banner h1 .title-line:nth-child(1) { animation-delay: 0.55s; }
.banner h1 .title-line:nth-child(2) { animation-delay: 0.75s; }
.banner-links .btn {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: reveal-up 0.8s var(--ease-out) forwards;
}
.banner-links .btn:nth-child(1) { animation-delay: 1.10s; }
.banner-links .btn:nth-child(2) { animation-delay: 1.20s; }
.banner-links .btn:nth-child(3) { animation-delay: 1.30s; }
.banner-links .btn:nth-child(4) { animation-delay: 1.40s; }
.scroll-indicator {
  opacity: 0;
  animation: reveal-up 0.8s var(--ease-out) 1.6s forwards;
}

/* Hover lift on cards */
.product-card, .news-card { transition: transform 0.6s var(--ease-out); }
.product-card:hover { transform: translateY(-6px); }
.news-card:hover { transform: translateY(-4px); }

/* ------------------- RESPONSIVE HEADER ------------------- */
@media (max-width: 960px) {
  .item-menu, .header-other .lang-container { display: none; }
  .btn-menu { display: inline-flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: center; }
  .logo-mark { height: 18px; }
  .cta-header { padding: 10px 18px; min-height: 40px; font-size: 0.72rem; }
  .banner-links .btn { min-width: 140px; flex: 1 1 45%; }
}

/* ------------------- PRINT / MOTION ------------------- */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   MERGED FROM NAT & NIN — featured / edito / testimonials
   ============================================================ */

@font-face {
  font-family: "Recife";
  src: url("../fonts/RecifeDisplayWeb-Book.woff2") format("woff2"),
       url("../fonts/RecifeDisplayWeb-Book.woff") format("woff");
  font-weight: 350; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Recife";
  src: url("../fonts/RecifeDisplayWeb-Regular.woff2") format("woff2"),
       url("../fonts/RecifeDisplayWeb-Regular.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Recife";
  src: url("../fonts/RecifeDisplayWeb-RegularItalic.woff2") format("woff2"),
       url("../fonts/RecifeDisplayWeb-RegularItalic.woff") format("woff");
  font-weight: 400; font-style: italic; font-display: swap;
}

/* Extra tokens borrowed from natnin for these sections */
:root {
  --cream: var(--c-beige);
  --cream-2: #f8f3f3;
  --ink: var(--c-black);
  --ink-soft: var(--c-dark-grey);
  --tan: #c99f82;
  --tan-deep: #9b6f52;
  --line: rgba(17, 16, 16, 0.14);
  --ff-display: "Recife", "Roxborough CF", serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --gutter: clamp(16px, 2.4vw, 36px);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

/* FEATURED / SLIDER */
.featured {
  padding: clamp(56px, 8vw, 112px) 0 clamp(56px, 8vw, 120px);
  background: var(--c-beige);
}
.featured__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  margin-bottom: 36px;
  max-width: 1380px;
}
.featured__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--c-black);
}
.featured__title::first-letter {
  font-style: italic;
  color: var(--tan-deep);
}
.featured__controls { display: flex; gap: 8px; align-self: end; }
.slider-nav {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  background: transparent;
  color: var(--c-black);
}
.slider-nav:hover { background: var(--ink); color: var(--c-beige); border-color: var(--ink); transform: translateY(-1px); }
.slider-nav[disabled] { opacity: .3; pointer-events: none; }

.slider {
  position: relative;
  overflow: hidden;
  padding: 0 var(--gutter);
}
.slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4 * 24px) / 5);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }

.card {
  position: relative;
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 12px;
}
.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-2);
  display: block;
}
.card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .6s var(--ease), transform 1.2s var(--ease);
}
.card__media-alt { opacity: 0; }
.card__media:hover img { transform: scale(1.03); }
.card__media:hover .card__media-alt { opacity: 1; }
.card__body {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 0 2px;
}
.card__title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .02em;
}
.card__price {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.card__wish {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  color: var(--ink);
  transition: background .25s var(--ease), transform .25s var(--ease);
  border: none;
}
.card__wish:hover { background: #fff; transform: scale(1.08); }
.card__wish.is-on svg path { fill: var(--tan-deep); stroke: var(--tan-deep); }
.card__add {
  position: absolute;
  left: 12px; bottom: calc(12px + 54px);
  padding: 10px 18px;
  background: var(--ink);
  color: var(--c-beige);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
  border: none;
}
.card:hover .card__add { opacity: 1; transform: translateY(0); }
.card__add:hover { background: var(--tan-deep); }

/* EDITORIAL TILES */
.edito { padding: 0 var(--gutter); margin-top: 20px; }
.edito--duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.edito--solo { display: block; }
.edito__tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-2);
}
.edito__tile--wide { aspect-ratio: 16 / 8; }
.edito__tile img {
  width: 100%; height: 115%;
  object-fit: cover;
  transform: translateY(-5%);
  transition: transform 1.2s var(--ease);
  will-change: transform;
  display: block;
}
.edito__tile:hover img { transform: translateY(-6%) scale(1.03); }
.edito__label {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 8px 14px;
  background: rgba(248,242,238,.92);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  color: var(--c-black);
}
.edito__label--lg {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: .01em;
  text-transform: none;
  padding: 14px 22px;
}

/* TESTIMONIALS — Loved & worn */
.testimonials {
  padding: clamp(72px, 10vw, 140px) var(--gutter);
  max-width: 1380px;
  margin: 0 auto;
}
.testimonials__head { text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.testimonials__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.05;
  margin-top: 12px;
  letter-spacing: -.01em;
  color: var(--c-black);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 56px);
}
.testimonial {
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  background: var(--cream-2);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--ff-display);
  font-style: italic;
  position: absolute;
  top: -14px; left: 20px;
  font-size: 64px;
  color: var(--tan);
  background: var(--cream-2);
  line-height: 1;
  padding: 0 8px;
}
.testimonial__stars {
  color: var(--tan-deep);
  font-size: 14px;
  letter-spacing: .3em;
  margin-bottom: 14px;
}
.testimonial__quote {
  font-family: var(--ff-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-black);
}
.testimonial__author {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 1000px) {
  .slider__track { grid-auto-columns: calc((100% - 2 * 16px) / 3); gap: 16px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .edito--duo { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .slider__track { grid-auto-columns: calc((100% - 16px) / 2); }
  .featured__head { grid-template-columns: 1fr; }
  .featured__controls { justify-self: start; }
}
