/* ============================================
   Buddhinath — Cinematic Personal Brand
   ============================================ */

:root {
  --bg: #0e0e0e;
  --text: #f5f0e8;
  --accent: #c9a84c;
  --card: #1a1a1a;
  --muted-accent: #8b6914;
  --text-muted: #9a9590;
  --border: rgba(201, 168, 76, 0.18);
  --border-subtle: rgba(245, 240, 232, 0.08);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --space-xs: clamp(0.625rem, 1.2vw, 0.875rem);
  --space-sm: clamp(1.125rem, 2vw, 1.75rem);
  --space-md: clamp(1.75rem, 3.5vw, 2.75rem);
  --space-lg: clamp(2.75rem, 5.5vw, 4.25rem);
  --space-xl: clamp(4.25rem, 8vw, 6.5rem);
  --space-2xl: clamp(6rem, 11vw, 9rem);
  --section-pad-top: calc(var(--space-2xl) * 0.75);

  --duration-slow: 2.2s;
  --duration-cinematic: 2s;

  --container: min(90rem, calc(100% - 2 * clamp(1.25rem, 4vw, 3rem)));
  --header-h: 4.5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.label,
.section__label {
  font-family: var(--font-body);
  font-size: clamp(0.4375rem, 0.75vw, 0.5625rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.4;
}

.brand-tagline {
  display: block;
  color: var(--accent);
}

.text-accent {
  color: var(--accent);
}

/* Gold line rule — open (full) or close (40%) once per block */
.gold-rule {
  display: block;
  height: 1px;
  border: none;
  background: var(--accent);
  margin: 0;
  padding: 0;
}

.gold-rule--full {
  width: 100%;
}

.gold-rule--short {
  width: 2.25rem;
  flex-shrink: 0;
}

.key-block--open {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--accent);
}

.key-block--close {
  padding-bottom: var(--space-md);
}

.key-block--close::after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background: var(--accent);
  margin-top: var(--space-lg);
}

.section__header .section__label {
  display: block;
  margin-bottom: var(--space-md);
}

body.is-loading {
  overflow: hidden;
}

body.is-loading [data-reveal-item] {
  opacity: 0;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  pointer-events: all;
  transition: opacity 0.35s var(--ease-out);
}

.loader__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.loader__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  transform: scale(0.9);
  animation: loaderPulse 1.1s ease-in-out infinite;
}

.loader__dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.loader__dots span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.88);
    filter: brightness(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    filter: brightness(1.15);
  }
}

/* Scroll scenes — initial state before GSAP (reduced FOUC) */
html.is-scroll-ready [data-reveal-item] {
  will-change: transform, opacity;
}

[data-scene] {
  position: relative;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  pointer-events: none;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
}

.site-header.is-visible {
  pointer-events: auto;
}

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  opacity: 0.92;
}

.site-header__identity {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-header__identity .brand-name {
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  line-height: 1.1;
  color: var(--text);
}

.site-header__identity .brand-tagline {
  margin-top: 0.15rem;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
}

.site-header__nav {
  display: none;
  gap: 2.5rem;
}

.site-header__nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.site-header__nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.site-header__cta {
  display: none;
}

.btn--header {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn--header:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.site-header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2rem;
  height: 2rem;
  padding: 0;
}

.site-header__menu span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.site-header__menu.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header__menu.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95em 1.75em;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    color 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn:active {
    transform: translateY(0);
  }
}

.btn--small {
  padding: 0.65em 1.25em;
  font-size: 0.6875rem;
}

.btn--large {
  padding: 1.1em 2.25em;
  font-size: 0.8125rem;
}

.btn--primary {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #d4b456;
  border-color: #d4b456;
}

.btn--ghost {
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--outline {
  color: var(--text);
  border-color: var(--border);
  width: 100%;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + var(--space-lg)) 0 var(--space-lg);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: clamp(3.25rem, 8vw, 4rem);
  height: auto;
  margin-bottom: var(--space-sm);
  object-fit: contain;
}

.hero__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: 0.28em;
  margin-bottom: var(--space-sm);
}

.hero__tagline {
  margin-bottom: 0;
}

.hero__brand .gold-rule--full {
  width: 100%;
  margin-top: var(--space-md);
  transform-origin: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 0;
}

.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  max-width: 32ch;
  margin-bottom: var(--space-md);
}

.hero__body {
  max-width: 44ch;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
  transform-origin: top;
}

main {
  position: relative;
  z-index: 1;
}

/* ---- Pullquote ---- */
.pullquote {
  padding-block: var(--space-xl);
  background: var(--bg);
  border-top: 1px solid rgba(201, 168, 76, 0.28);
  border-bottom: 1px solid var(--border-subtle);
}

.pullquote__text {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.pullquote__text p {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text);
}

.pullquote__text p + p {
  margin-top: 0.65em;
}

.pullquote__text strong,
.pullquote__text .text-accent {
  font-weight: 500;
  color: var(--accent);
}

/* ---- Sections ---- */
.section {
  padding-top: var(--section-pad-top);
  padding-bottom: var(--space-2xl);
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.section__title,
.cta-block__title,
.method-step__content h3,
.pricing-card__name,
.pullquote__text p,
.about__belief p,
.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.section__header {
  margin-bottom: var(--space-xl);
}

.section__header:not(:has(.section__title)) {
  margin-bottom: var(--space-lg);
}

.section__header--wide .section__title {
  max-width: 22ch;
}

.section__intro {
  margin-top: var(--space-md);
  max-width: 52ch;
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
}

/* ---- Who This Is For ---- */
.for-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.interactive-item {
  transition:
    background-color 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

@media (hover: hover) {
  .interactive-item:hover {
    transform: translateY(-3px);
  }
}

.for-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  margin: 0 calc(-1 * var(--space-md));
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.for-item__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-muted);
  line-height: 1;
  min-width: 2.5rem;
  transition: color 0.4s var(--ease-out);
}

.for-item p {
  color: var(--text-muted);
  max-width: 52ch;
}

/* ---- Method ---- */
.section--method {
  border-top-color: rgba(201, 168, 76, 0.22);
}

.method-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: var(--space-lg);
  margin: 0 calc(-1 * var(--space-md));
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.method-step:last-child {
  border-bottom: none;
}

.method-step__marker {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.method-step__roman {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.4s var(--ease-out);
}

.method-step__name {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.method-step__content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
  color: var(--text);
  transition: color 0.5s var(--ease-out);
}

.method-step__content p {
  color: var(--text-muted);
  max-width: 48ch;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  gap: var(--space-xl);
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 1.25em;
  max-width: 52ch;
}

.about__content strong {
  color: var(--text);
  font-weight: 500;
  font-family: var(--font-body);
}

.about__belief {
  margin-top: var(--space-xl);
  max-width: 44ch;
}

.about__belief p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  transition: color 1.2s var(--ease-out);
}

.section--about.is-in-view .about__belief p {
  color: var(--accent);
}

/* ---- Client Voices Rotator ---- */
.voices-rotator {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.voices-rotator__stage {
  position: relative;
  width: 100%;
  height: clamp(14rem, 32vh, 20rem);
  flex-shrink: 0;
}

.voice-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.voice-card.is-active {
  pointer-events: auto;
}

.voice-card blockquote {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding-inline: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.voice-card blockquote p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.35vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.voice-card figcaption {
  margin-top: var(--space-md);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.voices-rotator__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  padding-top: var(--space-xs);
}

.voices-rotator__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  font-size: 1.125rem;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  transition:
    color 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.voices-rotator__btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

.voices-rotator__dots {
  display: flex;
  gap: 0.5rem;
}

.voices-rotator__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.35;
  cursor: pointer;
  transition:
    opacity 0.4s var(--ease-out),
    background-color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.voices-rotator__dot.is-active,
.voices-rotator__dot:hover {
  opacity: 1;
  background: var(--accent);
  transform: scale(1.2);
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.pricing-card__tier {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--text-muted);
  transition: color 0.4s var(--ease-out);
}

.pricing-card__name {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 0.25em;
  line-height: 1.2;
}

.pricing-card__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: 1;
  transition: color 0.5s var(--ease-out);
}

.pricing-card__desc {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.corporate-block__inner {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.corporate-block__inner .section__label {
  margin-bottom: var(--space-sm);
}

.corporate-block__inner p {
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto var(--space-md);
}

/* ---- CTA ---- */
.section--cta {
  padding-top: var(--section-pad-top);
  padding-bottom: var(--space-xl);
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}

.cta-block {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.cta-block__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  margin-inline: auto;
}

.cta-block__text {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* ---- Footer ---- */
.site-footer {
  padding-block: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand__logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.footer-brand__name {
  font-size: 1.25rem;
  margin-bottom: 0.35em;
}

.footer-brand__tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.footer-brand__line {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 32ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.footer-nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ---- Interactive hover ---- */
.interactive-item:hover {
  background-color: var(--card);
  border-color: var(--accent);
}

.interactive-item:hover .for-item__num,
.interactive-item:hover .method-step__roman {
  color: var(--accent);
}

.interactive-item:hover .method-step__content h3 {
  color: var(--accent);
}

.interactive-item:hover .pricing-card__tier,
.interactive-item:hover .pricing-card__price {
  color: var(--accent);
}

.pricing-card.interactive-item:hover .btn--outline {
  color: var(--accent);
  border-color: var(--accent);
}

.pricing-card.interactive-item .btn--outline:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.section--method .interactive-item:hover {
  background-color: var(--card);
}

@media (hover: none) {
  .interactive-item:hover {
    background-color: transparent;
    transform: none;
  }
}

/* ---- Reveal states (GSAP sets inline) ---- */
[data-reveal-item] {
  will-change: transform, opacity;
}

/* ---- Mobile ---- */
@media (max-width: 47.99rem) {
  :root {
    --header-h: 3.75rem;
    --section-pad-top: calc(var(--space-xl) * 0.75);
  }

  .container {
    width: min(100% - 2rem, 90rem);
  }

  .site-header {
    padding-inline: 1rem;
  }

  .site-header__identity .brand-tagline {
    display: none;
  }

  .site-header__identity .brand-name {
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding-top: calc(var(--header-h) + var(--space-md));
    padding-bottom: var(--space-md);
  }

  .hero__title {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
    letter-spacing: 0.14em;
  }

  .hero__lead {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    bottom: var(--space-sm);
    font-size: 0.5625rem;
  }

  .section {
    padding-bottom: var(--space-xl);
  }

  .section__title {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    max-width: none;
  }

  .section__header {
    margin-bottom: var(--space-lg);
  }

  .for-item,
  .method-step {
    margin-inline: 0;
    padding-inline: var(--space-sm);
  }

  .voices-rotator__stage {
    height: clamp(20rem, 50vh, 25rem);
  }

  .voice-card {
    padding: var(--space-md) var(--space-sm);
  }

  .voice-card blockquote p {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .pricing-card {
    padding: var(--space-lg) var(--space-md);
  }

  .pullquote {
    padding-block: var(--space-xl);
  }

  .pullquote__text p {
    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  }

  .mobile-nav a {
    font-size: clamp(1.25rem, 5vw, 1.65rem);
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ---- Responsive ---- */
@media (min-width: 48rem) {
  .site-header__nav {
    display: flex;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .site-header__menu {
    display: none;
  }

  .for-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-xl);
  }

  .for-item:nth-child(odd) {
    padding-right: var(--space-md);
  }

  .method-step {
    grid-template-columns: 12rem 1fr;
    gap: var(--space-xl);
    align-items: start;
  }

  .about-grid {
    grid-template-columns: 0.45fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 64rem) {
  .hero__lead {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
