@import url("https://fonts.googleapis.com/css2?family=Anton&family=Caveat:wght@600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --display: "Anton", Impact, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --script: "Caveat", cursive;
  --blue: #001aff;
  --ink: #000;
  --muted: #666;
  --line: #e5e5e5;
  --paper: #f7f7f7;
  --white: #fff;
  --container: min(100% - 40px, 1320px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
}

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

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

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 3vw, 40px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.brand-mark img {
  width: auto;
  height: 40px;
  max-width: 56px;
  object-fit: contain;
}

.footer-bottom .brand-mark img {
  height: 32px;
  max-width: 44px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
}

.main-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-search svg { flex-shrink: 0; }

.header-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav-overlay,
.mobile-nav-drawer { display: none; }

/* ===== CTA LINKS ===== */

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue);
}

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

.cta-link svg { flex-shrink: 0; }

/* ===== HOME: HERO ===== */

.hero-magazine {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px) clamp(24px, 4vw, 40px);
  overflow: hidden;
}

.hero-magazine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1320px;
  margin-inline: auto;
}

.home-page .site-header {
  grid-template-columns: auto 1fr;
}

.hero-title {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-family: var(--display);
  font-size: clamp(72px, 15vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-title .word-news {
  position: relative;
  display: inline-block;
  color: var(--blue);
  animation: word-news-breathe 5s ease-in-out infinite;
}

@keyframes word-news-breathe {
  0%, 100% { transform: scaleY(1) translateY(0); filter: saturate(1); }
  45% { transform: scaleY(1.03) translateY(2px); filter: saturate(1.15); }
  70% { transform: scaleY(0.98) translateY(4px); filter: saturate(1.05); }
}

.hero-title .word-news::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: -0.06em;
  width: 0.09em;
  height: 0.14em;
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  background: var(--blue);
  animation: word-news-drip 3.8s ease-in infinite;
  pointer-events: none;
}

@keyframes word-news-drip {
  0%, 18% { opacity: 0; transform: translateY(0) scaleY(0.4); }
  28% { opacity: 1; transform: translateY(0.04em) scaleY(1); }
  62% { opacity: 1; transform: translateY(0.35em) scaleY(1.35); }
  100% { opacity: 0; transform: translateY(0.7em) scaleY(0.5); }
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  min-height: 420px;
}

.hero-blob {
  position: absolute;
  top: 5%;
  left: 22%;
  width: min(58%, 560px);
  height: 78%;
  transform: rotate(-6deg);
  z-index: 0;
  color: var(--blue);
  pointer-events: none;
  overflow: visible;
}

.hero-liquid .liquid-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-liquid .liquid-part,
.hero-liquid .liquid-drip,
.hero-liquid .liquid-pool {
  fill: currentColor;
}

.hero-liquid .liquid-pool {
  opacity: 0.35;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 280px;
  padding-bottom: 32px;
}

.hero-copy p {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-model {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 440px);
}

.hero-model img {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-sidebar {
  border-left: 1px solid var(--line);
  padding-left: 24px;
  align-self: start;
}

.hero-date {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  color: var(--blue);
}

.hero-sidebar h2 {
  margin: 0 0 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.digest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.digest-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.digest-item img {
  width: 52px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  background: #ddd;
}

.digest-item span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* ===== HOME: TELEGRAM PROMO ===== */

.tg-promo {
  --tg-red: #e8192c;
  --tg-dark: #0a0a0a;
  padding: 0 clamp(20px, 3vw, 40px) clamp(32px, 5vw, 56px);
}

.tg-promo__card {
  display: block;
  max-width: 1320px;
  margin-inline: auto;
  text-decoration: none;
  color: var(--white);
  background: var(--tg-dark);
  border: 1px solid #1a1a1a;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tg-promo__card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 25, 44, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.tg-promo__card--banner {
  padding: 0;
  background: transparent;
  border-color: #1a1a1a;
}

.tg-promo__banner-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.tg-promo__card--banner:hover {
  border-color: rgba(236, 72, 153, 0.55);
}

.tg-promo__card--banner:hover .tg-promo__banner-img {
  filter: brightness(1.04);
}

.tg-promo__main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  min-height: clamp(280px, 38vw, 420px);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px) clamp(20px, 3vw, 32px);
  background:
    radial-gradient(ellipse 80% 90% at 15% 50%, rgba(232, 25, 44, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, #111 0%, var(--tg-dark) 45%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.tg-promo__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/tg-maisonlove/fashion-03.jpg") right center / cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.tg-promo__copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.tg-promo__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.tg-promo__brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tg-red);
}

.tg-promo__headline {
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tg-promo__headline--accent {
  color: var(--tg-red);
}

.tg-promo__sub {
  margin: 0 0 clamp(18px, 2.5vw, 24px);
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
}

.tg-promo__subscribe {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 2.5vw, 26px);
}

.tg-promo__tg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: background 0.25s, border-color 0.25s;
}

.tg-promo__card:hover .tg-promo__tg-icon {
  background: rgba(232, 25, 44, 0.2);
  border-color: rgba(232, 25, 44, 0.5);
}

.tg-promo__subscribe-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.tg-promo__subscribe-text strong {
  font-weight: 700;
  color: var(--white);
}

.tg-promo__subscribe-text em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--tg-red);
}

.tg-promo__tags {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.38);
}

.tg-promo__visual {
  position: relative;
  z-index: 1;
  min-height: 260px;
}

.tg-promo__collage {
  position: relative;
  width: min(100%, 520px);
  height: 100%;
  min-height: 300px;
  margin-left: auto;
}

.tg-promo__photo {
  position: absolute;
  width: clamp(110px, 16vw, 170px);
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  filter: grayscale(1) contrast(1.08);
  transition: transform 0.35s ease;
}

.tg-promo__photo--1 {
  top: 6%;
  left: -2%;
  transform: rotate(-11deg);
  z-index: 2;
}

.tg-promo__photo--2 {
  top: 2%;
  right: 2%;
  transform: rotate(7deg);
  z-index: 2;
}

.tg-promo__photo--3 {
  bottom: 2%;
  left: 4%;
  transform: rotate(-5deg);
  z-index: 2;
}

.tg-promo__photo--4 {
  top: 18%;
  left: 24%;
  width: clamp(95px, 13vw, 130px);
  transform: rotate(-14deg);
  z-index: 1;
}

.tg-promo__photo--5 {
  top: 10%;
  right: 20%;
  width: clamp(90px, 12vw, 125px);
  transform: rotate(12deg);
  z-index: 1;
}

.tg-promo__photo--6 {
  bottom: 6%;
  right: 22%;
  width: clamp(92px, 12vw, 128px);
  transform: rotate(-8deg);
  z-index: 1;
}

.tg-promo__card:hover .tg-promo__photo--1 { transform: rotate(-13deg) translateY(-4px); }
.tg-promo__card:hover .tg-promo__photo--2 { transform: rotate(9deg) translateY(-6px); }
.tg-promo__card:hover .tg-promo__photo--3 { transform: rotate(-7deg) translateY(-3px); }
.tg-promo__card:hover .tg-promo__photo--4 { transform: rotate(-16deg) translateY(-5px); }
.tg-promo__card:hover .tg-promo__photo--5 { transform: rotate(14deg) translateY(-4px); }
.tg-promo__card:hover .tg-promo__photo--6 { transform: rotate(-10deg) translateY(-3px); }

.tg-promo__phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(148px, 20vw, 188px);
  aspect-ratio: 9 / 19;
  transform: translate(-50%, -50%) rotate(4deg);
  border-radius: 22px;
  padding: 7px;
  background: linear-gradient(160deg, #2a2a2a, #111);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  z-index: 4;
}

.tg-promo__phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34%;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #000;
  z-index: 2;
}

.tg-promo__phone-screen {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 22px 6px 8px;
  border-radius: 16px;
  background: #17212b;
  text-align: center;
  overflow: hidden;
}

.tg-promo__phone-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 14px;
  margin-bottom: 6px;
}

.tg-promo__phone-back {
  position: absolute;
  left: 2px;
  width: 7px;
  height: 7px;
  border-left: 1.5px solid #6ab2f2;
  border-bottom: 1.5px solid #6ab2f2;
  transform: rotate(45deg);
}

.tg-promo__phone-title {
  font-size: 8px;
  font-weight: 700;
  color: #6ab2f2;
  letter-spacing: 0.02em;
}

.tg-promo__phone-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tg-promo__phone-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: #000;
  overflow: hidden;
}

.tg-promo__phone-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-promo__phone-name {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.tg-promo__phone-handle {
  font-size: 6.5px;
  color: #6ab2f2;
}

.tg-promo__phone-subs {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.45);
}

.tg-promo__phone-btn {
  margin-top: 4px;
  width: 88%;
  padding: 4px 0;
  border-radius: 5px;
  background: #2aabee;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.tg-promo__phone-feed {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
  padding: 0 2px;
  overflow: hidden;
}

.tg-promo__phone-post {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  overflow: hidden;
}

.tg-promo__phone-post img {
  display: block;
  width: 100%;
  height: 52px;
  object-fit: cover;
}

.tg-promo__phone-post p {
  margin: 0;
  padding: 3px 5px 4px;
  font-size: 5.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.tg-promo__sticker {
  position: absolute;
  top: 6%;
  right: 0;
  z-index: 5;
  padding: 6px 10px;
  font-family: var(--display);
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--tg-red);
  transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(232, 25, 44, 0.4);
}

.tg-promo__features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.tg-promo__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(12px, 1.8vw, 16px) clamp(10px, 1.5vw, 14px);
  font-size: clamp(8px, 0.9vw, 10px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.tg-promo__features li:last-child {
  border-right: 0;
}

.tg-promo__features svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--tg-red);
}

/* ===== TG PROMO: PARFUM VITRINA ===== */

.tg-promo--parfum {
  --parfum-bronze: #8b7355;
}

.tg-promo--parfum .tg-promo__card--parfum {
  border-color: #1a1a1a;
  background: #0a0a0a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.tg-promo--parfum .tg-promo__card--parfum:hover {
  border-color: rgba(196, 164, 108, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

/* ===== HOME: TRENDING ===== */

.trending-now {
  background: var(--ink);
  color: var(--white);
  padding: 28px clamp(20px, 3vw, 40px) 36px;
}

.trending-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto 20px;
}

.trending-head {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trending-nav {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.carousel-btn--primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.carousel-btn--primary:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.trending-track {
  display: flex;
  gap: 16px;
  max-width: 1320px;
  margin-inline: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trending-track::-webkit-scrollbar { display: none; }

.trending-card {
  flex: 0 0 calc(20% - 13px);
  min-width: 180px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.trending-card .num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 40px;
  color: var(--blue);
  line-height: 1;
}

.trending-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
  background: #f2f2f2;
}

.trending-card h3 {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}

.trending-card .season {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== HOME: EDITORIAL ===== */

.editorial-block {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 3vw, 40px);
  background: var(--white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 40px);
  max-width: 1320px;
  margin-inline: auto;
  align-items: start;
}

.editorial-intro {
  position: relative;
  overflow: visible;
}

.editorial-intro h2,
.editorial-intro p,
.editorial-intro .cta-link {
  position: relative;
  z-index: 1;
}

.editorial-intro .cta-link {
  display: inline-flex;
  margin-bottom: 0;
}

.editorial-intro h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
}

.editorial-intro p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 32ch;
}

.editorial-blob {
  position: relative;
  display: block;
  margin: 40px 0 0 6%;
  width: min(100%, 460px);
  height: 240px;
  transform: rotate(-5deg);
  transform-origin: left top;
  z-index: 0;
  color: var(--blue);
  pointer-events: none;
  overflow: visible;
}

.editorial-blob.hero-liquid .liquid-svg {
  overflow: visible;
}

.editorial-feature {
  display: block;
  text-decoration: none;
  margin-top: -20px;
}

.editorial-feature img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

.editorial-drop {
  padding-top: 8px;
}

.editorial-drop .label {
  margin: 0 0 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.editorial-drop h3 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 36px);
  text-transform: uppercase;
  line-height: 1;
}

.drop-feature {
  margin-bottom: 16px;
}

.drop-feature img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  background: #f2f2f2;
}

.drop-feature .name {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drop-feature .meta {
  font-size: 10px;
  color: var(--muted);
}

.mini-list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.mini-list a img {
  width: 48px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  background: #eee;
}

.mini-list .view-all {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
}

/* ===== HOME: BRAND SPOTLIGHT ===== */

.spotlight {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 480px;
  background: var(--ink);
  color: var(--white);
}

.spotlight-visual {
  position: relative;
  padding: clamp(40px, 6vw, 64px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-visual h2 {
  position: relative;
  z-index: 3;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.88;
  text-transform: uppercase;
}

.spotlight-visual p {
  position: relative;
  z-index: 3;
  margin: 0 0 20px;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.spotlight-blob {
  position: absolute;
  right: 5%;
  bottom: -10%;
  width: 60%;
  height: 90%;
  z-index: 0;
  opacity: 0.95;
  color: var(--blue);
  pointer-events: none;
  overflow: visible;
}

.spotlight-visual img {
  position: absolute;
  right: 10%;
  bottom: 0;
  z-index: 2;
  width: min(48%, 320px);
  max-height: 90%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.spotlight-cities {
  padding: clamp(40px, 6vw, 64px);
  border-left: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-cities > p {
  margin: 0 0 24px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

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

.spotlight-cities li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HOME: COLLECTIONS ===== */

.collections {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 3vw, 40px);
}

.collections-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto 28px;
}

.collections-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
}

.collections-head span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.collections-wrap {
  position: relative;
  max-width: 1320px;
  margin-inline: auto;
}

.collections-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.collections-track::-webkit-scrollbar { display: none; }

.collection-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.collection-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
  background: #f2f2f2;
}

.collection-card h3 {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card .season {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collections-nav {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.collections-nav .carousel-btn {
  border-color: var(--ink);
  color: var(--ink);
}

.collections-nav .carousel-btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ===== HOME: MAGAZINE ===== */

.magazine-banner {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.8fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 3vw, 40px);
  background: var(--blue);
  color: var(--white);
}

.magazine-banner img.cover-face {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.15);
}

.magazine-banner h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
}

.magazine-banner p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 38ch;
}

.magazine-issue {
  position: relative;
  text-align: right;
}

.magazine-issue .issue-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.85;
}

.magazine-issue .issue-label {
  display: block;
  margin-bottom: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.magazine-issue img {
  width: min(100%, 200px);
  margin-left: auto;
  border: 4px solid var(--white);
}

/* ===== FOOTER ===== */

.site-footer {
  padding: clamp(48px, 7vw, 80px) clamp(20px, 3vw, 40px) 0;
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  max-width: 1320px;
  margin-inline: auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.newsletter h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 48px);
  text-transform: uppercase;
}

.newsletter p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  max-width: 32ch;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  font: inherit;
  font-size: 13px;
}

.newsletter-form button {
  padding: 14px 22px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-social h3 {
  margin: 0 0 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.insta-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

.footer-follow h3 {
  margin: 0 0 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.follow-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.follow-links a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 0;
  font-size: 10px;
  color: var(--muted);
}

/* ===== ARTICLE PAGE ===== */

.article-page { padding-bottom: 0; }

.back-to-news {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 20px 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.back-to-news:hover { color: var(--blue); }

.article-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 120px;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1320px;
  margin-inline: auto;
  padding: 24px clamp(20px, 3vw, 40px) clamp(48px, 6vw, 72px);
  align-items: start;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.article-breadcrumbs span { color: var(--muted); }

.article-title-block h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
}

.article-title-block h1 .season {
  display: block;
  color: var(--blue);
}

.article-subtitle {
  margin: 16px 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  max-width: 36ch;
}

.article-lede {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}

.article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-info .divider { color: var(--line); }

.article-share-row {
  display: flex;
  gap: 12px;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.share-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.article-hero-image {
  position: relative;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

.article-scribble {
  position: absolute;
  left: -15%;
  bottom: 20%;
  z-index: 2;
  font-family: var(--script);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--blue);
  transform: rotate(-8deg);
  white-space: nowrap;
  pointer-events: none;
}

.article-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
}

.sidebar-share {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.sidebar-next .label {
  display: block;
  margin-bottom: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sidebar-next a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sidebar-next img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  background: #f2f2f2;
}

.sidebar-next h4 {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* Article content blocks */

.article-section {
  max-width: 1320px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 3vw, 40px);
}

.article-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.article-split img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

.article-split h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  text-transform: uppercase;
  line-height: 1;
}

.article-split h2 .asterisk {
  color: var(--blue);
  margin-right: 4px;
}

.article-split p {
  margin: 0 0 1.2em;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.article-signature {
  margin-top: 24px;
  font-family: var(--script);
  font-size: 28px;
  color: var(--ink);
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  text-transform: uppercase;
}

.section-heading .underline {
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  background: var(--blue);
  border-radius: 2px;
  transform: rotate(-2deg);
}

.key-looks-carousel {
  position: relative;
  max-width: 1320px;
  margin-inline: auto;
}

.key-looks-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 clamp(20px, 3vw, 40px);
}

.key-looks-track:not(:has(.key-look:nth-child(5))) {
  justify-content: center;
}

.key-looks-track:not(:has(.key-look:nth-child(4))) .key-look {
  flex: 0 0 calc(33.333% - 11px);
  max-width: 380px;
}

.key-looks-track:not(:has(.key-look:nth-child(3))) .key-look {
  flex: 0 0 calc(50% - 8px);
  max-width: 420px;
}

.key-looks-track:not(:has(.key-look:nth-child(2))) .key-look {
  flex: 0 0 min(100%, 480px);
}

.key-looks-track::-webkit-scrollbar { display: none; }

.key-look {
  flex: 0 0 calc(20% - 13px);
  min-width: 200px;
  scroll-snap-align: start;
}

.key-look img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

.key-looks-nav {
  display: none;
}

.key-looks-nav .carousel-btn {
  border-color: var(--ink);
  color: var(--ink);
}

.key-looks-nav .carousel-btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.pullquote-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1320px;
  margin-inline: auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pullquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
}

.pullquote .asterisk { color: var(--blue); }

.pullquote-aside p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 clamp(20px, 3vw, 40px) clamp(48px, 6vw, 72px);
}

.details-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

.show-gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

/* Article footer blocks */

.article-footer-blocks {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  max-width: 1320px;
  margin-inline: auto;
}

.newsletter-block {
  padding: clamp(40px, 5vw, 56px);
  background: var(--blue);
  color: var(--white);
}

.newsletter-block h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 48px);
  text-transform: uppercase;
}

.newsletter-block p {
  margin: 0 0 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  max-width: 32ch;
}

.newsletter-block .newsletter-form input {
  border-color: rgba(255,255,255,0.4);
  background: transparent;
  color: var(--white);
  border-radius: 0;
  border-right: 0;
}

.newsletter-block .newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-block .newsletter-form button {
  border-radius: 0;
}

.tg-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tg-subscribe-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.tg-subscribe-btn svg {
  flex-shrink: 0;
}

.whats-next {
  padding: clamp(40px, 5vw, 56px);
  background: var(--paper);
}

.whats-next h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
}

.whats-next-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.whats-next-track::-webkit-scrollbar { display: none; }

.whats-next-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.whats-next-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  background: #f2f2f2;
}

.whats-next-card .date {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.whats-next-card h4 {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.article-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin-inline: auto;
  padding: 24px clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}

.vision-banner {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 0;
  min-height: 280px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.vision-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
}

.vision-banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px);
  overflow: hidden;
}

.vision-banner-content::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}

.vision-banner h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  line-height: 0.95;
}

.vision-banner p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  max-width: 36ch;
}

/* ===== INNER PAGES ===== */

.page-hero {
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 32px;
}

.page-hero .kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 14ch;
}

.page-hero > p { margin: 0; color: var(--muted); max-width: 50ch; }

.feed-list { border-top: 2px solid var(--ink); }

.feed-entry {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.feed-entry:hover h2 { color: var(--blue); }

.feed-entry img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: #f5f5f5;
}
.feed-entry .meta { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.feed-entry h2 { margin: 8px 0; font-family: var(--display); font-size: 26px; text-transform: uppercase; line-height: 1.05; transition: color 0.2s; }
.feed-entry p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 64px; }
.contact-block h2 { font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.contact-block a { display: block; margin-top: 8px; color: var(--muted); text-decoration: none; }
.contact-block a:hover { color: var(--blue); }

.trend-list { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--ink); }
.trend-item { padding: 24px; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.trend-item:nth-child(odd) { border-right: 1px solid var(--line); }
.trend-item .num { font-family: var(--display); font-size: 32px; color: var(--blue); }
.trend-item h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; }

.section-block { padding: 48px 0; }
.section-block.alt { background: var(--paper); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.section-head h2 { font-family: var(--display); font-size: 32px; text-transform: uppercase; margin: 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { text-decoration: none; color: inherit; }
.news-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
  background: #f5f5f5;
}
.news-card .meta { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.news-card h3 { font-family: var(--display); font-size: 20px; text-transform: uppercase; margin: 8px 0; }

/* hide legacy */
.lead-story, .top-stories, .news-ticker, .masthead, .hero-bento, .hero,
.footer-inner, .footer-tagline, .footer-brand, .brand { display: none !important; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .hero-magazine-grid { grid-template-columns: 1fr; }
  .hero-sidebar {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-feature { margin-top: 0; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-cities { border-left: 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .magazine-banner { grid-template-columns: 1fr; }
  .tg-promo__main { grid-template-columns: 1fr; min-height: 0; }
  .tg-promo__visual { min-height: 280px; }
  .tg-promo__collage { width: min(100%, 360px); min-height: 280px; margin-inline: auto; }
  .tg-promo__features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tg-promo__features li:nth-child(3) { border-right: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .article-hero-grid { grid-template-columns: 1fr; }
  .article-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .pullquote-section { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: repeat(3, 1fr); }
  .article-footer-blocks { grid-template-columns: 1fr; }
  .vision-banner { grid-template-columns: 1fr; }
  .trending-card { flex: 0 0 calc(33.33% - 11px); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-nav { display: none; }
  .header-search,
  .header-lang,
  .header-actions .btn-subscribe { display: none; }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
  }

  .mobile-nav-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 301;
    width: min(300px, 88vw);
    height: 100%;
    padding: 72px 24px;
    background: var(--white);
    transform: translateX(100%);
    transition: 0.25s;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-nav-list a {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  body.mobile-nav-open .mobile-nav-overlay { opacity: 1; visibility: visible; }
  body.mobile-nav-open .mobile-nav-drawer { transform: translateX(0); }
  body.mobile-nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.mobile-nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.mobile-nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-stage { grid-template-columns: 1fr; min-height: 0; }
  .hero-blob { left: 5%; width: 90%; height: 55%; top: 25%; }
  .editorial-blob { margin: 32px 0 0; width: 100%; height: 200px; }
  .hero-model { width: 100%; }
  .tg-promo__headline { font-size: clamp(30px, 9vw, 44px); }
  .tg-promo__visual { min-height: 240px; }
  .tg-promo__collage { width: min(100%, 340px); min-height: 240px; }
  .tg-promo__photo--1 { left: -4%; width: 95px; }
  .tg-promo__photo--2 { right: -2%; width: 90px; }
  .tg-promo__photo--3 { left: 0; width: 92px; }
  .tg-promo__photo--4 { left: 18%; width: 80px; }
  .tg-promo__photo--5 { right: 14%; width: 78px; }
  .tg-promo__photo--6 { right: 16%; width: 80px; }
  .tg-promo__phone { width: 132px; }
  .tg-promo__features { grid-template-columns: 1fr; }
  .tg-promo__features li { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .tg-promo__features li:last-child { border-bottom: 0; }
  .trending-card { flex: 0 0 calc(50% - 8px); min-width: 150px; }
  .collection-card { flex: 0 0 calc(50% - 10px); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .article-split { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .key-look { flex: 0 0 calc(50% - 8px); }
  .feed-entry { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .trend-list { grid-template-columns: 1fr; }
  .trend-item:nth-child(odd) { border-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .word-news,
  .hero-title .word-news::after {
    animation: none;
  }
}

/* ===== SITE CHROME: HEADER + SEARCH ===== */

.site-header--with-actions {
  grid-template-columns: auto 1fr auto;
}

.header-search {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.header-search:hover { color: var(--blue); }

.site-search {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}

body.site-search-open .site-search { display: block; }

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.site-search__panel {
  position: relative;
  max-width: 680px;
  margin: clamp(72px, 12vh, 120px) auto 0;
  padding: 0 20px;
}

.site-search__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.site-search__input {
  flex: 1;
  border: 0;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.site-search__close {
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

.site-search__results {
  margin-top: 8px;
  background: var(--white);
  border: 2px solid var(--ink);
  max-height: min(60vh, 480px);
  overflow: auto;
}

.site-search__hit {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.site-search__hit:hover { background: var(--paper); }

.site-search__hit-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.site-search__hit-meta {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.site-search__empty {
  margin: 0;
  padding: 20px 16px;
  color: var(--muted);
}

.mobile-nav-search {
  display: none;
  width: 100%;
  margin-bottom: 24px;
  padding: 12px 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

/* ===== HOME SHOWCASE ===== */

.home-showcase {
  padding-block: clamp(40px, 6vw, 72px);
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.home-showcase-feature {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.home-showcase-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-showcase-feature__copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(20px, 4vw, 32px);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
}

.home-showcase-feature__copy .kicker,
.home-showcase-feature__copy h2 {
  color: var(--white);
}

.home-showcase-feature__copy h2 {
  margin: 8px 0 12px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.home-showcase-feature__copy .cta-link { color: var(--white); }

.home-showcase-side .section-head { margin-bottom: 16px; }

.home-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}

.home-link-list li { border-bottom: 1px solid var(--line); }

.home-link-list a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
}

.home-link-list a:hover strong { color: var(--blue); }

.home-link-list .meta {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.home-link-list strong {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.home-feed { padding-bottom: clamp(40px, 6vw, 64px); }

.feed-list--compact .feed-entry:last-child { border-bottom: 1px solid var(--line); }

.section-head-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
}

.home-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: clamp(48px, 8vw, 80px);
}

.home-duo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 2px solid var(--ink);
  text-decoration: none;
  color: inherit;
}

.home-duo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-duo-card h2 {
  margin: 8px 0;
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.05;
}

.home-duo-card:hover h2 { color: var(--blue); }

/* ===== TREND FILTERS ===== */

.trend-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.trend-filter {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 14px;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.trend-filter.is-active,
.trend-filter:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 900px) {
  .home-showcase-grid,
  .home-duo,
  .home-duo-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-nav-search { display: block; }
}
