/* ============================================================
   BETTR STUDIO — Design System
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Space+Grotesk:wght@300;400;500;600&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* Brand palette */
  --clr-forest:   #004346;
  --clr-forest-d: #002b2d;
  --clr-forest-l: #0a5a5e;
  --clr-mint:     #82c998;
  --clr-mint-l:   #d4ffe8;
  --clr-orange:   #f15a24;
  --clr-orange-d: #c94410;
  --clr-black:    #101010;
  --clr-grey:     #5d6c7b;
  --clr-grey-l:   #e2e2e2;
  --clr-off-white:#fafafa;
  --clr-white:    #ffffff;

  /* Typography */
  --font-serif:  'Fraunces', Georgia, serif;
  --font-sans:   'Space Grotesk', system-ui, sans-serif;

  /* Type scale — fluid with clamp */
  --text-xs:   clamp(0.7rem,   0.65rem + 0.2vw,  0.75rem);
  --text-sm:   clamp(0.85rem,  0.8rem  + 0.25vw, 0.9rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.05rem);
  --text-md:   clamp(1.1rem,   1rem    + 0.5vw,  1.25rem);
  --text-lg:   clamp(1.2rem,   1.05rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.5vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.5rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1.8rem  + 3.5vw,  5rem);
  --text-4xl:  clamp(3rem,     2rem    + 5vw,     7rem);

  /* Spacing scale (8pt base) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 800px;
  --nav-h: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.35s;
  --dur-slow: 0.65s;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--clr-black);
  background: var(--clr-off-white);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

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

/* ── Typography helpers ───────────────────────────────────── */
.serif { font-family: var(--font-serif); }

h1, .h1 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h3, .h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.25;
}

h4, .h4 {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.3;
}

.label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: var(--sp-4);
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-6), 5vw, var(--sp-16));
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
}

.section--sm {
  padding-block: clamp(var(--sp-12), 5vw, var(--sp-20));
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(250,250,250,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-grey-l);
}

/* When nav is over a dark hero (not yet scrolled), use light text */
.nav:not(.scrolled) .nav__link { color: rgba(255,255,255,0.8); }
.nav:not(.scrolled) .nav__link:hover { color: var(--clr-mint); }
.nav:not(.scrolled) .nav__link::after { background: var(--clr-mint); }
.nav:not(.scrolled) .nav__hamburger span { background: var(--clr-white); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo { height: 32px; }
.nav__logo img { height: 100%; width: auto; transition: filter var(--dur) var(--ease); }
.nav:not(.scrolled) .nav__logo img { filter: brightness(0) invert(1); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-forest);
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-orange);
  transition: width var(--dur) var(--ease);
}

.nav__link:hover { color: var(--clr-orange); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--clr-forest); font-weight: 600; }

.nav__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-6);
  background: var(--clr-forest);
  color: var(--clr-white);
  border-radius: 2px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--clr-orange);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-forest);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-forest);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(var(--sp-16), 10vw, var(--sp-32));
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  transform: none;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.nav__mobile-link {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--clr-white);
  transition: color var(--dur) var(--ease);
}

.nav__mobile-link:hover { color: var(--clr-mint); }

.nav__mobile-cta {
  margin-top: var(--sp-10);
  display: inline-block;
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--sp-4) var(--sp-8);
  border: 2px solid var(--clr-mint);
  color: var(--clr-mint);
  border-radius: 2px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav__mobile-cta:hover {
  background: var(--clr-mint);
  color: var(--clr-forest);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--sp-4) var(--sp-8);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  border: 2px solid var(--clr-orange);
}

.btn--primary:hover {
  background: var(--clr-orange-d);
  border-color: var(--clr-orange-d);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-forest);
  border: 2px solid var(--clr-forest);
}

.btn--outline:hover {
  background: var(--clr-forest);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--sp-5) var(--sp-10);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--clr-forest);
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg-text {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(130, 201, 152, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__inner {
  padding-block: var(--sp-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__label {
  color: var(--clr-mint);
  margin-bottom: var(--sp-6);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}

.hero__headline em {
  font-style: italic;
  color: var(--clr-mint);
}

.hero__sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--sp-10);
}

.hero__sub span {
  color: var(--clr-mint);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}

.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 6s ease;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,67,70,0.4), rgba(0,67,70,0.1));
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.2);
  animation: scroll-line 1.5s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Work section ─────────────────────────────────────────── */
.work-section { background: var(--clr-off-white); }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-12);
  gap: var(--sp-4);
}

.section-header__line {
  flex: 1;
  height: 1px;
  background: var(--clr-grey-l);
  margin-inline: var(--sp-6);
  align-self: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-1);
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-black);
  aspect-ratio: 4/3;
}

.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
  filter: brightness(0.75) saturate(0.8);
}

.work-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(0.7);
}

.work-item__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6) var(--sp-8);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--dur) var(--ease);
}

.work-item:hover .work-item__info { opacity: 1; transform: none; }

.work-item__always {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-8);
  right: var(--sp-8);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.work-item:hover .work-item__always { opacity: 0; }

.work-item__number {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-1);
}

.work-item__title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--clr-white);
  font-weight: 400;
  line-height: 1.2;
}

.work-item__tags {
  font-size: var(--text-xs);
  color: var(--clr-mint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.work-item__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.work-item__cta::after {
  content: '→';
  transition: transform var(--dur) var(--ease);
}

.work-item:hover .work-item__cta::after { transform: translateX(4px); }

/* ── Statement section (Evolve or Die) ───────────────────── */
.statement-section {
  background: var(--clr-forest-d);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(130,201,152,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.statement__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto var(--sp-16);
  line-height: 1.75;
}

.statement__body strong {
  color: var(--clr-mint);
  font-weight: 500;
}

.statement__headline {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}

.statement__or {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--sp-3);
}

.statement__fade {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  margin-bottom: var(--sp-6);
}

.statement__sub {
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-serif);
}

/* ── Services ─────────────────────────────────────────────── */
.services-section { background: var(--clr-off-white); }

.services-list { display: grid; gap: 0; }

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: var(--sp-8);
  padding: var(--sp-12) 0;
  border-top: 1px solid var(--clr-grey-l);
}

.service-item:last-child { border-bottom: 1px solid var(--clr-grey-l); }

.service-num {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--clr-grey-l);
  font-weight: 700;
  line-height: 1;
  padding-top: var(--sp-1);
}

.service-content { padding-top: var(--sp-1); }

.service-outcome {
  font-size: var(--text-md);
  color: var(--clr-grey);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  max-width: 540px;
}

.service-how {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: var(--sp-3);
}

.service-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--clr-forest);
  line-height: 1.3;
}

.service-name + .service-name { margin-top: var(--sp-1); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  background: var(--clr-forest);
  overflow: hidden;
}

.testimonials-header { color: var(--clr-white); }
.testimonials-header .eyebrow { color: var(--clr-mint); }

.testimonials-header h2 { color: var(--clr-white); }

.testi-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--sp-12);
}

.testi-track {
  display: flex;
  transition: transform var(--dur-slow) var(--ease);
}

.testi-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.testi-img-wrap {
  position: relative;
}

.testi-img-wrap img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.9);
  border-radius: 2px;
}

.testi-quote {
  padding-top: var(--sp-4);
}

.testi-mark {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--clr-mint);
  opacity: 0.3;
  line-height: 0.7;
  margin-bottom: var(--sp-6);
}

.testi-text {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  font-style: italic;
  font-family: var(--font-serif);
}

.testi-author { display: flex; align-items: center; gap: var(--sp-4); }

.testi-author-info {}

.testi-author-name {
  font-weight: 600;
  color: var(--clr-white);
  font-size: var(--text-base);
}

.testi-author-role {
  font-size: var(--text-sm);
  color: var(--clr-mint);
}

.testi-client-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(130,201,152,0.3);
  color: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.testi-controls {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.testi-btn {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  transition: all var(--dur) var(--ease);
  font-size: 1.1rem;
}

.testi-btn:hover {
  background: var(--clr-mint);
  border-color: var(--clr-mint);
  color: var(--clr-forest);
}

.testi-dots {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  margin-left: var(--sp-4);
}

.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.testi-dot.active {
  background: var(--clr-mint);
  width: 20px;
  border-radius: 3px;
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--clr-mint-l);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--clr-mint);
  opacity: 0.15;
  top: -200px; left: -100px;
  pointer-events: none;
}

.cta-band h2 {
  color: var(--clr-forest);
  margin-bottom: var(--sp-4);
}

.cta-band p {
  font-size: var(--text-md);
  color: var(--clr-forest);
  opacity: 0.75;
  margin-bottom: var(--sp-8);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--clr-off-white); }

.faq-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-8));
}

.faq-list { display: grid; gap: 0; }

.faq-item {
  border-top: 1px solid var(--clr-grey-l);
}

.faq-item:last-child { border-bottom: 1px solid var(--clr-grey-l); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  font-weight: 500;
  color: var(--clr-black);
  font-size: var(--text-base);
  cursor: pointer;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color var(--dur) var(--ease);
}

.faq-question:hover { color: var(--clr-forest); }

.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--clr-grey-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--clr-grey);
  transition: all var(--dur) var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--clr-forest);
  border-color: var(--clr-forest);
  color: var(--clr-white);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: var(--sp-6);
  color: var(--clr-grey);
  font-size: var(--text-base);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--clr-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--clr-forest-d);
  padding-block: var(--sp-20);
}

.footer__grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.footer__logo img { height: 30px; width: auto; }
.footer__logo p {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 200px;
}

.footer__nav-title,
.footer__contact-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--sp-5);
}

.footer__nav-links { display: grid; gap: var(--sp-3); }
.footer__nav-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--dur) var(--ease);
}

.footer__nav-link:hover { color: var(--clr-mint); }

.footer__address {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-style: normal;
  margin-bottom: var(--sp-6);
}

.footer__socials {
  display: flex;
  gap: var(--sp-4);
}

.footer__social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}

.footer__social:hover {
  border-color: var(--clr-mint);
  background: var(--clr-mint);
}

.footer__social:hover img { filter: invert(1) brightness(0); }

.footer__social img {
  width: 16px; height: 16px;
  filter: invert(1);
  opacity: 0.6;
}

.footer__bottom {
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Marquee ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--clr-mint);
  padding-block: var(--sp-4);
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}

.marquee__track--reverse { animation-direction: reverse; }

.marquee__item {
  flex-shrink: 0;
  padding-inline: var(--sp-6);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-forest);
  display: flex; align-items: center; gap: var(--sp-4);
}

.marquee__item::before {
  content: '✦';
  font-size: 0.5em;
  opacity: 0.5;
}

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

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--clr-forest);
  padding-top: calc(var(--nav-h) + clamp(var(--sp-16), 8vw, var(--sp-24)));
  padding-bottom: clamp(var(--sp-16), 8vw, var(--sp-24));
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(130,201,152,0.3), transparent);
}

.page-hero__eyebrow { color: var(--clr-mint); margin-bottom: var(--sp-4); }

.page-hero h1 {
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}

.page-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ── About ────────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.about-intro__text p {
  font-size: var(--text-md);
  color: var(--clr-grey);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

.about-intro__text p:first-of-type {
  font-size: var(--text-lg);
  color: var(--clr-black);
  font-family: var(--font-serif);
}

.about-founder {
  background: var(--clr-forest);
  border-radius: 2px;
  padding: var(--sp-12) var(--sp-10);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.about-founder__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.7);
}

.about-founder__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-mint);
  margin-bottom: var(--sp-3);
}

.about-founder__name {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--clr-white);
  font-weight: 300;
  margin-bottom: var(--sp-2);
}

.about-founder__title {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-6);
}

.about-founder__bio {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* Values / Pillars */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.value-card {
  padding: var(--sp-8);
  border: 1px solid var(--clr-grey-l);
  border-radius: 2px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.value-card:hover {
  border-color: var(--clr-mint);
  box-shadow: 0 4px 20px rgba(0,67,70,0.08);
}

.value-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--clr-forest);
  margin-bottom: var(--sp-3);
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-grey);
  line-height: 1.7;
}

/* ── Case Study ───────────────────────────────────────────── */
.case-hero {
  background: var(--clr-forest-d);
  padding-top: calc(var(--nav-h) + clamp(var(--sp-16), 8vw, var(--sp-24)));
  padding-bottom: clamp(var(--sp-12), 5vw, var(--sp-16));
}

.case-meta {
  display: flex;
  gap: var(--sp-10);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}

.case-meta__item {}
.case-meta__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-1);
}

.case-meta__value {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}

.case-cover {
  margin-top: var(--sp-12);
  border-radius: 4px;
  overflow: hidden;
  max-height: 560px;
}

.case-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.case-body { max-width: 740px; margin: 0 auto; }

.case-body h2 {
  font-size: var(--text-xl);
  color: var(--clr-forest);
  margin: var(--sp-12) 0 var(--sp-4);
}

.case-body p {
  font-size: var(--text-base);
  color: var(--clr-grey);
  line-height: 1.85;
  margin-bottom: var(--sp-5);
}

.case-body ul {
  list-style: none;
  margin-bottom: var(--sp-5);
}

.case-body ul li {
  font-size: var(--text-base);
  color: var(--clr-grey);
  line-height: 1.75;
  padding-left: var(--sp-6);
  position: relative;
  margin-bottom: var(--sp-2);
}

.case-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clr-mint);
}

.case-img {
  margin-block: var(--sp-12);
  border-radius: 4px;
  overflow: hidden;
}

.case-img img { width: 100%; object-fit: cover; }

.case-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-block: var(--sp-12);
}

.case-img-grid img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.case-results {
  background: var(--clr-forest);
  border-radius: 4px;
  padding: var(--sp-10) var(--sp-12);
  margin-block: var(--sp-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  text-align: center;
}

.case-result__num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--clr-mint);
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.case-result__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.case-quote {
  border-left: 3px solid var(--clr-mint);
  padding: var(--sp-6) var(--sp-8);
  background: var(--clr-mint-l);
  border-radius: 0 4px 4px 0;
  margin-block: var(--sp-12);
}

.case-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--clr-forest);
  margin-bottom: var(--sp-4);
}

.case-quote cite {
  font-size: var(--text-sm);
  color: var(--clr-grey);
  font-style: normal;
  font-weight: 600;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info__item {
  margin-bottom: var(--sp-8);
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: var(--sp-2);
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--clr-grey);
  line-height: 1.7;
}

.form-group { margin-bottom: var(--sp-6); }

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-grey);
  margin-bottom: var(--sp-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--clr-black);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-grey-l);
  border-radius: 2px;
  padding: var(--sp-4) var(--sp-5);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(0,0,0,0.3); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-forest);
  box-shadow: 0 0 0 3px rgba(0,67,70,0.08);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-msg {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: 2px;
  font-size: var(--text-sm);
  margin-top: var(--sp-4);
}

.form-msg--success {
  background: var(--clr-mint-l);
  color: var(--clr-forest);
  border: 1px solid var(--clr-mint);
}

.form-msg--error {
  background: #fff0ed;
  color: var(--clr-orange-d);
  border: 1px solid var(--clr-orange);
}

/* ── Blog ─────────────────────────────────────────────────── */
.blog-empty {
  text-align: center;
  padding-block: var(--sp-24);
}

.blog-empty__icon {
  font-size: 4rem;
  margin-bottom: var(--sp-6);
  opacity: 0.3;
}

.blog-empty h3 {
  margin-bottom: var(--sp-4);
  color: var(--clr-forest);
}

.blog-empty p {
  color: var(--clr-grey);
  max-width: 420px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form .form-input { flex: 1; }

/* ── Work index page ──────────────────────────────────────── */
.work-list { display: grid; gap: var(--sp-1); }

.work-list-item {
  display: grid;
  grid-template-columns: 360px 1fr auto;
  align-items: center;
  gap: var(--sp-8);
  border-top: 1px solid var(--clr-grey-l);
  padding: var(--sp-8) 0;
  text-decoration: none;
  transition: background var(--dur) var(--ease);
  position: relative;
}

.work-list-item:last-child { border-bottom: 1px solid var(--clr-grey-l); }

.work-list-item:hover .work-list-item__title { color: var(--clr-orange); }

.work-list-item__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
}

.work-list-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.work-list-item:hover .work-list-item__img img { transform: scale(1.04); }

.work-list-item__title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--clr-black);
  transition: color var(--dur) var(--ease);
  margin-bottom: var(--sp-2);
}

.work-list-item__tags {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-grey);
}

.work-list-item__arrow {
  font-size: var(--text-xl);
  color: var(--clr-grey-l);
  transition: all var(--dur) var(--ease);
}

.work-list-item:hover .work-list-item__arrow {
  color: var(--clr-orange);
  transform: translateX(4px);
}

/* ── Utility classes ──────────────────────────────────────── */
.text-forest  { color: var(--clr-forest); }
.text-mint    { color: var(--clr-mint); }
.text-orange  { color: var(--clr-orange); }
.text-white   { color: var(--clr-white); }
.text-grey    { color: var(--clr-grey); }
.text-center  { text-align: center; }

.bg-forest    { background: var(--clr-forest); }
.bg-dark      { background: var(--clr-forest-d); }
.bg-mint-l    { background: var(--clr-mint-l); }
.bg-off-white { background: var(--clr-off-white); }

.mt-auto  { margin-top: auto; }
.mb-0     { margin-bottom: 0; }
.d-flex   { display: flex; }
.gap-4    { gap: var(--sp-4); }
.gap-8    { gap: var(--sp-8); }
.flex-wrap{ flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   AWWWARDS MOTION LAYER
   Preloader · Lenis smooth scroll · custom cursor · magnetic ·
   split-line reveals · grain · scroll-scrub helpers
   ============================================================ */

/* ── Selection + focus polish ─────────────────────────────── */
::selection { background: var(--clr-mint); color: var(--clr-forest-d); }
:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Cross-document View Transitions ──────────────────────── */
@view-transition { navigation: auto; }

@media not (prefers-reduced-motion: reduce) {
  ::view-transition-old(root) {
    animation: vt-fade-out 0.35s cubic-bezier(0.4,0,0.2,1) both;
  }
  ::view-transition-new(root) {
    animation: vt-rise-in 0.55s cubic-bezier(0.16,1,0.3,1) both;
  }
  @keyframes vt-fade-out {
    to { opacity: 0; transform: translateY(-8px); }
  }
  @keyframes vt-rise-in {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
  }
}
/* Persist chrome across navigations so it doesn't flicker */
.nav    { view-transition-name: site-nav; }
.footer { view-transition-name: site-footer; }

/* ── Scroll progress bar ──────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--clr-mint), var(--clr-orange));
  z-index: 101;
  pointer-events: none;
}

/* ── Nav hide on scroll-down ──────────────────────────────── */
.nav {
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform 0.5s var(--ease);
}
.nav.nav--hidden { transform: translateY(-100%); }

/* ── Capabilities marquee (home) ──────────────────────────── */
.cap-marquee {
  overflow: hidden;
  background: var(--clr-forest-d);
  border-block: 1px solid rgba(130,201,152,0.12);
  padding-block: var(--sp-6);
  position: relative;
}
.cap-marquee__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.cap-marquee__item {
  flex-shrink: 0;
  padding-inline: var(--sp-8);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.cap-marquee__item::after {
  content: '✦';
  font-size: 0.5em;
  color: var(--clr-mint);
}

/* ── Ambient hero canvas ──────────────────────────────────── */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.hero .container { position: relative; z-index: 1; }
.hero__scroll { z-index: 1; }

/* ── Animated counters ────────────────────────────────────── */
.count[data-count-to] { font-variant-numeric: tabular-nums; }

/* ── Lenis smooth scroll ──────────────────────────────────── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html.lenis { scroll-behavior: auto; }

/* When the GSAP layer is live, JS owns reveal state (kills CSS fallback) */
html.gsap-ready .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ── Lock scroll while preloader runs ─────────────────────── */
html.is-loading, html.is-loading body { overflow: hidden; height: 100%; }

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--clr-forest-d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader__inner {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  color: var(--clr-mint);
}

.preloader__word {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  overflow: hidden;
}

.preloader__word span { display: inline-block; }

.preloader__count {
  position: absolute;
  bottom: clamp(var(--sp-8), 6vw, var(--sp-16));
  right: clamp(var(--sp-8), 6vw, var(--sp-16));
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

.preloader__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--clr-mint);
}

/* The reveal curtain panels */
.preloader__curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-forest);
  transform: translateY(0);
  pointer-events: none;
}

/* ── Custom cursor (desktop, fine pointer) ────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  border-radius: 50%;
  mix-blend-mode: difference;
  will-change: transform;
  opacity: 0;
}

.cursor-dot {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: #fff;
}

.cursor-ring {
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(255,255,255,0.7);
  transition: width 0.32s var(--ease), height 0.32s var(--ease),
              margin 0.32s var(--ease), background 0.32s var(--ease),
              border-color 0.32s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-ring.is-hover {
  width: 58px; height: 58px;
  margin: -29px 0 0 -29px;
  background: rgba(255,255,255,0.12);
  border-color: transparent;
}

.cursor-ring.is-view {
  width: 96px; height: 96px;
  margin: -48px 0 0 -48px;
  background: var(--clr-mint);
  border-color: transparent;
  mix-blend-mode: normal;
}

.cursor-ring.is-hidden { opacity: 0 !important; }

.cursor-ring__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-forest);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.cursor-ring.is-view .cursor-ring__label { opacity: 1; transform: scale(1); }

body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor .magnetic,
body.has-cursor [role="button"] { cursor: none; }

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── Magnetic ─────────────────────────────────────────────── */
.magnetic { will-change: transform; }
.magnetic > * { will-change: transform; pointer-events: none; }

/* ── Split-line heading reveals ───────────────────────────── */
.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.line__inner { display: block; will-change: transform; }
.word { display: inline-block; }
.word--em { font-style: italic; color: var(--clr-mint); }

/* Generic fade-up primitives driven by GSAP (opt-in via JS) */
html.gsap-ready [data-anim] { will-change: transform, opacity; }

/* ── Grain overlay ────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -150% 0;
  z-index: 9996;
  pointer-events: none;
  background-image: url('../images/grain.gif');
  opacity: 0.035;
  mix-blend-mode: overlay;
}

/* Parallax media wrappers keep overflow clipped */
[data-parallax-wrap] { overflow: hidden; }
[data-parallax] { will-change: transform; }

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring, .grain, .preloader, .preloader__curtain { display: none !important; }
  html.is-loading, html.is-loading body { overflow: auto; height: auto; }
  .line__inner { transform: none !important; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .about-intro { grid-template-columns: 1fr; }
  .about-founder { grid-template-columns: 1fr; }
  .about-founder__img { width: 160px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 60px 1fr; }
  .testi-slide { grid-template-columns: 160px 1fr; gap: var(--sp-8); }
  .work-list-item { grid-template-columns: 240px 1fr auto; gap: var(--sp-6); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .case-results { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__cta.desktop-only { display: none; }
  .nav__hamburger { display: flex; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .work-item { aspect-ratio: 3/2; }
  .work-item__info { opacity: 1; transform: none; }
  .work-item__always { display: none; }

  .service-item { grid-template-columns: 1fr; gap: var(--sp-4); }
  .service-num { font-size: var(--text-xl); }

  .testi-slide { grid-template-columns: 1fr; }
  .testi-img-wrap { max-width: 200px; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 0; }
  .section-header__line { display: none; }

  .about-founder { padding: var(--sp-8); }
  .values-grid { grid-template-columns: 1fr; }

  .work-list-item { grid-template-columns: 1fr; gap: var(--sp-4); }
  .work-list-item__img { width: 100%; }
  .work-list-item__arrow { display: none; }

  .case-img-grid { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: 1fr; text-align: left; }
  .case-meta { gap: var(--sp-6); }

  .newsletter-form { flex-direction: column; }
  .statement__headline, .statement__fade { font-size: clamp(3rem, 15vw, 6rem); }
}

@media (max-width: 480px) {
  .btn--lg { padding: var(--sp-4) var(--sp-6); font-size: var(--text-sm); }
  .case-quote { padding: var(--sp-4) var(--sp-5); }
}
