/* =============================================================
   Integra landing v2 — premium furniture, perfection cycle
   Design tokens, layout, components and responsive in one file.
   Methodology: BEM-ish, mobile-tolerant, OKLCH with HEX-fallback.
   ============================================================= */

/* ============== 1. TOKENS ============== */
:root {
  /* Colour scale — HEX fallback first, OKLCH override below */
  --c-bg:           #ffffff;
  --c-fg:           #121212;
  --c-fg-muted:     #55575e;
  --c-fg-soft:      #b1b4ba;
  --c-line:         #e6e7ea;
  --c-card:         #f5f6f8;
  --c-card-2:       #eef0f3;
  --c-cream:        #f6f0e6;
  --c-sand:         #ddc9b1;
  --c-accent:       #42547a;
  --c-accent-700:   #34435f;
  --c-accent-50:    #edf0f6;
  --c-brass:        #b39260;
  --c-success:      #2c7a3a;
  --c-danger:       #b53636;
  --c-white:        #ffffff;

  /* Fluid type — modular scale 1.25, clamp(min, prefer, max) */
  --fs-12:  clamp(0.75rem, 0.72rem + 0.10vw, 0.8125rem);
  --fs-14:  clamp(0.8125rem, 0.78rem + 0.18vw, 0.9375rem);
  --fs-16:  1rem;
  --fs-18:  clamp(1.0625rem, 1rem + 0.30vw, 1.1875rem);
  --fs-20:  clamp(1.125rem, 1.05rem + 0.40vw, 1.375rem);
  --fs-24:  clamp(1.25rem, 1.10rem + 0.65vw, 1.625rem);
  --fs-28:  clamp(1.375rem, 1.18rem + 0.85vw, 1.875rem);
  --fs-32:  clamp(1.5rem, 1.20rem + 1.20vw, 2.25rem);
  --fs-40:  clamp(1.75rem, 1.25rem + 2.00vw, 3rem);
  --fs-56:  clamp(2.25rem, 1.50rem + 3.10vw, 4.25rem);
  --fs-72:  clamp(2.75rem, 1.55rem + 4.80vw, 5.75rem);
  --fs-90:  clamp(3.25rem, 1.85rem + 5.60vw, 7rem);

  /* Spacing — 4pt scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-7:  32px;
  --sp-8:  40px;
  --sp-9:  56px;
  --sp-10: 72px;
  --sp-11: 96px;
  --sp-12: 120px;
  --sp-13: 160px;

  --section-y: clamp(64px, 4rem + 4vw, 120px);

  /* Layout */
  --gutter:  clamp(16px, 1rem + 2vw, 56px);
  --content: 1360px;
  --frame:   1440px;
  --header-h: 76px;

  /* Radii */
  --r-1: 4px;
  --r-2: 8px;
  --r-3: 12px;
  --r-4: 18px;
  --r-pill: 999px;

  /* Motion */
  --dur-1: 150ms;
  --dur-2: 250ms;
  --dur-3: 400ms;
  --dur-4: 700ms;
  --ease-out:  cubic-bezier(.20,.80,.20,1);
  --ease-in:   cubic-bezier(.55,.06,.68,.19);
  --ease-soft: cubic-bezier(.45,.05,.30,1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,18,30,.06), 0 1px 1px rgba(15,18,30,.04);
  --shadow-md: 0 8px 24px rgba(15,18,30,.08), 0 2px 6px rgba(15,18,30,.05);
  --shadow-lg: 0 24px 60px rgba(15,18,30,.12), 0 6px 18px rgba(15,18,30,.06);

  /* Type */
  --font-sans:   "Inter", "Inter Variable", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif:  "Cormorant Garamond", "Cormorant", "Times New Roman", Georgia, serif;
}

/* OKLCH overrides where supported */
@supports (color: oklch(50% 0.1 200)) {
  :root {
    --c-fg:         oklch(20% 0.01 270);
    --c-fg-muted:   oklch(46% 0.01 270);
    --c-fg-soft:    oklch(73% 0.01 270);
    --c-line:       oklch(92% 0.005 270);
    --c-card:       oklch(96.5% 0.005 270);
    --c-card-2:     oklch(94% 0.005 270);
    --c-cream:      oklch(95% 0.025 80);
    --c-sand:       oklch(82% 0.045 75);
    --c-accent:     oklch(45% 0.055 263);
    --c-accent-700: oklch(36% 0.05 263);
    --c-accent-50:  oklch(95% 0.013 263);
    --c-brass:      oklch(66% 0.08 80);
  }
}

/* ============== 2. RESET + BASE ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
html, body {
  background: var(--c-bg);
  color: var(--c-fg);
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { min-width: 320px; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a, button { color: inherit; text-decoration: none; background: none; cursor: pointer; font: inherit; }
button { -webkit-appearance: none; appearance: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

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

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============== 3. LAYOUT UTILS ============== */
.l-page { width: 100%; overflow-x: clip; }
.l-content { width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 var(--gutter); }
.l-section { padding-block: var(--section-y); }
.l-section--tight { padding-block: calc(var(--section-y) * .65); }
.l-section--flush { padding-block: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* skip link */
.skip-link {
  position: absolute; top: -100px; left: var(--sp-4);
  background: var(--c-fg); color: var(--c-white);
  padding: 10px 16px; border-radius: var(--r-2); z-index: 100;
  transition: top var(--dur-2) var(--ease-out);
}
.skip-link:focus { top: var(--sp-4); }

/* ============== 4. TYPO HELPERS ============== */
.t-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-12); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-fg-muted);
}
.t-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}
.t-display { font-family: var(--font-serif); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }

/* ============== 5. PRIMITIVES (button, pill, badge, icon) ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: 14px 24px; min-height: 48px;
  font-size: var(--fs-16); font-weight: 500; letter-spacing: -0.005em;
  border: 1px solid transparent; border-radius: var(--r-pill);
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--c-fg); color: var(--c-white); }
.btn--primary:hover { background: var(--c-accent); color: var(--c-white); }
.btn--ghost { background: transparent; color: var(--c-fg); border-color: var(--c-fg); }
.btn--ghost:hover { background: var(--c-fg); color: var(--c-white); }
.btn--ghost-light { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,.7); }
.btn--ghost-light:hover { background: var(--c-white); color: var(--c-fg); border-color: var(--c-white); }
.btn--accent { background: var(--c-accent); color: var(--c-white); }
.btn--accent:hover { background: var(--c-accent-700); }
.btn--sm { min-height: 38px; padding: 10px 18px; font-size: var(--fs-14); }
.btn--block { width: 100%; }
.btn .icon { width: 18px; height: 18px; transition: transform var(--dur-2) var(--ease-out); }
.btn:hover .icon-arrow-r { transform: translateX(3px); }

.pill {
  width: 48px; height: 48px; border-radius: var(--r-pill); border: 1px solid var(--c-fg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-fg); background: transparent;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.pill:hover:not(:disabled) { background: var(--c-fg); color: var(--c-white); }
.pill:disabled { opacity: .35; cursor: not-allowed; }
.pill .icon { width: 18px; height: 18px; }
.pill-pair { display: inline-flex; gap: var(--sp-2); }

.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; min-height: 22px;
  font-size: var(--fs-12); font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--c-fg); color: var(--c-white);
}
.badge--accent { background: var(--c-accent); }
.badge--sale { background: var(--c-danger); }
.badge--new  { background: var(--c-fg); }
.badge--hit  { background: var(--c-brass); color: var(--c-fg); }
.badge--soft { background: var(--c-card-2); color: var(--c-fg); }

.icon { display: inline-block; width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; stroke: none; }

.counter-badge {
  position: absolute; top: -4px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--c-accent); color: var(--c-white);
  font-size: 10px; line-height: 18px; font-weight: 600; text-align: center;
  border-radius: var(--r-pill); border: 2px solid var(--c-white);
}

/* ============== 6. SECTION HEAD ============== */
.l-section__head {
  display: flex; align-items: end; justify-content: space-between; gap: var(--sp-6);
  margin-bottom: clamp(28px, 3.5vw, 48px);
  flex-wrap: wrap;
}
.l-section__title {
  display: flex; align-items: center; gap: var(--sp-4);
  font-family: var(--font-serif);
  font-size: var(--fs-72);
  font-weight: 500; line-height: 1.02; letter-spacing: -0.02em;
  color: var(--c-fg);
}
.l-section__title .icon { width: clamp(28px, 4vw, 48px); height: clamp(28px, 4vw, 48px); }
.l-section__sub {
  max-width: 52ch;
  font-size: var(--fs-16); color: var(--c-fg-muted); line-height: 1.55;
}
.l-section__head--center { flex-direction: column; align-items: center; text-align: center; }
.l-section__head--center .l-section__title { justify-content: center; text-align: center; }

/* ============== 7. TOPBAR ============== */
.l-topbar {
  background: var(--c-accent); color: var(--c-white);
  font-size: var(--fs-12);
}
.l-topbar__inner {
  width: 100%; max-width: var(--frame); margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  min-height: 36px;
}
.l-topbar__left { display: inline-flex; align-items: center; gap: var(--sp-2); opacity: .9; }
.l-topbar__right { display: inline-flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.l-topbar__right a { color: var(--c-white); transition: opacity var(--dur-2) var(--ease-out); padding: 4px 0; }
.l-topbar__right a:hover { opacity: .75; }
.l-topbar__sep { display: inline-block; width: 1px; height: 14px; background: rgba(255,255,255,.4); }
.l-topbar__phone { font-weight: 500; }

/* ============== 8. STICKY HEADER ============== */
.l-header {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.l-header__inner {
  width: 100%; max-width: var(--frame); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: var(--sp-6);
  height: var(--header-h);
}
.l-header__brand {
  grid-column: 1;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--c-fg); font-family: var(--font-serif); font-size: 28px; font-weight: 500; letter-spacing: -0.01em;
  line-height: 1;
  justify-self: start;
}
.l-header__brand svg { width: 32px; height: 32px; }

.l-nav { display: flex; justify-content: center; }
.l-nav__list {
  display: flex; align-items: center; gap: clamp(12px, 1.4vw, 28px);
  font-size: var(--fs-16); font-weight: 500;
}
.l-nav__list > li { position: relative; }
.l-nav__list > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 4px; line-height: 1; color: inherit;
  position: relative;
}
.l-nav__list > li > a::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 4px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: 0 50%;
  transition: transform var(--dur-2) var(--ease-out);
}
.l-nav__list > li:hover > a::after,
.l-nav__list > li > a[aria-current="true"]::after { transform: scaleX(1); }
.l-nav__caret { width: 12px; height: 12px; opacity: .7; transition: transform var(--dur-2) var(--ease-out); }
.l-nav__list > li:hover .l-nav__caret { transform: rotate(180deg); }

/* mega menu */
.l-mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(960px, 92vw);
  background: var(--c-white); color: var(--c-fg);
  border: 1px solid var(--c-line); border-radius: var(--r-3);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-7);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-7);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), visibility var(--dur-2);
  z-index: 60;
}
.l-nav__list > li:hover .l-mega,
.l-nav__list > li:focus-within .l-mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.l-mega__col h4 {
  font-size: var(--fs-12); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-fg-muted); margin-bottom: var(--sp-3);
}
.l-mega__col li { margin-bottom: 8px; }
.l-mega__col a { color: var(--c-fg); transition: color var(--dur-1) var(--ease-out); }
.l-mega__col a:hover { color: var(--c-accent); }

.l-header__actions {
  grid-column: 3;
  justify-self: end;
  display: inline-flex; align-items: center; gap: var(--sp-1);
}
.l-iconbtn {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; color: inherit;
  background: transparent;
  transition: background var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.l-iconbtn:hover { background: var(--c-fg); color: var(--c-white); border-color: var(--c-fg); }
.l-iconbtn .icon { width: 20px; height: 20px; }
.l-burger { display: none; }

/* Header transparent over hero — БЕЗ смены position, чтобы не было прыжка при выходе из hero-режима */
.l-header[data-mode="hero"] {
  background: transparent; color: var(--c-white); border-bottom-color: transparent;
  box-shadow: none;
}
.l-header[data-mode="hero"] .l-header__brand { color: var(--c-white); }
.l-header[data-mode="hero"] .l-iconbtn { border-color: rgba(255,255,255,.4); }
.l-header[data-mode="hero"] .l-iconbtn:hover { background: var(--c-white); color: var(--c-fg); border-color: var(--c-white); }
.l-header[data-mode="hero"] .l-header__brand { color: var(--c-white); text-shadow: 0 1px 12px rgba(0,0,0,.25); }

@media (min-width: 1025px) {
  /* Default: sticky white header. Hero variant only when JS adds attribute. */
}

/* Mobile menu drawer */
.l-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--c-white);
  transform: translateX(100%);
  transition: transform var(--dur-3) var(--ease-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
  padding: var(--sp-6);
}
.l-drawer.is-open { transform: translateX(0); }
.l-drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-7); }
.l-drawer__list { display: flex; flex-direction: column; gap: var(--sp-3); font-size: var(--fs-24); font-family: var(--font-serif); font-weight: 500; }
.l-drawer__list a { padding: 10px 0; display: block; border-bottom: 1px solid var(--c-line); }

/* Search overlay */
.l-search-overlay {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(18,18,18,.55);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-2) var(--ease-out), visibility var(--dur-2);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 12vh var(--sp-4) var(--sp-6);
}
.l-search-overlay.is-open { opacity: 1; visibility: visible; }
.l-search-box {
  width: min(720px, 100%);
  background: var(--c-white); border-radius: var(--r-4);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px); transition: transform var(--dur-3) var(--ease-out);
}
.l-search-overlay.is-open .l-search-box { transform: translateY(0); }
.l-search-input {
  display: flex; align-items: center; gap: var(--sp-3);
  border-bottom: 1px solid var(--c-line); padding-bottom: var(--sp-3);
}
.l-search-input input {
  flex: 1; background: none; font-size: var(--fs-20); outline: none;
}
.l-search-suggest { margin-top: var(--sp-4); display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.l-search-suggest button {
  padding: 8px 14px; border: 1px solid var(--c-line); border-radius: var(--r-pill);
  font-size: var(--fs-14); transition: background var(--dur-2) var(--ease-out);
}
.l-search-suggest button:hover { background: var(--c-card); }

/* ============== 9. HERO ============== */
.l-hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 80vh, 880px);
  overflow: hidden;
  color: var(--c-white);
  background: #1a1a1a;
  /* Hero «уезжает» под прозрачный sticky-header, чтобы фото было full-bleed
     и не было прыжка контента при выходе из hero-режима. */
  margin-top: calc(var(--header-h) * -1);
}
.l-hero__media { position: absolute; inset: 0; }
.l-hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.l-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 30%);
}
.l-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--frame);
  margin: 0 auto; padding: clamp(160px, 22vh, 240px) var(--gutter) clamp(48px, 8vh, 96px);
  display: flex; flex-direction: column; gap: var(--sp-6); align-items: flex-start;
  min-height: 100%;
  justify-content: flex-end;
}
.l-hero__eyebrow { color: rgba(255,255,255,.85); }
.l-hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-90);
  font-weight: 500; line-height: 1.0; letter-spacing: -0.02em;
  max-width: 18ch; color: var(--c-white);
}
.l-hero__title em {
  font-style: italic;
  color: var(--c-cream);
  position: relative;
  padding: 0 0.06em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.l-hero__title em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -0.02em;
  height: 2px; background: var(--c-brass);
  transform: scaleX(.92); transform-origin: 0 50%;
  border-radius: 2px;
  box-shadow: 0 1px 14px rgba(179,146,96,.45);
}
.l-hero__desc {
  font-size: var(--fs-18); line-height: 1.55; max-width: 56ch;
  color: rgba(255,255,255,.88);
}
.l-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); }
.l-hero__scroll {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-12); letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  z-index: 2;
}
.l-hero__scroll::after {
  content: ""; width: 1px; height: 28px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: 0 0; opacity: .8; }
  50% { transform: scaleY(.4); opacity: .35; }
}

/* ============== 10. USP STRIP ============== */
.l-usp {
  background: var(--c-cream);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--c-line);
}
.l-usp__grid {
  display: grid; gap: var(--sp-4) var(--sp-6);
  grid-template-columns: repeat(5, 1fr);
}
.l-usp__item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-14); line-height: 1.4;
}
.l-usp__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill); background: var(--c-white); color: var(--c-accent);
  border: 1px solid var(--c-line);
}
.l-usp__icon .icon { width: 24px; height: 24px; }
.l-usp__title { font-weight: 500; color: var(--c-fg); margin-bottom: 2px; }
.l-usp__sub { color: var(--c-fg-muted); font-size: var(--fs-12); }

/* ============== 11. CATEGORIES ============== */
.l-cats { display: grid; gap: clamp(16px, 2vw, 30px); grid-template-columns: repeat(3, 1fr); }
.l-cat {
  position: relative; overflow: hidden;
  display: block; color: var(--c-white);
  aspect-ratio: 435 / 580; border-radius: var(--r-3);
  isolation: isolate;
}
.l-cat--sm { aspect-ratio: 435 / 326; }
.l-cat__media { position: absolute; inset: 0; z-index: -1; }
.l-cat__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-4) var(--ease-soft);
}
.l-cat:hover .l-cat__media img { transform: scale(1.06); }
.l-cat::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.l-cat__count {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--c-fg);
  border-radius: var(--r-pill); padding: 4px 10px;
  font-size: var(--fs-12); font-weight: 500;
}
.l-cat__label {
  position: absolute; left: clamp(20px, 2.4vw, 32px); right: clamp(20px, 2.4vw, 32px);
  bottom: clamp(20px, 2vw, 28px); z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-serif); font-size: var(--fs-32); font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.1; color: var(--c-white);
}
.l-cat__label .icon { width: 22px; height: 22px; transition: transform var(--dur-2) var(--ease-out); }
.l-cat:hover .l-cat__label .icon { transform: translateX(6px); }

/* ============== 12. PRODUCT CARDS / CAROUSEL ============== */
.l-row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); }

.l-snap {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr);
  gap: var(--sp-4);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter);
}
.l-snap::-webkit-scrollbar { display: none; }
.l-snap > * { scroll-snap-align: start; }

@media (min-width: 1025px) {
  .l-snap { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: row; overflow: visible; margin-inline: 0; padding: 0; }
}

.l-card {
  display: flex; flex-direction: column; gap: var(--sp-3);
  position: relative;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}
.l-card__media {
  background: var(--c-card); aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; border-radius: var(--r-2);
}
.l-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 12%;
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-4) var(--ease-soft);
}
.l-card__img--alt { opacity: 0; }
.l-card:hover .l-card__img--main { opacity: 0; }
.l-card:hover .l-card__img--alt  { opacity: 1; }
.l-card:hover .l-card__img       { transform: scale(1.04); }

.l-card__badges {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.l-card__heart {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 36px; height: 36px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.9); color: var(--c-fg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.l-card__heart:hover { transform: scale(1.08); }
.l-card__heart .icon { width: 18px; height: 18px; }
.l-card__heart[aria-pressed="true"] { background: var(--c-accent); color: var(--c-white); }
.l-card__heart[aria-pressed="true"] .icon { fill: currentColor; }
.l-card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.l-card:hover .l-card__quick,
.l-card:focus-within .l-card__quick { opacity: 1; transform: translateY(0); }

.l-card__swatches {
  display: inline-flex; gap: 6px; align-items: center; min-height: 18px;
}
.l-card__sw {
  width: 14px; height: 14px; border-radius: var(--r-pill);
  border: 1px solid rgba(0,0,0,.12);
}
.l-card__sw--more { font-size: 11px; color: var(--c-fg-muted); padding-left: 4px; }

.l-card__title {
  font-size: var(--fs-16); line-height: 1.35; letter-spacing: -0.005em;
  color: var(--c-fg);
}
.l-card__prices { display: flex; gap: var(--sp-3); align-items: baseline; font-size: var(--fs-16); }
.l-card__price { color: var(--c-fg); font-weight: 500; }
.l-card__price--sale { color: var(--c-accent); }
.l-card__price--old  { color: var(--c-fg-soft); text-decoration: line-through; font-weight: 400; }

/* ============== 13. QUOTE / MANIFESTO ============== */
.l-quote {
  position: relative;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-3);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--c-white);
  overflow: hidden;
  isolation: isolate;
}
.l-quote__inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-7);
  position: relative; z-index: 2;
}
.l-quote__text {
  font-family: var(--font-serif);
  font-size: var(--fs-32);
  font-weight: 400; font-style: italic; line-height: 1.25; letter-spacing: -0.01em;
  color: var(--c-fg);
}
.l-quote__cite { font-size: var(--fs-14); color: var(--c-fg-muted); letter-spacing: .14em; text-transform: uppercase; font-style: normal; }

.l-quote__deco {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 70px; gap: var(--sp-3);
  position: absolute; inset: 0;
  padding: 24px;
  z-index: 0; pointer-events: none;
}
.l-quote__deco img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-2); opacity: .92; }
.l-quote__deco--1 { grid-column: 1 / 4; grid-row: 1 / 3; align-self: start; }
.l-quote__deco--2 { grid-column: 1 / 3; grid-row: 6 / 9; }
.l-quote__deco--3 { grid-column: 5 / 7; grid-row: 1 / 3; }
.l-quote__deco--4 { grid-column: 9 / 13; grid-row: 1 / 4; }
.l-quote__deco--5 { grid-column: 9 / 12; grid-row: 6 / 9; }

@media (max-width: 1024px) {
  .l-quote__deco { display: none; }
}

/* ============== 14. LOOK-BOOK ============== */
.l-lookbook {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: var(--sp-4);
}
.l-lookbook__tile {
  position: relative; overflow: hidden; border-radius: var(--r-3);
  isolation: isolate; color: var(--c-white);
}
.l-lookbook__tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;
  transition: transform var(--dur-4) var(--ease-soft);
}
.l-lookbook__tile:hover img { transform: scale(1.05); }
.l-lookbook__tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
}
.l-lookbook__caption {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2;
  display: flex; align-items: end; justify-content: space-between; gap: var(--sp-3);
  font-family: var(--font-serif); font-size: var(--fs-24);
}
.l-lookbook__caption .badge { background: rgba(255,255,255,.92); color: var(--c-fg); }
.l-lookbook__pin {
  position: absolute; z-index: 3;
}
.l-lookbook__pin button {
  width: 28px; height: 28px; border-radius: var(--r-pill);
  background: var(--c-white); color: var(--c-fg);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); position: relative;
}
.l-lookbook__pin button::before {
  content: ""; position: absolute; inset: -8px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.35); animation: pinPulse 2.4s ease-out infinite;
}
.l-lookbook__pin button::after { content: "+"; font-size: 18px; line-height: 1; }
@keyframes pinPulse {
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.l-lookbook__pin-card {
  position: absolute; left: 38px; top: -8px;
  background: var(--c-white); color: var(--c-fg);
  padding: 10px; min-width: 200px;
  border-radius: var(--r-2); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  font-size: var(--fs-14);
  opacity: 0; transform: translateY(4px) translateX(-8px); pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.l-lookbook__pin:hover .l-lookbook__pin-card,
.l-lookbook__pin:focus-within .l-lookbook__pin-card {
  opacity: 1; transform: translateY(0) translateX(0); pointer-events: auto;
}
.l-lookbook__pin-card b { display: block; font-weight: 500; }
.l-lookbook__pin-card span { color: var(--c-fg-muted); font-size: var(--fs-12); }

/* tile sizes */
.l-lookbook__tile--xl   { grid-column: span 8;  grid-row: span 3; }
.l-lookbook__tile--md   { grid-column: span 4;  grid-row: span 3; }
.l-lookbook__tile--w-md { grid-column: span 6;  grid-row: span 2; }
.l-lookbook__tile--sm   { grid-column: span 3;  grid-row: span 2; }
.l-lookbook__tile--w-lg { grid-column: span 6;  grid-row: span 2; }
.l-lookbook__tile--full { grid-column: span 12; grid-row: span 2; }

/* ============== 15. MATERIALS ============== */
.l-materials {
  display: flex; gap: var(--sp-5);
  overflow-x: auto; scroll-snap-type: x mandatory;
  margin-inline: calc(var(--gutter) * -1); padding: 8px var(--gutter);
  scrollbar-width: none;
}
.l-materials::-webkit-scrollbar { display: none; }
.l-material {
  flex: 0 0 auto; width: clamp(140px, 18vw, 200px);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-3);
  scroll-snap-align: start;
}
.l-material__swatch {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-pill);
  overflow: hidden; position: relative; border: 1px solid var(--c-line);
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}
.l-material:hover .l-material__swatch { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.l-material__swatch img { width: 100%; height: 100%; object-fit: cover; }
/* CSS-painted fallback swatches */
.l-material__swatch--oak     { background: linear-gradient(135deg, #c8a276, #a07b50); }
.l-material__swatch--walnut  { background: linear-gradient(135deg, #6e442b, #3f2615); }
.l-material__swatch--ash     { background: linear-gradient(135deg, #ddc7a8, #b89a78); }
.l-material__swatch--boucle  { background: radial-gradient(circle at 30% 30%, #f1e6d6, #d6c4ad); }
.l-material__swatch--linen   { background: repeating-linear-gradient(90deg, #d8c8b1 0 2px, #cdbb9f 2px 4px); }
.l-material__swatch--leather { background: linear-gradient(135deg, #8b4f2c, #5a3018); }
.l-material__swatch--marble  { background: linear-gradient(135deg, #f3f1ec 30%, #d6d4cd 60%, #ecebe6); }
.l-material__swatch--brass   { background: linear-gradient(135deg, #d6b876, #a67c33); }
.l-material__name { font-size: var(--fs-14); color: var(--c-fg); text-align: center; font-weight: 500; }
.l-material__sub { font-size: var(--fs-12); color: var(--c-fg-muted); text-align: center; }

/* ============== 16. HARRY COLLECTION ============== */
.l-harry {
  display: grid; grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 60px); align-items: stretch;
}
.l-harry__slider {
  position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--r-3);
  background: var(--c-card);
}
.l-harry__slides {
  display: flex; width: 100%; height: 100%;
  transition: transform var(--dur-4) var(--ease-soft);
}
.l-harry__slide {
  flex: 0 0 100%; height: 100%;
}
.l-harry__slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.l-harry__right {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: var(--sp-7);
  padding: 8px 0;
}
.l-harry__top { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); }
.l-harry__count { font-size: var(--fs-14); letter-spacing: .14em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-harry__title-wrap { flex: 1; display: flex; align-items: center; justify-content: center; }
.l-harry__title {
  font-family: var(--font-serif);
  font-size: var(--fs-90);
  font-weight: 500; line-height: .95; letter-spacing: -0.02em;
  text-align: center; color: var(--c-fg);
}
.l-harry__title em { font-style: italic; color: var(--c-accent); }
.l-harry__desc { font-size: var(--fs-16); line-height: 1.6; color: var(--c-fg-muted); margin-bottom: var(--sp-4); }
.l-harry__bottom { display: flex; flex-direction: column; gap: var(--sp-3); }

/* ============== 17. SERVICES ============== */
.l-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.l-service {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-7) var(--sp-6); min-height: 320px;
  background: var(--c-card); border-radius: var(--r-3);
  position: relative; overflow: hidden; isolation: isolate;
  transition: background var(--dur-3) var(--ease-out), color var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.l-service:hover { background: var(--c-accent); color: var(--c-white); transform: translateY(-4px); }
.l-service__icon {
  width: 48px; height: 48px; color: var(--c-accent);
  transition: color var(--dur-3) var(--ease-out);
}
.l-service:hover .l-service__icon { color: var(--c-white); }
.l-service__title {
  font-family: var(--font-serif); font-size: var(--fs-28); font-weight: 500;
  line-height: 1.1; letter-spacing: -0.01em;
}
.l-service__desc { font-size: var(--fs-14); line-height: 1.55; color: var(--c-fg-muted); margin-top: auto; }
.l-service:hover .l-service__desc { color: rgba(255,255,255,.85); }
.l-service__cta {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500;
  margin-top: var(--sp-4);
}
.l-service__cta .icon { transition: transform var(--dur-2) var(--ease-out); }
.l-service:hover .l-service__cta .icon { transform: translateX(6px); }

/* ============== 18. DESIGNERS ============== */
.l-designers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
}
.l-designer { display: flex; flex-direction: column; gap: var(--sp-3); text-decoration: none; color: inherit; }
.l-designer__media {
  position: relative; aspect-ratio: 322 / 435;
  overflow: hidden; border-radius: var(--r-3);
}
.l-designer__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-4) var(--ease-soft);
}
.l-designer:hover .l-designer__media img { transform: scale(1.05); }
.l-designer__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 100%);
}
.l-designer__sm {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  width: 64px; height: 80px;
  border: 1px solid var(--c-white); border-radius: var(--r-1);
  overflow: hidden;
}
.l-designer__sm img { width: 100%; height: 100%; object-fit: cover; }
.l-designer__name { font-size: var(--fs-16); color: var(--c-fg); font-weight: 500; }
.l-designer__role { font-size: var(--fs-12); color: var(--c-fg-muted); letter-spacing: .12em; text-transform: uppercase; }

/* ============== 19. PRESS + REVIEWS ============== */
.l-press {
  background: var(--c-card);
  border-block: 1px solid var(--c-line);
  padding: clamp(32px, 4vw, 48px) 0;
}
.l-press__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-7); flex-wrap: wrap;
}
.l-press__item {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; color: var(--c-fg-muted);
  filter: grayscale(1); opacity: .7;
  transition: opacity var(--dur-2) var(--ease-out);
}
.l-press__item:hover { opacity: 1; }
.l-press__item svg { height: 100%; width: auto; }

.l-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.l-review {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-7); background: var(--c-white);
  border: 1px solid var(--c-line); border-radius: var(--r-3);
}
.l-review__stars { display: inline-flex; gap: 2px; color: var(--c-brass); }
.l-review__stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.l-review__text { font-size: var(--fs-16); line-height: 1.55; color: var(--c-fg); flex: 1; }
.l-review__author { display: flex; align-items: center; gap: var(--sp-3); }
.l-review__avatar {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: var(--c-accent-50); color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500;
}
.l-review__name { font-weight: 500; font-size: var(--fs-14); }
.l-review__role { font-size: var(--fs-12); color: var(--c-fg-muted); }

/* ============== 20. NEWSLETTER ============== */
.l-newsletter {
  position: relative; overflow: hidden;
  color: var(--c-white);
  border-radius: var(--r-3);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 80px);
  background: var(--c-accent);
}
.l-newsletter::before {
  content: ""; position: absolute; inset: 0;
  background: url("/assets/figma/landing/misc/newsletter-bg.jpg") center/cover no-repeat;
  opacity: .35; z-index: 0;
}
.l-newsletter__inner {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-5);
}
.l-newsletter__title {
  font-family: var(--font-serif); font-size: var(--fs-56); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.02em;
}
.l-newsletter__desc { font-size: var(--fs-16); line-height: 1.55; color: rgba(255,255,255,.85); max-width: 50ch; }
.l-newsletter__form {
  display: flex; gap: var(--sp-2); width: 100%; max-width: 480px;
  background: var(--c-white); border-radius: var(--r-pill); padding: 6px;
}
.l-newsletter__form input {
  flex: 1; background: none; padding: 12px 18px; outline: none; color: var(--c-fg);
  font-size: var(--fs-14);
}
.l-newsletter__form button {
  border-radius: var(--r-pill); padding: 12px 24px;
  background: var(--c-fg); color: var(--c-white); font-weight: 500;
  transition: background var(--dur-2) var(--ease-out);
}
.l-newsletter__form button:hover { background: var(--c-accent-700); }
.l-newsletter__legal { font-size: var(--fs-12); color: rgba(255,255,255,.7); }
.l-newsletter__legal a { color: inherit; text-decoration: underline; }

/* ============== 21. FAQ ============== */
.l-faq { max-width: 880px; margin: 0 auto; }
.l-faq__item {
  border-top: 1px solid var(--c-line);
}
.l-faq__item:last-child { border-bottom: 1px solid var(--c-line); }
.l-faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: clamp(20px, 2vw, 28px) 0;
  font-family: var(--font-serif); font-size: var(--fs-24); line-height: 1.25;
  letter-spacing: -0.01em;
}
.l-faq__item summary::-webkit-details-marker { display: none; }
.l-faq__icon {
  width: 28px; height: 28px; border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.l-faq__icon::before, .l-faq__icon::after {
  content: ""; position: absolute; background: currentColor;
}
.l-faq__icon { position: relative; }
.l-faq__icon::before { width: 12px; height: 1.6px; }
.l-faq__icon::after  { width: 1.6px; height: 12px; transition: transform var(--dur-2) var(--ease-out); }
.l-faq__item[open] .l-faq__icon { background: var(--c-fg); color: var(--c-white); border-color: var(--c-fg); }
.l-faq__item[open] .l-faq__icon::after { transform: scaleY(0); }
.l-faq__answer {
  padding: 0 0 clamp(20px, 2vw, 28px) 0;
  font-size: var(--fs-16); line-height: 1.6; color: var(--c-fg-muted);
  max-width: 70ch;
}

/* ============== 22. FOOTER ============== */
.l-footer {
  background: var(--c-accent); color: var(--c-white);
  padding: clamp(48px, 6vw, 80px) 0 32px;
  margin-top: var(--section-y);
}
.l-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 64px);
  align-items: start; padding-bottom: clamp(40px, 5vw, 80px);
}
.l-footer__brand-block { display: flex; flex-direction: column; gap: var(--sp-4); max-width: 360px; }
.l-footer__brand {
  font-family: var(--font-serif); font-size: var(--fs-32); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1;
}
.l-footer__tagline { font-size: var(--fs-14); line-height: 1.55; color: rgba(255,255,255,.8); }
.l-footer__socials { display: inline-flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.l-footer__social {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.l-footer__social:hover { background: var(--c-white); color: var(--c-accent); }
.l-footer__social .icon { width: 18px; height: 18px; }

.l-footer__col h4 {
  font-size: var(--fs-12); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: var(--sp-4);
}
.l-footer__col + h4 { margin-top: var(--sp-6); }
.l-footer__col ul li { margin-bottom: 10px; font-size: var(--fs-14); }
.l-footer__col ul li a { color: var(--c-white); transition: opacity var(--dur-2) var(--ease-out); }
.l-footer__col ul li a:hover { opacity: .7; }

.l-footer__bottom {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-4);
  padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,.15);
  font-size: var(--fs-14);
}
.l-footer__pay { display: inline-flex; align-items: center; gap: 8px; }
.l-footer__pay svg { width: 40px; height: 26px; display: block; opacity: .9; }
.l-footer__legal {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  flex-wrap: wrap; color: rgba(255,255,255,.85);
}
.l-footer__legal a { color: var(--c-white); transition: opacity var(--dur-2) var(--ease-out); }
.l-footer__legal a:hover { opacity: .7; }
.l-footer__dot { color: rgba(255,255,255,.5); }

/* ============== 23. REVEAL ANIMATIONS ============== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============== 24. MARQUEE ============== */
.l-marquee {
  display: flex; overflow: hidden; gap: 48px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.l-marquee__track {
  display: inline-flex; gap: 48px; align-items: center;
  animation: marquee 40s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============== 25. RESPONSIVE ============== */
@media (max-width: 1280px) {
  .l-cats { grid-template-columns: repeat(3, 1fr); }
  .l-services { grid-template-columns: repeat(2, 1fr); }
  .l-lookbook { grid-template-columns: repeat(8, 1fr); }
  .l-lookbook__tile--xl   { grid-column: span 5; }
  .l-lookbook__tile--md   { grid-column: span 3; }
  .l-lookbook__tile--w-md { grid-column: span 4; }
  .l-lookbook__tile--sm   { grid-column: span 4; grid-row: span 2; }
  .l-lookbook__tile--w-lg { grid-column: span 4; }
  .l-lookbook__tile--full { grid-column: span 8; }
}
/* ===== Tablet ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }

  /* Topbar — keep city + telegram + phone only */
  .l-topbar__inner { padding-block: 6px; min-height: 32px; }
  .l-topbar__right > *:nth-child(-n+2) { display: none; }

  /* Header — burger visible, minimize action bar */
  .l-nav { display: none; }
  .l-burger { display: inline-flex; }
  .l-header__inner { gap: var(--sp-3); }
  .l-header__brand { font-size: 24px; }
  .l-header__brand svg { width: 28px; height: 28px; }
  .l-iconbtn { width: 40px; height: 40px; }
  .l-iconbtn .icon { width: 18px; height: 18px; }
  .l-header__actions .l-iconbtn[aria-label="Личный кабинет"],
  .l-header__actions .l-iconbtn[aria-label="Избранное"] { display: none; }

  .l-cats { grid-template-columns: repeat(2, 1fr); }
  .l-row3 { grid-template-columns: repeat(2, 1fr); }
  .l-usp__grid { grid-template-columns: repeat(2, 1fr); }
  .l-harry { grid-template-columns: 1fr; }
  .l-harry__title { font-size: var(--fs-72); }
  .l-services { grid-template-columns: repeat(2, 1fr); }
  .l-designers { grid-template-columns: repeat(3, 1fr); }
  .l-reviews { grid-template-columns: 1fr; }
  .l-footer__grid { grid-template-columns: 1fr 1fr; }

  .l-lookbook { grid-auto-rows: 160px; }
  .l-lookbook__tile--xl   { grid-column: span 8; grid-row: span 2; }
  .l-lookbook__tile--md   { grid-column: span 8; grid-row: span 2; }
  .l-lookbook__tile--w-md { grid-column: span 4; grid-row: span 2; }
  .l-lookbook__tile--sm   { grid-column: span 4; grid-row: span 2; }
  .l-lookbook__tile--w-lg { grid-column: span 8; grid-row: span 2; }
  .l-lookbook__tile--full { grid-column: span 8; grid-row: span 2; }

  .l-hero__inner { padding-top: clamp(140px, 20vh, 200px); }
  .l-hero__title { max-width: 14ch; }
}

/* ===== Mobile ===== */
@media (max-width: 720px) {
  :root { --header-h: 60px; }

  /* Topbar — only phone */
  .l-topbar { font-size: 11px; }
  .l-topbar__left { display: none; }
  .l-topbar__right { width: 100%; justify-content: flex-end; }
  .l-topbar__right > *:not(.l-topbar__phone) { display: none; }

  /* Header — burger only (cart icon kept) */
  .l-header__brand { font-size: 22px; }
  .l-header__actions .l-iconbtn[data-action="open-search"] { display: none; }
  .l-header__actions { gap: 4px; }

  /* Section heads */
  .l-section__title { font-size: var(--fs-40); }
  .l-section__head { gap: var(--sp-3); margin-bottom: var(--sp-6); }

  /* Hero */
  .l-hero { min-height: 88vh; }
  .l-hero__inner { padding-top: clamp(120px, 16vh, 180px); padding-bottom: var(--sp-7); gap: var(--sp-4); }
  .l-hero__title { font-size: clamp(2.5rem, 8vw, 3.5rem); max-width: 100%; line-height: 1.05; }
  .l-hero__desc { font-size: var(--fs-16); }
  .l-hero__ctas { width: 100%; flex-direction: column; gap: var(--sp-2); }
  .l-hero__ctas .btn { width: 100%; justify-content: center; }
  .l-hero__scroll { display: none; }

  /* Layout */
  .l-cats { grid-template-columns: 1fr; }
  .l-cat__label { font-size: var(--fs-24); }
  .l-row3 { grid-template-columns: 1fr; }
  .l-usp__grid { grid-template-columns: 1fr; }
  .l-services { grid-template-columns: 1fr; }
  .l-designers { grid-template-columns: 1fr; }
  .l-footer__grid { grid-template-columns: 1fr; }
  .l-newsletter__form { flex-direction: column; border-radius: var(--r-3); padding: 8px; }
  .l-newsletter__form button { width: 100%; }
  .l-quote { padding: var(--sp-9) var(--sp-5); }
  .l-quote__text { font-size: var(--fs-24); }

  /* Look-book — single column */
  .l-lookbook { grid-auto-rows: 220px; gap: var(--sp-3); }
  .l-lookbook__tile { grid-column: span 8 !important; grid-row: span 1 !important; }
  .l-lookbook__caption { font-size: var(--fs-18); }

  /* Harry */
  .l-harry__right { gap: var(--sp-5); padding: 0; }
  .l-harry__top .pill-pair .pill { width: 40px; height: 40px; }

  /* Services */
  .l-service { padding: var(--sp-6); min-height: auto; }
  .l-service__title { font-size: var(--fs-24); }

  /* Press */
  .l-press__row { gap: var(--sp-4) var(--sp-5); justify-content: center; }
  .l-press__item { height: 24px; }

  /* Reviews */
  .l-review { padding: var(--sp-6); }

  /* Newsletter */
  .l-newsletter { padding: var(--sp-9) var(--sp-5); }
  .l-newsletter__title { font-size: var(--fs-40); }

  /* FAQ */
  .l-faq__item summary { font-size: var(--fs-18); padding-block: var(--sp-4); }

  /* Footer */
  .l-footer { padding: var(--sp-9) 0 var(--sp-6); }
  .l-footer__bottom { gap: var(--sp-3); }
  .l-footer__pay svg { width: 36px; height: 24px; }
}

/* ============================================================
   26. INNER PAGES — page-hero, breadcrumbs, catalog, product,
       cart, checkout, news, auth, account, compare, forms
   ============================================================ */

/* ---- Page hero (inner pages) ---- */
.l-page-hero {
  padding-block: clamp(80px, 10vw, 140px) clamp(40px, 4vw, 64px);
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
}
.l-page-hero .t-eyebrow { margin-bottom: var(--sp-4); }
.l-page-hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-72);
  font-weight: 500; line-height: 1.02; letter-spacing: -0.02em;
  color: var(--c-fg);
  max-width: 22ch;
}
.l-page-hero__title em { font-style: italic; color: var(--c-accent); }
.l-page-hero__sub {
  margin-top: var(--sp-4);
  max-width: 60ch;
  font-size: var(--fs-18); line-height: 1.55; color: var(--c-fg-muted);
}

/* ---- Breadcrumbs ---- */
.l-breadcrumbs { margin-bottom: var(--sp-5); }
.l-breadcrumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-fg-muted);
}
.l-breadcrumbs li { display: inline-flex; align-items: center; gap: var(--sp-2); }
.l-breadcrumbs a { color: var(--c-fg-muted); transition: color var(--dur-2) var(--ease-out); }
.l-breadcrumbs a:hover { color: var(--c-fg); }
.l-breadcrumbs [aria-current="page"] { color: var(--c-fg); }
.l-breadcrumbs .icon { width: 12px; height: 12px; opacity: .5; transform: rotate(-90deg); }

/* ---- Catalog (sidebar + grid) ---- */
.l-catalog {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-block: var(--section-y);
}
.l-catalog__sidebar {
  position: sticky; top: calc(var(--header-h) + 24px);
  align-self: start; max-height: calc(100vh - var(--header-h) - 48px);
  overflow-y: auto;
  padding-right: var(--sp-3);
  scrollbar-width: thin;
}
.l-catalog__main { min-width: 0; }
.l-catalog__toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  margin-bottom: var(--sp-6); flex-wrap: wrap;
}
.l-catalog__count { color: var(--c-fg-muted); font-size: var(--fs-14); }
.l-catalog__sorts { display: inline-flex; gap: var(--sp-2); flex-wrap: wrap; }
.l-catalog__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
}
.l-catalog__filter-btn { display: none; }

@media (max-width: 1024px) {
  .l-catalog { grid-template-columns: 1fr; }
  .l-catalog__sidebar { display: none; position: static; max-height: none; }
  .l-catalog__sidebar.is-open { display: block; }
  .l-catalog__filter-btn { display: inline-flex; }
  .l-catalog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .l-catalog__grid { grid-template-columns: 1fr; }
}

/* ---- Filter ---- */
.l-filter__group { padding-block: var(--sp-5); border-bottom: 1px solid var(--c-line); }
.l-filter__group:first-child { padding-top: 0; }
.l-filter__group h4 {
  font-size: var(--fs-12); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-fg-muted); margin-bottom: var(--sp-3);
}
.l-filter__list { display: flex; flex-direction: column; gap: 6px; }
.l-filter__opt {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  cursor: pointer; font-size: var(--fs-14); color: var(--c-fg);
  padding: 4px 0;
}
.l-filter__opt input[type="checkbox"], .l-filter__opt input[type="radio"] {
  appearance: none; width: 18px; height: 18px;
  border: 1px solid var(--c-line); border-radius: 4px;
  position: relative; flex-shrink: 0;
  transition: background var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.l-filter__opt input[type="radio"] { border-radius: 50%; }
.l-filter__opt input:checked { background: var(--c-fg); border-color: var(--c-fg); }
.l-filter__opt input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 4px; top: 1px;
  width: 6px; height: 10px;
  border-right: 2px solid var(--c-white);
  border-bottom: 2px solid var(--c-white);
  transform: rotate(45deg);
}
.l-filter__opt input[type="radio"]:checked::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%; background: var(--c-white);
}
.l-filter__opt span:last-child { color: var(--c-fg-muted); margin-left: auto; font-size: var(--fs-12); }
.l-filter__price-row { display: flex; gap: var(--sp-2); }
.l-filter__price-row input {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--c-line); border-radius: var(--r-2);
  font-size: var(--fs-14);
}

/* ---- Pagination ---- */
.l-pagination {
  display: flex; justify-content: center; align-items: center; gap: var(--sp-1);
  margin-top: var(--sp-9); padding-top: var(--sp-7);
  border-top: 1px solid var(--c-line);
}
.l-pagination a, .l-pagination span {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: var(--r-pill);
  font-size: var(--fs-14); color: var(--c-fg);
  transition: background var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.l-pagination a:hover { background: var(--c-card); }
.l-pagination .is-active { background: var(--c-fg); color: var(--c-white); border-color: var(--c-fg); }
.l-pagination .is-disabled { color: var(--c-fg-soft); pointer-events: none; }

/* ---- Empty state ---- */
.l-empty {
  text-align: center; padding: var(--sp-12) var(--sp-5);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
}
.l-empty .icon { width: 56px; height: 56px; color: var(--c-fg-soft); }
.l-empty h3 { font-family: var(--font-serif); font-size: var(--fs-32); font-weight: 500; }
.l-empty p { color: var(--c-fg-muted); max-width: 40ch; }

/* ---- Product page ---- */
.l-product {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-block: clamp(32px, 4vw, 56px);
}
.l-product__gallery { display: flex; flex-direction: column; gap: var(--sp-3); }
.l-product__main {
  position: relative; aspect-ratio: 1;
  background: var(--c-card); border-radius: var(--r-3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.l-product__main img { width: 100%; height: 100%; object-fit: contain; padding: 6%; transition: transform var(--dur-3) var(--ease-out); }
.l-product__main:hover img { transform: scale(1.04); }
.l-product__thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-2);
}
.l-product__thumb {
  aspect-ratio: 1; background: var(--c-card); border-radius: var(--r-2);
  border: 2px solid transparent;
  cursor: pointer; overflow: hidden;
  transition: border-color var(--dur-2) var(--ease-out);
  display: flex; align-items: center; justify-content: center;
}
.l-product__thumb img { max-width: 80%; max-height: 80%; object-fit: contain; }
.l-product__thumb.is-active { border-color: var(--c-fg); }

.l-product__info { display: flex; flex-direction: column; gap: var(--sp-5); }
.l-product__brand { font-size: var(--fs-12); letter-spacing: .14em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-product__title {
  font-family: var(--font-serif); font-size: var(--fs-56); font-weight: 500;
  line-height: 1.02; letter-spacing: -0.02em;
}
.l-product__rating { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-14); color: var(--c-fg-muted); }
.l-product__rating .icon { width: 16px; height: 16px; color: var(--c-brass); fill: currentColor; stroke: none; }
.l-product__price-row { display: flex; align-items: baseline; gap: var(--sp-3); margin-top: var(--sp-2); }
.l-product__price { font-family: var(--font-serif); font-size: var(--fs-40); font-weight: 500; color: var(--c-fg); }
.l-product__price--sale { color: var(--c-accent); }
.l-product__price--old { color: var(--c-fg-soft); text-decoration: line-through; font-size: var(--fs-20); font-weight: 400; }

.l-product__opts { display: flex; flex-direction: column; gap: var(--sp-4); }
.l-product__opt h5 { font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); margin-bottom: var(--sp-2); }
.l-product__sw-row { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.l-product__sw-row label {
  cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--c-line);
  position: relative;
  transition: border-color var(--dur-1) var(--ease-out);
}
.l-product__sw-row label:hover { border-color: var(--c-fg-muted); }
.l-product__sw-row input { position: absolute; opacity: 0; pointer-events: none; }
.l-product__sw-row input:checked + label, .l-product__sw-row label:has(input:checked) { border-color: var(--c-fg); }

.l-product__cta-row { display: flex; gap: var(--sp-3); align-items: stretch; }
.l-product__cta-row .btn { flex: 1; }

.l-product__meta { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-5); background: var(--c-card); border-radius: var(--r-3); }
.l-product__meta-item { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-14); }
.l-product__meta-item .icon { width: 22px; height: 22px; color: var(--c-accent); flex-shrink: 0; }
.l-product__meta-item b { display: block; font-weight: 500; }
.l-product__meta-item span { color: var(--c-fg-muted); }

/* Tabs */
.l-tabs { padding-block: var(--section-y); border-top: 1px solid var(--c-line); }
.l-tabs__nav { display: flex; gap: var(--sp-6); border-bottom: 1px solid var(--c-line); margin-bottom: var(--sp-7); overflow-x: auto; }
.l-tabs__nav button {
  padding: var(--sp-3) 0; position: relative;
  font-size: var(--fs-16); font-weight: 500; color: var(--c-fg-muted);
  white-space: nowrap;
  transition: color var(--dur-2) var(--ease-out);
}
.l-tabs__nav button.is-active { color: var(--c-fg); }
.l-tabs__nav button.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--c-fg);
}
.l-tabs__panel { display: none; max-width: 70ch; line-height: 1.65; color: var(--c-fg-muted); }
.l-tabs__panel.is-active { display: block; }
.l-tabs__panel p { margin-bottom: var(--sp-3); }
.l-tabs__panel ul { padding-left: var(--sp-5); list-style: disc; margin-bottom: var(--sp-3); }
.l-tabs__panel table { width: 100%; border-collapse: collapse; }
.l-tabs__panel table td { padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-line); font-size: var(--fs-14); }
.l-tabs__panel table td:first-child { color: var(--c-fg-muted); width: 40%; }
.l-tabs__panel table td:last-child { color: var(--c-fg); }

@media (max-width: 1024px) {
  .l-product { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .l-product__title { font-size: var(--fs-40); }
  .l-product__price { font-size: var(--fs-32); }
  .l-product__cta-row { flex-direction: column; }
}

/* ---- Cart ---- */
.l-cart {
  display: grid; grid-template-columns: 1fr 380px; gap: clamp(24px, 3vw, 56px);
  padding-block: var(--section-y);
}
.l-cart__list { display: flex; flex-direction: column; gap: var(--sp-3); }
.l-cart__item {
  display: grid; grid-template-columns: 120px 1fr auto; gap: var(--sp-5); align-items: center;
  padding: var(--sp-4);
  background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--r-3);
}
.l-cart__thumb {
  width: 120px; aspect-ratio: 1; background: var(--c-card); border-radius: var(--r-2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.l-cart__thumb img { max-width: 80%; max-height: 80%; object-fit: contain; }
.l-cart__details { display: flex; flex-direction: column; gap: var(--sp-2); min-width: 0; }
.l-cart__name { font-size: var(--fs-16); font-weight: 500; color: var(--c-fg); }
.l-cart__name a { color: inherit; }
.l-cart__name a:hover { color: var(--c-accent); }
.l-cart__variant { font-size: var(--fs-12); color: var(--c-fg-muted); }
.l-cart__remove {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-12); color: var(--c-fg-muted);
  align-self: flex-start;
}
.l-cart__remove:hover { color: var(--c-danger); }
.l-cart__remove .icon { width: 14px; height: 14px; }

.l-cart__right { display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-3); }
.l-cart__price { font-weight: 500; font-size: var(--fs-18); }

.l-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--c-line); border-radius: var(--r-pill);
  height: 36px;
}
.l-qty button {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-fg);
  transition: background var(--dur-1) var(--ease-out);
}
.l-qty button:hover { background: var(--c-card); }
.l-qty button:disabled { color: var(--c-fg-soft); cursor: not-allowed; }
.l-qty button .icon { width: 14px; height: 14px; }
.l-qty input {
  width: 36px; text-align: center; border: 0; background: transparent;
  font-size: var(--fs-14); font-weight: 500; -moz-appearance: textfield;
}
.l-qty input::-webkit-outer-spin-button, .l-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

/* Summary aside */
.l-summary {
  position: sticky; top: calc(var(--header-h) + 24px);
  align-self: start;
  padding: var(--sp-6);
  background: var(--c-card); border-radius: var(--r-3);
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.l-summary h3 {
  font-family: var(--font-serif); font-size: var(--fs-24); font-weight: 500;
  margin-bottom: var(--sp-2);
}
.l-summary__row { display: flex; justify-content: space-between; align-items: baseline; font-size: var(--fs-14); color: var(--c-fg-muted); }
.l-summary__row--total {
  padding-top: var(--sp-3); border-top: 1px solid var(--c-line);
  font-family: var(--font-serif); font-size: var(--fs-24); color: var(--c-fg);
}
.l-summary__row--total b { font-weight: 500; }
.l-summary__promo {
  display: flex; gap: var(--sp-2); padding-top: var(--sp-3); border-top: 1px solid var(--c-line);
}
.l-summary__promo input {
  flex: 1; padding: 10px 14px; background: var(--c-bg);
  border: 1px solid var(--c-line); border-radius: var(--r-pill);
  font-size: var(--fs-14);
}
.l-summary__promo button {
  padding: 0 18px; background: var(--c-fg); color: var(--c-white);
  border-radius: var(--r-pill); font-size: var(--fs-14); font-weight: 500;
}
.l-summary__legal { font-size: var(--fs-12); color: var(--c-fg-muted); }

@media (max-width: 1024px) {
  .l-cart { grid-template-columns: 1fr; }
  .l-summary { position: static; }
}
@media (max-width: 720px) {
  .l-cart__item { grid-template-columns: 80px 1fr; }
  .l-cart__thumb { width: 80px; }
  .l-cart__right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---- Checkout ---- */
.l-checkout {
  display: grid; grid-template-columns: 1fr 420px; gap: clamp(24px, 3vw, 56px);
  padding-block: var(--section-y);
}
.l-checkout__form { display: flex; flex-direction: column; gap: var(--sp-7); }
.l-checkout__step h3 {
  font-family: var(--font-serif); font-size: var(--fs-28); font-weight: 500;
  margin-bottom: var(--sp-4); display: flex; align-items: center; gap: var(--sp-3);
}
.l-checkout__step h3::before {
  content: ""; width: 28px; height: 28px;
  background: var(--c-fg); color: var(--c-white); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--fs-14); counter-increment: step;
  content: counter(step);
  font-family: var(--font-sans);
}
.l-checkout { counter-reset: step; }

@media (max-width: 1024px) {
  .l-checkout { grid-template-columns: 1fr; }
}

/* ---- Forms ---- */
.l-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.l-form .l-form__row--full { grid-column: 1 / -1; }
.l-form__row { display: flex; flex-direction: column; gap: 6px; }
.l-form__row label {
  font-size: var(--fs-12); letter-spacing: .08em; text-transform: uppercase; color: var(--c-fg-muted);
}
.l-form__row input,
.l-form__row select,
.l-form__row textarea {
  padding: 14px 16px; min-height: 48px;
  background: var(--c-bg);
  border: 1px solid var(--c-line); border-radius: var(--r-2);
  font-size: var(--fs-16); color: var(--c-fg);
  transition: border-color var(--dur-2) var(--ease-out);
}
.l-form__row input:focus,
.l-form__row select:focus,
.l-form__row textarea:focus { border-color: var(--c-fg); outline: none; }
.l-form__row textarea { min-height: 120px; resize: vertical; }
.l-form__row .help { font-size: var(--fs-12); color: var(--c-fg-muted); }
.l-form__row .err { font-size: var(--fs-12); color: var(--c-danger); }
.l-radios { display: grid; gap: var(--sp-2); }
.l-radios label {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4); border: 1px solid var(--c-line); border-radius: var(--r-2);
  cursor: pointer; font-size: var(--fs-14);
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.l-radios label:hover { border-color: var(--c-fg-muted); }
.l-radios label:has(input:checked) { border-color: var(--c-fg); background: var(--c-card); }
.l-radios input[type="radio"] {
  appearance: none; width: 18px; height: 18px;
  border: 2px solid var(--c-line); border-radius: 50%;
}
.l-radios input[type="radio"]:checked { background: var(--c-fg); border-color: var(--c-fg); box-shadow: inset 0 0 0 3px var(--c-bg); }
.l-radios b { font-weight: 500; display: block; }
.l-radios span { color: var(--c-fg-muted); font-size: var(--fs-12); }

@media (max-width: 720px) {
  .l-form { grid-template-columns: 1fr; }
}

/* ---- Order success ---- */
.l-success {
  text-align: center;
  padding: clamp(80px, 10vw, 160px) var(--sp-5);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-5);
}
.l-success__icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--c-accent); color: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center;
}
.l-success__icon .icon { width: 44px; height: 44px; }
.l-success__title {
  font-family: var(--font-serif); font-size: var(--fs-56); font-weight: 500;
  letter-spacing: -0.02em; max-width: 22ch;
}
.l-success__num { font-size: var(--fs-18); color: var(--c-fg-muted); }
.l-success__num b { color: var(--c-fg); font-weight: 500; }
.l-success__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-7); max-width: 880px; }
.l-success__step { padding: var(--sp-5); background: var(--c-card); border-radius: var(--r-3); text-align: left; }
.l-success__step b { display: block; font-weight: 500; margin-bottom: 6px; }
.l-success__step span { color: var(--c-fg-muted); font-size: var(--fs-14); }
@media (max-width: 720px) {
  .l-success__steps { grid-template-columns: 1fr; }
}

/* ---- News list ---- */
.l-news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 40px);
  padding-block: var(--section-y);
}
.l-news-card { display: flex; flex-direction: column; gap: var(--sp-3); color: inherit; }
.l-news-card__media {
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-3); background: var(--c-card);
}
.l-news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-4) var(--ease-soft); }
.l-news-card:hover .l-news-card__media img { transform: scale(1.05); }
.l-news-card__meta { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-news-card__meta .badge { background: var(--c-card); color: var(--c-fg); }
.l-news-card__title {
  font-family: var(--font-serif); font-size: var(--fs-24); font-weight: 500;
  line-height: 1.2; color: var(--c-fg); transition: color var(--dur-2) var(--ease-out);
}
.l-news-card:hover .l-news-card__title { color: var(--c-accent); }
.l-news-card__excerpt { font-size: var(--fs-14); color: var(--c-fg-muted); line-height: 1.55; }

@media (max-width: 1024px) { .l-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .l-news-grid { grid-template-columns: 1fr; } }

/* ---- Article (news show) ---- */
.l-article {
  max-width: 720px; margin: 0 auto;
  padding-block: var(--section-y);
  font-size: var(--fs-18); line-height: 1.65; color: var(--c-fg);
}
.l-article__hero img {
  width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover; border-radius: var(--r-3);
  margin-block: var(--sp-7);
}
.l-article__title {
  font-family: var(--font-serif); font-size: var(--fs-72); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--sp-5);
}
.l-article__meta { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); margin-bottom: var(--sp-5); }
.l-article__body p { margin-bottom: var(--sp-5); }
.l-article__body p:first-of-type::first-letter {
  font-family: var(--font-serif); float: left;
  font-size: 4.5em; line-height: .9; padding-right: 12px; padding-top: 6px;
  color: var(--c-accent); font-weight: 500;
}
.l-article__body h2, .l-article__body h3 {
  font-family: var(--font-serif); font-weight: 500; line-height: 1.15;
  margin-block: var(--sp-7) var(--sp-3);
}
.l-article__body h2 { font-size: var(--fs-32); }
.l-article__body h3 { font-size: var(--fs-24); }
.l-article__body blockquote {
  border-left: 3px solid var(--c-accent);
  padding: var(--sp-3) var(--sp-5);
  margin: var(--sp-7) 0;
  font-family: var(--font-serif); font-size: var(--fs-24); font-style: italic; line-height: 1.3;
  color: var(--c-fg);
}
.l-article__body img { width: 100%; border-radius: var(--r-3); margin-block: var(--sp-5); }
.l-article__body a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 4px; }

/* ---- Auth split ---- */
.l-auth {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.l-auth__media {
  position: relative; overflow: hidden; background: var(--c-accent);
}
.l-auth__media img { width: 100%; height: 100%; object-fit: cover; }
.l-auth__form {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 6vw, 96px);
  max-width: 520px; width: 100%; margin: 0 auto;
}
.l-auth__form h1 {
  font-family: var(--font-serif); font-size: var(--fs-56); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--sp-3);
}
.l-auth__form p { color: var(--c-fg-muted); margin-bottom: var(--sp-7); }
.l-auth__form .l-form { grid-template-columns: 1fr; }
.l-auth__form .btn { width: 100%; }
.l-auth__alt { text-align: center; margin-top: var(--sp-5); color: var(--c-fg-muted); font-size: var(--fs-14); }
.l-auth__alt a { color: var(--c-fg); font-weight: 500; }

@media (max-width: 1024px) {
  .l-auth { grid-template-columns: 1fr; }
  .l-auth__media { display: none; }
}

/* ---- Account (sidebar nav) ---- */
.l-account {
  display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px, 3vw, 48px);
  padding-block: var(--section-y);
}
.l-account__sidebar { display: flex; flex-direction: column; gap: var(--sp-1); }
.l-account__sidebar a {
  padding: var(--sp-3) var(--sp-4); border-radius: var(--r-2);
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-14); color: var(--c-fg-muted);
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.l-account__sidebar a:hover { background: var(--c-card); color: var(--c-fg); }
.l-account__sidebar a.is-active { background: var(--c-fg); color: var(--c-white); }
.l-account__sidebar a .icon { width: 18px; height: 18px; }
.l-account__main { min-width: 0; }

@media (max-width: 1024px) {
  .l-account { grid-template-columns: 1fr; }
  .l-account__sidebar { flex-direction: row; overflow-x: auto; gap: var(--sp-2); padding-bottom: var(--sp-3); }
}

/* ---- Compare table ---- */
.l-compare-wrap { padding-block: var(--section-y); overflow-x: auto; }
.l-compare {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: var(--sp-4);
  min-width: 100%;
}
.l-compare__col { background: var(--c-card); border-radius: var(--r-3); padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3); }
.l-compare__col--sticky { position: sticky; left: 0; background: var(--c-bg); z-index: 1; }
.l-compare__row { font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); padding-block: var(--sp-3); border-bottom: 1px solid var(--c-line); min-height: 56px; display: flex; align-items: center; }
.l-compare__row b { color: var(--c-fg); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: var(--fs-14); }

/* ---- Promo banner ---- */
.l-promo {
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-700) 100%);
  color: var(--c-white); border-radius: var(--r-4);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--sp-7); align-items: center;
  margin-block: var(--section-y);
}
.l-promo__text h2 {
  font-family: var(--font-serif); font-size: var(--fs-56); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--sp-3);
}
.l-promo__text p { color: rgba(255,255,255,.85); margin-bottom: var(--sp-4); max-width: 50ch; }
.l-promo__media { aspect-ratio: 4 / 3; border-radius: var(--r-3); overflow: hidden; }
.l-promo__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) { .l-promo { grid-template-columns: 1fr; } }

/* ---- About / contact ---- */
.l-split-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: var(--section-y);
}
.l-split-block--reverse > div:first-child { order: 2; }
.l-split-block__media { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-3); }
.l-split-block__media img { width: 100%; height: 100%; object-fit: cover; }
.l-split-block__text h2 {
  font-family: var(--font-serif); font-size: var(--fs-56); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--sp-4);
}
.l-split-block__text p { color: var(--c-fg-muted); line-height: 1.65; margin-bottom: var(--sp-3); }
@media (max-width: 1024px) {
  .l-split-block { grid-template-columns: 1fr; }
  .l-split-block--reverse > div:first-child { order: 0; }
}

.l-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5);
  padding-block: var(--section-y);
  border-block: 1px solid var(--c-line);
}
.l-stat { text-align: center; }
.l-stat b {
  display: block;
  font-family: var(--font-serif); font-size: var(--fs-72); font-weight: 500;
  line-height: 1; letter-spacing: -0.02em; color: var(--c-accent);
  margin-bottom: var(--sp-2);
}
.l-stat span { color: var(--c-fg-muted); font-size: var(--fs-14); }
@media (max-width: 720px) { .l-stats { grid-template-columns: 1fr 1fr; } }

/* ---- Contact ---- */
.l-contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px);
  padding-block: var(--section-y);
}
.l-contact__info { display: flex; flex-direction: column; gap: var(--sp-5); }
.l-contact__row { display: flex; gap: var(--sp-3); align-items: flex-start; }
.l-contact__row .icon { width: 24px; height: 24px; color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }
.l-contact__row b { display: block; font-weight: 500; margin-bottom: 4px; }
.l-contact__row span { color: var(--c-fg-muted); font-size: var(--fs-14); }
@media (max-width: 1024px) { .l-contact { grid-template-columns: 1fr; } }

/* ============================================================
   27. CONTENT SECTIONS — collections, lookbook, designers, services
   ============================================================ */

/* ---- Collections list (editorial alternating split) ---- */
.l-collection-grid {
  display: grid; gap: clamp(48px, 6vw, 96px);
  padding-block: var(--section-y);
}
.l-collection-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
  text-decoration: none; color: inherit;
}
.l-collection-card:nth-child(even) > :first-child { order: 2; }
.l-collection-card__media {
  position: relative; aspect-ratio: 4 / 5;
  overflow: hidden; border-radius: var(--r-3);
}
.l-collection-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-4) var(--ease-soft);
}
.l-collection-card:hover .l-collection-card__media img { transform: scale(1.04); }
.l-collection-card__text { display: flex; flex-direction: column; gap: var(--sp-4); }
.l-collection-card__title {
  font-family: var(--font-serif); font-size: var(--fs-72); font-weight: 500;
  line-height: 1; letter-spacing: -0.02em; color: var(--c-fg);
}
.l-collection-card__title em { font-style: italic; color: var(--c-accent); }
.l-collection-card__sub { font-size: var(--fs-18); color: var(--c-fg-muted); line-height: 1.55; max-width: 50ch; }
.l-collection-card__meta { display: inline-flex; gap: var(--sp-5); font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-collection-card__cta { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 500; }
.l-collection-card__cta .icon { transition: transform var(--dur-2) var(--ease-out); }
.l-collection-card:hover .l-collection-card__cta .icon { transform: translateX(6px); }
@media (max-width: 1024px) {
  .l-collection-card { grid-template-columns: 1fr; }
  .l-collection-card:nth-child(even) > :first-child { order: 0; }
  .l-collection-card__title { font-size: var(--fs-56); }
}

/* ---- Collection hero (full-bleed) ---- */
.l-collection-hero {
  position: relative; min-height: clamp(420px, 60vh, 640px);
  overflow: hidden; color: var(--c-white);
  display: flex; align-items: end;
}
.l-collection-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;
}
.l-collection-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.6) 100%);
}
.l-collection-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--frame); margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.l-collection-hero__title {
  font-family: var(--font-serif); font-size: var(--fs-90); font-weight: 500;
  line-height: 1; letter-spacing: -0.02em; max-width: 16ch;
}
.l-collection-hero__title em { font-style: italic; color: var(--c-cream); }
.l-collection-hero__sub { font-size: var(--fs-18); max-width: 56ch; color: rgba(255,255,255,.88); }
.l-collection-hero__meta { display: inline-flex; gap: var(--sp-5); font-size: var(--fs-12); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: var(--sp-4); }

/* ---- Story (long-form blocks) ---- */
.l-story {
  max-width: 720px; margin: 0 auto;
  padding-block: var(--section-y);
  font-size: var(--fs-18); line-height: 1.7; color: var(--c-fg);
}
.l-story p { margin-bottom: var(--sp-5); }
.l-story blockquote {
  border-left: 3px solid var(--c-accent);
  padding: var(--sp-3) var(--sp-5);
  margin-block: var(--sp-7);
  font-family: var(--font-serif); font-size: var(--fs-28); font-style: italic; line-height: 1.3;
  color: var(--c-fg);
}

.l-story-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 360px 280px;
  gap: var(--sp-3);
  padding-block: var(--section-y);
}
.l-story-gallery > :first-child { grid-row: span 2; }
.l-story-gallery img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-3);
}
@media (max-width: 720px) {
  .l-story-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .l-story-gallery > :first-child { grid-row: auto; }
  .l-story-gallery img { aspect-ratio: 16/10; height: auto; }
}

/* ---- Lookbook list ---- */
.l-lookbook-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  padding-block: var(--section-y);
}
.l-lookbook-list a {
  display: flex; flex-direction: column; gap: var(--sp-3); color: inherit;
}
.l-lookbook-list a > .l-room-media {
  aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r-3);
}
.l-lookbook-list a > .l-room-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-4) var(--ease-soft);
}
.l-lookbook-list a:hover > .l-room-media img { transform: scale(1.05); }
.l-lookbook-list .l-room-meta { font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-lookbook-list .l-room-name { font-family: var(--font-serif); font-size: var(--fs-24); font-weight: 500; line-height: 1.2; color: var(--c-fg); transition: color var(--dur-2) var(--ease-out); }
.l-lookbook-list a:hover .l-room-name { color: var(--c-accent); }
@media (max-width: 1024px) { .l-lookbook-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .l-lookbook-list { grid-template-columns: 1fr; } }

/* ---- Lookbook show ---- */
.l-room-hero {
  position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--r-3);
  margin-block: var(--sp-7) var(--sp-9);
}
.l-room-hero img { width: 100%; height: 100%; object-fit: cover; }
.l-room-info {
  display: grid; grid-template-columns: 2fr 1fr; gap: clamp(32px, 4vw, 64px);
  padding-bottom: var(--section-y);
}
.l-room-info__story p { font-size: var(--fs-18); line-height: 1.65; color: var(--c-fg); margin-bottom: var(--sp-4); }
.l-room-info__sidebar {
  position: sticky; top: calc(var(--header-h) + 24px); align-self: start;
  background: var(--c-card); border-radius: var(--r-3);
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4);
}
.l-room-info__sidebar h4 { font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); margin-bottom: var(--sp-3); }
.l-room-info__sidebar dl { display: grid; gap: var(--sp-3); }
.l-room-info__sidebar dt { font-size: var(--fs-12); letter-spacing: .08em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-room-info__sidebar dd { font-size: var(--fs-16); color: var(--c-fg); font-weight: 500; }
@media (max-width: 1024px) {
  .l-room-info { grid-template-columns: 1fr; }
  .l-room-info__sidebar { position: static; }
}

/* ---- Designers list ---- */
.l-designers-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-7);
  padding-block: var(--section-y);
}
.l-designers-list a { display: flex; flex-direction: column; gap: var(--sp-4); color: inherit; }
.l-designers-list .l-designer-portrait {
  aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-3);
  background: var(--c-card);
}
.l-designers-list .l-designer-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-4) var(--ease-soft);
}
.l-designers-list a:hover .l-designer-portrait img { transform: scale(1.04); }
.l-designers-list h3 { font-family: var(--font-serif); font-size: var(--fs-32); font-weight: 500; line-height: 1.1; }
.l-designers-list .l-role { font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-designers-list p { font-size: var(--fs-14); color: var(--c-fg-muted); line-height: 1.55; }
@media (max-width: 1024px) { .l-designers-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .l-designers-list { grid-template-columns: 1fr; } }

/* ---- Designer profile ---- */
.l-designer-profile {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 80px);
  padding-block: var(--section-y);
  align-items: start;
}
.l-designer-profile__media {
  aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-3);
  position: sticky; top: calc(var(--header-h) + 24px);
}
.l-designer-profile__media img { width: 100%; height: 100%; object-fit: cover; }
.l-designer-profile__info { display: flex; flex-direction: column; gap: var(--sp-5); }
.l-designer-profile__role { font-size: var(--fs-12); letter-spacing: .14em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-designer-profile__name { font-family: var(--font-serif); font-size: var(--fs-72); font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.l-designer-profile__bio { font-size: var(--fs-18); line-height: 1.65; color: var(--c-fg); }
.l-designer-profile__quote {
  border-left: 3px solid var(--c-accent); padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-serif); font-style: italic; font-size: var(--fs-24); line-height: 1.3;
  color: var(--c-fg);
}
.l-designer-profile__facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); padding: var(--sp-5) 0; border-block: 1px solid var(--c-line); }
.l-designer-profile__facts b { display: block; font-family: var(--font-serif); font-size: var(--fs-28); font-weight: 500; color: var(--c-accent); }
.l-designer-profile__facts span { font-size: var(--fs-12); letter-spacing: .08em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-designer-profile__social { display: inline-flex; gap: var(--sp-2); }
.l-designer-profile__social a {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.l-designer-profile__social a:hover { background: var(--c-fg); color: var(--c-white); border-color: var(--c-fg); }
@media (max-width: 1024px) {
  .l-designer-profile { grid-template-columns: 1fr; }
  .l-designer-profile__media { position: static; }
  .l-designer-profile__name { font-size: var(--fs-56); }
}

/* ---- Services list (rich cards) ---- */
.l-services-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5);
  padding-block: var(--section-y);
}
.l-service-card-detail {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-7);
  background: var(--c-card); border-radius: var(--r-3);
  text-decoration: none; color: inherit;
  transition: background var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
  min-height: 360px;
}
.l-service-card-detail:hover { background: var(--c-accent); color: var(--c-white); transform: translateY(-4px); }
.l-service-card-detail .l-service__icon { width: 48px; height: 48px; color: var(--c-accent); }
.l-service-card-detail:hover .l-service__icon { color: var(--c-white); }
.l-service-card-detail h3 { font-family: var(--font-serif); font-size: var(--fs-32); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
.l-service-card-detail p { font-size: var(--fs-14); line-height: 1.55; color: var(--c-fg-muted); }
.l-service-card-detail:hover p { color: rgba(255,255,255,.85); }
.l-service-card-detail .l-service__meta { display: flex; gap: var(--sp-5); margin-top: auto; padding-top: var(--sp-4); font-size: var(--fs-12); letter-spacing: .08em; text-transform: uppercase; }
.l-service-card-detail .l-service__meta b { font-family: var(--font-serif); display: block; font-size: var(--fs-20); letter-spacing: 0; text-transform: none; font-weight: 500; }
.l-service-card-detail .l-service__cta { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 500; }
@media (max-width: 720px) { .l-services-list { grid-template-columns: 1fr; } }

/* ---- Service show: steps ---- */
.l-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5);
  counter-reset: step;
  padding-block: var(--section-y);
}
.l-step {
  position: relative; padding: var(--sp-6); padding-top: var(--sp-9);
  background: var(--c-card); border-radius: var(--r-3);
  display: flex; flex-direction: column; gap: var(--sp-3);
  counter-increment: step;
}
.l-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  font-family: var(--font-serif); font-size: var(--fs-72); font-weight: 500;
  line-height: 1; color: var(--c-accent); opacity: .25;
}
.l-step h3 { font-family: var(--font-serif); font-size: var(--fs-24); font-weight: 500; line-height: 1.15; }
.l-step p { font-size: var(--fs-14); line-height: 1.55; color: var(--c-fg-muted); }
@media (max-width: 1024px) { .l-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .l-steps { grid-template-columns: 1fr; } }

/* ---- Pricing tiers ---- */
.l-pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
  padding-block: var(--section-y);
}
.l-tier {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-7);
  border: 1px solid var(--c-line); border-radius: var(--r-3);
  background: var(--c-bg);
}
.l-tier--featured { background: var(--c-accent); color: var(--c-white); border-color: var(--c-accent); transform: translateY(-8px); }
.l-tier h4 { font-size: var(--fs-12); letter-spacing: .14em; text-transform: uppercase; color: var(--c-fg-muted); }
.l-tier--featured h4 { color: rgba(255,255,255,.7); }
.l-tier__price { font-family: var(--font-serif); font-size: var(--fs-40); font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.l-tier ul { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-3); }
.l-tier li { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-14); color: var(--c-fg-muted); line-height: 1.5; }
.l-tier--featured li { color: rgba(255,255,255,.85); }
.l-tier li::before { content: "·"; color: var(--c-accent); font-weight: 700; flex-shrink: 0; }
.l-tier--featured li::before { color: var(--c-cream); }
@media (max-width: 1024px) { .l-pricing { grid-template-columns: 1fr; } .l-tier--featured { transform: none; } }

