/* Timeless Listening — public site */
:root {
  --tl-navy: #0d0e11;
  --tl-navy-2: #17191e;
  --tl-navy-3: #24272e;
  --tl-gold: #c3c9d2;
  --tl-gold-2: #5f6772;
  --tl-gold-soft: #e6eaf0;
  --tl-cream: #fff;
  --tl-soft: #f3f4f6; /* for hover/active states that used to rely on the cream fill */
  --tl-star: #d9ae4e; /* rating stars keep a warm gold */
  --tl-ink: #121316;
  --tl-muted: #5c626c;
  --tl-line: #e3e5e9;
  --tl-white: #fff;
  --tl-ease: cubic-bezier(.22, .61, .36, 1);
  --tl-serif: "Lora", Georgia, "Times New Roman", serif;
  --tl-caps: "Cinzel", "Lora", Georgia, serif;
  --tl-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --tl-wrap: 86%;
  --tl-sec-pad: 80px;
  --tl-sec-gap: 40px; /* 80 pad + 40 gap + 80 pad = 200px between sections */
  --tl-hero-gap: 120px; /* 120 + 80 pad = 200px after the banner */
  --tl-header-h: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  background: var(--tl-white);
  color: var(--tl-ink);
  font-family: var(--tl-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.5;
  overflow-x: hidden;
  animation: tl-page-fade 1s ease-out;
}
@keyframes tl-page-fade { from { opacity: 0; } to { opacity: 1; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--tl-gold); outline-offset: 3px; }
.tl-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.tl-skip { position: fixed; left: 12px; top: 12px; transform: translateY(-200%); white-space: nowrap; z-index: 300; background: var(--tl-gold); color: var(--tl-navy); padding: 10px 16px; font-weight: 500; }
.tl-skip:focus { transform: none; }

/* ---------- Type scale (desktop) ---------- */
.tl-display, .tl-title, .tl-heading { font-family: var(--tl-serif); font-weight: 500; margin: 0; overflow-wrap: anywhere; }
.tl-display { font-size: 56px; letter-spacing: 0; line-height: 1.30; max-width: 18ch; }
.tl-title { font-size: 42px; letter-spacing: 0; line-height: 1.28; max-width: 24ch; }
.tl-heading { font-size: 36px; letter-spacing: 0; line-height: 1.28; }
.tl-body { font-size: 15px; font-weight: 300; letter-spacing: -0.03em; line-height: 1.50; }
.tl-caption { font-size: 14px; font-weight: 300; letter-spacing: -0.03em; line-height: 1.47; }
.tl-eyebrow { font-family: var(--tl-caps); font-size: 13px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--tl-gold-2); margin: 0 0 14px; }
.tl-center { text-align: center; }
.tl-center .tl-title, .tl-center .tl-display { margin-inline: auto; }

/* ---------- Layout ---------- */
.tl-wrap { width: var(--tl-wrap); margin-inline: auto; }
.tl-sec { padding-block: var(--tl-sec-pad); margin-block-end: var(--tl-sec-gap); }
.tl-sec:last-child { margin-block-end: 0; }
.tl-sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.tl-sec__head.tl-center { flex-direction: column; align-items: center; }
.tl-sec__lead { max-width: 62ch; color: var(--tl-muted); margin: 14px 0 0; }
.tl-center .tl-sec__lead { margin-inline: auto; }
.tl-ornament { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--tl-gold); margin: 18px auto 0; }
.tl-ornament::before, .tl-ornament::after { content: ""; width: 64px; height: 1px; background: currentColor; }
.tl-ornament i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Buttons (btn4 fill effect) ---------- */
.tl-btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 30px;
  border: 1px solid var(--tl-gold); background: transparent; color: var(--tl-gold-2);
  font-family: var(--tl-caps); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  transition: color .3s;
}
.tl-btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--tl-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.tl-btn:hover, .tl-btn:focus-visible { color: var(--tl-navy); }
.tl-btn:hover::before, .tl-btn:focus-visible::before { transform: scaleX(1); }
.tl-btn--light { color: var(--tl-gold-soft); border-color: var(--tl-gold); }
.tl-btn--solid { background: var(--tl-gold); color: var(--tl-navy); }
.tl-btn--solid::before { background: var(--tl-navy); }
.tl-btn--solid:hover, .tl-btn--solid:focus-visible { color: var(--tl-gold-soft); }
.tl-btn[disabled], .tl-btn[aria-busy="true"] { cursor: progress; opacity: .85; }
.tl-btn svg { width: 16px; height: 16px; flex: none; }

/* Loading dots (ls2) */
.tl-dots { display: inline-flex; gap: 8px; }
.tl-dots i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: tl-bounce 1.4s infinite ease-in-out both; }
.tl-dots i:nth-child(1) { animation-delay: -.32s; }
.tl-dots i:nth-child(2) { animation-delay: -.16s; }
@keyframes tl-bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }
.tl-loading { display: flex; justify-content: center; padding: 48px 0; color: var(--tl-gold); grid-column: 1 / -1; }
.tl-loading .tl-dots i { width: 12px; height: 12px; }

/* ---------- Header (transparent over banner, hides on scroll down) ---------- */
.tl-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  color: var(--tl-white);
  transition: transform .45s var(--tl-ease), background-color .35s ease, box-shadow .35s ease;
}
.tl-header.is-solid { background: rgba(13, 14, 17, .96); box-shadow: 0 6px 24px rgba(4, 12, 26, .25); }
.tl-header.is-hidden { transform: translateY(-100%); }
.tl-header__bar { width: var(--tl-wrap); margin-inline: auto; height: var(--tl-header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; transition: height .35s ease; }
.tl-header.is-solid .tl-header__bar { height: 76px; }
.tl-nav { display: flex; gap: 34px; align-items: center; }
.tl-nav--right { justify-content: flex-end; }
.tl-nav a { position: relative; font-family: var(--tl-caps); font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; padding: 8px 0; white-space: nowrap; color: rgba(255, 255, 255, .9); transition: color .25s; }
.tl-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--tl-gold); transform: scaleX(0); transition: transform .3s var(--tl-ease); }
.tl-nav a:hover, .tl-nav a[aria-current="page"] { color: var(--tl-gold-soft); }
.tl-nav a:hover::after, .tl-nav a[aria-current="page"]::after { transform: scaleX(1); }
.tl-brand { display: block; justify-self: center; }
.tl-brand img { width: 78px; height: 78px; transition: width .35s ease, height .35s ease; filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .35)); }
.tl-header.is-solid .tl-brand img { width: 60px; height: 60px; }
.tl-brand--m { display: none; }
.tl-burger { display: none; }

/* Mobile drawer (nav1 hamburger) */
.tl-drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; pointer-events: none; overflow: hidden; }
.tl-drawer.is-open { visibility: visible; pointer-events: auto; }
.tl-drawer__scrim { position: absolute; inset: 0; background: rgba(4, 10, 20, .55); opacity: 0; transition: opacity .3s; }
.tl-drawer.is-open .tl-drawer__scrim { opacity: 1; }
.tl-drawer__panel { position: absolute; top: 0; right: 0; height: 100dvh; width: min(320px, 86vw); background: var(--tl-navy); color: var(--tl-white); padding: 96px 28px 28px; overflow-y: auto; transform: translateX(100%); transition: transform .35s var(--tl-ease); display: flex; flex-direction: column; gap: 4px; }
.tl-drawer.is-open .tl-drawer__panel { transform: translateX(0); }
.tl-drawer__panel a { font-family: var(--tl-caps); font-size: 15px; letter-spacing: .12em; text-transform: uppercase; padding: 14px 0; border-bottom: 1px solid rgba(195, 201, 210, .22); }
.tl-drawer__panel a[aria-current="page"] { color: var(--tl-gold); }

/* ---------- Splash intro ---------- */
.tl-splash { display: none; }
html.tl-splash-on .tl-splash { display: block; position: fixed; inset: 0; z-index: 1000; pointer-events: auto; }
html.tl-splash-on { overflow: hidden; }
.tl-splash__half { position: absolute; top: 0; bottom: 0; width: 50%; overflow: hidden; background: radial-gradient(120% 90% at 50% 50%, #12305a 0%, var(--tl-navy) 55%, #050d1b 100%); transition: transform 1.25s cubic-bezier(.72, 0, .18, 1); will-change: transform; }
.tl-splash__half--l { left: 0; background-size: 200% 100%; background-position: left center; }
.tl-splash__half--r { right: 0; background-size: 200% 100%; background-position: right center; }
.tl-splash__stage { position: absolute; top: 0; width: 100vw; height: 100%; display: grid; place-items: center; }
.tl-splash__half--l .tl-splash__stage { left: 0; }
.tl-splash__half--r .tl-splash__stage { right: 0; }
.tl-splash__seam { position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(transparent, var(--tl-gold), transparent); opacity: 0; transition: opacity .4s; }
.tl-splash__half--l .tl-splash__seam { right: 0; }
.tl-splash__half--r .tl-splash__seam { left: 0; }
.tl-splash__logo { width: min(300px, 62vw); aspect-ratio: 1; position: relative; opacity: 0; transform: scale(.86); animation: tl-splash-logo 1.3s var(--tl-ease) .15s forwards; }
.tl-splash__logo img { width: 100%; height: 100%; object-fit: contain; }
.tl-splash__tag { position: absolute; left: 0; right: 0; bottom: 14vh; text-align: center; font-family: var(--tl-caps); font-size: 13px; letter-spacing: .32em; color: var(--tl-gold-soft); opacity: 0; transform: translateY(12px); animation: tl-splash-tag .9s var(--tl-ease) 1s forwards; }
@keyframes tl-splash-logo { to { opacity: 1; transform: scale(1); } }
@keyframes tl-splash-tag { to { opacity: 1; transform: none; } }
.tl-splash.is-opening .tl-splash__seam { opacity: 1; }
.tl-splash.is-opening .tl-splash__half--l { transform: translateX(-100%); }
.tl-splash.is-opening .tl-splash__half--r { transform: translateX(100%); }

/* ---------- Hero (cs1 fade carousel) ---------- */
.tl-hero { position: relative; min-height: 100svh; height: 100svh; margin-block-end: var(--tl-hero-gap); color: var(--tl-white); background: var(--tl-navy); overflow: hidden; }
@supports (height: 100dvh) { .tl-hero { height: 100dvh; min-height: 100svh; } }
.tl-hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s, visibility 0s .5s; }
.tl-hero__slide.is-active { opacity: 1; visibility: visible; transition: opacity .5s, visibility 0s; }
.tl-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s linear; }
.tl-hero__slide.is-active .tl-hero__img { transform: scale(1); }
.tl-hero__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 13, 27, .72) 0%, rgba(5, 13, 27, .45) 42%, rgba(5, 13, 27, .78) 100%); }
.tl-hero__body { position: relative; z-index: 2; height: 100%; width: var(--tl-wrap); margin-inline: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-top: var(--tl-header-h); }
.tl-hero .tl-eyebrow { color: var(--tl-gold); }
.tl-hero .tl-display { color: var(--tl-white); margin-inline: auto; }
.tl-hero__text { max-width: 60ch; margin: 22px auto 34px; color: rgba(255, 255, 255, .86); }
.tl-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.tl-hero__arrow { position: absolute; top: 50%; z-index: 3; width: 48px; height: 48px; margin-top: -24px; display: grid; place-items: center; background: rgba(13, 14, 17, .55); border: 1px solid rgba(195, 201, 210, .55); color: var(--tl-gold-soft); transition: background-color .25s, color .25s; }
.tl-hero__arrow:hover { background: var(--tl-gold); color: var(--tl-navy); }
.tl-hero__arrow--prev { left: 2.5%; }
.tl-hero__arrow--next { right: 2.5%; }
.tl-hero__arrow svg { width: 20px; height: 20px; }
.tl-hero__dots { position: absolute; z-index: 3; left: 50%; bottom: 32px; transform: translateX(-50%); display: flex; gap: 6px; }
.tl-hero__dots button { width: 28px; height: 28px; padding: 0; border: 0; background: none; display: grid; place-items: center; }
.tl-hero__dots button::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .5); transition: background-color .25s, transform .25s; }
.tl-hero__dots button[aria-current="true"]::before { background: var(--tl-gold); transform: scale(1.2); }
.tl-hero__scroll { position: absolute; z-index: 3; right: 2.5%; bottom: 36px; font-family: var(--tl-caps); font-size: 11px; letter-spacing: .3em; color: rgba(255, 255, 255, .7); writing-mode: vertical-rl; }

/* Text reveal (ta1) — letters rise, words never break */
.tl-reveal .tl-w { display: inline-block; white-space: nowrap; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.tl-reveal .tl-l { display: inline-block; transform: translateY(110%); }
.tl-reveal.is-play .tl-l { animation: tl-reveal .8s cubic-bezier(.22,.61,.36,1) forwards; }
@keyframes tl-reveal { to { transform: translateY(0); } }

/* Page hero for inner pages */
.tl-phero { position: relative; min-height: 58svh; margin-block-end: var(--tl-hero-gap); color: var(--tl-white); background: var(--tl-navy); display: flex; align-items: center; overflow: hidden; }
.tl-phero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.tl-phero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 13, 27, .5), rgba(5, 13, 27, .85)); }
.tl-phero__body { position: relative; z-index: 2; width: var(--tl-wrap); margin-inline: auto; text-align: center; padding-top: var(--tl-header-h); }
.tl-phero .tl-display { margin-inline: auto; }
.tl-phero .tl-eyebrow { color: var(--tl-gold); }
.tl-phero__lead { max-width: 64ch; margin: 18px auto 0; color: rgba(255, 255, 255, .84); }
.tl-crumbs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.tl-crumbs a:hover { color: var(--tl-gold); }
.tl-crumbs span[aria-hidden] { color: var(--tl-gold); }

/* ---------- Scroll reveal (sa1 stagger fade) ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .5s ease-out, transform .5s ease-out; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }
[data-reveal-img] { opacity: 0; transform: scale(.92); transition: opacity 1s ease-out, transform 1s ease-out; }
[data-reveal-img].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal-img] { opacity: 1; transform: none; }

/* ---------- Welcome / formats ---------- */
.tl-welcome__text { max-width: 76ch; margin: 22px auto 0; color: var(--tl-muted); }
.tl-formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.tl-format { text-align: center; padding: 36px 26px; border: 1px solid var(--tl-line); background: var(--tl-white); transition: transform .3s, box-shadow .3s; }
.tl-format:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(13, 14, 17, .1); }
.tl-format__icon { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--tl-navy); color: var(--tl-gold); }
.tl-format__icon svg { width: 28px; height: 28px; }
.tl-format h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 22px; line-height: 1.3; margin: 0 0 8px; letter-spacing: 0; }
.tl-format p { margin: 0; color: var(--tl-muted); }

/* ---------- Product cards (4 / 3 / 2) ---------- */
.tl-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 24px; }
.tl-card { position: relative; display: flex; flex-direction: column; background: var(--tl-white); border: 1px solid var(--tl-line); text-align: center; transition: transform .3s, box-shadow .3s, opacity .3s; }
.tl-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(13, 14, 17, .14); }
.tl-card__media { position: relative; display: block; aspect-ratio: 16 / 9; background: var(--tl-navy); }
.tl-card__clip { position: absolute; inset: 0; overflow: hidden; }
.tl-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.tl-card:hover .tl-card__media img { transform: scale(1.15); }
.tl-card__plus { position: absolute; right: 14px; bottom: -18px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--tl-navy); color: var(--tl-gold); border: 1px solid var(--tl-gold); transition: background-color .25s, color .25s, transform .3s; }
.tl-card:hover .tl-card__plus { background: var(--tl-gold); color: var(--tl-navy); transform: rotate(90deg); }
.tl-card__plus svg { width: 16px; height: 16px; }
.tl-card__body { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 28px 18px 24px; }
.tl-card__cat { font-family: var(--tl-caps); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--tl-gold-2); }
.tl-card__title { font-family: var(--tl-serif); font-weight: 500; font-size: 20px; line-height: 1.3; letter-spacing: 0; margin: 0; overflow-wrap: anywhere; }
.tl-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.tl-card__author { font-family: var(--tl-serif); font-style: italic; color: var(--tl-muted); font-size: 15px; letter-spacing: 0; }
.tl-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 400; letter-spacing: 0; padding: 3px 10px; border-radius: 99px; background: var(--tl-cream); color: var(--tl-navy-3); white-space: nowrap; }
.tl-chip svg { width: 12px; height: 12px; color: var(--tl-gold-2); }
.tl-grid__more { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; }
.tl-card.is-hide { opacity: 0; transform: scale(.8); }
.tl-empty { grid-column: 1 / -1; text-align: center; padding: 56px 16px; color: var(--tl-muted); border: 1px dashed var(--tl-line); }

/* ---------- New arrivals (events layout) ---------- */
.tl-arrivals { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; }
.tl-feature { position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--tl-navy); width: 100%; color: var(--tl-white); transition: box-shadow .3s; }
.tl-feature:hover { box-shadow: 0 20px 40px rgba(13, 14, 17, .18); }
.tl-feature__media { display: block; aspect-ratio: 16 / 9; max-height: 60vh; overflow: hidden; }
.tl-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--tl-ease); }
.tl-feature:hover img { transform: scale(1.05); }
.tl-feature__body { position: relative; padding: 24px 28px 28px; border-top: 1px solid var(--tl-gold); }
.tl-feature__badge { position: absolute; top: -14px; left: 28px; display: inline-block; font-family: var(--tl-caps); font-size: 11px; letter-spacing: .16em; background: var(--tl-gold); color: var(--tl-navy); padding: 5px 10px; }
.tl-feature h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 28px; line-height: 1.25; margin: 6px 0 8px; letter-spacing: 0; }
.tl-feature p { margin: 0; color: rgba(255, 255, 255, .82); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tl-swipe { display: none; }
.tl-alist { display: flex; flex-direction: column; gap: 22px; }
.tl-aitem { display: grid; grid-template-columns: 76px 1fr; gap: 20px; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--tl-line); }
.tl-aitem:last-child { border-bottom: 0; padding-bottom: 0; }
.tl-date { width: 76px; height: 76px; background: var(--tl-navy); color: var(--tl-white); display: flex; flex-direction: column; align-items: center; justify-content: center; outline: 1px solid var(--tl-gold); outline-offset: -6px; }
.tl-date b { font-family: var(--tl-serif); font-weight: 500; font-size: 26px; line-height: 1; letter-spacing: 0; }
.tl-date span { font-size: 12px; margin-top: 4px; color: var(--tl-gold-soft); letter-spacing: .02em; }
.tl-aitem h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 20px; line-height: 1.3; margin: 0 0 6px; letter-spacing: 0; }
.tl-aitem h3 a { background: linear-gradient(var(--tl-gold), var(--tl-gold)) left bottom / 0 1px no-repeat; transition: background-size .35s var(--tl-ease); }
.tl-aitem h3 a:hover { background-size: 100% 1px; }
.tl-aitem p { margin: 0; color: var(--tl-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tl-aitem small { display: block; margin-top: 6px; font-family: var(--tl-serif); font-style: italic; color: var(--tl-gold-2); font-size: 14px; letter-spacing: 0; }

/* ---------- Privacy notice band ---------- */
.tl-notice { position: relative; overflow: hidden; color: var(--tl-white); background: var(--tl-navy); }
.tl-notice__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.tl-notice::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13, 14, 17, .96) 30%, rgba(13, 14, 17, .7)); z-index: 1; }
.tl-notice__inner { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; padding: 64px 7%; }
.tl-notice__icon { width: 108px; height: 108px; border-radius: 50%; border: 1px solid var(--tl-gold); display: grid; place-items: center; color: var(--tl-gold); position: relative; }
.tl-notice__icon::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; border: 1px dashed rgba(195, 201, 210, .5); }
.tl-notice__icon svg { width: 44px; height: 44px; }
.tl-notice .tl-eyebrow { color: var(--tl-gold); }
.tl-notice h2 { font-family: var(--tl-caps); font-weight: 600; font-size: 34px; line-height: 1.25; letter-spacing: .06em; margin: 0 0 14px; text-transform: uppercase; }
.tl-notice__text { max-width: 78ch; margin: 0; color: rgba(255, 255, 255, .88); font-size: 17px; line-height: 1.6; letter-spacing: -0.01em; }
.tl-notice__text a { color: var(--tl-gold); text-decoration: underline; text-underline-offset: 3px; }
.tl-notice__text a:hover { color: var(--tl-gold-soft); }
.tl-trust { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 22px 0 0; padding: 0; list-style: none; }
.tl-trust li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--tl-gold-soft); }
.tl-trust svg { width: 16px; height: 16px; color: var(--tl-gold); }

/* ---------- Genre tiles ---------- */
.tl-genres { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.tl-genre { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--tl-navy); color: var(--tl-white); text-align: center; }
.tl-genre img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.tl-genre:hover img { transform: scale(1.15); }
.tl-genre::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 13, 27, .2), rgba(5, 13, 27, .86)); }
.tl-genre__body { position: absolute; inset: auto 0 0; z-index: 2; padding: 20px 16px; }
.tl-genre h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 21px; line-height: 1.3; margin: 0; letter-spacing: 0; }
.tl-genre span { display: block; margin-top: 4px; font-size: 13px; color: var(--tl-gold-soft); }

/* ---------- Authors marquee (partners) ---------- */
.tl-marquee { position: relative; overflow: hidden; margin-top: 8px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tl-marquee__track { display: flex; width: max-content; animation: tl-marquee 60s linear infinite; }
.tl-marquee.is-paused .tl-marquee__track { animation-play-state: paused; }
.tl-marquee__group { display: flex; align-items: center; flex: none; }
.tl-marquee__item { display: flex; align-items: center; gap: 18px; padding-inline: 28px; white-space: nowrap; }
.tl-marquee__name { font-family: var(--tl-serif); font-style: italic; font-size: 30px; letter-spacing: 0; color: var(--tl-navy); line-height: 1.3; }
.tl-marquee__star { color: var(--tl-gold); width: 18px; height: 18px; flex: none; }
@keyframes tl-marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* ---------- Request band + footer ---------- */
.tl-footer { background: #121317; color: rgba(255, 255, 255, .78); }
.tl-request { padding: 56px 0 48px; text-align: center; border-bottom: 1px solid rgba(195, 201, 210, .25); }
.tl-request h2 { font-family: var(--tl-serif); font-weight: 500; font-size: 36px; line-height: 1.28; margin: 0 0 8px; color: var(--tl-white); letter-spacing: 0; }
.tl-request p { margin: 0 auto 28px; max-width: 60ch; }
.tl-request__form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; max-width: 880px; margin: 0 auto; text-align: left; }
.tl-field { position: relative; }
.tl-input { width: 100%; min-height: 50px; padding: 12px 16px; background: var(--tl-white); color: var(--tl-ink); border: 1px solid transparent; border-radius: 0; font-size: 15px; transition: border-color .2s, box-shadow .2s; }
.tl-input::placeholder { color: #8a909b; }
.tl-input:focus { outline: none; border-color: var(--tl-gold); box-shadow: 0 0 0 3px rgba(195, 201, 210, .3); }
.tl-field.is-invalid .tl-input { border-color: #d9534f; animation: tl-shake .35s; }
.tl-field.is-valid .tl-input { border-color: #3f9b6e; }
.tl-err { display: block; min-height: 0; font-size: 13px; color: #f0a19e; margin-top: 6px; }
@keyframes tl-shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.tl-footer .tl-btn { color: var(--tl-white); min-height: 50px; }
.tl-footer .tl-btn:hover { color: var(--tl-navy); }
.tl-footer__cols { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 48px; }
.tl-footer__logo { width: 210px; margin-bottom: 20px; }
.tl-footer__about { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .78); margin: 0; }
.tl-footer h3 { font-family: var(--tl-caps); font-weight: 600; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-white); margin: 6px 0 20px; }
.tl-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.tl-footer__cols a { transition: color .2s; }
.tl-footer__cols a:hover { color: var(--tl-gold); }
.tl-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.tl-footer__contact svg { width: 16px; height: 16px; margin-top: 3px; color: var(--tl-gold); flex: none; }
.tl-social { display: flex; gap: 10px; margin-top: 16px; }
.tl-social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(195, 201, 210, .5); color: var(--tl-gold-soft); transition: background-color .25s, color .25s; }
.tl-social a:hover { background: var(--tl-gold); color: var(--tl-navy); }
.tl-social svg { width: 17px; height: 17px; }
.tl-footer__join { font-family: var(--tl-serif); font-size: 17px; color: var(--tl-white); letter-spacing: 0; margin: 18px 0 0; line-height: 1.4; }
.tl-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .55); }
.tl-totop { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 46px; height: 46px; display: grid; place-items: center; background: var(--tl-navy); color: var(--tl-gold); border: 1px solid var(--tl-gold); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .3s, transform .3s, background-color .25s; }
.tl-totop.is-on { opacity: 1; transform: none; pointer-events: auto; }
.tl-totop:hover { background: var(--tl-gold); color: var(--tl-navy); }
.tl-totop svg { width: 18px; height: 18px; }

/* ---------- Toast (m3) + modal (m1) ---------- */
.tl-toast { position: fixed; right: 20px; bottom: 20px; z-index: 400; max-width: min(420px, calc(100vw - 40px)); padding: 16px 20px 16px 18px; display: flex; gap: 12px; align-items: flex-start; background: var(--tl-navy); color: var(--tl-white); border-left: 3px solid var(--tl-gold); box-shadow: 0 16px 40px rgba(0, 0, 0, .3); transform: translateY(100px); opacity: 0; transition: transform .3s, opacity .3s; pointer-events: none; }
.tl-toast.is-show { transform: none; opacity: 1; pointer-events: auto; }
.tl-toast svg { width: 22px; height: 22px; color: var(--tl-gold); flex: none; margin-top: 1px; }
.tl-toast.is-error { border-left-color: #d9534f; }
.tl-toast.is-error svg { color: #f0a19e; }

.tl-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(4, 10, 20, .6); opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s .3s; }
.tl-modal.is-show { opacity: 1; visibility: visible; transition: opacity .3s, visibility 0s; }
.tl-modal__box { position: relative; background: var(--tl-white); width: min(680px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; overscroll-behavior: contain; transform: scale(.9); transition: transform .3s; }
.tl-modal.is-show .tl-modal__box { transform: scale(1); }
.tl-modal__close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 40px; height: 40px; border: 0; background: rgba(255, 255, 255, .9); display: grid; place-items: center; color: var(--tl-navy); }
.tl-modal__close svg { width: 20px; height: 20px; }
.tl-modal--img .tl-modal__box { width: min(1200px, 100%); background: #000; }
.tl-modal--img img { width: 100%; height: auto; max-height: calc(100dvh - 40px); object-fit: contain; }

/* ---------- Catalog ---------- */
.tl-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.tl-tab { padding: 8px 18px; border: 1px solid var(--tl-line); background: var(--tl-white); border-radius: 20px; font-size: 14px; font-weight: 400; transition: background-color .3s, color .3s, border-color .3s; }
.tl-tab:hover { border-color: var(--tl-gold); }
.tl-tab[aria-pressed="true"] { background: var(--tl-navy); border-color: var(--tl-navy); color: var(--tl-white); }
.tl-tab small { color: var(--tl-gold-2); margin-left: 4px; }
.tl-tab[aria-pressed="true"] small { color: var(--tl-gold); }
.tl-tools { display: flex; gap: 12px; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 36px; padding: 16px; background: var(--tl-cream); }
.tl-search { position: relative; flex: 1 1 320px; max-width: 520px; }
.tl-search svg { position: absolute; left: 14px; top: 50%; width: 18px; height: 18px; margin-top: -9px; color: var(--tl-gold-2); }
.tl-search .tl-input { padding-left: 42px; border-color: var(--tl-line); }
.tl-select { min-height: 50px; padding: 0 40px 0 14px; border: 1px solid var(--tl-line); background: var(--tl-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23a8843f' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right 14px center; appearance: none; border-radius: 0; font-size: 14px; }
.tl-count { font-size: 14px; color: var(--tl-muted); }
.tl-activetag { display: inline-flex; align-items: center; gap: 8px; }
.tl-activetag button { border: 0; background: none; color: var(--tl-gold-2); text-decoration: underline; font-size: 13px; }

/* ---------- Product detail ---------- */
.tl-pd { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: start; }
.tl-pd__left { min-width: 0; }
.tl-pd__left .tl-sample { margin: 18px 0 0; }
.tl-pd__media { position: relative; aspect-ratio: 16 / 9; max-height: 60vh; background: var(--tl-navy); overflow: hidden; }
.tl-pd__media img { width: 100%; height: 100%; object-fit: cover; }
.tl-pd__zoom { z-index: 2; }
.tl-pd__zoom { position: absolute; left: 14px; bottom: 14px; width: 44px; height: 44px; border: 0; background: rgba(255, 255, 255, .92); display: grid; place-items: center; color: var(--tl-navy); transition: background-color .25s; }
.tl-pd__zoom:hover { background: var(--tl-gold); }
.tl-pd__zoom svg { width: 20px; height: 20px; }
.tl-pd .tl-heading { text-transform: uppercase; letter-spacing: .02em; }
.tl-rating { display: flex; align-items: center; gap: 10px; margin: 12px 0 0; }
.tl-rating__stars { position: relative; display: inline-block; line-height: 0; }
.tl-rating__base, .tl-rating__fill { display: flex; gap: 3px; white-space: nowrap; }
.tl-rating__base { color: #e2e4e8; }
.tl-rating__fill { position: absolute; left: 0; top: 0; overflow: hidden; color: var(--tl-star); }
.tl-rating svg { width: 18px; height: 18px; flex: none; }
.tl-rating__num { font-size: 14px; font-weight: 500; color: var(--tl-muted); }
.tl-pd__by { font-family: var(--tl-serif); font-style: italic; font-size: 18px; color: var(--tl-gold-2); margin: 8px 0 0; letter-spacing: 0; }
.tl-spec { width: 100%; border-collapse: collapse; margin: 26px 0 28px; font-size: 15px; }
.tl-spec th, .tl-spec td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--tl-line); vertical-align: top; }
.tl-spec th { width: 48%; font-weight: 500; color: var(--tl-ink); padding-right: 16px; }
.tl-spec td { color: var(--tl-muted); font-weight: 400; }
.tl-spec td b { font-weight: 600; color: var(--tl-navy); }
.tl-buy { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.tl-buy .tl-btn { min-width: 280px; min-height: 56px; font-size: 14px; }
.tl-buy__row { display: flex; gap: 12px; align-items: stretch; width: 100%; }
.tl-buy__row--2 > * { flex: 1 1 0; min-width: 0; }
.tl-buy__row--2 .tl-btn { min-width: 0; padding-inline: 18px; }
.tl-buy__row .tl-twin { margin: 0; min-height: 56px; justify-content: center; text-align: left; }
.tl-form__privacy { margin: 14px 0 0; font-size: 13px; font-style: italic; color: var(--tl-muted); text-align: center; }
.tl-buy__note { display: flex; gap: 8px; font-size: 13px; color: var(--tl-muted); max-width: 52ch; }
.tl-buy__note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--tl-gold-2); }
/* CTA pulse: one ring + light sweep every 2s */
.tl-buy__cta { animation: tl-cta-pulse 2s ease-out infinite; }
.tl-buy__cta::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%; z-index: 1; pointer-events: none; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent); transform: skewX(-20deg); animation: tl-cta-shine 2s ease-in-out infinite; }
@keyframes tl-cta-pulse { 0% { box-shadow: 0 0 0 0 rgba(195, 201, 210, .6); } 70%, 100% { box-shadow: 0 0 0 14px rgba(195, 201, 210, 0); } }
@keyframes tl-cta-shine { 0% { left: -60%; } 45%, 100% { left: 130%; } }
.tl-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; align-items: center; }
.tl-tags a { font-size: 13px; padding: 4px 12px; border: 1px solid var(--tl-line); transition: border-color .2s, color .2s; }
.tl-tags a:hover { border-color: var(--tl-gold); color: var(--tl-gold-2); }
.tl-share { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 14px; color: var(--tl-muted); }
.tl-share a, .tl-share button { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--tl-line); background: var(--tl-white); color: var(--tl-navy); transition: background-color .2s, color .2s, border-color .2s; }
.tl-share a:hover, .tl-share button:hover { background: var(--tl-navy); border-color: var(--tl-navy); color: var(--tl-gold); }
.tl-share svg { width: 15px; height: 15px; }
.tl-pd__desc { max-width: 78ch; margin-inline: auto; color: var(--tl-muted); font-size: 17px; line-height: 1.7; letter-spacing: -0.01em; }
.tl-pd__desc p { margin: 0 0 1em; }

/* ---------- Forms (affiliate) ---------- */
.tl-form { max-width: 860px; margin-inline: auto; }
.tl-form fieldset { border: 0; margin: 0 0 44px; padding: 0; }
.tl-form legend { display: flex; align-items: center; gap: 14px; font-family: var(--tl-serif); font-weight: 500; font-size: 26px; line-height: 1.3; color: var(--tl-navy); margin-bottom: 22px; letter-spacing: 0; padding: 0; }
.tl-form legend span { width: 38px; height: 38px; border-radius: 50%; background: var(--tl-navy); color: var(--tl-gold); display: grid; place-items: center; font-size: 17px; flex: none; }
.tl-form label.tl-lbl, .tl-form .tl-lbl { display: block; font-weight: 500; font-size: 15px; margin-bottom: 8px; color: var(--tl-ink); }
.tl-form .tl-lbl em { color: #c0392b; font-style: normal; }
.tl-form .tl-lbl small { font-weight: 300; color: var(--tl-muted); }
.tl-form .tl-input { border-color: #d8d2c6; }
.tl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.tl-row--1 { grid-template-columns: 1fr; }
.tl-form .tl-err { color: #c0392b; }
.tl-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 8px; }
.tl-check { position: relative; display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--tl-line); cursor: pointer; transition: border-color .2s, background-color .2s; }
.tl-check:hover { border-color: var(--tl-gold); }
.tl-check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tl-check__box { width: 20px; height: 20px; flex: none; margin-top: 1px; border: 2px solid #b9b2a4; border-radius: 4px; display: grid; place-items: center; transition: background-color .2s, border-color .2s; }
.tl-check__box svg { width: 12px; height: 12px; color: var(--tl-white); transform: scale(0); transition: transform .2s; }
.tl-check input:checked + .tl-check__box { background: var(--tl-navy); border-color: var(--tl-navy); }
.tl-check input:checked + .tl-check__box svg { transform: scale(1); }
.tl-check input:focus-visible + .tl-check__box { outline: 2px solid var(--tl-gold); outline-offset: 2px; }
.tl-check:has(input:checked) { border-color: var(--tl-navy); background: var(--tl-soft); }
.tl-check--agree { border-color: var(--tl-gold); background: #fffdf8; }
.tl-form__submit { display: flex; justify-content: center; margin-top: 12px; }
.tl-form__submit .tl-btn { min-width: 320px; min-height: 58px; font-size: 14px; }
.tl-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0 auto 64px; max-width: 1100px; }
.tl-perk { text-align: center; padding: 30px 22px; background: var(--tl-cream); }
.tl-perk b { display: block; font-family: var(--tl-serif); font-weight: 500; font-size: 42px; line-height: 1.1; color: var(--tl-gold-2); letter-spacing: 0; }
.tl-perk span { display: block; margin-top: 8px; color: var(--tl-muted); }
.tl-mail { padding: 40px 40px 34px; }
.tl-mail__head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--tl-line); }
.tl-mail__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--tl-navy); color: var(--tl-gold); display: grid; place-items: center; flex: none; }
.tl-mail__icon svg { width: 24px; height: 24px; }
.tl-mail__head h2 { font-family: var(--tl-serif); font-weight: 500; font-size: 24px; line-height: 1.3; margin: 0; letter-spacing: 0; }
.tl-mail__head p { margin: 2px 0 0; font-size: 14px; color: var(--tl-muted); }
.tl-mail__meta { font-size: 14px; background: var(--tl-cream); padding: 12px 16px; margin-bottom: 18px; }
.tl-mail__meta div + div { margin-top: 4px; }
.tl-mail__body { font-size: 15px; line-height: 1.65; color: var(--tl-ink); }
.tl-mail__body p { margin: 0 0 12px; }
.tl-mail__body h4 { font-family: var(--tl-serif); font-size: 17px; font-weight: 600; margin: 18px 0 6px; letter-spacing: 0; }
.tl-mail__body ul { margin: 0 0 12px; padding-left: 20px; }
.tl-mail__foot { display: flex; justify-content: flex-end; margin-top: 18px; }

/* ---------- Info pages ---------- */
.tl-info { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 56px; align-items: start; }
.tl-toc { position: sticky; top: 100px; padding: 22px; background: var(--tl-cream); }
.tl-toc h2 { font-family: var(--tl-caps); font-size: 13px; letter-spacing: .16em; margin: 0 0 12px; color: var(--tl-gold-2); font-weight: 600; }
.tl-toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.tl-toc a { display: block; padding: 8px 10px; border-left: 2px solid transparent; font-size: 14px; transition: border-color .2s, background-color .2s; }
.tl-toc a:hover, .tl-toc a.is-active { border-left-color: var(--tl-gold); background: var(--tl-white); }
.tl-doc section { scroll-margin-top: 110px; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--tl-line); }
.tl-doc section:last-child { border-bottom: 0; margin-bottom: 0; }
.tl-doc h2 { font-family: var(--tl-serif); font-weight: 500; font-size: 36px; line-height: 1.28; margin: 0 0 16px; letter-spacing: 0; }
.tl-doc h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 21px; margin: 24px 0 8px; letter-spacing: 0; }
.tl-doc p, .tl-doc li { color: var(--tl-muted); max-width: 76ch; }
.tl-doc a { color: var(--tl-gold-2); text-decoration: underline; text-underline-offset: 3px; }
.tl-steps { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; counter-reset: s; }
.tl-steps li { position: relative; padding: 20px 20px 20px 66px; border: 1px solid var(--tl-line); counter-increment: s; }
.tl-steps li::before { content: counter(s); position: absolute; left: 18px; top: 18px; width: 34px; height: 34px; border-radius: 50%; background: var(--tl-navy); color: var(--tl-gold); display: grid; place-items: center; font-family: var(--tl-serif); font-size: 16px; }
.tl-steps b { display: block; color: var(--tl-ink); font-weight: 500; margin-bottom: 4px; }
.tl-acc { border: 1px solid var(--tl-line); margin-bottom: 8px; }
.tl-acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 18px; background: #fbf9f4; border: 0; text-align: left; font-weight: 500; font-size: 15px; }
.tl-acc__btn svg { width: 16px; height: 16px; color: var(--tl-gold-2); flex: none; transition: transform .3s; }
.tl-acc__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.tl-acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.tl-acc__panel > div { overflow: hidden; }
.tl-acc__panel.is-open { grid-template-rows: 1fr; }
.tl-acc__panel p { margin: 0; padding: 4px 18px 18px; }

/* ---------- Format cards (home welcome) ---------- */
.tl-formats--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; max-width: 1100px; margin-inline: auto; }
.tl-fcard { position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--tl-navy); color: var(--tl-white); text-align: left; transition: transform .3s, box-shadow .3s; }
.tl-fcard:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(13, 14, 17, .22); }
.tl-fcard__media { position: relative; aspect-ratio: 16 / 9; max-height: 60vh; overflow: hidden; }
.tl-fcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--tl-ease); }
.tl-fcard:hover .tl-fcard__media img { transform: scale(1.06); }
.tl-fcard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13, 14, 17, .05), rgba(13, 14, 17, .75)); }
.tl-fcard__icon { position: absolute; left: 28px; top: -32px; z-index: 2; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--tl-navy); color: var(--tl-gold); border: 1px solid var(--tl-gold); }
.tl-fcard__icon svg { width: 28px; height: 28px; }
.tl-fcard__body { position: relative; flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 48px 28px 28px; border-top: 1px solid var(--tl-gold); }
.tl-fcard__body h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 30px; line-height: 1.25; margin: 0; letter-spacing: 0; }
.tl-fcard__body p { margin: 0; color: rgba(255, 255, 255, .8); }
.tl-fcard__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tl-fcard__meta .tl-chip { background: rgba(195, 201, 210, .16); color: var(--tl-gold-soft); }
.tl-fcard__meta .tl-chip svg { color: var(--tl-gold); }
.tl-fcard__cta { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--tl-caps); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-gold); }
.tl-fcard__cta small { font-family: var(--tl-sans); font-size: 13px; letter-spacing: 0; text-transform: none; color: rgba(255, 255, 255, .7); }
.tl-fcard__arrow { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--tl-gold); border-radius: 50%; color: var(--tl-gold); transition: background-color .35s var(--tl-ease), color .35s, transform .35s var(--tl-ease); }
.tl-fcard__arrow svg { width: 18px; height: 18px; transition: transform .35s var(--tl-ease); }
.tl-fcard:hover .tl-fcard__arrow { background: var(--tl-gold); color: var(--tl-navy); transform: scale(1.06); }
.tl-fcard:hover .tl-fcard__arrow svg { transform: translateX(3px); }

/* ---------- Card format badge ---------- */
.tl-card__fmtx::before { content: " · "; }
.tl-card__badge { position: absolute; right: 10px; top: 10px; z-index: 2; font-family: var(--tl-caps); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 4px 9px; color: #fff; border: 1px solid rgba(255, 255, 255, .35); box-shadow: 0 2px 8px rgba(0, 0, 0, .25); max-width: calc(100% - 20px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl-card__badge.is-light { color: var(--tl-navy); border-color: rgba(18, 19, 22, .2); }
.tl-chip--sample { background: var(--tl-navy); color: var(--tl-gold-soft); }
.tl-chip--sample svg { color: var(--tl-gold); }

/* ---------- Filter bar ---------- */
.tl-tools { display: block; padding: 20px; margin-bottom: 36px; background: var(--tl-cream); }
/* Số ô chọn do JS đếm rồi đặt vào --fbar-n, nên trang nào (3 hay 4 ô)
   cũng nằm gọn MỘT HÀNG, không phải sửa CSS mỗi lần thêm bộ lọc. */
.tl-fbar { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(var(--fbar-n, 3), minmax(0, 1fr)); gap: 14px; align-items: end; }
.tl-fbar__f { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.tl-fbar__l { font-family: var(--tl-caps); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-gold-2); }
.tl-fbar .tl-search { max-width: none; flex: none; }
.tl-fbar .tl-select { width: 100%; }
.tl-dd { position: relative; min-width: 0; }
.tl-dd__native { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; }
.tl-dd__btn { display: block; width: 100%; text-align: left; color: var(--tl-navy); cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: inherit; }
.tl-dd.is-open .tl-dd__btn { border-color: var(--tl-gold); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 7l5-5 5 5' fill='none' stroke='%23a8843f' stroke-width='1.6'/%3E%3C/svg%3E"); }
.tl-dd__list { position: absolute; left: 0; top: calc(100% + 4px); z-index: 40; width: 100%; max-height: 320px; overflow-y: auto; overscroll-behavior: contain; margin: 0; padding: 6px 0; list-style: none; background: var(--tl-white); border: 1px solid var(--tl-line); box-shadow: 0 14px 34px rgba(18, 19, 22, .16); }
.tl-dd__list li { padding: 9px 14px; font-size: 14px; line-height: 1.4; color: var(--tl-navy); cursor: pointer; }
.tl-dd__list li.is-active { background: var(--tl-soft); }
.tl-dd__list li[aria-selected="true"] { color: var(--tl-gold-2); font-weight: 600; }
.tl-fbar__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--tl-line); min-height: 24px; }
.tl-fbar__clear { border: 0; background: none; padding: 0; color: var(--tl-gold-2); text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }
.tl-fbar__clear:hover { color: var(--tl-navy); }
.tl-fbar__acts { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px 24px; }
.tl-toggle { position: relative; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--tl-navy); cursor: pointer; user-select: none; }
.tl-toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tl-toggle__ui { position: relative; flex: none; width: 38px; height: 22px; border-radius: 11px; background: rgba(18, 19, 22, .2); transition: background-color .2s; }
.tl-toggle__ui::after { content: ''; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .2s; }
.tl-toggle input:checked + .tl-toggle__ui { background: var(--tl-gold); }
.tl-toggle input:checked + .tl-toggle__ui::after { transform: translateX(16px); }
.tl-toggle input:focus-visible + .tl-toggle__ui { outline: 2px solid var(--tl-gold); outline-offset: 2px; }

/* ---------- Sample player ---------- */
.tl-sample { display: flex; gap: 16px; align-items: center; padding: 16px 18px; margin: 0 0 22px; background: var(--tl-navy); color: var(--tl-white); }
.tl-sample__play { flex: none; width: 56px; height: 56px; border-radius: 50%; border: 0; background: var(--tl-gold); color: var(--tl-navy); display: grid; place-items: center; transition: transform .2s, background-color .2s; }
.tl-sample__play:hover { transform: scale(1.06); background: var(--tl-gold-soft); }
.tl-sample__play svg { width: 22px; height: 22px; }
.tl-sample.is-playing .tl-sample__play { box-shadow: 0 0 0 0 rgba(195, 201, 210, .6); animation: tl-sample-pulse 1.6s ease-out infinite; }
@keyframes tl-sample-pulse { to { box-shadow: 0 0 0 14px rgba(195, 201, 210, 0); } }
.tl-sample__body { flex: 1; min-width: 0; }
.tl-sample__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.tl-sample__label { font-family: var(--tl-caps); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-gold-soft); }
.tl-sample__eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; }
.tl-sample__eq i { width: 3px; height: 4px; background: var(--tl-gold); border-radius: 1px; transform-origin: bottom; }
.tl-sample.is-playing .tl-sample__eq i { height: 16px; animation: tl-eq .9s ease-in-out infinite; }
.tl-sample.is-playing .tl-sample__eq i:nth-child(2) { animation-delay: -.3s; }
.tl-sample.is-playing .tl-sample__eq i:nth-child(3) { animation-delay: -.6s; }
.tl-sample.is-playing .tl-sample__eq i:nth-child(4) { animation-delay: -.15s; }
@keyframes tl-eq { 0%, 100% { transform: scaleY(.25); } 50% { transform: scaleY(1); } }
.tl-sample__bar { --p: 0%; width: 100%; height: 18px; margin: 0; background: transparent; appearance: none; -webkit-appearance: none; cursor: pointer; }
.tl-sample__bar::-webkit-slider-runnable-track { height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--tl-gold) var(--p), rgba(255, 255, 255, .22) var(--p)); }
.tl-sample__bar::-moz-range-track { height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--tl-gold) var(--p), rgba(255, 255, 255, .22) var(--p)); }
.tl-sample__bar::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; margin-top: -5px; border-radius: 50%; background: var(--tl-white); border: 2px solid var(--tl-gold); }
.tl-sample__bar::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: var(--tl-white); border: 2px solid var(--tl-gold); }
.tl-sample__time { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255, 255, 255, .7); font-variant-numeric: tabular-nums; margin-top: 2px; }
.tl-twin { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; padding: 10px 14px; border: 1px dashed var(--tl-gold); color: var(--tl-navy); font-weight: 500; font-size: 14px; transition: background-color .2s; }
.tl-twin:hover { background: var(--tl-soft); }
.tl-twin svg { width: 18px; height: 18px; color: var(--tl-gold-2); flex: none; }

/* ---------- Tablet ---------- */
@media (max-width: 1199px) {
  /* Vẫn một hàng, chỉ thu ô tìm kiếm lại cho các ô chọn đủ chỗ. */
  .tl-fbar { grid-template-columns: minmax(0, 1.15fr) repeat(var(--fbar-n, 3), minmax(0, 1fr)); gap: 12px; }
  .tl-nav { gap: 22px; }
  .tl-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .tl-nav { gap: 16px; }
  .tl-nav a { font-size: 12px; letter-spacing: .08em; }
}
@media (max-width: 1023px) {
  /* Dưới 1024px, năm ô một hàng thì ô nào cũng hẹp và chữ bị cắt: ô tìm
     kiếm ăn trọn hàng trên, các ô chọn xếp hai cột bên dưới. */
  .tl-fbar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .tl-fbar__f--q { grid-column: 1 / -1; }
  .tl-grid, .tl-genres { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tl-arrivals, .tl-pd { grid-template-columns: 1fr; }
  .tl-info { grid-template-columns: 1fr; }
  .tl-toc { position: static; }
  .tl-nav { display: none; }
  .tl-header__bar { grid-template-columns: 1fr auto; }
  .tl-brand--round { display: none; }
  .tl-brand--m { display: block; justify-self: start; }
  .tl-brand--m img { height: 54px; width: auto; max-width: 190px; object-fit: contain; }
  .tl-header.is-solid .tl-brand--m img { height: 46px; width: auto; }
  .tl-burger { display: block; position: relative; z-index: 160; width: 40px; height: 30px; border: 0; background: none; padding: 0; }
  .tl-burger span { position: absolute; left: 4px; right: 4px; height: 2px; background: var(--tl-gold-soft); border-radius: 2px; transition: top .3s, transform .3s, opacity .3s; }
  .tl-burger span:nth-child(1) { top: 6px; }
  .tl-burger span:nth-child(2) { top: 14px; }
  .tl-burger span:nth-child(3) { top: 22px; }
  .tl-burger[aria-expanded="true"] span:nth-child(1) { top: 14px; transform: rotate(45deg); }
  .tl-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .tl-burger[aria-expanded="true"] span:nth-child(3) { top: 14px; transform: rotate(-45deg); }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  :root { --tl-sec-pad: 30px; --tl-sec-gap: 30px; --tl-hero-gap: 60px; --tl-header-h: 72px; }
  body { font-size: 14px; letter-spacing: -0.02em; line-height: 1.55; }
  .tl-display { font-size: 31px; line-height: 1.20; }
  .tl-title { font-size: 27px; line-height: 1.25; }
  .tl-heading { font-size: 22px; line-height: 1.25; }
  .tl-body { font-size: 14px; letter-spacing: -0.02em; line-height: 1.55; }
  .tl-caption { font-size: 12px; letter-spacing: -0.02em; line-height: 1.50; }
  .tl-sec__head { margin-bottom: 26px; }
  .tl-sec__head:not(.tl-center) { flex-wrap: nowrap; align-items: center; gap: 14px; }
  .tl-sec__head:not(.tl-center) > div { min-width: 0; }
  .tl-sec__head:not(.tl-center) .tl-title { font-size: 24px; }
  .tl-sec__head:not(.tl-center) .tl-btn { flex: none; min-height: 40px; padding: 8px 14px; font-size: 11px; letter-spacing: .08em; }
  .tl-header.is-solid .tl-header__bar { height: 64px; }
  .tl-brand--m img { height: 46px; }
  .tl-header.is-solid .tl-brand--m img { height: 40px; }
  .tl-grid, .tl-genres { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .tl-card__body { padding: 22px 10px 16px; }
  .tl-card__title { font-size: 16px; }
  .tl-card__author { font-size: 13px; }
  .tl-card__plus { width: 30px; height: 30px; right: 10px; bottom: -15px; }
  .tl-chip { font-size: 11px; padding: 2px 8px; }
  .tl-hero__arrow { display: none; }
  .tl-hero__text { margin: 16px auto 26px; }
  .tl-hero__scroll { display: none; }
  .tl-formats { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .tl-formats--2 { grid-template-columns: 1fr; gap: 24px; }
  .tl-fcard__body { padding: 44px 20px 22px; }
  .tl-fcard__body h3 { font-size: 20px; }
  .tl-fcard__icon { left: 20px; width: 56px; height: 56px; top: -28px; }
  .tl-fbar { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tl-fbar__f--q { grid-column: 1 / -1; }
  /* Số ô chọn lẻ thì ô cuối trải hết hàng, khỏi để trống lệch một bên. */
  .tl-fbar__f:last-child:nth-child(even) { grid-column: 1 / -1; }
  .tl-tools { padding: 14px; }
  .tl-sample { padding: 14px; gap: 12px; }
  .tl-sample__play { width: 48px; height: 48px; }
  .tl-card__badge { font-size: 9px; padding: 3px 6px; right: 6px; top: 6px; max-width: calc(100% - 12px); }
  .tl-format { padding: 26px 20px; }
  .tl-feature__body { padding: 20px 18px 22px; }
  .tl-feature__badge { left: 18px; }
  .tl-feature h3 { font-size: 22px; }
  .tl-aitem { grid-template-columns: 64px 1fr; gap: 14px; }
  .tl-date { width: 64px; height: 64px; }
  .tl-date b { font-size: 22px; }
  .tl-aitem h3 { font-size: 18px; }
  .tl-notice__inner { grid-template-columns: 1fr; gap: 20px; padding: 40px 22px; text-align: center; justify-items: center; }
  .tl-notice__icon { width: 84px; height: 84px; }
  .tl-notice h2 { font-size: 20px; }
  .tl-notice__text { font-size: 15px; }
  .tl-trust { display: grid; width: fit-content; max-width: 100%; margin-inline: auto; justify-content: start; text-align: left; gap: 12px; }
  .tl-trust li { align-items: flex-start; }
  .tl-trust svg { flex: none; margin-top: 2px; }
  .tl-genre h3 { font-size: 16px; }
  .tl-genre__body { padding: 14px 10px; }
  .tl-marquee__name { font-size: 22px; }
  .tl-marquee__item { padding-inline: 18px; }
  .tl-request { padding: 40px 0 32px; }
  .tl-request h2 { font-size: 22px; line-height: 1.25; }
  .tl-request__form { grid-template-columns: 1fr; }
  .tl-request__form > div:last-child { text-align: center; }
  .tl-request__form > div:last-child .tl-btn { min-width: 180px; }
  .tl-request__form .tl-err { text-align: center; }
  .tl-footer__cols { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding: 40px 0 28px; }
  .tl-footer__brand, .tl-footer__aboutcol { grid-column: 1 / -1; }
  .tl-footer__logo { width: 170px; margin-bottom: 14px; }
  .tl-footer h3 { font-size: 13px; margin-bottom: 14px; }
  .tl-footer ul { gap: 10px; font-size: 14px; }
  .tl-footer__join { font-size: 16px; }
  .tl-footer__bottom { flex-direction: column; gap: 4px; padding: 16px 0 76px; font-size: 12px; }
  .tl-pd { gap: 28px; }
  .tl-phero { min-height: 46svh; }
  .tl-phero__body { padding-block: calc(var(--tl-header-h) + 24px) 36px; }
  .tl-buy .tl-btn { width: 100%; min-width: 0; }
  .tl-buy__row--2 .tl-btn { font-size: 12px; letter-spacing: .08em; padding-inline: 10px; }
  .tl-buy__row .tl-twin { font-size: 13px; padding: 8px 10px; gap: 6px; }
  .tl-buy__row .tl-twin > svg:last-child { display: none; }
  .tl-pd__desc { font-size: 15px; }
  .tl-tools { flex-direction: column; align-items: stretch; }
  .tl-search { max-width: none; flex-basis: auto; }
  .tl-filter { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; scrollbar-width: none; margin-inline: calc(-7% - 1px); padding-inline: 7%; }
  .tl-filter::-webkit-scrollbar { display: none; }
  .tl-tab { flex: none; }
  .tl-row, .tl-checks { grid-template-columns: 1fr; }
  .tl-form legend { font-size: 18px; }
  .tl-form__submit .tl-btn { width: 100%; min-width: 0; }
  .tl-perks { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
  .tl-perk { padding: 20px; }
  .tl-perk b { font-size: 32px; }
  .tl-mail { padding: 30px 20px 24px; }
  .tl-doc h2 { font-size: 22px; line-height: 1.25; }
  .tl-doc h3 { font-size: 18px; }
  .tl-fcard__arrow { width: 42px; height: 42px; }
  .tl-steps { grid-template-columns: 1fr; }
  .tl-toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .tl-totop { right: 14px; bottom: 14px; }
}

/* ---------- New arrivals: swipe row on phones ---------- */
@media (max-width: 767px) {
  .tl-arrivals { display: block; }
  .tl-arrivals > .tl-feature, .tl-arrivals > .tl-alist { display: none; }
  .tl-swipe { display: block; }
  .tl-swipe__track {
    display: flex; gap: 14px; overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: 7vw; -webkit-overflow-scrolling: touch;
    margin-inline: -7vw; padding: 6px 7vw 18px; scrollbar-width: none;
  }
  .tl-swipe__track::-webkit-scrollbar { display: none; }
  .tl-swipe__track .tl-card { flex: 0 0 76%; scroll-snap-align: start; opacity: .55; transform: scale(.94); transition: opacity .45s var(--tl-ease), transform .45s var(--tl-ease), box-shadow .45s; }
  .tl-swipe__track .tl-card.is-current { opacity: 1; transform: none; box-shadow: 0 14px 30px rgba(13, 14, 17, .14); }
  .tl-swipe__dots { display: flex; justify-content: center; gap: 8px; margin-top: 6px; }
  .tl-swipe__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 4px; background: rgba(18, 19, 22, .2); transition: width .35s var(--tl-ease), background-color .35s; }
  .tl-swipe__dots button.is-on { width: 24px; background: var(--tl-gold); }
}

/* ---------- Sections added from the visual CMS (templates in assets/js/cms.js) ---------- */
.tl-x-off { display: none !important; }
.tl-x-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.tl-x-split__media { aspect-ratio: 4 / 3; overflow: hidden; }
.tl-x-split__media img { width: 100%; height: 100%; object-fit: cover; }
.tl-x-split__body .tl-body { color: var(--tl-muted); margin: 18px 0 0; }
.tl-x-split__cta { margin: 28px 0 0; }
.tl-x-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.tl-x-card { display: flex; flex-direction: column; background: var(--tl-cream); overflow: hidden; }
.tl-x-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.tl-x-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--tl-ease); }
.tl-x-card:hover .tl-x-card__media img { transform: scale(1.05); }
.tl-x-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tl-x-card__body h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 22px; line-height: 1.3; letter-spacing: 0; margin: 0; color: var(--tl-navy); }
.tl-x-card__body .tl-caption { color: var(--tl-muted); margin: 0; }
.tl-x-card__link { margin-top: auto; padding-top: 6px; align-self: flex-start; font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--tl-gold-2); border-bottom: 1px solid currentColor; }
.tl-x-feats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; text-align: center; }
.tl-x-feat__icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border: 1px solid var(--tl-gold); border-radius: 50%; color: var(--tl-gold-2); margin-bottom: 18px; }
.tl-x-feat__icon svg { width: 28px; height: 28px; }
.tl-x-feat h3 { font-family: var(--tl-serif); font-weight: 500; font-size: 22px; letter-spacing: 0; margin: 0 0 8px; color: var(--tl-navy); }
.tl-x-feat .tl-caption { color: var(--tl-muted); margin: 0 auto; max-width: 34ch; }
.tl-x-cta { background: var(--tl-navy); color: var(--tl-white); text-align: center; padding: 72px 8%; }
.tl-x-cta h2 { font-family: var(--tl-serif); font-weight: 500; font-size: 38px; line-height: 1.25; letter-spacing: 0; margin: 0 auto; max-width: 24ch; }
.tl-x-cta p { margin: 16px auto 30px; max-width: 60ch; color: rgba(255, 255, 255, .78); }
.tl-x-quote { margin: 0 auto; max-width: 820px; }
.tl-x-quote__icon { display: inline-flex; color: var(--tl-gold); }
.tl-x-quote__icon svg { width: 40px; height: 40px; }
.tl-x-quote p { font-family: var(--tl-serif); font-style: italic; font-size: 30px; line-height: 1.4; letter-spacing: 0; color: var(--tl-navy); margin: 14px 0 18px; }
.tl-x-quote cite { font-style: normal; font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-gold-2); }
@media (max-width: 1023px) {
  .tl-x-split { gap: 36px; }
  .tl-x-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tl-x-feats { gap: 28px; }
}
@media (max-width: 767px) {
  .tl-x-split, .tl-x-cards, .tl-x-feats { grid-template-columns: 1fr; gap: 24px; }
  .tl-x-feats { gap: 36px; }
  .tl-x-cta { padding: 48px 7%; }
  .tl-x-cta h2 { font-size: 27px; }
  .tl-x-quote p { font-size: 22px; }
}

/* ---------- Labels on book images: EXCLUSIVE (left) + NEW (right) ---------- */
.tl-card__badge { color: var(--tl-navy); }
.tl-card__badge--new { right: 10px; left: auto; background: var(--tl-gold); border-color: rgba(13, 14, 17, .15); color: var(--tl-navy); }
.tl-card__badge--excl { left: 10px; right: auto; background: var(--tl-navy); border-color: var(--tl-gold); color: var(--tl-gold-soft); }

/* ---------- Contact form (popup + Contact Us section) ---------- */
.tl-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.tl-contact .tl-row { margin-bottom: 18px; }
.tl-contact .tl-form__submit { margin-top: 4px; }
.tl-contact .tl-form__submit .tl-btn { min-width: 240px; min-height: 54px; }
.tl-contact .tl-btn svg { width: 16px; height: 16px; }
.tl-contact-box { padding: 40px 40px 34px; }
.tl-contact-box .tl-heading { margin: 0 0 10px; }
.tl-contact-box__lead { margin: 0 0 26px; color: var(--tl-muted); }
.tl-contact-done { text-align: center; padding: 20px 0 6px; }
.tl-contact-done > svg { width: 56px; height: 56px; color: var(--tl-gold-2); }
.tl-contact-done p { color: var(--tl-muted); margin: 0 0 24px; }
.tl-doc [data-contact-form] { margin-top: 26px; padding: 30px; background: var(--tl-cream); }
.tl-doc [data-contact-form] .tl-input { background: var(--tl-white); }

/* ---------- Secrets You Never Knew ---------- */
.tl-listen { position: absolute; left: 10px; bottom: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(13, 14, 17, .86); color: var(--tl-gold-soft); font-size: 12px; letter-spacing: .02em; }
.tl-listen svg { width: 14px; height: 14px; color: var(--tl-gold); }
.tl-card--secret .tl-card__body { gap: 8px; }
.tl-card__excerpt { margin: 0; color: var(--tl-muted); font-size: 15px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tl-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px 28px; }
.tl-aitem__listen { display: inline-flex !important; align-items: center; gap: 6px; font-style: normal !important; font-family: var(--tl-sans) !important; font-size: 13px !important; }
.tl-aitem__listen svg { width: 14px; height: 14px; }
.tl-story { max-width: 820px; margin-inline: auto; }
.tl-story__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--tl-navy); }
.tl-story__media img { width: 100%; height: 100%; object-fit: cover; }
.tl-story .tl-sample { margin: 22px 0 36px; }  /* tách khỏi ảnh bài viết */
.tl-story__lead { font-family: var(--tl-serif); font-size: 22px; line-height: 1.55; color: var(--tl-navy); margin: 0 0 28px; letter-spacing: 0; }
.tl-story__body { font-size: 17px; line-height: 1.8; color: var(--tl-ink); letter-spacing: -0.01em; }
.tl-story__body p { margin: 0 0 1.15em; }
.tl-story__body h2 { font-family: var(--tl-serif); font-weight: 500; font-size: 26px; line-height: 1.3; color: var(--tl-navy); margin: 1.6em 0 .55em; letter-spacing: 0; }
.tl-story__book { display: flex; align-items: center; gap: 20px; margin-top: 44px; padding: 18px; background: var(--tl-navy); color: var(--tl-white); border-left: 3px solid var(--tl-gold); transition: transform .3s, box-shadow .3s; }
.tl-story__book:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(13, 14, 17, .2); }
.tl-story__book img { width: 160px; aspect-ratio: 16 / 9; object-fit: cover; flex: none; }
.tl-story__book span { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.tl-story__book small { font-family: var(--tl-caps); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--tl-gold); }
.tl-story__book b { font-family: var(--tl-serif); font-weight: 500; font-size: 22px; letter-spacing: 0; }
.tl-story__book em { color: rgba(255, 255, 255, .75); font-size: 14px; }
.tl-story__book > svg { width: 22px; height: 22px; color: var(--tl-gold); flex: none; }
@media (max-width: 1023px) {
  .tl-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .tl-card__badge--new { right: 6px; left: auto; }
  .tl-card__badge--excl { left: 6px; right: auto; }
  .tl-grid--3 { grid-template-columns: 1fr; }
  .tl-contact-box { padding: 30px 20px 24px; }
  .tl-contact .tl-row { grid-template-columns: 1fr; gap: 18px; }
  .tl-contact .tl-form__submit .tl-btn { min-width: 0; width: 100%; }
  .tl-doc [data-contact-form] { padding: 20px 16px; }
  .tl-story__lead { font-size: 19px; }
  .tl-story__body { font-size: 16px; }
  .tl-story__body h2 { font-size: 22px; }
  .tl-story__book { flex-wrap: wrap; gap: 14px; }
  .tl-story__book img { width: 100%; }
  .tl-story__book > svg { display: none; }
}
/* only one secret published: the feature spans the row, image beside the text */
.tl-arrivals.is-single { grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .tl-arrivals.is-single .tl-feature { display: grid; grid-template-columns: 1.25fr 1fr; }
  .tl-arrivals.is-single .tl-feature__media { max-height: none; }
  .tl-arrivals.is-single .tl-feature__body { display: flex; flex-direction: column; justify-content: center; padding: 44px 44px 40px; border-top: 0; border-left: 1px solid var(--tl-gold); }
  .tl-arrivals.is-single .tl-feature__badge { position: static; align-self: flex-start; margin-bottom: 14px; }
  .tl-arrivals.is-single .tl-feature h3 { font-size: 32px; }
  .tl-arrivals.is-single .tl-feature p { -webkit-line-clamp: 4; }
}

/* product page gallery (images after the first; the first is also the card image) */
.tl-pd__media img { transition: opacity .18s ease; }
.tl-pd__media img.is-swap { opacity: 0; }
/* Chuyển dãy thumbnail thành dot tròn nhỏ ngay dưới ảnh. */
.tl-pd__dots { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; margin-top: 16px; }
.tl-pd__dot { position: relative; width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--tl-line); cursor: pointer; transition: background-color .25s, transform .25s; }
.tl-pd__dot::before { content: ""; position: absolute; inset: -9px; }
.tl-pd__dot:hover { background: var(--tl-gold-2); transform: scale(1.15); }
.tl-pd__dot[aria-current="true"] { background: var(--tl-navy); transform: scale(1.25); }
.tl-pd__dot:focus-visible { outline: 2px solid var(--tl-navy); outline-offset: 3px; }
.tl-pd__dot--video { width: 18px; height: 18px; display: grid; place-items: center; background: transparent; border: 1px solid var(--tl-line); color: var(--tl-gold-2); }
.tl-pd__dot--video svg { width: 9px; height: 9px; }
.tl-pd__dot--video:hover { background: transparent; border-color: var(--tl-gold-2); }
.tl-pd__dot--video[aria-current="true"] { background: var(--tl-navy); border-color: var(--tl-navy); color: #fff; transform: scale(1.1); }

/* spacing aligned with the home page: section head → content = 40px (26px on phones) */
.tl-tools { margin-bottom: 40px; }
.tl-perks { margin-bottom: 40px; }
.tl-pd__desc > :last-child { margin-bottom: 0; }
@media (max-width: 1023px) {
  .tl-info { gap: 40px; }
}
@media (max-width: 767px) {
  .tl-tools, .tl-perks { margin-bottom: 26px; }
  .tl-info { gap: 26px; }
}

/* welcome cards: edition sub-line */
.tl-fcard__sub { margin: 0 0 8px; font-family: var(--tl-caps); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-gold-2); }

/* footer: no logo — the intro text lines up with the other columns */
.tl-footer__brand { padding-top: 2px; }

/* product intro: clipped with a fade, opened with Read more */
.tl-pd__desc.is-clipped { max-height: var(--tl-clip, 120px); overflow: hidden; -webkit-mask-image: linear-gradient(#000 60%, transparent); mask-image: linear-gradient(#000 60%, transparent); }
.tl-more__btn { display: flex; align-items: center; gap: 8px; margin: 14px auto 0; padding: 10px 22px; border: 1px solid var(--tl-line); background: transparent; color: var(--tl-navy); font-family: var(--tl-caps); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: border-color .25s, color .25s; }
.tl-more__btn:hover { border-color: var(--tl-gold); color: var(--tl-gold-2); }
.tl-more__btn svg { width: 16px; height: 16px; transform: rotate(180deg); transition: transform .3s var(--tl-ease); }
.tl-more__btn.is-open svg { transform: none; }


/* cream is white now — the panels that used it keep their shape with a hairline border,
   and the silver accents get a metal sheen so they do not read as flat grey */
.tl-tools, .tl-perk, .tl-toc, .tl-x-card, .tl-mail__meta, .tl-doc [data-contact-form] { border: 1px solid var(--tl-line); }
.tl-chip { border: 1px solid rgba(255, 255, 255, .16); }
.tl-btn--solid, .tl-card__badge--new, .tl-feature__badge {
  background: linear-gradient(135deg, #e8ecf1 0%, #b6bdc8 38%, #eef1f5 58%, #a9b1bd 100%);
  color: #14161a;
  border-color: #cfd5dd;
}
.tl-card__badge--excl { background: #14161a; border-color: var(--tl-gold); color: var(--tl-gold-soft); }


/* ---------- preview files on the product page (MP4, PDF, extra audio) ---------- */
.tl-files { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.tl-files__head { font-family: var(--tl-caps); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-gold-2); margin: 0; }
.tl-files__video { width: 100%; display: block; background: #000; }
.tl-files__audio { width: 100%; display: block; }
.tl-files__pdf { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--tl-line); color: var(--tl-ink); transition: border-color .25s, background-color .25s; }
.tl-files__pdf:hover { border-color: var(--tl-gold); background: var(--tl-soft); }
.tl-files__pdf > svg { width: 22px; height: 22px; flex: none; color: var(--tl-gold-2); }
.tl-files__pdf > svg:last-child { width: 18px; height: 18px; margin-left: auto; }
.tl-files__pdf span { display: flex; flex-direction: column; min-width: 0; }
.tl-files__pdf b { font-weight: 500; font-size: 15px; }
.tl-files__pdf small { font-size: 12px; color: var(--tl-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Khối "Read more" nằm trong cột trái, dưới trình nghe thử: bỏ padding/bề rộng của section */
.tl-pd__about { padding-block: 0; margin-block-end: 0; margin-top: 22px; width: auto; }
.tl-pd__about .tl-pd__desc { max-width: none; margin-inline: 0; font-size: 16px; }

/* Secrets trang chủ: rê chuột vào 1 trong 4 thẻ nhỏ thì panel lớn bên trái đổi theo */
.tl-feature.is-swap img { opacity: .35; }
.tl-feature img { transition: transform .6s var(--tl-ease), opacity .28s var(--tl-ease); }
.tl-aitem { cursor: pointer; transition: opacity .25s, border-color .25s; }
.tl-alist:hover .tl-aitem:not(.is-on) { opacity: .62; }
.tl-aitem.is-on h3 a { background-size: 100% 1px; }
.tl-aitem.is-on { position: relative; }
.tl-aitem.is-on::before { content: ""; position: absolute; left: -16px; top: 2px; bottom: 22px; width: 2px; background: var(--tl-gold); }
.tl-aitem:last-child.is-on::before { bottom: 0; }
@media (max-width: 1023px) {
  .tl-aitem.is-on::before { display: none; }
  .tl-alist:hover .tl-aitem:not(.is-on) { opacity: 1; }
}

/* Nút Read more nằm dưới đoạn mô tả và mở bảng giữa trang */
.tl-more__btn { margin-inline: 0; }
.tl-more__btn svg { transform: none; }
.tl-modal--doc .tl-modal__box { width: min(760px, 100%); }
.tl-modal__doc { padding: 46px 48px 44px; }
.tl-modal__doc h2 { font-family: var(--tl-serif); font-weight: 500; font-size: 28px; line-height: 1.25; margin: 0 0 18px; }
.tl-modal__doc p { margin: 0 0 1em; color: var(--tl-muted); font-size: 16px; line-height: 1.75; }
.tl-modal__doc > :last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .tl-modal__doc { padding: 40px 20px 26px; }
  .tl-modal__doc h2 { font-size: 22px; }
}

/* MP4 cũ (không tải mới được nữa) phát ngay trong khung ảnh lớn khi bấm dot có icon play */
.tl-pd__video { position: absolute; inset: 0; width: 100%; height: 100%; background: #000; object-fit: contain; z-index: 3; }

/* ── Hover xanh (2026-09-20) ─────────────────────────────────────────
   Mọi nút và icon khi rê chuột đều đổi sang xanh dương, kể cả nút giá
   ở trang chi tiết (.tl-buy__cta). */
:root { --tl-blue: #2f6bd8; --tl-blue-2: #1f57bd; }
.tl-btn:hover, .tl-btn:focus-visible { color: #fff; border-color: var(--tl-blue); }
.tl-btn:hover::before, .tl-btn:focus-visible::before { background: var(--tl-blue); }
.tl-btn--solid:hover, .tl-btn--solid:focus-visible { color: #fff; }
.tl-footer .tl-btn:hover { color: #fff; }
.tl-hero__arrow:hover { background: var(--tl-blue); border-color: var(--tl-blue); color: #fff; }
.tl-card:hover .tl-card__plus { background: var(--tl-blue); color: #fff; }
.tl-fcard:hover .tl-fcard__arrow { background: var(--tl-blue); color: #fff; }
.tl-social a:hover, .tl-share a:hover, .tl-share button:hover { background: var(--tl-blue); border-color: var(--tl-blue); color: #fff; }
.tl-totop:hover { background: var(--tl-blue); color: #fff; }
.tl-pd__zoom:hover { background: var(--tl-blue); color: #fff; }
.tl-sample__play:hover { background: var(--tl-blue); color: #fff; }
.tl-more__btn:hover { border-color: var(--tl-blue); color: var(--tl-blue); }
.tl-tabs .tl-tab:hover { border-color: var(--tl-blue); color: var(--tl-blue); }
.tl-tags a:hover { border-color: var(--tl-blue); color: var(--tl-blue); }
.tl-crumbs a:hover, .tl-footer__cols a:hover { color: var(--tl-blue); }

/* 4 thẻ Secrets bên phải: chiều cao hàng do panel trái quyết định (height:0 + min-height:100%),
   danh sách giãn đều trong đúng khoảng đó nên hai cột kết thúc cùng một dòng. */
@media (min-width: 1024px) {
  .tl-arrivals { align-items: stretch; }
  .tl-arrivals > .tl-alist { height: 0; min-height: 100%; justify-content: space-between; gap: 12px; overflow: hidden; }
  .tl-arrivals > .tl-alist > .tl-aitem { min-height: 0; gap: 16px; padding-bottom: 12px; grid-template-columns: 66px 1fr; }
  .tl-arrivals > .tl-alist > .tl-aitem > div { min-width: 0; }
  .tl-arrivals > .tl-alist .tl-date { width: 66px; height: 66px; outline-offset: -5px; }
  .tl-arrivals > .tl-alist .tl-date b { font-size: 22px; }
  .tl-arrivals > .tl-alist .tl-date span { font-size: 11px; margin-top: 3px; }
  .tl-arrivals > .tl-alist > .tl-aitem h3 { font-size: 18px; margin-bottom: 5px; }
  .tl-arrivals > .tl-alist > .tl-aitem p { font-size: 15px; line-height: 1.55; -webkit-line-clamp: 2; }
  .tl-arrivals > .tl-alist > .tl-aitem small { margin-top: 4px; font-size: 13px; }
}


/* Nút "Read more": hover tô nền xanh trượt từ trái như nút ngoài trang chủ. */
.tl-more__btn { position: relative; overflow: hidden; isolation: isolate; transition: color .3s, border-color .3s; }
.tl-more__btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--tl-blue); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.tl-more__btn:hover, .tl-more__btn:focus-visible { color: #fff; border-color: var(--tl-blue); }
.tl-more__btn:hover::before, .tl-more__btn:focus-visible::before { transform: scaleX(1); }

/* Chuỗi dài không dấu cách (link dán vào, chữ gõ liền) không được đẩy ngang bảng
   Read more hay phần mô tả trên mobile. */
.tl-modal__box { overflow-x: hidden; }
.tl-modal__doc, .tl-doc, .tl-pd__desc { overflow-wrap: anywhere; word-break: break-word; }
.tl-modal__doc img, .tl-doc img { max-width: 100%; height: auto; }

/* ---------- Trang con: bỏ hẳn banner đầu trang ----------
   Ảnh banner và chữ trên banner không còn hiển thị. Thẻ h1 + breadcrumb vẫn
   nằm trong DOM (ẩn khỏi màn hình) để giữ SEO và để JS đổ tên trang như cũ.
   Không còn nền tối phía sau header nên header tô nền ngay từ đầu trang. */
body.tl-nobanner .tl-phero {
  position: absolute; width: 1px; height: 1px; min-height: 0;
  margin: 0; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap;
  background: none; color: var(--tl-navy);
}
body.tl-nobanner .tl-phero__img { display: none; }
body.tl-nobanner .tl-phero::after { display: none; }
body.tl-nobanner .tl-header { background: rgba(13, 14, 17, .96); box-shadow: 0 6px 24px rgba(4, 12, 26, .25); }
body.tl-nobanner #main { padding-top: var(--tl-header-h); }

/* Bài Secrets không còn banner nên tên bài và ngày đăng nằm ngay đầu bài viết. */
.tl-story__title { font-size: clamp(30px, 4.2vw, 50px); line-height: 1.16; max-width: 26ch; color: var(--tl-navy); text-align: left; margin: 0 0 10px; }
.tl-story__meta { font-family: var(--tl-caps); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-gold-2); text-align: left; max-width: none; margin: 0 0 26px; }

/* Trang chủ – mục Secrets trên điện thoại: vuốt ngang, mỗi màn hình 2 card,
   điểm dừng đặt ở card lẻ nên mỗi lần vuốt chuyển đúng 2 card. */
@media (max-width: 767px) {
  .tl-swipe__track { gap: 12px; }
  .tl-swipe__track .tl-card,
  .tl-swipe__track .tl-card.is-current {
    flex: 0 0 calc((100% - 12px) / 2); opacity: 1; transform: none; box-shadow: none;
    scroll-snap-align: none;
  }
  .tl-swipe__track .tl-card:nth-child(odd) { scroll-snap-align: start; scroll-snap-stop: always; }
  .tl-swipe__dots { display: flex; }
}

/* Mô tả sách ở trang chi tiết (và bản đầy đủ trong bảng Read more): chữ đen cho dễ đọc. */
.tl-pd__about .tl-pd__desc, .tl-pd__about .tl-pd__desc p,
.tl-modal--doc .tl-modal__doc p { color: var(--tl-navy); }

/* Desktop: mọi khoảng trắng giữa các section đều 100px, áp cho cả trang chủ lẫn
   trang con (35 pad + 30 margin + 35 pad; sau banner là 45 + 35 + 20 phần chữ hụt trong hero). */
@media (min-width: 768px) {
  body { --tl-sec-pad: 35px; --tl-sec-gap: 30px; --tl-hero-gap: 45px; }
  /* thẻ cuối khối Welcome chạm sát mép dưới nên bù 20px để đúng nhịp 180px */
  body[data-page="home"] [data-sec="welcome"] { margin-block-end: calc(var(--tl-sec-gap) + 20px); }
}

/* Header có hai logo: .tl-brand--round cho máy tính, .tl-brand--m cho tablet/điện thoại.
   Chưa chọn logo riêng cho điện thoại thì nó tự dùng lại logo máy tính (assets/js/cms.js). */
@media (max-width: 1023px) {
  .tl-brand--round { display: none; }
  .tl-brand--m { display: block; justify-self: start; }
  .tl-brand--m img { height: 54px; width: auto; max-width: 190px; object-fit: contain; }
  .tl-header.is-solid .tl-brand--m img { height: 46px; width: auto; }
}
@media (max-width: 767px) {
  .tl-brand--m img { height: 46px; }
  .tl-header.is-solid .tl-brand--m img { height: 40px; }
}

/* Footer trên điện thoại: hai tiêu đề cột cùng cỡ chữ và gọn trong một hàng
   ("IMPORTANT NOTICES" trước đây bị xuống dòng). */
@media (max-width: 767px) {
  .tl-footer__cols h3 { font-size: 11px; letter-spacing: .1em; white-space: nowrap; }
}

/* Desktop: ba tiêu đề cột ở footer cùng cỡ chữ và mỗi cái nằm gọn một hàng. */
@media (min-width: 768px) {
  .tl-footer__cols h3 { font-size: 13px; letter-spacing: .1em; white-space: nowrap; }
}

/* Popup Contact Us: trên máy tính dùng cùng bố cục với điện thoại —
   các trường xếp một cột, nút gửi rộng hết khung. */
.tl-modal--contact .tl-modal__box { width: min(560px, 100%); }
.tl-modal--contact .tl-contact .tl-row { grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
.tl-modal--contact .tl-contact .tl-form__submit .tl-btn { min-width: 0; width: 100%; }

/* Trang chi tiết sách: ghi chú Gumroad nằm cùng hàng với nút mua (thay chỗ
   nút Unlock Secrets cũ), xuống dòng riêng khi màn hình hẹp. */
.tl-buy__row { flex-wrap: wrap; }
.tl-buy__row .tl-buy__note { flex: 1 1 200px; align-self: center; align-items: center; margin: 0; max-width: none; }
/* Máy tính/tablet: nút mua và dòng ghi chú luôn nằm chung một hàng, dù cột hẹp. */
@media (min-width: 768px) {
  .tl-buy__row { flex-wrap: nowrap; }
  .tl-buy__row .tl-btn { min-width: 0; flex: 0 1 auto; white-space: nowrap; }
  .tl-buy__row .tl-buy__note { flex: 1 1 0; min-width: 0; }
}
@media (max-width: 767px) {
  .tl-buy__row .tl-buy__note { flex-basis: 100%; align-items: flex-start; }
}

/* Mobile: 90px sau banner, 55px giữa các phần còn lại
   (20 pad + 15 margin + 20 pad; banner 50 + 20 + 20 phần chữ hụt trong hero). */
@media (max-width: 767px) {
  :root { --tl-sec-pad: 20px; --tl-sec-gap: 15px; --tl-hero-gap: 50px; }
  body[data-page="home"] [data-sec="welcome"] { margin-block-end: calc(var(--tl-sec-gap) + 20px); }
}

/* Khối nội dung thêm từ CMS (đoạn văn, tiêu đề nhỏ, ảnh). */
.tl-add-p { margin: 0 0 16px; }
.tl-add-h { margin: 22px 0 10px; font-family: var(--tl-serif, inherit); }
.tl-add-img { display: block; width: 100%; height: auto; margin: 0 0 16px; border-radius: 4px; object-fit: cover; }
/* Legal documents on the User Guide page (Privacy / Terms / Disclaimer) */
.tl-doc h4 { font-family: var(--tl-sans); font-weight: 600; font-size: 16px; margin: 18px 0 6px; }
.tl-doc .tl-legal-date { font-size: 14px; margin-top: -6px; }
.tl-doc .tl-legal-list { margin: 8px 0 16px; padding-left: 1.3em; list-style: disc; }
.tl-doc .tl-legal-list li { margin: 4px 0; padding-left: 2px; }
.tl-doc .tl-legal-list li::marker { color: var(--tl-gold-2); }
