:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-pink: #ff69b2;
  --color-pink-text: #fe72b7;
  --color-green: #80ff3b;
  --color-bg-gray: #f9f9f9;
  --color-muted: #6e6e6e;
  --font-mono: "Fragment Mono", "Courier New", monospace;
  --font-sans: Helvetica, Arial, sans-serif;
  --max-width: 1389px;
  --max-width-wide: 1684px;
  --page-inset: 20px;
  --section-gap: 14px;
  --image-inset: 18px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--color-white); color: var(--color-black); font-family: var(--font-mono); -webkit-font-smoothing: antialiased; }
body.home { --page-inset: 36px; background: #e8e8e8; min-height: 100vh; }

@media (min-width: 1200px) {
  body.home { --page-inset: 56px; }
}

body.article-page {
  --side-inset: 20px;
  --article-width: min(calc(100vw - var(--side-inset) * 2), var(--max-width-wide));
  --article-side: calc((100vw - var(--article-width)) / 2);
  background: #e8e8e8;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body.article-page { --side-inset: 36px; }
}

@media (min-width: 1200px) {
  body.article-page { --side-inset: 56px; }
}

/* Ambient logo background — home (full border) */
.ambient-bg--home { inset: 0; overflow: hidden; pointer-events: none; position: fixed; z-index: 0; }
.ambient-bg--home .ambient-bg__tiles {
  animation: ambient-drift 80s linear infinite;
  background-image: url("assets/logo-nav.webp");
  background-repeat: repeat;
  background-size: 110px auto;
  filter: blur(2px);
  height: 160%;
  inset: -30%;
  opacity: 0.3;
  position: absolute;
  width: 160%;
  will-change: transform;
}
.ambient-bg--home .ambient-bg__marquee {
  filter: blur(1px);
  left: 0;
  opacity: 0.45;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 12px;
  width: 100%;
}
.ambient-bg--home .ambient-bg__track {
  animation: ambient-marquee 40s linear infinite;
  display: flex;
  gap: 36px;
  width: max-content;
  will-change: transform;
}
.ambient-bg--home .ambient-bg__track img { flex-shrink: 0; height: 44px; opacity: 1; width: auto; }
.ambient-bg--home::after {
  background: radial-gradient(ellipse at center, transparent 62%, rgba(232, 232, 232, 0.72) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

/* Ambient logo background — article pages (side strips only) */
.ambient-bg--sides { inset: 0; pointer-events: none; position: fixed; z-index: 0; }
.ambient-bg--sides .ambient-bg__side {
  background: #e8e8e8;
  bottom: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: var(--article-side);
}
.ambient-bg--sides .ambient-bg__side--left { left: 0; }
.ambient-bg--sides .ambient-bg__side--right { right: 0; }
.ambient-bg--sides .ambient-bg__side::before {
  animation: ambient-drift 80s linear infinite;
  background-image: url("assets/logo-nav.webp");
  background-repeat: repeat;
  background-size: 110px auto;
  content: "";
  filter: blur(2px);
  height: 160%;
  inset: -30%;
  opacity: 0.3;
  position: absolute;
  width: 400%;
  will-change: transform;
}
.ambient-bg--sides .ambient-bg__side--right::before { animation-direction: reverse; animation-duration: 95s; }

@keyframes ambient-drift {
  from { transform: translate(0, 0) rotate(-3deg); }
  to { transform: translate(-130px, -90px) rotate(-3deg); }
}
@keyframes ambient-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-bg--home .ambient-bg__tiles,
  .ambient-bg--home .ambient-bg__track,
  .ambient-bg--sides .ambient-bg__side::before { animation: none; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.page { margin: 0 auto; max-width: var(--max-width); padding: 22px 10px 12px; position: relative; }
.page--wide { max-width: var(--max-width-wide); padding: 21px 30px 17px; }

/* Typography */
.caption { color: var(--color-white); font-size: 14px; letter-spacing: -0.28px; line-height: 1.2; }
.caption--dark { color: var(--color-black); }
.caption--center { text-align: center; }
.caption--pink { color: var(--color-pink-text); }
.heading-bold { color: var(--color-white); font-family: var(--font-sans); font-size: 20px; font-weight: 700; letter-spacing: -0.8px; line-height: 1.2; text-transform: uppercase; }
.heading-bold--dark { color: var(--color-black); }
.heading-regular { color: var(--color-pink-text); font-family: var(--font-sans); font-size: 26px; font-weight: 400; letter-spacing: -1.04px; line-height: 1.2; text-transform: uppercase; }
.article-title {
  color: var(--color-black);
  display: block;
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.42px;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.5s var(--ease-out-expo);
}
.article-title:hover { opacity: 0.8; }

/* Nav */
.top-nav { align-items: center; display: flex; font-size: 26px; justify-content: space-between; letter-spacing: -1.04px; padding: 0 30px; text-transform: uppercase; }
.top-nav__link { transition: opacity 0.45s var(--ease-out-expo); }
.top-nav__link--underline {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left 100%;
  background-size: 100% 1px;
  transition: background-size 0.5s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo);
}
.top-nav__link:hover { opacity: 0.7; }
.top-nav__link--underline:hover { background-size: 0% 1px; background-position: right 100%; }
.top-nav--home .top-nav__link:first-child { pointer-events: none; }

.page-nav { align-items: center; display: grid; grid-template-columns: 1fr auto 1fr; height: 58px; margin-bottom: 20px; padding: 0 30px; text-transform: uppercase; }
.page-nav__link { font-size: 26px; letter-spacing: -1.04px; transition: opacity 0.45s var(--ease-out-expo); }
.page-nav__link:first-child { justify-self: start; }
.page-nav__link:last-child, .page-nav > span.page-nav__link { justify-self: end; text-align: right; }
.page-nav__link--underline {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left 100%;
  background-size: 100% 1px;
  transition: background-size 0.5s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo);
}
.page-nav__link--underline:hover { background-size: 0% 1px; background-position: right 100%; }
.page-nav__logo { justify-self: center; }
.page-nav__logo img { height: 46px; width: 90px; object-fit: cover; transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo); }
.page-nav__logo:hover img { opacity: 0.75; transform: scale(0.96); }
.page-nav--center-logo { display: flex; justify-content: center; }
.page-nav__logo--solo { margin: 0 auto; }

/* Back button */
.back-btn {
  border: 1px solid var(--color-black);
  display: block;
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: -0.2px;
  margin: 80px auto 0;
  max-width: 554px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.35s var(--ease-out-expo), color 0.35s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
  width: calc(100% - 60px);
}
.back-btn:hover { background: var(--color-black); color: var(--color-white); }
.page--article .back-btn { margin-top: 48px; }
.back-btn + .footer { margin-top: 48px; }

/* Breadcrumbs */
.breadcrumbs { margin: -8px 0 24px; padding: 0 30px; text-transform: uppercase; }
.breadcrumbs--center { text-align: center; }
.page--home .breadcrumbs { padding: 0 30px; }
.breadcrumbs__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 0.25rem 0.5rem;
  letter-spacing: -0.12px;
  line-height: 1.3;
  list-style: none;
}
.breadcrumbs__item { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs__item:not(:last-child)::after {
  color: var(--color-muted);
  content: "/";
}
.breadcrumbs__link {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  text-decoration: none;
  transition: background-size 0.5s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo);
}
.breadcrumbs__link:hover { background-position: right 100%; background-size: 0% 1px; opacity: 0.7; }
.breadcrumbs__item[aria-current="page"] { color: var(--color-muted); }


/* Hero */
.hero { margin-top: 31px; padding: 104px 0 0; }
.hero__logo { height: auto; width: 100%; }
.page--home .hero { margin-top: 0; padding: 104px 0 0; }
.page--home .hero__logo { aspect-ratio: 1024 / 494; display: block; max-height: 742px; object-fit: contain; width: 100%; }
.page--home .categories { margin-top: 0; }

.page--home {
  background: var(--color-white);
  border: 1px solid var(--color-black);
  margin: var(--page-inset) auto;
  max-width: var(--max-width-wide);
  padding: 22px 28px 12px;
  position: relative;
  width: calc(100% - var(--page-inset) * 2);
  z-index: 1;
}
.page--home .top-nav,
.page--home .hero,
.page--home .footer { padding-left: 0; padding-right: 0; }
.page--home .categories,
.page--home .content,
.page--home .olus,
.page--home .feature-row { width: 100%; }

/* Categories */
.categories { margin: 150px auto 0; max-width: none; width: 100%; }
.categories__grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); padding: 0; }
.categories__item {
  aspect-ratio: 373 / 494;
  background: var(--color-bg-gray);
  display: block;
  overflow: hidden;
  padding: var(--image-inset);
}
.categories__image { height: 100%; object-fit: contain; width: 100%; transition: transform 1s var(--ease-out-expo); }
.categories__image--cover { object-fit: contain; }
.categories__item:hover .categories__image { transform: scale(1.03); }
.categories__labels { display: grid; font-size: 26px; gap: 28px; grid-template-columns: repeat(3, 1fr); letter-spacing: -1.04px; margin-top: 1.25rem; padding: 0; text-transform: uppercase; }
.categories__label {
  text-align: center;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100% 1px;
  display: inline-block;
  transition: background-size 0.5s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo);
}
.categories__label:hover { opacity: 0.7; background-size: 0% 1px; }

/* Editorial grid */
.content { margin-top: 82px; width: 100%; }
.editorial { background: var(--color-bg-gray); display: flex; flex-direction: column; width: 100%; }
.page--home .content,
.page--home .olus,
.page--home .feature-row {
  -webkit-user-select: none;
  user-select: none;
}
.editorial__row { display: grid; overflow: hidden; position: relative; }
.editorial__row--issue { grid-template-columns: 790fr 580fr; height: 401px; }
.editorial__row--frefre { grid-template-columns: 598fr 765fr; height: 462px; }
.editorial__row--iwo { grid-template-columns: 768fr 595fr; height: 467px; }
.editorial__row--full { display: block; overflow: hidden; position: relative; }
.editorial__row--quadros,
a.editorial__row--quadros { height: 497px; }
.editorial__row--voz,
a.editorial__row--voz { height: 479px; }
.editorial__row--whatsapp,
a.editorial__row--whatsapp { height: 474px; }
.editorial__cell { display: block; overflow: hidden; position: relative; }
.editorial__cell--pink { background: var(--color-pink); color: var(--color-white); display: flex; flex-direction: column; gap: 1rem; height: 100%; justify-content: center; padding: 3rem 2.5rem; text-decoration: none; }
.editorial__cell--text { background: var(--color-bg-gray); display: flex; flex-direction: column; gap: 1.5rem; height: 100%; justify-content: flex-end; padding: 2.5rem 2rem; }
.editorial__cell--green { align-items: center; background: var(--color-green); display: flex; flex-direction: column; gap: 1.5rem; height: 100%; justify-content: center; padding: 3rem 2.5rem; text-align: center; text-decoration: none; }
.editorial__cell--image { height: 100%; }
.editorial__cell--image img,
.editorial__row--full img { height: 100%; object-fit: cover; width: 100%; transition: transform 1.1s var(--ease-out-expo); }
.editorial__row--quadros img,
.editorial__row--voz img,
.editorial__row--whatsapp img { height: 100%; left: 0; object-fit: cover; position: absolute; top: 0; width: 100%; }
.editorial__row--quadros img { object-position: 50% 50%; }
.editorial__row--voz img { object-position: 40% 50%; }
.editorial__row--whatsapp img { height: 187%; object-position: center top; }
.editorial__cell--image:hover img,
.editorial__row--full:hover img { transform: scale(1.05); }
.editorial__row--quadros:hover img { transform: scale(1.05); }
.editorial__row--voz:hover img { transform: scale(1.05); }
.editorial__row--whatsapp:hover img { transform: scale(1.05); transform-origin: center top; }
.editorial__row--issue .editorial__cell--image img { object-fit: contain; background: var(--color-bg-gray); }
.editorial__cell--dark-overlay::after { background: rgba(0,0,0,0.2); content: ""; inset: 0; pointer-events: none; position: absolute; transition: background 0.5s var(--ease-out-expo); }
.editorial__cell--dark-overlay:hover::after { background: rgba(0,0,0,0.05); }

.grid { background: var(--color-bg-gray); display: grid; grid-template-columns: 790fr 580fr; }
.grid__cell { display: block; min-height: 360px; overflow: hidden; position: relative; }
.grid__cell--pink { background: var(--color-pink); display: flex; flex-direction: column; gap: 1rem; justify-content: center; min-height: 401px; padding: 163px 15px; }
.grid__cell--text { background: var(--color-bg-gray); display: flex; flex-direction: column; gap: 1.5rem; justify-content: flex-end; min-height: 462px; padding: 21px 14px; }
.grid__cell--green { align-items: center; background: var(--color-green); display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; min-height: 467px; padding: 50px; text-align: center; }
.grid__cell--image img { height: 100%; object-fit: cover; width: 100%; transition: transform 1.1s var(--ease-out-expo); }
.grid__cell--image:hover img { transform: scale(1.05); }
.grid__cell--wide { grid-column: 1 / -1; }
.grid__cell--overlay img { height: 100%; min-height: 479px; object-fit: cover; width: 100%; transition: transform 1.1s var(--ease-out-expo); }
.grid__cell--overlay:hover img { transform: scale(1.05); }
.grid__cell--dark-overlay::after { background: rgba(0,0,0,0.2); content: ""; inset: 0; pointer-events: none; position: absolute; transition: background 0.5s var(--ease-out-expo); }
.grid__cell--dark-overlay:hover::after { background: rgba(0,0,0,0.05); }
.grid__cell:nth-child(3), .grid__cell:nth-child(4) { min-height: 462px; }
.grid__cell:nth-child(6), .grid__cell:nth-child(7) { min-height: 467px; }

.overlay-text { color: var(--color-white); font-family: var(--font-sans); font-size: 26px; letter-spacing: -1.04px; line-height: 1.2; position: absolute; text-transform: uppercase; z-index: 2; }
.overlay-text--bottom { bottom: 21px; left: 12px; }
.overlay-text--center { font-size: 30px; font-weight: 700; left: 50%; letter-spacing: -0.6px; top: 50%; transform: translate(-50%, -50%); }
.overlay-tag { color: var(--color-white); font-size: 14px; letter-spacing: -0.28px; position: absolute; right: 13px; top: 8px; z-index: 1; }
.overlay-heading { color: var(--color-white); font-family: var(--font-sans); font-size: 30px; font-weight: 700; left: 50%; letter-spacing: -0.6px; line-height: 1.2; position: absolute; text-align: center; text-transform: uppercase; top: 40%; transform: translate(-50%, -50%); width: min(749px, 90%); z-index: 1; }
.editorial__row--voz .overlay-heading { left: 12px; max-width: 55%; text-align: left; top: 21px; transform: none; width: auto; }
.overlay-caption { color: var(--color-bg-gray); font-size: 14px; left: 50%; letter-spacing: -0.28px; line-height: 1.2; position: absolute; text-align: center; top: 55%; transform: translate(-50%, -50%); width: min(749px, 90%); z-index: 1; }

.olus { margin-top: 0; position: relative; width: 100%; }
.olus__images { display: grid; grid-template-columns: 1fr 1fr; height: 568px; }
.olus__image { display: block; filter: blur(2px); height: 100%; overflow: hidden; }
.olus__image img { height: 100%; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease-out-expo), filter 0.6s var(--ease-out-expo); }
.olus__image:hover img { transform: scale(1.04); filter: blur(0.5px); }
.olus__content {
  left: 50%;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1190px, 90%);
  z-index: 2;
}
.olus__title { color: var(--color-pink-text); font-family: var(--font-sans); font-size: clamp(32px, 5vw, 60px); font-weight: 700; letter-spacing: -0.6px; line-height: 1.2; margin-bottom: 1rem; }
.olus__text { color: var(--color-pink-text); font-size: 14px; letter-spacing: -0.28px; line-height: 1.35; margin: 0 auto; max-width: 706px; }
.olus__text p { margin-bottom: 0.75rem; }
.olus__text p:last-child { margin-bottom: 0; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; height: 541px; margin-top: 0; width: 100%; }
.feature-row__image { display: block; height: 100%; overflow: hidden; position: relative; }
.feature-row__image--pink::after { background: rgba(255,164,214,0.31); content: ""; inset: 0; pointer-events: none; position: absolute; }
.feature-row__image img { height: 100%; object-fit: cover; width: 100%; transition: transform 1.1s var(--ease-out-expo); }
.feature-row__image:hover img { transform: scale(1.05); }
.feature-row__text { background: var(--color-bg-gray); display: flex; flex-direction: column; gap: 2rem; justify-content: space-between; padding: 3rem 2.5rem; }
.feature-row__text--pink { background: var(--color-bg-gray); color: var(--color-pink-text); gap: 1.5rem; justify-content: flex-start; padding: 3rem 2.5rem; }
.heading-regular--feature { color: var(--color-pink-text); font-size: 26px; font-weight: 400; }

/* Shop */
.shop { margin-top: 40px; }
.shop__grid { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.shop__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 1100px; }
.shop__item { display: flex; flex-direction: column; overflow: hidden; }
.shop__item--link:hover { opacity: 0.85; }
.shop__image { aspect-ratio: 1 / 1.05; object-fit: cover; width: 100%; transition: transform 0.9s var(--ease-out-expo); }
.shop__item--link:hover .shop__image { transform: scale(1.04); }
.shop__image--contain { object-fit: contain; }
.shop__title { font-size: 26px; letter-spacing: -1.04px; line-height: 1.2; margin-top: 1rem; text-transform: uppercase; }
.shop__title--small { font-size: 20px; letter-spacing: -0.2px; line-height: 1.3; text-align: center; }

/* Product detail */
.product { display: grid; gap: 2rem; grid-template-columns: min(728px, 45%) 1fr; margin-top: 40px; min-height: 796px; }
.product__image { height: 726px; object-fit: cover; width: 100%; }
.product__image--contain { object-fit: contain; }
.product__info { padding-top: 80px; }
.product__name { font-size: 32px; letter-spacing: -0.32px; line-height: 1.3; margin-bottom: 0.25rem; text-transform: uppercase; }
.product__name em { font-style: italic; }
.product__price { font-size: 20px; line-height: 1.3; margin-bottom: 1rem; }
.product__subtitle { font-size: 15px; letter-spacing: -0.15px; line-height: 1.3; margin-bottom: 1.5rem; }
.product__sizes { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 1rem; }
.product__size { align-items: center; border: 1px solid var(--color-black); display: flex; font-size: 20px; height: 36px; justify-content: center; letter-spacing: -0.2px; min-width: 102px; padding: 10px; transition: background 0.35s var(--ease-out-expo), color 0.35s var(--ease-out-expo); }
.product__size:hover { background: var(--color-black); color: var(--color-white); }
.product__cart { background: var(--color-black); border: 1px solid var(--color-black); color: var(--color-white); cursor: pointer; display: block; font-family: var(--font-mono); font-size: 20px; letter-spacing: -0.2px; margin-bottom: 2rem; padding: 10px; text-align: center; text-transform: uppercase; width: 100%; max-width: 568px; transition: opacity 0.4s var(--ease-out-expo); }
.product__cart:hover { opacity: 0.85; }
.product__details { font-size: 14px; letter-spacing: -0.14px; line-height: 1.3; max-width: 568px; }
.product__details em { font-style: italic; }
.product__details p { margin-bottom: 0.25rem; }

/* About */
.about { margin: 60px auto 0; max-width: 1306px; padding: 0 30px; text-align: center; }
.about__logo { height: auto; margin: 0 auto 3rem; max-width: 628px; width: 100%; }
.about__text { font-size: 24px; line-height: normal; margin-bottom: 4rem; }
.about__quote { font-size: 24px; line-height: normal; margin: 0 auto; max-width: 1306px; }

/* Zine */
.zine { margin-top: 30px; padding: 0 12px; }
.zine__intro { font-size: 24px; line-height: normal; margin-bottom: 2rem; text-align: center; }
.zine__intro p { margin-bottom: 0.25rem; }
.zine__moodboard { margin: 0 auto; max-width: 1345px; width: 100%; }

/* Article */
.page--article {
  background: var(--color-white);
  border: 1px solid var(--color-black);
  margin: 0 auto;
  max-width: var(--max-width-wide);
  position: relative;
  width: var(--article-width);
  z-index: 1;
}
.page--article .page-nav { margin-bottom: 0; min-height: 46px; }
.article { margin: 0 auto; max-width: var(--max-width-wide); padding: 16px 0 120px; }
.article__header { display: grid; grid-template-columns: min(919px, 55%) 1fr; margin-bottom: 82px; min-height: 790px; overflow: hidden; }
.article__hero-image { height: 790px; object-fit: cover; width: 100%; transition: transform 1.4s var(--ease-out-expo); }
.article__header:hover .article__hero-image { transform: scale(1.035); }
.article__header-text { align-items: center; display: flex; flex-direction: column; justify-content: flex-start; padding: 120px 2rem 0; text-align: center; }
.article__title { font-family: var(--font-sans); font-size: 25px; font-weight: 700; letter-spacing: -0.25px; line-height: 1.3; margin-bottom: 1rem; max-width: 620px; text-transform: none; }
.article__intro { font-size: 12px; line-height: normal; max-width: 697px; }
.article__meta { font-size: 15px; letter-spacing: -0.15px; line-height: 1.3; margin-bottom: 76px; text-align: center; }
.article__content { display: flex; flex-direction: column; gap: 80px; }
.article__content > p, .article__closing { font-size: 15px; line-height: normal; margin-left: auto; margin-right: auto; max-width: 554px; }
.article__lead { font-size: 16px; line-height: normal; margin-left: auto; margin-right: auto; max-width: 554px; }
.article__figure { margin: 0 auto; overflow: hidden; }
.article__figure-image { display: block; height: auto; margin: 0 auto; object-fit: cover; width: 100%; max-width: 554px; transition: transform 1.2s var(--ease-out-expo); }
.article__figure:hover .article__figure-image { transform: scale(1.045); }
.article__closing { display: flex; flex-direction: column; gap: 1.5rem; max-width: 546px; }

/* Footer */
.footer { margin-top: 120px; padding: 0 30px; text-transform: uppercase; }
.page--home .footer { padding: 0; }
.footer__tagline { font-size: 26px; letter-spacing: -1.04px; line-height: 1.2; margin-bottom: 155px; text-align: center; }
.footer__bottom { align-items: flex-end; display: flex; font-size: 20px; justify-content: space-between; letter-spacing: -0.8px; line-height: 1.2; }
.footer__links { display: flex; flex-direction: column; text-align: left; }
.footer__links a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left 100%;
  background-size: 100% 1px;
  display: inline-block;
  width: fit-content;
  transition: background-size 0.5s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo);
}
.footer__links a:hover { opacity: 0.7; background-size: 0% 1px; background-position: right 100%; }

/* ============ Motion: scroll reveal (i-D style) ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal--delay-1 { transition-delay: 0.1s; }
  .reveal--delay-2 { transition-delay: 0.2s; }
  .reveal--delay-3 { transition-delay: 0.35s; }
  .reveal--scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
  }
  .reveal--scale.is-visible {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .editorial__row--issue,
  .editorial__row--frefre,
  .editorial__row--iwo { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid__cell--pink, .grid__cell--green { grid-column: auto; }
  .categories__grid, .categories__labels, .shop__grid { grid-template-columns: 1fr; }
  .olus__images, .feature-row, .product, .article__header { grid-template-columns: 1fr; }
  .article__hero-image, .product__image { height: auto; max-height: 500px; }
  .olus__content { position: relative; transform: none; left: auto; top: auto; padding: 2rem 1rem; }
  .product__info { padding-top: 0; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
  .page-nav { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; height: auto; gap: 1rem; }
  .page-nav__logo { grid-column: 1 / -1; order: -1; }
}

@media (max-width: 640px) {
  .editorial__row--issue,
  .editorial__row--frefre,
  .editorial__row--iwo { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .grid__cell--wide { grid-column: 1; }
  .article-title { font-size: 28px; }
  .top-nav { font-size: 18px; padding: 0 10px; }
  .breadcrumbs { padding: 0 10px; }
  .back-btn { font-size: 18px; width: calc(100% - 20px); }
  .hero { padding-top: 40px; }
  .page--home {
    margin: 10px auto;
    padding: 16px 14px 10px;
    width: calc(100% - 20px);
  }
  .editorial__cell--pink,
  .editorial__cell--text,
  .editorial__cell--green,
  .feature-row__text,
  .feature-row__text--pink { padding: 1.75rem 1.25rem; }
}