/* Sanat Dünyası — v15 */

:root {
  --navy: #15243F;
  --navy-deep: #0D1A30;
  --gold: #C2A35E;
  --gold-light: #D8BE83;
  --cream: #F5F2EB;
  --white: #FFFFFF;
  --text: #5A6472;
  --hairline: #E4DFD4;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
  --px: 80px;
  --topbar-h: 96px;
  --topbar-h-scrolled: 72px;
  --section-pad: 140px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--topbar-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Topbar ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--topbar-h);
  transition: height 400ms var(--ease), background 400ms var(--ease), backdrop-filter 400ms var(--ease);
}
.topbar.is-scrolled {
  height: var(--topbar-h-scrolled);
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.topbar__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.topbar__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topbar__emblem { width: 48px; height: 48px; object-fit: contain; transition: width 400ms var(--ease), height 400ms var(--ease); }
.topbar.is-scrolled .topbar__emblem { width: 40px; height: 40px; }
.topbar__wordmark { height: 36px; width: auto; object-fit: contain; transition: height 400ms var(--ease); }
.topbar.is-scrolled .topbar__wordmark { height: 30px; }
.topbar__menu { display: flex; align-items: center; gap: 32px; }
.topbar__link {
  font-size: 14px; font-weight: 500; color: var(--navy);
  position: relative; padding-bottom: 4px;
  transition: color 240ms var(--ease);
}
.topbar__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 320ms ease-out;
}
.topbar__link:hover::after, .topbar__link.is-active::after, .topbar__link:focus-visible::after { width: 100%; }
.topbar__link.is-active { color: var(--navy); }
.topbar__b2b {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--navy); background: var(--gold);
  padding: 10px 22px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}
.topbar__b2b:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 163, 94, 0.35);
}
.topbar__toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.topbar__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: transform 240ms var(--ease); }

/* ── Shared ── */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.eyebrow--light { color: var(--gold-light); }

.section { position: relative; padding: var(--section-pad) var(--px); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.75); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__head { margin-bottom: 64px; max-width: 640px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--light .section__title { color: var(--white); }
.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1; color: var(--navy); margin-bottom: 20px;
}
.section__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.section__title--light em { color: var(--gold-light); }
.section__lead { font-size: 17px; max-width: 46ch; line-height: 1.7; }
.section__head--center .section__lead { margin: 0 auto; }
.section__lead--light { color: rgba(255,255,255,0.65); }
.section__cta { margin-top: 56px; text-align: center; }
.section__line {
  position: absolute; bottom: 0; left: var(--px); right: var(--px);
  height: 1px; background: var(--hairline); transform-origin: left;
  transform: scaleX(0);
  transition: transform 900ms var(--ease);
}
.section__line.is-visible { transform: scaleX(1); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; padding: 15px 30px;
  border: 1.5px solid var(--navy);
  border-radius: 2px;
  transform-origin: center;
  transition: background 280ms var(--ease), color 280ms var(--ease), border-color 280ms var(--ease), transform 320ms var(--ease), box-shadow 320ms var(--ease);
  cursor: pointer;
}
.btn__arrow { display: inline-block; transition: transform 280ms var(--ease); }
.btn:hover { transform: scale(1.05); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn:active { transform: scale(0.98); }
.btn:focus-visible, .topbar__link:focus-visible, .topbar__b2b:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--solid { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--solid:hover { background: var(--navy-deep); border-color: var(--navy-deep); box-shadow: 0 14px 36px rgba(21,36,63,0.22); }
.btn--outline { background: var(--white); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); box-shadow: 0 14px 36px rgba(21,36,63,0.14); }
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 12px 32px rgba(194,163,94,0.35); }

/* Reveals */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; }
.js .reveal-line > span { transform: translateY(110%); transition: transform 800ms var(--ease); }
.js .reveal-line.is-visible > span { transform: translateY(0); }

.js .reveal-fade { opacity: 0; transform: translateY(24px); transition: opacity 750ms var(--ease), transform 750ms var(--ease); }
.js .reveal-fade.is-visible { opacity: 1; transform: translateY(0); }

.js .reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path 750ms var(--ease); }
.js .reveal-clip.is-visible { clip-path: inset(0); }

.js .reveal-scale { opacity: 0; transform: scale(0.94) translateY(20px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.js .reveal-scale.is-visible { opacity: 1; transform: scale(1) translateY(0); }

.js .reveal-slide { opacity: 0; transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.js .reveal-slide[data-dir="left"] { transform: translateX(-40px); }
.js .reveal-slide[data-dir="right"] { transform: translateX(40px); }
.js .reveal-slide.is-visible { opacity: 1; transform: translateX(0); }

/* ── Hero ── */
.hero { padding: calc(var(--topbar-h) + 80px) var(--px) 140px; background: var(--cream); }
.hero__layout {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 42fr 58fr; gap: 64px; align-items: start;
}
.hero__copy { padding-top: 24px; }
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05; color: var(--navy); margin-bottom: 28px;
}
.reveal-line--accent > span em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero__text { max-width: 46ch; font-size: 17px; margin-bottom: 36px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero__rule { width: 100%; max-width: 320px; height: 1px; background: var(--hairline); margin-bottom: 40px; transform-origin: left; }
.js .hero__rule { transform: scaleX(0); transition: transform 800ms var(--ease) 600ms; }
.js .hero__rule.is-visible { transform: scaleX(1); }
.hero__stats { display: flex; align-items: flex-start; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(40px, 4vw, 52px);
  line-height: 1; color: var(--navy); transition: color 200ms var(--ease);
}
.stat__num.is-flash { color: var(--gold-light); }
.stat__lbl { font-size: 13px; }
.stat__sep { width: 1px; height: 48px; background: var(--gold); opacity: 0.6; align-self: center; }

/* Bento */
.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; will-change: transform; align-items: stretch; }
.bento__cell { position: relative; border-radius: 14px; overflow: hidden; margin: 0; min-height: 0; }
.bento__cell--wide { grid-column: 1 / -1; }
.bento__cell--wide:first-child .bento__frame { aspect-ratio: 16/9; }
.bento__cell--tall .bento__frame { aspect-ratio: 3/4; width: 100%; }
.bento__cell--sq .bento__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bento__cell--wide:last-child .bento__frame { aspect-ratio: 2/1; }
.js .bento__cell.reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path 700ms var(--ease); }
.js .bento__cell.reveal-clip.is-visible { clip-path: inset(0); }
.bento__frame { position: relative; overflow: hidden; width: 100%; }
.bento__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 700ms var(--ease);
}
.js .bento__cell.is-visible .bento__frame img { transform: scale(1); }
.bento__cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,36,63,0.35) 0%, transparent 50%);
  pointer-events: none; transition: background 400ms var(--ease); z-index: 1;
}
.bento__cell:hover::after { background: linear-gradient(to top, rgba(21,36,63,0.45) 0%, transparent 55%); }
.bento__cell:hover .bento__frame img { transform: scale(1.04); }
.bento__pill {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-size: 12px; font-weight: 500; color: var(--white);
  background: var(--navy); padding: 6px 14px; border-radius: 100px;
  transition: transform 400ms var(--ease);
}
.bento__cell:hover .bento__pill { transform: translateY(-2px); }

/* ── Marquee ── */
.marquee-wrap {
  background: var(--navy);
  padding: 28px 0;
  overflow: hidden;
  border: 3px solid #D12B2E;
  box-sizing: border-box;
}
.marquee { overflow: hidden; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee__set { display: flex; align-items: center; gap: 64px; padding-right: 64px; flex-shrink: 0; }
.marquee__brand {
  font-size: 15px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75); white-space: nowrap;
  transition: color 240ms var(--ease);
}
.marquee:hover .marquee__brand:hover { color: var(--white); text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--gold); }

/* ── Brands ── */
.brands-featured {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; margin-bottom: 24px;
}
.brands-brushes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px;
}
.brand-card--brush .brand-card__img { aspect-ratio: 16/10; }
.brand-card {
  background: var(--cream); border-radius: 14px; overflow: hidden;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(21,36,63,0.08); }
.brand-card--hero { grid-row: span 1; }
.brand-card__img { aspect-ratio: 16/10; overflow: hidden; }
.brand-card--hero .brand-card__img { aspect-ratio: 16/11; }
.brand-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.brand-card:hover .brand-card__img img { transform: scale(1.05); }
.brand-card__body { padding: 24px 28px 28px; }
.brand-card__tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block;
}
.brand-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.brand-card--hero .brand-card__name { font-size: 28px; }
.brand-card__desc { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.brand-card__link {
  font-size: 13px; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; margin-top: 4px;
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: 2px;
  transform-origin: center;
  transition: gap 280ms var(--ease), color 280ms var(--ease), background 280ms var(--ease), border-color 280ms var(--ease), transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.brand-card__link:hover {
  color: var(--white); background: var(--navy); border-color: var(--navy);
  gap: 10px; transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(21,36,63,0.15);
}

.brands-catalog { margin-bottom: 36px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.brands-catalog__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.brands-catalog__sub { font-size: 14px; color: var(--text); max-width: 42ch; }

.brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.brand-tile {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 24px 22px 28px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
  transform-origin: center;
  transition: border-color 320ms var(--ease), background 320ms var(--ease), transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.brand-tile::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform 400ms var(--ease);
}
.brand-tile::after {
  content: attr(data-initial);
  position: absolute; top: 10px; right: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 700;
  color: rgba(194,163,94,0.12); line-height: 1;
  pointer-events: none;
  transition: color 320ms var(--ease);
}
.brand-tile:hover {
  border-color: rgba(194,163,94,0.45);
  background: var(--cream);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(21,36,63,0.09);
}
.brand-tile:hover::before { transform: scaleY(1); }
.brand-tile:hover::after { color: rgba(194,163,94,0.22); }
.brand-tile__name {
  font-size: 15px; font-weight: 600; color: var(--navy);
  position: relative; z-index: 1;
}
.brand-tile__cat {
  font-size: 11px; color: var(--gold); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.brand-tile__origin { font-size: 12px; color: var(--text); opacity: 0.7; }

/* ── Categories ── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: 14px; overflow: hidden;
  display: block; min-height: 320px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(21,36,63,0.12); }
.cat-card__img { position: absolute; inset: 0; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.cat-card:hover .cat-card__img img { transform: scale(1.06); }
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,36,63,0.88) 0%, rgba(21,36,63,0.25) 60%, rgba(21,36,63,0.1) 100%);
  transition: background 400ms var(--ease); z-index: 1;
}
.cat-card:hover .cat-card__overlay { background: linear-gradient(to top, rgba(21,36,63,0.92) 0%, rgba(21,36,63,0.35) 65%, rgba(21,36,63,0.15) 100%); }
.cat-card__content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px; color: var(--white);
}
.cat-card__num { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--gold-light); display: block; margin-bottom: 8px; }
.cat-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; margin-bottom: 6px;
}
.cat-card__desc { font-size: 13px; opacity: 0.8; line-height: 1.5; max-width: 28ch; }
.cat-card__arrow {
  position: absolute; right: 28px; bottom: 28px;
  font-size: 20px; opacity: 0; transform: translateX(-8px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translateX(0); }

/* ── About ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__visual { position: relative; }
.about__img-wrap { border-radius: 14px; overflow: hidden; }
.about__img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy); color: var(--white);
  padding: 24px 28px; border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(21,36,63,0.2);
}
.about__badge-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.about__badge-txt { font-size: 12px; font-weight: 500; line-height: 1.3; opacity: 0.85; }
.about__text { margin-bottom: 20px; max-width: 46ch; }
.about__quote {
  margin: 32px 0; padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.about__quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 20px; color: var(--gold); line-height: 1.4;
}
.about__pillars { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.about__pillars li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; background: var(--cream); border-radius: 10px;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.about__pillars li:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(21,36,63,0.06); }
.about__pillar-icon { color: var(--gold); font-size: 10px; margin-top: 6px; flex-shrink: 0; }
.about__pillars strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.about__pillars span { font-size: 13px; }

/* ── Contact ── */
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: block; padding: 22px 26px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: background 300ms var(--ease), border-color 300ms var(--ease), transform 300ms var(--ease);
}
.contact-card:hover {
  background: rgba(255,255,255,0.1); border-color: var(--gold);
  transform: translateX(6px);
}
.contact-card__label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.contact-card__value { font-size: 15px; color: var(--white); line-height: 1.5; }
.contact-card__value small { opacity: 0.6; font-size: 13px; }

.contact__form {
  background: var(--white); border-radius: 14px;
  padding: 36px 40px; color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: block; }
.form-field__label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.04em;
}
.form-field input, .form-field textarea {
  width: 100%; font-family: inherit; font-size: 15px;
  padding: 12px 16px; border: 1px solid var(--hairline);
  background: var(--cream); color: var(--navy);
  border-radius: 6px;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194,163,94,0.15); background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 100px; margin-bottom: 20px; }
.contact__form .btn { width: 100%; justify-content: center; }

/* ── Footer ── */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 48px var(--px) 40px; }
.footer__inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.footer__brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.footer__word { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; margin-bottom: 24px; }
.footer__nav a {
  font-size: 14px; color: rgba(255,255,255,0.7); position: relative; padding-bottom: 2px;
  transition: color 240ms var(--ease);
}
.footer__nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 320ms ease-out;
}
.footer__nav a:hover { color: var(--white); }
.footer__nav a:hover::after { width: 100%; }
.footer__copy { font-size: 13px; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .js .reveal-line > span, .js .reveal-fade, .js .reveal-scale, .js .reveal-slide, .bento__frame img {
    transform: none !important; transition: opacity 600ms ease !important;
  }
  .js .reveal-clip, .js .bento__cell.reveal-clip { clip-path: none !important; opacity: 0; transition: opacity 600ms ease !important; }
  .js .reveal-clip.is-visible, .js .bento__cell.reveal-clip.is-visible { opacity: 1; }
  .marquee__track { animation: none !important; }
  .bento { transform: none !important; }
  .section__line { transform: scaleX(1) !important; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --px: 48px; --section-pad: 100px; }
  .hero__layout { grid-template-columns: 1fr; gap: 56px; }
  .hero__copy { padding-top: 0; }
  .brands-featured { grid-template-columns: 1fr 1fr; }
  .brands-brushes { grid-template-columns: 1fr; }
  .brand-card--hero { grid-column: 1 / -1; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__badge { right: 16px; bottom: -16px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --px: 20px; --section-pad: 80px; }
  .topbar__toggle { display: flex; }
  .topbar__menu {
    position: fixed; top: var(--topbar-h); left: 0; right: 0;
    background: rgba(245,242,235,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 24px var(--px) 32px; gap: 20px;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 400ms var(--ease), opacity 400ms var(--ease);
  }
  .topbar__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .topbar.is-scrolled .topbar__menu { top: var(--topbar-h-scrolled); }
  .topbar__b2b { width: 100%; text-align: center; }
  .hero { padding-bottom: 80px; }
  .stat { padding: 12px 16px; }
  .stat__sep { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide, .bento__cell--tall, .bento__cell--sq { grid-column: 1; }
  .bento__cell--tall .bento__frame, .bento__cell--sq .bento__frame { aspect-ratio: 16/10; }
  .brands-featured { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 24px; }
  .about__badge { position: relative; bottom: auto; right: auto; margin-top: -40px; margin-left: 20px; display: inline-flex; }
}
