/* ==========================================================================
   Meraki Films — merakifilms.in
   Brand: #000000 / #EEEEEE. Headers: Anton (Zuume substitute). Body: Open Sans.
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 62px;
}

body {
  margin: 0;
  background: #000000;
  color: #EEEEEE;
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #EEEEEE;
  text-decoration: none;
}

::selection {
  background: #EEEEEE;
  color: #000000;
}

input::placeholder,
textarea::placeholder {
  color: #777777;
}

h1, h2, h3 {
  margin: 0;
}

/* ---- Keyframes ---------------------------------------------------------- */

@keyframes mkwipe {
  to { transform: translateY(-101%); }
}

@keyframes mkrise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes mkwave {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}

@keyframes mkmarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes mkblink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.2; }
}

/* Reduced motion: near-zero durations, NOT `none` — forwards-fill must still
   complete or the intro overlay never leaves. */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Loading intro ------------------------------------------------------ */

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.intro-light {
  position: absolute;
  inset: 0;
  background: #EEEEEE;
  animation: mkwipe 0.6s cubic-bezier(0.7, 0, 0.2, 1) 2.2s forwards;
}

.intro-dark {
  position: absolute;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mkwipe 0.6s cubic-bezier(0.7, 0, 0.2, 1) 1.9s forwards;
}

.intro-dark img {
  height: clamp(90px, 15vw, 140px);
  opacity: 0;
  animation: mkrise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s forwards;
}

/* ---- Nav ---------------------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(238, 238, 238, 0.12);
}

.site-nav .nav-logo {
  display: flex;
  align-items: center;
}

.site-nav .nav-logo img {
  height: 18px;
  display: block;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2.5vw, 36px);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
}

.nav-link {
  color: #999999;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: #EEEEEE;
}

.nav-enquire {
  color: #000000;
  background: #EEEEEE;
  padding: 12px 28px;
  border-radius: 999px;
  letter-spacing: 0.18em;
  transition: background 0.25s ease;
}

.nav-enquire:hover {
  background: #FFFFFF;
  color: #000000;
}

/* ---- Shared ------------------------------------------------------------- */

.container {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 56px);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow.on-dark { color: #999999; }
.eyebrow.on-light { color: #555555; }

.section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(40px, 6vw, 80px);
}

.pill {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pill.light {
  background: #EEEEEE;
  color: #000000;
}

.pill.light:hover {
  background: #FFFFFF;
}

.pill.dark {
  background: #000000;
  color: #EEEEEE;
}

.pill.dark:hover {
  background: #222222;
}

/* Ghost section words */
.ghost {
  position: absolute;
  top: 24px;
  right: -30px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(110px, 17vw, 240px);
  line-height: 1;
  color: transparent;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.ghost.on-dark { -webkit-text-stroke: 1px rgba(238, 238, 238, 0.13); }
.ghost.on-light { -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1); }

/* A–D / 01–04 index rows */
.rows {
  display: flex;
  flex-direction: column;
}

.row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(238, 238, 238, 0.15);
}

.row:last-child {
  border-bottom: 1px solid rgba(238, 238, 238, 0.15);
}

.row-key {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.row h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.row p {
  font-size: 15px;
  line-height: 1.7;
  color: #999999;
  margin: 0;
}

/* Sheet seams */
.seam-diag-down {
  clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -5vw;
}

.seam-diag-up {
  clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%);
  margin-top: -5vw;
}

.seam-diag-down > .container,
.seam-diag-up > .container {
  padding-top: calc(48px + 5vw);
}

.seam-round {
  border-radius: 48px 48px 0 0;
  margin-top: -48px;
}

/* ---- Hero --------------------------------------------------------------- */

.hero {
  background: #000000;
}

.hero-inner {
  position: relative;
  width: 100%;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 56px) 0;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: mkrise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s forwards;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EEEEEE;
  animation: mkblink 2.4s ease-in-out infinite;
}

.hero-eyebrow span:last-child {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #999999;
  font-weight: 600;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 8.5vw, 122px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  animation: mkrise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s forwards;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: mkrise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s forwards;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #BBBBBB;
  max-width: 580px;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
}

.btn-hero-primary {
  background: #EEEEEE;
  color: #000000;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  transition: background 0.25s ease;
}

.btn-hero-primary:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-hero-outline {
  border: 1px solid rgba(238, 238, 238, 0.35);
  color: #EEEEEE;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.btn-hero-outline:hover {
  border-color: #EEEEEE;
  background: rgba(238, 238, 238, 0.08);
}

.reel-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -140px;
  opacity: 0;
  animation: mkrise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s forwards;
}

.reel {
  display: block;
  width: 100%;
  height: 48vh;
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

/* ---- Stats band + clients marquee --------------------------------------- */

.stats-band {
  background: #EEEEEE;
  color: #000000;
}

.stats {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(150px, 16vw, 188px) clamp(20px, 5vw, 56px) 48px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
}

.stats > div:nth-child(1) { padding-right: 28px; }
.stats > div:nth-child(2) { padding: 0 28px; }
.stats > div:nth-child(3) { padding-left: 28px; }

.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #555555;
  margin-top: 8px;
  font-weight: 600;
}

.clients {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px clamp(20px, 5vw, 56px) 72px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #777777;
  font-weight: 600;
  flex-shrink: 0;
}

.marquee-mask {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.08em;
  font-size: 19px;
  color: #888888;
  animation: mkmarquee 30s linear infinite;
}

.marquee-track span:last-child {
  padding-right: 72px;
}

/* ---- Three practices ---------------------------------------------------- */

.practices {
  background: #EEEEEE;
  color: #000000;
  position: relative;
  overflow: hidden;
}

.practices .container {
  padding: 48px clamp(20px, 5vw, 56px) clamp(64px, 10vw, 112px);
}

.practices-head {
  max-width: 760px;
  margin-bottom: 72px;
}

.practices-head .section-title {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}

.practices-head p {
  font-size: 17px;
  line-height: 1.75;
  color: #333333;
  margin: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.practice-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  border-radius: 24px;
  padding: clamp(30px, 4vw, 48px) clamp(24px, 3.5vw, 44px);
  transition: transform 0.35s ease, background 0.35s ease;
}

.practice-card.card-dark {
  background: #000000;
  color: #EEEEEE;
}

.practice-card.card-dark:hover {
  background: #111111;
  transform: translateY(-6px);
}

.practice-card.card-light {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
}

.practice-card.card-light:hover {
  background: #F5F5F5;
  transform: translateY(-6px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.card-num {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.card-tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 600;
}

.card-dark .card-tag { color: #888888; }
.card-light .card-tag { color: #777777; }

.practice-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 40px);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.practice-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.card-dark p { color: #AAAAAA; }
.card-light p { color: #555555; }

.card-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.card-dark .card-cta { color: #EEEEEE; }
.card-light .card-cta { color: #000000; }

/* ---- Video / AI Data (dark splits) -------------------------------------- */

.section-dark {
  background: #000000;
  position: relative;
  overflow: hidden;
}

.section-dark .split h2 {
  margin-bottom: 24px;
}

.section-dark .split > div > p {
  font-size: 16px;
  line-height: 1.7;
  color: #999999;
  margin: 0 0 40px;
}

/* ---- Audio (light) ------------------------------------------------------ */

.section-audio {
  background: #EEEEEE;
  color: #000000;
  position: relative;
  overflow: hidden;
}

.audio-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 72px;
}

.audio-head > div:last-child {
  align-self: end;
}

.audio-head p {
  font-size: 16px;
  line-height: 1.75;
  color: #333333;
  margin: 0 0 32px;
}

.waveform-wrap {
  margin-bottom: 72px;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 72px;
  overflow: hidden;
}

.waveform span {
  width: 3px;
  border-radius: 2px;
  background: #000000;
  flex-shrink: 0;
  transform-origin: center;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
}

.audio-card {
  background: #000000;
  color: #EEEEEE;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3.5vw, 40px);
}

.audio-card .card-top {
  margin-bottom: 48px;
}

.audio-card .card-tag {
  color: #888888;
}

.audio-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.audio-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #AAAAAA;
  margin: 0;
}

/* ---- NDA band ----------------------------------------------------------- */

.nda-band {
  margin-top: 80px;
  border: 1px solid rgba(238, 238, 238, 0.2);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
}

.nda-band .eyebrow {
  margin-bottom: 24px;
}

.nda-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.08;
  text-transform: uppercase;
  max-width: 1000px;
  margin: 0 auto;
}

.nda-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px #EEEEEE;
}

.nda-band p {
  font-size: 16px;
  line-height: 1.7;
  color: #999999;
  margin: 24px auto 0;
  max-width: 520px;
}

/* ---- Why Meraki --------------------------------------------------------- */

.section-why {
  background: #000000;
  border-top: 1px solid rgba(238, 238, 238, 0.12);
}

.section-why .split > div:first-child p {
  font-size: 16px;
  line-height: 1.7;
  color: #999999;
  margin: 0;
}

.section-why .split > div:first-child strong {
  color: #EEEEEE;
}

.section-why .section-title {
  margin-bottom: 24px;
}

.section-why .row {
  padding: 32px 0;
}

.section-why .row-key {
  padding-top: 4px;
}

/* ---- Testimonials ------------------------------------------------------- */

.section-testimonials {
  background: #EEEEEE;
  color: #000000;
  position: relative;
}

.testi-label {
  margin-bottom: 56px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}

.testi-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 36px);
}

.testi-card blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: #000000;
}

.testi-card figcaption {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #555555;
  font-weight: 700;
}

/* ---- Enquiry ------------------------------------------------------------ */

.section-enquire {
  background: #000000;
  position: relative;
}

.section-enquire .section-title {
  margin-bottom: 24px;
}

.section-enquire .enquire-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #999999;
  margin: 0 0 40px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #BBBBBB;
}

.contact-lines a {
  color: #EEEEEE;
  font-weight: 600;
}

.contact-lines a:hover {
  color: #999999;
}

.contact-lines .addr {
  line-height: 1.6;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 20px;
  align-self: start;
}

.field {
  background: #0E0E0E;
  border: 1px solid rgba(238, 238, 238, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  color: #EEEEEE;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  width: 100%;
}

.field:focus {
  border-color: #EEEEEE;
}

.field.wide {
  grid-column: 1 / -1;
}

select.field {
  appearance: none;
  -webkit-appearance: none;
}

textarea.field {
  resize: vertical;
}

.btn-submit {
  grid-column: 1 / -1;
  justify-self: start;
  background: #EEEEEE;
  color: #000000;
  border: none;
  padding: 18px 44px;
  border-radius: 999px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.btn-submit:hover {
  background: #FFFFFF;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.form-error {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.6;
  color: #BBBBBB;
  border: 1px solid rgba(238, 238, 238, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0;
}

.form-error a {
  color: #EEEEEE;
  font-weight: 600;
  text-decoration: underline;
}

.success-card[hidden] {
  display: none;
}

.success-card {
  border: 1px solid rgba(238, 238, 238, 0.18);
  border-radius: 24px;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.success-card .success-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  text-transform: uppercase;
}

.success-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #999999;
  margin: 0;
}

/* ---- Footer ------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid rgba(238, 238, 238, 0.12);
  background: #000000;
  position: relative;
}

.site-footer .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px clamp(20px, 5vw, 56px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer .footer-logo {
  height: 14px;
  display: block;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.footer-links a {
  color: #999999;
}

.footer-links a:hover {
  color: #EEEEEE;
}

.footer-copy {
  font-size: 12px;
  color: #777777;
}

/* ---- Legal pages (privacy / terms) --------------------------------------- */

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 56px);
  box-sizing: border-box;
}

.legal h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 12px;
}

.legal .updated {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #777777;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.legal h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 48px 0 16px;
}

.legal p,
.legal li {
  font-size: 15px;
  line-height: 1.8;
  color: #BBBBBB;
}

.legal ul {
  padding-left: 20px;
}

.legal a {
  color: #EEEEEE;
  font-weight: 600;
}

.legal a:hover {
  color: #999999;
}

/* ---- Phone (≤640px) ------------------------------------------------------ */

@media (max-width: 640px) {
  .nav-link {
    display: none;
  }

  .hero-title {
    font-size: 14vw;
    line-height: 1.0;
  }

  .hero-sub {
    font-size: 15px;
  }

  /* Reel: rounded corners to match the card language */
  .reel-wrap {
    margin: 0 0 -70px;
  }

  .reel {
    border-radius: 18px;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row a {
    text-align: center;
  }

  /* Stats: simple vertical stack, no horizontal scroll */
  .stats {
    gap: 0;
    padding-top: 96px;
    padding-bottom: 8px;
  }

  .stats > div:nth-child(1),
  .stats > div:nth-child(2),
  .stats > div:nth-child(3) {
    padding: 18px 0;
    border-left: none;
  }

  .stats > div:nth-child(2),
  .stats > div:nth-child(3) {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }

  .stat-num {
    font-size: 34px;
  }

  /* Clients: label above a full-width marquee */
  .clients {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 56px;
  }

  .marquee-mask {
    flex: none;
    width: 100%;
  }

  section h2 {
    font-size: 11vw;
    line-height: 1.04;
  }

  .ghost {
    font-size: 30vw;
    right: -4vw;
  }

  /* Lighter body text on small screens */
  .practices-head p,
  .section-dark .split > div > p,
  .audio-head p,
  .section-why .split > div:first-child p,
  .enquire-intro,
  .nda-band p {
    font-size: 14px;
  }

  .row p,
  .audio-card p,
  .practice-card p {
    font-size: 14px;
  }

  .testi-card blockquote {
    font-size: 16px;
  }

  .contact-lines {
    font-size: 14px;
  }

  /* Collapsible detail rows/cards: tap the title to expand the description */
  .row,
  .audio-card {
    cursor: pointer;
  }

  .row {
    padding: 22px 0;
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }

  .row > div > h3,
  .audio-card > h3 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 0;
  }

  .row > div > h3::after,
  .audio-card > h3::after {
    content: '+';
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
  }

  .row.open > div > h3::after,
  .audio-card.open > h3::after {
    content: '\2013';
  }

  .row.open > div > h3 {
    margin-bottom: 8px;
  }

  .audio-card.open > h3 {
    margin-bottom: 14px;
  }

  .audio-card .card-top {
    margin-bottom: 28px;
  }

  .row > div > p,
  .audio-card > p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .row.open > div > p,
  .audio-card.open > p {
    max-height: 400px;
  }
}
