/* ==========================================================================
   TopMix Profissional — Institutional Website Styles
   Brand: warm dark + champagne gold accent
   ========================================================================== */

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

:root {
  --tm-brand-black:        #0B0B0D;
  --tm-brand-white:        #FFFFFF;
  --tm-brand-champagne:    #C9A36B;
  --tm-brand-champagne-soft:#E8D2A8;
  --tm-brand-champagne-deep:#8E6B3A;
  --tm-brand-rose:         #C77E7E;

  --tm-bg-0:               #0B0B0D;
  --tm-bg-1:               #131316;
  --tm-bg-2:               #1B1B20;
  --tm-bg-3:               #25252C;
  --tm-bg-4:               #30303A;
  --tm-bg-cream:           #F4F0E8;
  --tm-bg-cream-2:         #EAE3D4;

  --tm-line-1:             #2A2A33;
  --tm-line-2:             #3A3A46;
  --tm-line-3:             #4D4D5C;
  --tm-line-cream:         rgba(11,11,13,0.12);

  --tm-fg-1:               #F4F2EE;
  --tm-fg-2:               #B9B7B1;
  --tm-fg-3:               #7E7C77;
  --tm-fg-4:               #54534F;

  --tm-success:            #5BB17A;
  --tm-warning:            #D4A04A;
  --tm-danger:             #D9655E;

  --tm-font-display:       "Tenor Sans", "Optima", Georgia, serif;
  --tm-font-ui:            "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --tm-ease:               cubic-bezier(0.4, 0, 0.2, 1);
  --tm-ease-out:           cubic-bezier(0.16, 1, 0.3, 1);

  --tm-container:          1280px;
  --tm-gutter:             clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--tm-bg-0);
  color: var(--tm-fg-1);
  font-family: var(--tm-font-ui);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

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

::selection { background: var(--tm-brand-champagne); color: var(--tm-brand-black); }

/* --------- Typography ---------- */
.display-xl { font-family: var(--tm-font-display); font-weight: 400; font-size: clamp(44px, 8vw, 112px); line-height: 0.96; letter-spacing: -0.01em; margin: 0; }
.display-lg { font-family: var(--tm-font-display); font-weight: 400; font-size: clamp(36px, 5.5vw, 72px); line-height: 1.02; letter-spacing: 0.005em; margin: 0; }
.display-md { font-family: var(--tm-font-display); font-weight: 400; font-size: clamp(28px, 3.6vw, 48px); line-height: 1.08; letter-spacing: 0.01em; margin: 0; }
.display-sm { font-family: var(--tm-font-display); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; letter-spacing: 0.01em; margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--tm-font-ui);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tm-brand-champagne);
  margin: 0;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--tm-brand-champagne); }
.eyebrow.no-rule::before { display: none; }
.eyebrow.muted { color: var(--tm-fg-3); }
.eyebrow.muted::before { background: var(--tm-fg-3); }

.lede { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--tm-fg-2); max-width: 60ch; }
.lede.tight { max-width: 48ch; }

p { color: var(--tm-fg-2); }

/* --------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--tm-container);
  margin: 0 auto;
  padding-left: var(--tm-gutter);
  padding-right: var(--tm-gutter);
}

.section {
  padding-top: clamp(72px, 9vw, 144px);
  padding-bottom: clamp(72px, 9vw, 144px);
}
.section-sm {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.bg-cream {
  background: var(--tm-bg-cream);
  color: #161613;
}
.bg-cream p { color: #3a3833; }
.bg-cream .lede { color: #3a3833; }
.bg-cream .eyebrow.muted { color: #6e6960; }
.bg-cream .eyebrow.muted::before { background: #6e6960; }

.bg-near-black { background: var(--tm-bg-1); }
.bg-panel { background: var(--tm-bg-2); }

/* --------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background var(--tm-ease) 200ms, border-color 200ms, padding 200ms;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,13,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--tm-line-1);
  padding: 12px 0;
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-links a {
  color: var(--tm-fg-1);
  padding: 8px 0;
  position: relative;
  transition: color var(--tm-ease) 160ms;
}
.nav-links a:hover { color: var(--tm-brand-champagne); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--tm-brand-champagne);
}
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-menu-btn {
  display: none;
  background: transparent; border: 1px solid var(--tm-line-2);
  color: var(--tm-fg-1);
  width: 40px; height: 40px;
  border-radius: 4px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-menu-btn svg { width: 18px; height: 18px; }

@media (max-width: 1180px) {
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: inline-flex; }
}
@media (max-width: 520px) {
  .nav-cta .btn-primary { display: none; }
}

.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(11,11,13,0.96);
  backdrop-filter: blur(20px);
  padding: 88px var(--tm-gutter) 32px;
  flex-direction: column; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 18px 0;
  font-family: var(--tm-font-display);
  font-size: 32px;
  border-bottom: 1px solid var(--tm-line-1);
  color: var(--tm-fg-1);
}
.nav-mobile a:hover { color: var(--tm-brand-champagne); }
.nav-mobile .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* --------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--tm-font-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--tm-ease) 180ms;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; stroke-width: 1.8; }

.btn-primary {
  background: var(--tm-brand-champagne);
  color: var(--tm-brand-black);
  border-color: var(--tm-brand-champagne);
}
.btn-primary:hover {
  background: var(--tm-brand-champagne-soft);
  border-color: var(--tm-brand-champagne-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--tm-fg-1);
  border-color: var(--tm-line-2);
}
.btn-ghost:hover {
  border-color: var(--tm-brand-champagne);
  color: var(--tm-brand-champagne);
}
.bg-cream .btn-ghost {
  color: #161613;
  border-color: rgba(11,11,13,0.25);
}
.bg-cream .btn-ghost:hover {
  border-color: var(--tm-brand-champagne-deep);
  color: var(--tm-brand-champagne-deep);
}

.btn-outline-gold {
  background: transparent;
  color: var(--tm-brand-champagne);
  border-color: var(--tm-brand-champagne);
}
.btn-outline-gold:hover {
  background: var(--tm-brand-champagne);
  color: var(--tm-brand-black);
}

.btn-text {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tm-brand-champagne);
  padding: 8px 0;
  border-bottom: 1px solid var(--tm-brand-champagne);
  cursor: pointer;
  transition: gap var(--tm-ease) 200ms;
}
.btn-text:hover { gap: 16px; }
.btn-text svg { width: 14px; height: 14px; stroke-width: 1.8; }

/* --------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-top: 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.2) 35%, rgba(11,11,13,0.85) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  padding-bottom: clamp(48px, 6vw, 96px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-tag {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-tag-line { width: 48px; height: 1px; background: var(--tm-brand-champagne); }
.hero-tag-text {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tm-brand-champagne);
}

.hero-h1 { color: #fff; margin-bottom: 24px; }
.hero-h1 em {
  font-style: normal;
  color: var(--tm-brand-champagne);
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(244,242,238,0.85);
  max-width: 50ch;
  margin: 0 0 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,242,238,0.18);
  max-width: 640px;
}
.hero-trust-item .num {
  font-family: var(--tm-font-display);
  font-size: 36px;
  color: var(--tm-brand-champagne);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hero-trust-item .lbl {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244,242,238,0.75);
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(244,242,238,0.6);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(244,242,238,0.6) 0%, transparent 100%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--tm-line-1);
  border-bottom: 1px solid var(--tm-line-1);
  overflow: hidden;
  background: var(--tm-bg-0);
  padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--tm-font-display);
  font-size: 22px;
  color: var(--tm-fg-2);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-track span::after {
  content: "✦"; color: var(--tm-brand-champagne); font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------- Generic section heading ---------- */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head-text { max-width: 56ch; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 16px; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* --------- Lines/cards ---------- */
.line-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 980px) { .line-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .line-grid { grid-template-columns: 1fr; } }

.line-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--tm-bg-2);
  cursor: pointer;
}
.line-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--tm-ease-out);
  filter: brightness(0.85);
}
.line-card:hover img { transform: scale(1.05); filter: brightness(1); }
.line-card-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,11,13,0.85) 70%);
  color: #fff;
}
.line-card-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tm-brand-champagne);
  margin-bottom: 8px;
  display: block;
}
.line-card h3 {
  font-family: var(--tm-font-display);
  font-size: 26px; font-weight: 400;
  margin: 0 0 6px;
  line-height: 1.1;
}
.line-card-desc {
  font-size: 12px;
  color: rgba(244,242,238,0.7);
  margin: 0 0 12px;
  line-height: 1.4;
}
.line-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tm-brand-champagne);
  transition: gap var(--tm-ease) 200ms;
}
.line-card:hover .line-card-arrow { gap: 14px; }
.line-card-arrow svg { width: 12px; height: 12px; stroke-width: 2; }

/* --------- About / split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.tighter { gap: clamp(32px, 4vw, 64px); }
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--tm-bg-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.tall { aspect-ratio: 3/4; }
.split-media.wide { aspect-ratio: 5/4; }

/* --------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tm-line-1);
  border-top: 1px solid var(--tm-line-1);
  border-bottom: 1px solid var(--tm-line-1);
}
.bg-cream .stats { background: rgba(11,11,13,0.15); border-color: rgba(11,11,13,0.15); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--tm-bg-0);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
}
.bg-cream .stat { background: var(--tm-bg-cream); }
.stat-num {
  font-family: var(--tm-font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--tm-brand-champagne);
  margin-bottom: 12px;
  display: block;
}
.stat-lbl {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tm-fg-2);
  margin-bottom: 8px;
}
.bg-cream .stat-lbl { color: #6e6960; }
.stat-desc {
  font-size: 13px;
  color: var(--tm-fg-3);
  margin: 0;
}
.bg-cream .stat-desc { color: #57544b; }

/* --------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  padding: 36px 32px;
  background: var(--tm-bg-2);
  border: 1px solid var(--tm-line-1);
  border-radius: 2px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--tm-font-display);
  font-size: 64px;
  color: var(--tm-brand-champagne);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.testimonial-text {
  font-size: 15px;
  color: var(--tm-fg-1);
  line-height: 1.6;
  margin: 0 0 24px;
  font-style: italic;
  font-weight: 300;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--tm-line-1);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--tm-bg-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tm-font-display);
  color: var(--tm-brand-champagne);
  font-size: 16px;
}
.testimonial-name { font-size: 13px; font-weight: 600; margin: 0; color: var(--tm-fg-1); }
.testimonial-role { font-size: 11px; color: var(--tm-fg-3); letter-spacing: 0.08em; margin: 0; }
.testimonial-stars {
  display: flex; gap: 2px;
  margin-bottom: 14px;
  color: var(--tm-brand-champagne);
  font-size: 12px;
  letter-spacing: 2px;
}

/* --------- Distributor / CTA bands ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(11,11,13,0.92) 0%, rgba(11,11,13,0.7) 50%, rgba(11,11,13,0.55) 100%);
}
.cta-band .container { position: relative; z-index: 1; }

/* --------- Footer ---------- */
.footer {
  background: #050507;
  border-top: 1px solid var(--tm-line-1);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 36px; margin-bottom: 24px; }
.footer-brand p {
  font-size: 13px; color: var(--tm-fg-3);
  max-width: 36ch; line-height: 1.55;
}
.footer-col h5 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tm-brand-champagne);
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 13px; color: var(--tm-fg-2); transition: color 160ms; }
.footer-col a:hover { color: var(--tm-brand-champagne); }
.footer-bottom {
  border-top: 1px solid var(--tm-line-1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--tm-fg-4);
  flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--tm-bg-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--tm-fg-2);
  transition: all 160ms;
}
.footer-social a:hover {
  background: var(--tm-brand-champagne);
  color: var(--tm-brand-black);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-credit {
  border-top: 1px solid var(--tm-line-1);
  margin-top: 24px;
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tm-fg-4);
}
.footer-credit a {
  color: var(--tm-brand-champagne);
  transition: color 160ms;
}
.footer-credit a:hover { color: var(--tm-brand-champagne-soft); }

/* --------- Page hero (interior) ---------- */
.page-hero {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.7) 0%, rgba(11,11,13,0.95) 100%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 20px; max-width: 16ch; }
.page-hero .lede { max-width: 56ch; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tm-fg-3);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--tm-fg-2); }
.breadcrumb a:hover { color: var(--tm-brand-champagne); }
.breadcrumb svg { width: 10px; height: 10px; opacity: 0.4; }

/* --------- Product grid (catalog page) ---------- */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .catalog-layout { grid-template-columns: 1fr; gap: 24px; } }

.filters {
  position: sticky;
  top: 100px;
  padding: 0;
}
.filter-group { margin-bottom: 36px; }
.filter-group h4 {
  font-family: var(--tm-font-ui);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tm-fg-1);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tm-line-1);
}
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  font-size: 13px; color: var(--tm-fg-2);
  cursor: pointer;
  transition: color 160ms;
}
.filter-item:hover { color: var(--tm-fg-1); }
.filter-item input { display: none; }
.filter-check {
  width: 16px; height: 16px;
  border: 1px solid var(--tm-line-3);
  border-radius: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 160ms;
}
.filter-item input:checked + .filter-check {
  background: var(--tm-brand-champagne);
  border-color: var(--tm-brand-champagne);
}
.filter-item input:checked + .filter-check::after {
  content: ""; width: 8px; height: 8px;
  background: var(--tm-brand-black);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.filter-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--tm-fg-4);
  font-variant-numeric: tabular-nums;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; gap: 24px; } }

.product-card {
  cursor: pointer;
  display: block;
}
.product-img {
  aspect-ratio: 4/5;
  background: var(--tm-bg-2);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--tm-ease-out);
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-line-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(11,11,13,0.7);
  backdrop-filter: blur(8px);
  color: var(--tm-brand-champagne);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
}
.product-name {
  font-family: var(--tm-font-display);
  font-size: 22px; font-weight: 400;
  margin: 0 0 6px;
  color: var(--tm-fg-1);
  line-height: 1.2;
}
.product-meta {
  font-size: 12px;
  color: var(--tm-fg-3);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.product-card-action {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tm-brand-champagne);
  transition: gap var(--tm-ease) 200ms;
}
.product-card:hover .product-card-action { gap: 14px; }
.product-card-action svg { width: 12px; height: 12px; stroke-width: 2; }

.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tm-line-1);
  gap: 16px; flex-wrap: wrap;
}
.results-count {
  font-size: 13px; color: var(--tm-fg-2);
}
.results-count strong { color: var(--tm-fg-1); font-weight: 600; }
.sort-select {
  background: var(--tm-bg-2);
  border: 1px solid var(--tm-line-2);
  color: var(--tm-fg-1);
  padding: 10px 16px;
  font-family: var(--tm-font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
}

/* --------- Timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0 0;
}
.timeline::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 80px;
  height: 1px;
  background: var(--tm-line-2);
}
.timeline-item { position: relative; padding-top: 56px; }
.timeline-item::before {
  content: ""; position: absolute;
  left: 0; top: 73px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--tm-brand-champagne);
  box-shadow: 0 0 0 4px var(--tm-bg-0);
}
.bg-cream .timeline-item::before { box-shadow: 0 0 0 4px var(--tm-bg-cream); }
.timeline-year {
  font-family: var(--tm-font-display);
  font-size: 42px;
  color: var(--tm-brand-champagne);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.timeline-h {
  font-size: 16px; font-weight: 600;
  margin: 0 0 8px;
  color: inherit;
}
.timeline-desc {
  font-size: 13px;
  color: var(--tm-fg-2);
  margin: 0;
  line-height: 1.55;
}
.bg-cream .timeline-desc { color: #57544b; }
@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; }
  .timeline::before { left: 6px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .timeline-item { padding-top: 8px; padding-left: 32px; padding-bottom: 32px; }
  .timeline-item::before { left: 0; top: 16px; }
}

/* --------- Values cards ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 40px 32px;
  background: var(--tm-bg-2);
  border: 1px solid var(--tm-line-1);
  position: relative;
}
.bg-cream .value-card { background: #fff; border-color: var(--tm-line-cream); }
.value-num {
  font-family: var(--tm-font-display);
  font-size: 14px;
  color: var(--tm-brand-champagne);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.value-card h3 {
  font-family: var(--tm-font-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 16px;
  color: inherit;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tm-fg-2);
  margin: 0;
}
.bg-cream .value-card p { color: #57544b; }

/* --------- Benefits list ---------- */
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--tm-line-1);
}
.benefit-list li:last-child { border-bottom: 0; }
.benefit-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(201,163,107,0.12);
  color: var(--tm-brand-champagne);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.benefit-icon svg { width: 14px; height: 14px; stroke-width: 2; }
.benefit-text h4 {
  font-size: 14px; font-weight: 600;
  margin: 0 0 4px;
  color: var(--tm-fg-1);
}
.benefit-text p {
  font-size: 13px; color: var(--tm-fg-2);
  margin: 0; line-height: 1.5;
}

/* --------- Forms ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tm-fg-2);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--tm-bg-1);
  border: 1px solid var(--tm-line-2);
  color: var(--tm-fg-1);
  padding: 14px 16px;
  font-family: var(--tm-font-ui);
  font-size: 14px;
  border-radius: 2px;
  width: 100%;
  transition: border-color 160ms;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--tm-brand-champagne);
  box-shadow: 0 0 0 3px rgba(201,163,107,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; font-family: var(--tm-font-ui); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--tm-fg-4); }

/* --------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--tm-line-1);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--tm-font-display);
  font-size: 20px;
  color: var(--tm-fg-1);
  gap: 24px;
}
.faq-q:hover { color: var(--tm-brand-champagne); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--tm-line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--tm-fg-2);
  flex-shrink: 0;
  transition: all 200ms;
}
.faq-toggle svg { width: 12px; height: 12px; stroke-width: 2; transition: transform 240ms var(--tm-ease); }
.faq-item.open .faq-toggle { background: var(--tm-brand-champagne); color: var(--tm-brand-black); border-color: var(--tm-brand-champagne); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms var(--tm-ease);
  font-size: 14px;
  color: var(--tm-fg-2);
  line-height: 1.65;
}
.faq-a-inner { padding: 0 0 24px; max-width: 64ch; }
.faq-item.open .faq-a { max-height: 400px; }

/* --------- Misc utilities ---------- */
.divider {
  height: 1px; background: var(--tm-line-1);
  margin: 80px 0;
}
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.tnum { font-variant-numeric: tabular-nums; }
.gold { color: var(--tm-brand-champagne); }

/* --------- Big editorial image ---------- */
.editorial-img {
  position: relative;
  margin: 64px 0;
  aspect-ratio: 21/9;
  overflow: hidden;
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.editorial-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-overlay {
  position: absolute; inset: 0; z-index: 2; cursor: pointer;
}
.video-state-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: rgba(0,0,0,0.45);
  border-radius: 50%; width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.video-state-icon.visible {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}
.editorial-img-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* --------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--tm-ease-out), transform 700ms var(--tm-ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Product details modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-modal.is-open { display: flex; }
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  animation: tm-modal-fade 200ms var(--tm-ease-out);
}
.product-modal-content {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 64px);
  background: var(--tm-bg-2);
  border: 1px solid var(--tm-line-1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  animation: tm-modal-pop 260ms var(--tm-ease-out);
}
.product-modal-media {
  background: var(--tm-bg-3, #f6f1ea);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.product-modal-img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 64px);
  object-fit: contain;
  display: block;
}
.product-modal-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
}
.product-modal-tag {
  display: inline-block;
  align-self: flex-start;
  color: var(--tm-brand-champagne);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--tm-line-1);
  border-radius: 2px;
}
.product-modal-title {
  font-family: var(--tm-font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--tm-fg-1);
  margin: 4px 0 0;
}
.product-modal-meta {
  font-size: 12px;
  color: var(--tm-fg-3);
  letter-spacing: 0.04em;
  margin: 0;
}
.product-modal-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--tm-fg-2);
  margin: 8px 0 0;
}
.product-modal-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--tm-brand-champagne);
  color: #0b0b0d;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap var(--tm-ease) 200ms, background var(--tm-ease) 200ms;
  align-self: stretch;
}
.product-modal-cta:hover { gap: 16px; }
.product-modal-cta svg { width: 14px; height: 14px; stroke-width: 2; }
.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 13, 0.7);
  border: 1px solid var(--tm-line-1);
  color: var(--tm-fg-1);
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background var(--tm-ease) 200ms, border-color var(--tm-ease) 200ms, color var(--tm-ease) 200ms;
}
.product-modal-close:hover {
  background: rgba(11, 11, 13, 0.9);
  border-color: var(--tm-brand-champagne);
  color: var(--tm-brand-champagne);
}
.product-modal-close svg { width: 18px; height: 18px; }
@keyframes tm-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes tm-modal-pop {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@media (max-width: 760px) {
  .product-modal { padding: 16px; }
  .product-modal-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100vh - 32px);
  }
  .product-modal-media { aspect-ratio: 4/3; max-height: 40vh; }
  .product-modal-img { max-height: 40vh; }
  .product-modal-body { padding: 24px; }
  .product-modal-title { font-size: 22px; }
}
