/* ==========================================================================
   AH THE SPACE — DESIGN SYSTEM
   Light wellness theme | Sage & Sand palette
   ========================================================================== */

:root {
  /* Colors — Sage & Sand wellness palette */
  --ink: #1a1a1a;
  --muted: #7a7a7a;
  --paper: #faf8f5;
  --paper-alt: #f4f0eb;
  --card: #ffffff;
  --line: #e8e0d6;
  --line-strong: #d4c8b5;
  --sage: #5a6e5a;
  --sage-light: #7d8f7d;
  --sage-dark: #354035;
  --sand: #b8a58b;
  --sand-light: #d4c8b5;
  --sand-dark: #9d886d;
  --accent: #5a6e5a;
  --accent2: #354035;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.04);
  --shadow-med: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-strong: 0 16px 40px rgba(0,0,0,0.08);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   TYPOGRAPHY — Fluid with clamp()
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4.5vw, 50px); letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.01em; }
h4 { font-size: clamp(18px, 2vw, 22px); }

p { color: var(--muted); font-size: clamp(16px, 1.5vw, 18px); max-width: 65ch; }

.kicker {
  font-size: 11px;
  color: var(--sage);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-block;
  margin-bottom: 10px;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-narrow { max-width: 820px; }
.wrap-wide { max-width: 1400px; }

section { padding: 100px 0; }
@media (max-width: 800px) { section { padding: 70px 0; } }

.section-head {
  margin-bottom: 40px;
  max-width: 640px;
}
.section-head h2 { margin-top: 10px; line-height: 1.05; }
.section-head p { margin-top: 14px; font-size: 16px; }

/* ==========================================================================
   HEADER / NAV — Consistent across all pages
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  color: var(--sage);
}
.links {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.links a {
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--sand));
  transition: width var(--transition);
}
.links a:hover { color: var(--ink); }
.links a:hover::after { width: 100%; }
.links a[aria-current="page"] { color: var(--ink); }
.links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  background: var(--sage-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 11px 19px;
  font-weight: 800;
  font-size: 13px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(53, 64, 53, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(53, 64, 53, 0.4);
}

/* Mobile nav hidden — we'll use a simple approach */
.mobile-menu-btn { display: none; }

@media (max-width: 768px) {
  .links { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 12px; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(53, 64, 53, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(53, 64, 53, 0.45);
}
.button.alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.button.alt:hover {
  background: var(--paper-alt);
  border-color: var(--sage);
}
.button.small { padding: 10px 16px; font-size: 13px; }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero { padding: 110px 0 70px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--sand); }
.hero h1 { margin: 22px 0 26px; line-height: 0.92; max-width: 900px; }
.hero p.lead { color: var(--muted); font-size: clamp(17px, 2vw, 19px); max-width: 520px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* Hero art / image */
.hero-art {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, var(--paper-alt), var(--paper));
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.stat {
  background: #fff;
  padding: 24px;
  text-align: left;
}
.stat b {
  display: block;
  font-size: clamp(26px, 3.5vw, 32px);
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--sage-dark), var(--sand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'DM Serif Display', Georgia, serif;
}
.stat small { color: var(--muted); font-size: 12px; }

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 80px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .stats-bar { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .actions .button { width: 100%; justify-content: center; }
}

/* ==========================================================================
   CARD GRIDS — Pillars, Offerings, etc.
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fff, var(--paper));
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.pillar::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  padding: 2px;
  background: linear-gradient(140deg, var(--sage), transparent 40%, var(--sand));
  opacity: 0;
  transition: opacity var(--transition);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }
.pillar:hover::before { opacity: 1; }
.pillar .tag { font-size: 11px; color: var(--sand); font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.pillar h3 { margin-top: 8px; }
.pillar p { color: var(--muted); margin-top: 8px; font-size: 15px; max-width: none; }

/* Offering cards (4-column grid) */
.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pcard {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pcard:hover { border-color: var(--sage-light); transform: translateY(-4px); box-shadow: var(--shadow-med); }
.pcard.pop { border-color: var(--sage); }
.pcard .tag { font-size: 10px; font-weight: 900; letter-spacing: 0.1em; color: var(--sage); text-transform: uppercase; }
.pcard h3 { font-size: 19px; }
.pcard .price { font-size: 24px; font-weight: 800; color: var(--sage-dark); }
.pcard .price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.pcard ul { list-style: none; color: var(--muted); font-size: 13px; display: flex; flex-direction: column; gap: 6px; }
.pcard ul li { position: relative; padding-left: 18px; }
.pcard ul li::before { content: "—"; position: absolute; left: 0; color: var(--sage-light); }
.pcard .cta { margin-top: 8px; font-size: 13px; font-weight: 800; color: var(--sage-dark); }

/* Testimonials */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testi {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.testi p { color: var(--ink); font-size: 15px; line-height: 1.6; max-width: none; }
.testi small { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; }

/* Teacher / Team cards */
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .teacher-grid { grid-template-columns: 1fr; } }

/* World / Location cards */
.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.world-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.world-card h3 { font-size: 17px; }
.world-card p { color: var(--muted); font-size: 14px; margin-top: 6px; max-width: none; }
.world-card .go { color: var(--sage); font-size: 12px; font-weight: 800; margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }

/* Chapter timeline (for about page) */
.chapters { display: flex; flex-direction: column; gap: 0; }
.chapter {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.chapter:first-child { border-top: none; padding-top: 0; }
.chapter:last-child { padding-bottom: 0; }
.chapter b { color: var(--sage); font-size: 13px; font-weight: 700; }
.chapter h3 { margin-bottom: 6px; }
.chapter p { color: var(--muted); font-size: 15px; max-width: none; }

@media (max-width: 860px) {
  .pillars, .cards-row, .world-grid { grid-template-columns: 1fr 1fr; }
  .testis { grid-template-columns: 1fr; }
  .teacher-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .pillars, .cards-row, .world-grid { grid-template-columns: 1fr; }
  .chapter { grid-template-columns: 1fr; gap: 8px; }
  .chapter b { font-size: 12px; }
}

/* ==========================================================================
   MARQUEE / TICKER
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 60px;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: scroll 25s linear infinite;
}
.marquee span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee span i { color: var(--sage); font-style: normal; margin: 0 8px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   FAQ — Native <details>/<summary>
   ========================================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: clamp(17px, 2vw, 19px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--sage);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 10px 0 0; max-width: 640px; font-size: 16px; }

/* ==========================================================================
   CONTACT CARDS
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; }
.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.card h3 { margin: 0 0 8px; font-size: 21px; }
.card small { color: var(--muted); display: block; margin-bottom: 14px; font-size: 15px; }
@media (max-width: 700px) { .cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   QUOTE / CTA SECTION
   ========================================================================== */
.quote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote p { font-size: clamp(20px, 3vw, 28px); line-height: 1.4; font-style: italic; color: var(--ink); }
.quote cite { display: block; margin-top: 18px; color: var(--muted); font-style: normal; font-size: 14px; }

.cta-section {
  text-align: center;
  padding: 110px 20px;
  background: radial-gradient(650px circle at 50% 0%, rgba(90, 110, 90, 0.08), transparent 60%);
}
.cta-section h2 { margin: 0 auto 26px; max-width: 820px; }
.cta-section h2 em { font-style: normal; background: linear-gradient(100deg, var(--sage), var(--sand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-section .actions { justify-content: center; }

/* ==========================================================================
   SIGNUP / NEWSLETTER
   ========================================================================== */
.signup {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.signup h3 { font-size: 22px; }
.signup p { color: var(--muted); margin-top: 6px; max-width: 420px; }
.signup form { display: flex; gap: 8px; flex-wrap: wrap; }
.signup input {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  min-width: 220px;
}
.signup button { background: var(--sage-dark); color: #fff; border: none; border-radius: var(--radius-md); padding: 12px 18px; font-weight: 800; font-size: 14px; cursor: pointer; }
.signup button:hover { background: var(--sage); }

/* ==========================================================================
   SOCIAL STATS ROW
   ========================================================================== */
.social-row { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.social-row div { text-align: center; }
.social-row b { display: block; font-size: 30px; color: var(--sage); font-family: 'DM Serif Display', Georgia, serif; }
.social-row small { color: var(--muted); font-size: 13px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { padding: 34px 0; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; max-width: 1180px; }

/* ==========================================================================
   LEGAL PAGES — Article styling
   ========================================================================== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 24px; }
.legal-content h2 { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 16px 0 16px 24px; color: var(--muted); }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--sage); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .note {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-top: 30px;
  font-size: 15px;
  color: var(--muted);
}
.legal-content .note a { color: var(--sage); font-weight: 700; }

/* ==========================================================================
   FACTS GRID (About page)
   ========================================================================== */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
}
.fact { background: var(--card); padding: 22px; }
.fact b { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.fact small { color: var(--muted); }
@media (max-width: 700px) { .facts { grid-template-columns: 1fr; } }

/* ==========================================================================
   TABLE RESPONSIVE
   ========================================================================== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 500px; }
.table-wrap th, .table-wrap td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.table-wrap th { background: var(--paper); font-weight: 700; color: var(--ink); white-space: nowrap; }
.table-wrap tr:last-child td { border-bottom: none; }

@media (max-width: 600px) {
  .table-wrap table, .table-wrap thead, .table-wrap tbody, .table-wrap th, .table-wrap td, .table-wrap tr { display: block; }
  .table-wrap thead { display: none; }
  .table-wrap tr { margin-bottom: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px; background: var(--card); box-shadow: var(--shadow-soft); }
  .table-wrap td { border: none; padding: 8px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
  .table-wrap td::before { content: attr(data-label); font-weight: 700; color: var(--ink); font-size: 14px; flex-shrink: 0; }
}

/* ==========================================================================
   NOTICE BOX
   ========================================================================== */
.notice { background: var(--paper-alt); border-left: 4px solid var(--sage); padding: 20px 24px; border-radius: var(--radius-md); margin: 32px 0; }
.notice strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: inherit; font-weight: 700; }



/* Research-backed editorial media and offer cards */
.brand { display:flex; align-items:center; width:164px; }
.brand img { display:block; width:100%; height:auto; max-height:42px; object-fit:contain; }
.image-grid { display:grid; grid-template-columns:1.15fr .85fr .85fr; gap:16px; margin-top:36px; }
.image-grid img { width:100%; height:360px; object-fit:cover; border-radius:4px; }
.image-grid img:first-child { height:440px; }
.image-feature { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.image-feature img { width:100%; height:520px; object-fit:cover; border-radius:4px; }
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:42px; }
.product-card { border:1px solid var(--line); background:var(--paper); }
.product-card > img { width:100%; height:260px; object-fit:cover; }
.product-card:first-child > img { object-position:center 35%; }
.product-copy { padding:24px; }
.product-copy h2 { margin:12px 0 10px; font-size:26px; }
.product-copy p { color:var(--muted); font-size:14px; line-height:1.65; margin-bottom:20px; }
@media (max-width:800px) { .image-grid,.image-feature,.products-grid { grid-template-columns:1fr; } .image-grid img,.image-grid img:first-child { height:300px; } .image-feature img { height:380px; } }


.bio-page { min-height:calc(100vh - 160px); display:flex; justify-content:center; align-items:center; padding:70px 20px; background:linear-gradient(145deg,var(--paper),#e9e0d5); }
.bio-card { width:min(520px,100%); text-align:center; }
.bio-logo { width:100%; max-width:360px; height:250px; object-fit:cover; object-position:center 24%; margin:0 auto 24px; border-radius:50%; }
.bio-kicker { color:var(--sage); font-size:12px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.bio-card h1 { font-size:clamp(42px,9vw,72px); line-height:.9; margin:14px 0 20px; }
.bio-intro { max-width:420px; margin:0 auto 28px; color:var(--muted); line-height:1.65; }
.bio-links { display:grid; gap:12px; }
.bio-link { display:block; padding:17px 20px; border:1px solid var(--line); background:rgba(255,255,255,.42); color:var(--ink); font-weight:700; transition:transform .2s,background .2s; }
.bio-link:hover { transform:translateY(-2px); background:#fff; }
.bio-footer { margin-top:26px; color:var(--sage); font-size:11px; font-weight:800; letter-spacing:.14em; }


.video-catalog { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; list-style:none; padding:0; margin-top:22px; }
.video-catalog li a { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:12px 14px; border:1px solid var(--line); background:rgba(255,255,255,.5); color:var(--ink); font-size:13px; }
.video-catalog li a:hover { background:#fff; }
.video-catalog .vt { line-height:1.35; }
.video-catalog .vd { color:var(--sage); font-weight:800; font-size:11px; white-space:nowrap; }
@media (max-width:800px){ .video-catalog{ grid-template-columns:1fr; } }
