/* styles.css */

/* =========================================================
   LENKA LAYOUT CLONE — STYLESHEET (structure / menus / colors only)
   - Save this as styles.css next to index.html
   - Tweak variables to adjust colors/spacing/typography
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Ivy+Presto+Display:wght@400;500;600;700&display=swap');

:root {
  /* Palette */
  --bg: #ffffff;
  --text: #0f1222;
  --muted: #5d6472;
  --primary: #0aa7a0;
  --primary-contrast: #ffffff;
  --accent: #c7a46c;
  --surface: #f6f7fb;
  --border: #e8eaf1;

  /* Layout */
  --maxw: 1200px;
  --pad: 20px;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 20, .06);
  --shadow-md: 0 10px 30px rgba(10, 10, 20, .08);

  /* Type scale */
  --fs-hero: clamp(32px, 6vw, 54px);
  --fs-h2: clamp(24px, 3vw, 32px);
  --fs-h3: clamp(18px, 2.2vw, 22px);
  --fs-base: 16px;
  --fs-sm: 14px;

  /* Header */
  --header-h: 78px;
  --nav-g: 18px;
}

/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Ivy Presto Display', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  height: 100%;
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px;
}


.menu {
  display: flex;
  gap: var(--nav-g);
  justify-content: center;
  align-items: center;
}

.menu>li {
  list-style: none;
  position: relative;
}

.menu>li>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  /* 👈 smaller font */
  letter-spacing: 0.02em;
  /* optional, makes text crisp */
}

.menu>li>a:hover {
  text-decoration: none;
  background: var(--surface);
}

.cta {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.btn {
  border: 1px solid var(--border);
  background: #010101;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.btn:hover {
  background: var(--surface);
  text-decoration: none;
}

.btn.primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: transparent;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}

.menu>li:hover .dropdown,
.menu>li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.dropdown a:hover {
  background: var(--surface);
  text-decoration: none;
}

/* Mobile nav */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}

.bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--text);
  left: 0;
}

.bar::before {
  top: -6px;
}

.bar::after {
  top: 6px;
}

/* Hero */
.hero {
  padding: 64px 0;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  font-size: 12px;
}

.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.hero .actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 26px;
  opacity: .9;
}

.media-pill {
  height: 50px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px dashed var(--border);
}

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures it fills the box without stretching */
  display: block;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

/* Cards / Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.card h3 {
  font-size: var(--fs-h3);
  margin: 6px 0;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

/* CTA wide */
.cta-wide {
  background: radial-gradient(1200px 500px at 20% -10%, rgba(10, 167, 160, .12), transparent 60%), linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  align-items: center;
}

.cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

/* Articles */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.article .img {
  background: var(--surface);
  aspect-ratio: 16/10;
}

.article .body {
  padding: 16px;
}

/* Social band */
.band {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.band .tile {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 8px;
}

/* Signup */
.signup {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.signup .bullets {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

input[type="text"],
input[type="email"] {
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0 12px;
  font: inherit;
}

/* Footer */
.footer {
  margin-top: 60px;
  background: #0f1322;
  color: #cfd4e6;
}

.footer a {
  color: #cfd4e6;
}

.footer-top {
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 0;
  font-size: 13px;
  color: #aab2c9;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    grid-template-columns: 140px 1fr 56px;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    justify-self: end;
  }

  .hero-wrap,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .articles,
  .band {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .input-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .grid-3,
  .articles,
  .band {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== New: NOOW‑style header & hero (keeps current colors) ===== */


/* Header tweaks */
.nav-noow {
  grid-template-columns: 1fr auto 80px;
}

.brand-noow {
  gap: 8px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .7);
}

.logo-type {
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}


.menu-noow {
  justify-content: flex-end;
  gap: 20px;
}

.menu-noow>li>a {
  font-size: 14px;
  text-transform: lowercase;
  padding: 8px 6px;
  border-radius: 8px;
}


.cta-noow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(10, 167, 160, .12);
}


/* Hero split layout */
.hero-split {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-split-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.media-pane {
  position: relative;
  width: 100%;
  max-width: 580px;
  /* controls hero image width */
  aspect-ratio: 4 / 5;
  /* keeps proportions, prevents distortion */
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
}

.copy-pane {
  order: 2;
  position: relative;
}

.media-frame {
  aspect-ratio: 4/5;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fdfefe, #f2f7f9);
  box-shadow: var(--shadow-md);
}


/* Overlapping headline */
.headline {
  margin: 0;
  line-height: .95;
  letter-spacing: -.01em;
}

.headline .line {
  display: block;
}

.headline .sans {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 8vw, 96px);
}

.headline .serif {
  font-family: 'Ivy Presto Display', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 9vw, 112px);
}


/* Create a subtle overlap onto the media on larger screens */
@media (min-width: 1024px) {
  .copy-pane {
    margin-left: -6vw;
  }
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-split-wrap {
    grid-template-columns: 1fr;
  }

  .copy-pane {
    order: 1;
    margin-left: 0;
  }

  .media-pane {
    order: 2;
  }
}

.brand-logo {
  height: 82px;
  /* adjust as needed */
  width: auto;
  display: block;
}

/* Global dark look already set; these extend it */
.muted {
  color: #a3a3a3;
}

.lead {
  font-size: 1.125rem;
  color: #eaeaea;
}

/* ===== Work Grid (asymmetric like NOOW) ===== */
.work-grid {
  padding-top: 40px;
}

.work-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.work-card {
  background: #121212;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  gap: 0;
}

.work-card .work-media {
  display: block;
  aspect-ratio: 16/10;
  background: #0b0b0b;
  background-image: linear-gradient(180deg, #1b1b1b, #0f0f0f);
}

.work-card .work-meta {
  padding: 14px 16px;
}

.work-card h3 {
  color: #f5f5f5;
  margin: 0 0 6px;
}

.work-card p {
  color: #bdbdbd;
  margin: 0;
  font-size: 14px;
}

/* size variants */
.work-card.tall .work-media {
  aspect-ratio: 4/5;
}

.work-card.wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .work-wrap {
    grid-template-columns: 1fr;
  }

  .work-card.wide {
    grid-column: auto;
  }
}

/* ===== Marquee strip ===== */
.marquee {
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  overflow: hidden;
  background: #0e0e0e;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  padding: 14px 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: #d9d9d9;
  text-transform: lowercase;
  font-size: 14px;
  letter-spacing: .08em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== Capabilities ===== */
.capabilities .caps-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.caps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px 24px;
  grid-template-columns: 1fr 1fr;
}

.caps-list li {
  padding: 10px 12px;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  background: #101010;
  color: #eaeaea;
}

@media (max-width: 900px) {
  .capabilities .caps-grid {
    grid-template-columns: 1fr;
  }

  .caps-list {
    grid-template-columns: 1fr;
  }
}

/* ===== About split ===== */
/* ===== ABOUT SECTION ===== */
.about-split {
  background: #fbfdff;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-copy {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  /* switched to clean sans-serif */
  color: #0e0e0e;
  line-height: 1.7;
}

.about-copy h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #030303;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about-copy .lead {
  font-size: 3.125rem;
  font-weight: 500;
  color: #4e4d4d;
  margin-bottom: 18px;
}

.about-copy p {
  margin-bottom: 14px;
  max-width: 620px;
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive stacking */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-media {
    max-width: 480px;
    margin: 0 auto;
  }
}


/* ===== Quote band ===== */
.quote-band blockquote {
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
}

.quote-band p {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.2;
  color: #f5f5f5;
  margin: 0 0 8px;
  font-style: italic;
  /* pairs nicely with Ivy Presto */
}

.quote-band cite {
  color: #a6a6a6;
  font-size: 14px;
}

/* ===== Final CTA ===== */
.cta-final-inner {
  text-align: center;
}

.cta-row {
  margin-top: 14px;
  display: inline-flex;
  gap: 12px;
}

.cta-final .btn {
  border-color: #2a2a2a;
}

.cta-final .btn.primary {
  background: #ffffff;
  color: #0e0e0e;
}

/* ===== Minimal Footer ===== */
.footer.minimal {
  background: transparent;
  border-top: 1px solid #1f1f1f;
}

.footer-min {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: #a6a6a6;
  font-size: 14px;
}

.foot-nav {
  display: flex;
  gap: 16px;
}

.foot-nav a {
  color: #dcdcdc;
  text-transform: lowercase;
  font-size: 14px;
}


/* ===== WORKSHOP SECTION ===== */
/* ===== WORKSHOP SECTION ===== */
.workshop {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid #1a1a1a;

  /* ✨ Elegant dark gradient base */
  background: radial-gradient(circle at 20% 30%, #181818 0%, #0e0e0e 80%),
    radial-gradient(circle at 80% 70%, #1a1a1a 0%, #0e0e0e 80%);
}

/* ✨ Embedded geometric pattern overlay */
.workshop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.4;
  /* adjust to make pattern more or less visible */
  pointer-events: none;
  z-index: 0;
}

.workshop-grid {
  position: relative;
  z-index: 1;
  /* keep content above pattern */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.workshop-copy {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #eaeaea;
  line-height: 1.7;
}

.workshop-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.workshop-copy .lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: 22px;
}

.workshop-details {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  color: #cfcfcf;
  font-size: 15px;
}

.workshop-details li {
  margin-bottom: 6px;
}

.workshop-copy .desc {
  color: #bdbdbd;
  margin-bottom: 24px;
  max-width: 620px;
}

.workshop-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.workshop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive stacking */
@media (max-width: 900px) {
  .workshop-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-copy {
    text-align: center;
  }

  .workshop-copy p,
  .workshop-copy .desc,
  .workshop-details {
    margin-left: auto;
    margin-right: auto;
  }

  .workshop-media {
    max-width: 480px;
    margin: 0 auto;
  }
}


/* ===== Testimonial / Quote Carousel ===== */
.quote-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #cac9c9;
  border-bottom: 1px solid #cac9c9;
  padding: 80px 0;
  text-align: center;
}

.quote-carousel {
  position: relative;
  min-height: 180px;
}

.quote-carousel blockquote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin: 0 auto;
}

.quote-carousel blockquote.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.quote-carousel p {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.3;
  color: #080808;
  margin: 0 0 10px;
  font-style: italic;
  max-width: 800px;
  margin-inline: auto;
}

.quote-carousel cite {
  color: #a6a6a6;
  font-size: 14px;
}

/* Navigation dots */
.quote-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.quote-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  transition: background 0.3s ease, transform 0.3s ease;
}

.quote-dots .dot.active {
  background: #f5f5f5;
  transform: scale(1.2);
}

.quote-dots .dot:hover {
  cursor: pointer;
  background: #bbb;
}


/* ===== WORKSHOP PAGE BASE ===== */
.wkshp {
  background: #0e0e0e;
  color: #eaeaea;
}

.wkshp .container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 92vw);
  margin: 0 auto;
}

.muted {
  color: #a6a6a6;
}

/* Hero */
.wk-hero {
  padding: 70px 0 40px;
  border-bottom: 1px solid #1a1a1a;
}

.wk-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.wk-hero-copy {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.wk-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.wk-sub {
  margin: 0 0 16px;
  color: #d9d9d9;
  font-size: 1.05rem;
}

.wk-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: grid;
  gap: 6px;
  color: #cfcfcf;
}

.wk-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wk-cta-row.center {
  justify-content: center;
}

.wk-hero-media {
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.wk-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Intro */
.wk-intro {
  padding: 48px 0;
}

.wk-intro .lead {
  font-weight: 600;
  color: #f0f0f0;
}

.wk-intro .callout {
  margin: 14px 0;
  color: #fff;
}

/* Outcomes grid */
.wk-outcomes {
  padding: 48px 0;
  border-top: 1px solid #1a1a1a;
}

.wk-outcomes h2 {
  margin: 0 0 18px;
}

.wk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wk-card {
  background: #121212;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 14px 16px;
  color: #dcdcdc;
}

@media (max-width: 800px) {
  .wk-grid {
    grid-template-columns: 1fr;
  }
}

/* Who it's for + What makes it different */
.wk-for {
  padding: 48px 0;
  border-top: 1px solid #1a1a1a;
}

.wk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.tick-list,
.dash-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.tick-list li {
  position: relative;
  padding-left: 26px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7BDA5E;
}

.dash-list li {
  position: relative;
  padding-left: 18px;
  color: #d0d0d0;
}

.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #9a9a9a;
}

@media (max-width: 960px) {
  .wk-split {
    grid-template-columns: 1fr;
  }
}

/* Facilitator */
.wk-facilitator {
  padding: 48px 0;
  border-top: 1px solid #1a1a1a;
}

.wk-fac-media {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  box-shadow: 0 10px 36px rgba(0, 0, 0, .35);
}

.wk-fac-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wk-fac-copy h2 {
  margin: 0 0 10px;
}

.wk-fac-copy h2 span {
  font-weight: 800;
}

/* How it works */
.wk-how {
  padding: 48px 0 64px;
  border-top: 1px solid #1a1a1a;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0 22px;
}

.how-item {
  background: #121212;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 12px 14px;
  color: #dcdcdc;
}

@media (max-width: 800px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* Buttons (reuse your site buttons) */
.btn {
  display: inline-block;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 10px 14px;
  color: #eaeaea;
}

.btn-primary {
  background: #ffffff;
  color: #0e0e0e;
  border-color: transparent;
}

/* ===== Testimonial / Quote Carousel ===== */
.quote-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  padding: 80px 0;
  text-align: center;
}

.quote-carousel {
  position: relative;
  min-height: 180px;
}

.quote-carousel blockquote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin: 0 auto;
}

.quote-carousel blockquote.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.quote-carousel p {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.3;
  color: #2a2929;
  margin: 0 0 10px;
  font-style: italic;
  max-width: 800px;
  margin-inline: auto;
}

.quote-carousel cite {
  color: #2a2929;
  font-size: 14px;
}

/* Navigation dots */
.quote-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.quote-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  transition: background 0.3s ease, transform 0.3s ease;
}

.quote-dots .dot.active {
  background: #f5f5f5;
  transform: scale(1.2);
}

.quote-dots .dot:hover {
  cursor: pointer;
  background: #bbb;
}
