/* =========================================================
   MOKØ — CORVÉN COLLECTION
   Pure CSS layout system: custom properties, Grid and Flexbox
   ========================================================= */

:root {
  --ink: #0c0c0b;
  --ink-soft: #171715;
  --paper: #f2efe9;
  --paper-bright: #f7f1e8;
  --stone: #d8d0c4;
  --warm: #c8b69f;
  --accent: #b8625e;
  --white: #ffffff;
  --muted: #716e68;
  --line: rgba(12, 12, 11, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --header-height: 82px;
  --shell: min(1380px, calc(100% - 72px));
  --section-space: clamp(96px, 11vw, 184px);
  --radius-sm: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

figure,
h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.45;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.74);
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(3rem, 6.5vw, 7.6rem);
}

p {
  max-width: 66ch;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.35s var(--ease);
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.text-link--light {
  color: var(--white);
}

.source-note,
.content-needed {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.source-note strong,
.content-needed strong,
.contact-missing strong,
.team-card strong {
  color: var(--accent);
  font-weight: 600;
}

/* Header -------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: color 0.35s var(--ease), background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), transform 0.35s var(--ease);
}

.site-header.is-scrolled {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 233, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 38px;
  height: 28px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.brand-logo--dark {
  position: absolute;
  left: 0;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--dark {
  opacity: 1;
}

.brand-wordmark {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.site-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 28px; }

.menu-toggle.is-open span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

/* Video component ---------------------------------------- */
.video-stage {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.video-stage:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.video-stage__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  min-width: 70px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.26);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}

.video-toggle:hover {
  background: rgba(184, 98, 94, 0.78);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-stage.is-playing .video-toggle {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.video-toggle__label {
  padding-right: 22px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-toggle:has(.video-toggle__label) {
  min-width: 160px;
  padding-inline: 24px;
}

/* Hero ---------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media--image {
  background:
    url("assets/images/collection-light.webp") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.93), rgba(7, 7, 6, 0.58) 58%, rgba(7, 7, 6, 0.56)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, transparent 52%);
}

.video-toggle--hero {
  left: auto;
  right: clamp(28px, 8vw, 124px);
  transform: translateY(-50%);
}

.video-toggle--hero:hover {
  transform: translateY(-50%) scale(1.05);
}

.hero-media.is-playing .video-toggle--hero {
  transform: translateY(-50%) scale(0.88);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: calc(var(--header-height) + 40px) 120px;
}

.hero-eyebrow {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(4.2rem, 9vw, 10.8rem);
  font-weight: 300;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: rgba(255, 255, 255, 0.48);
}

.hero-copy {
  max-width: 490px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-cue i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  transform: translateX(-100%);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* Philosophy --------------------------------------------- */
.philosophy {
  background: var(--paper);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.05fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.philosophy .section-heading h2 {
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.philosophy-copy {
  padding-top: clamp(68px, 9vw, 135px);
}

.philosophy-copy .lead {
  margin-bottom: 22px;
  font-size: clamp(1.5rem, 2.1vw, 2.25rem);
  line-height: 1.2;
}

.philosophy-copy > p:not(.lead):not(.source-note) {
  color: #44413d;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.philosophy-copy .source-note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.philosophy-visual {
  min-height: 630px;
  overflow: hidden;
}

.philosophy-visual img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 1.1s var(--ease);
}

.philosophy-visual:hover img {
  transform: scale(1.025);
}

/* Collection intro --------------------------------------- */
.collection-intro {
  color: var(--white);
  background: var(--ink);
}

.collection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
}

.collection-cover {
  position: relative;
  max-width: 620px;
}

.collection-cover::before {
  position: absolute;
  inset: 7% -7% -7% 7%;
  z-index: 0;
  content: "";
  border: 1px solid var(--line-light);
}

.collection-cover img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.collection-copy h2 {
  font-size: clamp(4rem, 7vw, 8.6rem);
}

.collection-copy h2 span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.48em;
  letter-spacing: -0.035em;
}

.collection-statement {
  margin-top: 42px;
  color: var(--warm);
  font-size: clamp(1.6rem, 2.5vw, 2.7rem);
  font-weight: 300;
}

.collection-copy > p:not(.eyebrow):not(.collection-statement) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.collection-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line-light);
}

.collection-facts div {
  padding: 20px 20px 0 0;
}

.collection-facts dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-facts dd {
  margin-top: 8px;
  font-size: 0.88rem;
}

/* Product index ------------------------------------------ */
.product-index {
  background: var(--paper-bright);
}

.index-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 104px);
}

.index-heading h2 {
  font-size: clamp(3.6rem, 6vw, 7rem);
}

.index-heading > p {
  justify-self: end;
  max-width: 470px;
  color: var(--muted);
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: clamp(480px, 48vw, 720px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 52%);
}

.product-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.product-card:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.product-card__number,
.product-card__label {
  position: absolute;
  z-index: 2;
}

.product-card__number {
  top: 22px;
  left: 22px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.product-card__label {
  right: 22px;
  bottom: 26px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.product-card__label strong {
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.product-card__label small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(10, 10, 9, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.product-card:hover .product-card__button {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.product-card__label {
  bottom: 78px;
}

/* Product stories ---------------------------------------- */
.product-story {
  background: var(--paper);
}

.product-story--dark {
  color: var(--white);
  background: var(--ink-soft);
}

.product-story--warm {
  background: #ded4c6;
}

.product-story__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 132px);
  align-items: center;
}

.product-story__grid--reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.product-story__grid--reverse .product-story__copy {
  grid-column: 2;
  grid-row: 1;
}

.product-story__grid--reverse .product-gallery {
  grid-column: 1;
  grid-row: 1;
}

.product-story__copy h2 {
  font-size: clamp(4.5rem, 8vw, 10rem);
  letter-spacing: 0.015em;
}

.product-lead {
  max-width: 520px;
  margin-top: 40px;
  color: #46423e;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 300;
}

.product-story--dark .product-lead {
  color: rgba(255, 255, 255, 0.64);
}

.product-story__copy .content-needed {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-story--dark .content-needed {
  color: rgba(255, 255, 255, 0.5);
  border-color: var(--line-light);
}

.product-story__copy .text-link {
  margin-top: 0;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 32px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.product-gallery figure {
  min-height: 250px;
  overflow: hidden;
  background: #171715;
}

.product-gallery .gallery-main {
  grid-row: 1 / 3;
  min-height: 720px;
}

.product-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.product-gallery figure:hover img {
  transform: scale(1.025);
}

/* Film showcase ------------------------------------------ */
.showcase {
  color: var(--white);
  background: var(--ink);
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.showcase-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.showcase-heading h2 {
  font-size: clamp(3.8rem, 6.6vw, 7.5rem);
}

.showcase-heading > p {
  justify-self: end;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.58);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.video-stage--card {
  aspect-ratio: 9 / 14;
}

.film-card__caption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding-top: 18px;
}

.film-card__caption span,
.film-card__caption p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.film-card__caption h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Materials ---------------------------------------------- */
.materials {
  background: var(--paper-bright);
}

.materials-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(56px, 9vw, 148px);
  align-items: center;
}

.materials-copy h2 {
  font-size: clamp(3.4rem, 5.7vw, 6.7rem);
}

.materials-copy > p:not(.eyebrow):not(.content-needed) {
  max-width: 530px;
  margin-top: 36px;
  color: var(--muted);
}

.materials-copy .content-needed {
  margin-top: 28px;
}

.materials-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.materials-images figure {
  overflow: hidden;
}

.materials-images figure:first-child {
  margin-bottom: 90px;
}

.materials-images img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.materials-images figure:hover img {
  transform: scale(1.025);
}

/* Craftsmanship ------------------------------------------ */
.craftsmanship {
  overflow: hidden;
  background: var(--stone);
}

.craft-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.craft-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.craft-heading h2 {
  font-size: clamp(3.8rem, 6.4vw, 7.5rem);
}

.craft-heading > p {
  justify-self: end;
  max-width: 500px;
  color: #59534c;
}

.craft-strip {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(260px, 24vw));
  gap: 14px;
  padding-inline: max(36px, calc((100vw - 1380px) / 2));
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.craft-strip::-webkit-scrollbar {
  display: none;
}

.craft-strip figure {
  scroll-snap-align: start;
}

.craft-strip img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.craft-strip figcaption {
  padding-top: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.craft-film-wrap {
  margin-top: clamp(70px, 9vw, 128px);
}

.craft-film {
  aspect-ratio: 16 / 8.6;
}

.craft-film .video-stage__video {
  object-position: center 45%;
}

/* Team ---------------------------------------------------- */
.team {
  background: var(--paper);
}

.team-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 70px;
}

.team-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.team-heading h2 {
  max-width: 900px;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.team-heading > p {
  justify-self: end;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.68fr) 1fr;
  gap: 28px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.team-card figure {
  overflow: hidden;
}

.team-card img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}

.team-card:hover img {
  filter: grayscale(0.2);
  transform: scale(1.02);
}

.team-card h3 {
  font-size: clamp(2rem, 3vw, 3.5rem);
}

.team-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Contact ------------------------------------------------- */
.contact {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.93), rgba(7, 7, 6, 0.58) 58%, rgba(7, 7, 6, 0.56)),
    url("assets/images/collection-light.webp") center / cover no-repeat;
}

.contact-content {
  position: relative;
  z-index: 2;
  padding-block: 120px;
}

.contact-content h2 {
  max-width: 1000px;
  font-size: clamp(4rem, 8.3vw, 10rem);
}

.contact-content > p:not(.eyebrow):not(.contact-missing) {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  margin-top: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: clamp(1.15rem, 2.4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  word-break: break-word;
}

.contact-email:hover {
  color: var(--warm);
}

.contact-missing {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

/* Footer -------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink) url("assets/images/collection-lifestyle-dark.webp") center 38% / cover no-repeat;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.86);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 64px;
  padding-block: 90px 76px;
}

.footer-brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 32px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav a,
.footer-contact p,
.footer-contact span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  padding-block: 5px;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact a {
  display: inline-block;
  margin-top: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.92rem;
}

.footer-contact span {
  display: block;
  margin-top: 24px;
  line-height: 1.6;
}

.footer-contact .footer-instagram {
  display: block;
  width: fit-content;
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Progressive scroll reveal ------------------------------ */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* Tablet -------------------------------------------------- */
@media (max-width: 1080px) {
  :root {
    --shell: min(calc(100% - 44px), 960px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 110px max(24px, calc((100vw - 960px) / 2));
    color: var(--white);
    background: rgba(12, 12, 11, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.035em;
    text-transform: none;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    padding: 12px 18px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
  }

  .site-header.menu-active,
  .site-header.menu-active.is-scrolled {
    color: var(--white);
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  .site-header.menu-active .brand-logo--light {
    opacity: 1;
  }

  .site-header.menu-active .brand-logo--dark {
    opacity: 0;
  }

  .video-toggle--hero {
    right: 44px;
  }

  .philosophy-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .philosophy-visual {
    grid-column: 1 / -1;
    min-height: 640px;
  }

  .philosophy-copy {
    padding-top: 60px;
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    min-height: 680px;
  }

  .product-story__grid,
  .product-story__grid--reverse {
    grid-template-columns: 1fr;
  }

  .product-story__grid--reverse .product-story__copy,
  .product-story__grid--reverse .product-gallery {
    grid-column: 1;
  }

  .product-story__grid--reverse .product-story__copy { grid-row: 1; }
  .product-story__grid--reverse .product-gallery { grid-row: 2; }

  .product-story__copy {
    max-width: 690px;
  }

  .product-gallery .gallery-main {
    min-height: 640px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 18px;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .materials-copy {
    max-width: 760px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    max-width: 850px;
  }
}

/* Mobile -------------------------------------------------- */
@media (max-width: 700px) {
  :root {
    --header-height: 70px;
    --shell: calc(100% - 32px);
    --section-space: 88px;
  }

  html {
    scroll-padding-top: 84px;
  }

  .brand-logo {
    width: 34px;
  }

  .brand-wordmark {
    font-size: 0.7rem;
  }

  .site-nav {
    padding-inline: 24px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5.4rem);
  }

  .hero-copy {
    max-width: 92%;
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    display: none;
  }

  .hero-foot {
    bottom: 18px;
  }

  .hero-foot > span:first-child {
    display: none;
  }

  .hero-foot .scroll-cue {
    margin-left: auto;
  }

  .video-toggle--hero {
    top: 31%;
    right: 16px;
  }

  .video-toggle--hero:has(.video-toggle__label) {
    min-width: 62px;
    width: 62px;
    min-height: 62px;
    padding: 0;
  }

  .video-toggle--hero .video-toggle__label {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.42) 58%, rgba(4, 4, 4, 0.35) 100%),
      linear-gradient(90deg, rgba(4, 4, 4, 0.3), transparent);
  }

  .philosophy-grid,
  .collection-grid,
  .index-heading,
  .showcase-heading,
  .craft-heading,
  .team-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-copy {
    padding-top: 0;
  }

  .philosophy-visual {
    min-height: 470px;
  }

  .collection-cover {
    width: 90%;
  }

  .collection-copy h2 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

  .collection-facts {
    grid-template-columns: 1fr;
  }

  .collection-facts div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .collection-facts dd {
    margin-top: 0;
    text-align: right;
  }

  .index-heading,
  .showcase-heading,
  .craft-heading,
  .team-heading {
    gap: 28px;
  }

  .index-heading > p,
  .showcase-heading > p,
  .craft-heading > p,
  .team-heading > p {
    justify-self: start;
  }

  .showcase-heading .eyebrow,
  .craft-heading .eyebrow,
  .team-heading .eyebrow {
    margin-bottom: 0;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 580px;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 250px;
    gap: 10px;
  }

  .product-gallery .gallery-main {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 520px;
  }

  .product-gallery figure:not(.gallery-main) {
    min-height: 250px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-stage--card {
    aspect-ratio: 9 / 12;
  }

  .materials-images {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .materials-images figure:first-child {
    margin-bottom: 48px;
  }

  .craft-strip {
    grid-template-columns: repeat(5, 78vw);
    padding-inline: 16px;
  }

  .craft-film {
    aspect-ratio: 9 / 13;
  }

  .craft-film .video-stage__video {
    object-position: center;
  }

  .team-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .team-card img {
    aspect-ratio: 4 / 5;
    object-position: center 28%;
  }

  .contact {
    min-height: 720px;
  }

  .contact-content h2 {
    font-size: clamp(3.6rem, 17vw, 6.2rem);
  }

  .footer-grid {
    gap: 50px;
    padding-block: 72px 54px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* Small phones ------------------------------------------- */
@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 24px);
  }

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

  h2 {
    font-size: 3rem;
  }

  .product-gallery {
    grid-template-rows: 450px 190px;
  }

  .product-gallery .gallery-main {
    min-height: 450px;
  }

  .product-gallery figure:not(.gallery-main) {
    min-height: 190px;
  }
}

/* Motion accessibility ----------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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


/* Product detail pages ------------------------------------ */
.detail-page {
  background: var(--paper-bright);
}

.detail-header .site-header {
  color: var(--white);
}

.detail-hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.detail-hero__media,
.detail-hero__overlay {
  position: absolute;
  inset: 0;
}

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

.detail-hero__overlay {
  background:
    linear-gradient(0deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.28) 56%, rgba(5,5,5,.24) 100%),
    linear-gradient(90deg, rgba(5,5,5,.42), transparent 62%);
}

.detail-hero__content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
  padding: calc(var(--header-height) + 72px) 0 72px;
}

.detail-hero__content h1 {
  max-width: 900px;
  font-size: clamp(5rem, 11vw, 11.5rem);
  font-weight: 300;
  letter-spacing: -0.065em;
}

.detail-hero__content .detail-type {
  margin-top: 18px;
  color: rgba(255,255,255,.66);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.detail-intro__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.detail-intro h2 {
  max-width: 620px;
  font-size: clamp(3.2rem, 6vw, 7rem);
}

.detail-copy-stack {
  padding-top: 8px;
}

.detail-copy-stack .lead {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: -0.025em;
}

.detail-copy-stack p + p {
  margin-top: 28px;
}

.detail-copy-stack .detail-note {
  max-width: 660px;
  color: var(--muted);
}

.detail-gallery {
  padding-top: 0;
}

.detail-gallery__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(320px, 44vw));
  gap: 18px;
}

.detail-gallery__grid figure {
  overflow: hidden;
  background: var(--ink-soft);
}

.detail-gallery__grid figure:first-child {
  grid-row: 1 / 3;
}

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

.detail-feature {
  color: var(--white);
  background: var(--ink-soft);
}

.detail-feature__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.detail-feature h2 {
  font-size: clamp(3.2rem, 6vw, 7.5rem);
}

.detail-feature__copy p:not(.eyebrow) {
  margin-top: 30px;
  color: rgba(255,255,255,.62);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.detail-feature__media {
  min-height: min(74vw, 760px);
  overflow: hidden;
}

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

.detail-film {
  background: #ded4c6;
}

.detail-film__heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.detail-film__heading p:last-child {
  justify-self: end;
  max-width: 500px;
  color: #58534d;
}

.detail-film .video-stage {
  min-height: min(72vw, 820px);
}

.detail-next {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.detail-next::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7,7,6,.93), rgba(7,7,6,.58) 58%, rgba(7,7,6,.62)),
    url("assets/images/collection-light.webp") center / cover no-repeat;
}

.detail-next__content {
  position: relative;
  z-index: 1;
  padding-block: 120px;
}

.detail-next h2 {
  max-width: 920px;
  font-size: clamp(3.5rem, 7vw, 8.5rem);
}

.detail-next__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 38px;
}

@media (max-width: 1080px) {
  .detail-intro__grid,
  .detail-feature__grid,
  .detail-film__heading {
    grid-template-columns: 1fr;
  }

  .detail-film__heading p:last-child {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .hero-media--image {
    background-position: 61% center;
  }

  .product-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-actions .button {
    width: 100%;
  }

  .product-card__label {
    bottom: 76px;
  }

  .detail-hero {
    min-height: 78svh;
  }

  .detail-hero__content {
    padding-bottom: 42px;
  }

  .detail-hero__content h1 {
    font-size: clamp(4.2rem, 22vw, 6.8rem);
  }

  .detail-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .detail-gallery__grid figure,
  .detail-gallery__grid figure:first-child {
    grid-row: auto;
    min-height: 480px;
  }

  .detail-feature__media {
    min-height: 560px;
  }

  .detail-film .video-stage {
    min-height: 620px;
  }

  .detail-next__content {
    padding-block: 88px;
  }
}


/* Latest additions — original MOKØ visual system retained */
.site-preloader{position:fixed;inset:0;z-index:2000;display:grid;place-items:center;color:var(--white);background:var(--ink);transition:opacity .55s var(--ease),visibility .55s var(--ease)}
.site-preloader.is-hidden{opacity:0;visibility:hidden;pointer-events:none}.site-preloader__inner{width:min(260px,calc(100% - 64px));text-align:center}.site-preloader__inner img{width:58px;margin:0 auto 26px;filter:drop-shadow(0 12px 24px rgba(255,255,255,.05))}.site-preloader__percent{font-size:clamp(2.7rem,6vw,5rem);font-weight:300;line-height:1;letter-spacing:-.055em}.site-preloader__track{height:1px;margin-top:22px;overflow:hidden;background:rgba(255,255,255,.18)}.site-preloader__track span{display:block;width:0;height:100%;background:rgba(255,255,255,.92);transition:width .16s linear}
.product-index__more{display:flex;justify-content:flex-end;margin-top:34px}
.whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:120;display:inline-flex;align-items:center;gap:10px}.whatsapp-float__text{padding:10px 14px;border:1px solid rgba(12,12,11,.1);color:var(--ink);background:rgba(250,248,244,.94);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);box-shadow:0 10px 28px rgba(0,0,0,.14);font-size:.68rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase}.whatsapp-float__icon{position:relative;width:54px;height:54px;display:grid;place-items:center;flex:0 0 54px;border-radius:50%;color:var(--white);background:#25d366;box-shadow:0 12px 30px rgba(37,211,102,.32)}.whatsapp-float__icon::before,.whatsapp-float__icon::after{position:absolute;inset:-7px;content:"";border:1px solid rgba(37,211,102,.46);border-radius:50%;animation:whatsapp-pulse 2.2s ease-out infinite}.whatsapp-float__icon::after{animation-delay:1.1s}.whatsapp-float svg{width:27px;height:27px;fill:currentColor}@keyframes whatsapp-pulse{0%{transform:scale(.88);opacity:.8}70%,100%{transform:scale(1.35);opacity:0}}
.back-top-float{position:fixed;left:22px;bottom:22px;z-index:120;width:50px;height:50px;border:1px solid rgba(255,255,255,.2);color:var(--white);background:rgba(12,12,11,.9);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .3s var(--ease),visibility .3s var(--ease),transform .3s var(--ease),background .3s var(--ease)}.back-top-float:hover{background:var(--accent)}.back-top-float.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.catalog-intro{padding-top:calc(var(--header-height) + 92px)}.catalog-title{font-size:clamp(3.8rem,7vw,8.4rem);font-weight:300;line-height:.96;letter-spacing:-.06em}.catalog-title span{color:rgba(255,255,255,.46)}.catalog-empty{grid-column:1/-1;padding:34px 0;color:var(--muted)}.product-not-found{min-height:70svh;padding-top:calc(var(--header-height) + 120px);background:var(--paper-bright)}.product-not-found h1{margin-bottom:34px;font-size:clamp(3.6rem,8vw,8rem);font-weight:300;letter-spacing:-.065em}.detail-gallery__grid figure:nth-child(n+4){min-height:420px}
@media(max-width:700px){.whatsapp-float{right:14px;bottom:16px}.whatsapp-float__text{max-width:122px;padding:9px 10px;font-size:.58rem;line-height:1.35}.whatsapp-float__icon{width:50px;height:50px;flex-basis:50px}.back-top-float{left:14px;bottom:16px;width:46px;height:46px}.product-index__more{justify-content:flex-start}.catalog-intro{padding-top:calc(var(--header-height) + 54px)}}

/* Collection hierarchy update ---------------------------------- */
.collection-cover__link {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
}

.collection-cover__cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(250, 248, 244, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.collection-cover__link:hover .collection-cover__cta {
  transform: translateY(-3px);
  background: var(--white);
}

.collection-title-link { color: inherit; }
.collection-enter { margin-top: 30px; }

.homepage-extra-collections[hidden] { display: none !important; }
.homepage-extra-collections { padding-top: 54px; }
.homepage-extra-collections__head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
}
.homepage-extra-collections__head .eyebrow { margin-bottom: 0; }
.homepage-collection-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.homepage-collection-card {
  display: grid;
  grid-template-columns: 108px minmax(0,1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.035);
}
.homepage-collection-card img { width: 108px; height: 108px; object-fit: cover; }
.homepage-collection-card span { display: grid; gap: 5px; }
.homepage-collection-card strong { font-size: 1.05rem; font-weight: 500; }
.homepage-collection-card small { color: rgba(255,255,255,.54); }

.collection-page .product-index { background: var(--paper-bright); }
.collection-page .product-story:last-child { border-bottom: 0; }
.tokopedia-story-link { white-space: nowrap; }
.detail-tokopedia-link { margin-top: 30px; width: fit-content; }
.detail-tokopedia-link[hidden] { display: none !important; }

/* Robust floating WhatsApp button.
   The mobile version becomes a fixed 52px circle only, avoiding label/flex
   layout bugs seen on some Android browsers and WebViews. */
.whatsapp-float {
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  right: max(22px, env(safe-area-inset-right, 0px)) !important;
  bottom: max(22px, env(safe-area-inset-bottom, 0px)) !important;
  z-index: 2147483000 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: calc(100vw - 44px) !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  overflow: visible !important;
  transform: translate3d(0,0,0) !important;
  -webkit-transform: translate3d(0,0,0) !important;
  isolation: isolate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.whatsapp-float__text {
  flex: 0 1 auto;
  box-sizing: border-box;
}

.whatsapp-float__icon {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  flex: 0 0 54px !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  overflow: visible !important;
  line-height: 0 !important;
}

.whatsapp-float__icon svg {
  display: block !important;
  width: 27px !important;
  height: 27px !important;
  min-width: 27px !important;
  min-height: 27px !important;
  flex: none !important;
}

.back-top-float {
  left: max(22px, env(safe-area-inset-left, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
}

@media (max-width: 900px) {
  .homepage-collection-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .collection-cover__cta {
    right: 12px;
    bottom: 12px;
    padding: 9px 10px;
    font-size: .58rem;
  }

  .homepage-extra-collections__head { display: grid; }
  .homepage-collection-cards { grid-template-columns: 1fr; }

  .whatsapp-float {
    position: fixed !important;
    right: max(14px, env(safe-area-inset-right, 0px)) !important;
    bottom: max(16px, env(safe-area-inset-bottom, 0px)) !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    display: block !important;
    gap: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
  }

  .whatsapp-float__text {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .whatsapp-float__icon {
    position: absolute !important;
    inset: 0 !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .whatsapp-float__icon::before,
  .whatsapp-float__icon::after {
    inset: -5px !important;
  }

  .whatsapp-float__icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .back-top-float {
    left: max(14px, env(safe-area-inset-left, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
}
