/* ══════════════════════════════════
   SECTION-SPECIFIC STYLES
══════════════════════════════════ */

/* ── STATS BAR ── */
.stats-bar {
  background: var(--espresso);
  padding: clamp(28px, 4vw, 40px) 0;
}
.stats-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 clamp(24px, 5vw, 64px);
  text-align: center;
}
.stats-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  line-height: 1;
}
.stats-bar__label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.45);
}
.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(250, 247, 244, 0.1);
  flex-shrink: 0;
}

/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--warm-linen);
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid rgba(44, 36, 32, 0.06);
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
}
.logos-bar__label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  opacity: 0.6;
  margin-bottom: clamp(24px, 4vw, 36px);
}
.logos-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.logos-bar__item {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}
.logos-bar__item:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}
.logos-bar__item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  max-width: 120px;
}
.logos-bar__item--text span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--espresso);
  letter-spacing: 1px;
  white-space: nowrap;
}
.logos-bar__item--sugar span {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: normal;
  letter-spacing: 0.5px;
}
.logos-bar__item--sugar em {
  font-style: italic;
  font-size: 0.85em;
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logos-bar__item--playbiig {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logos-bar__item--playbiig img {
  height: 28px;
  width: 28px;
  object-fit: contain;
}
.logos-bar__item--playbiig span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--espresso);
  letter-spacing: 0.5px;
}

/* ── PRICING ── */
.pricing {
  background: var(--soft-taupe);
}
.pricing__header {
  margin-bottom: clamp(40px, 6vw, 60px);
}
.pricing__sub {
  font-size: 1rem;
  color: var(--clay);
  max-width: 460px;
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}
.pricing__card {
  background: var(--cream);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 36, 32, 0.1);
}
.pricing__card--featured {
  border-color: var(--terracotta);
  background: var(--espresso);
  transform: scale(1.03);
}
.pricing__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.pricing__badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing__tier {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--espresso);
  margin-bottom: 12px;
}
.pricing__card--featured .pricing__tier { color: var(--cream); }
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing__amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--espresso);
  line-height: 1;
}
.pricing__card--featured .pricing__amount { color: var(--cream); }
.pricing__from {
  font-size: 0.75rem;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing__card--featured .pricing__from { color: rgba(250,247,244,0.5); }
.pricing__desc {
  font-size: 0.9rem;
  color: var(--clay);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing__card--featured .pricing__desc { color: rgba(250,247,244,0.65); }
.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing__list li {
  font-size: 0.85rem;
  color: var(--clay);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.pricing__card--featured .pricing__list li { color: rgba(250,247,244,0.7); }
.pricing__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}
.pricing__note {
  font-size: 0.85rem;
  color: var(--clay);
  margin-top: 8px;
}

/* ── CASE STUDY ── */
.case-study {
  background: var(--warm-linen);
}
.case-study__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  border-radius: 24px;
  background: var(--cream);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-soft);
}
.case-study__brand {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--espresso);
  margin: 8px 0 4px;
}
.case-study__category {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--clay);
}
.case-study__content h2 {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--espresso);
  line-height: 1.4;
  margin-bottom: 28px;
}
.case-study__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.case-study__block h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
  font-weight: 500;
}
.case-study__block p {
  font-size: 0.9rem;
  color: var(--clay);
  line-height: 1.7;
}
.case-study__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.case-study__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--soft-taupe);
  border-radius: 12px;
  text-align: center;
}
.case-study__stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--espresso);
  line-height: 1;
}
.case-study__stat-label {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clay);
}

/* ── FAQ ── */
.faq {
  background: var(--soft-taupe);
}
.faq__header {
  margin-bottom: clamp(40px, 6vw, 56px);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-top: 1px solid rgba(44, 36, 32, 0.1);
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(44, 36, 32, 0.1);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-base);
}
.faq__question:hover { color: var(--terracotta); }
.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}
.faq__item.open .faq__answer {
  max-height: 400px;
  padding-bottom: 22px;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--clay);
  line-height: 1.8;
}
.faq__answer a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-out);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.5rem;
  color: rgba(250,247,244,0.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-base);
}
.lightbox__close:hover { color: var(--cream); }

/* ── 1. HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--warm-linen);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}

.hero__headline {
  margin-bottom: 24px;
  color: var(--espresso);
}
.hero__headline em {
  color: var(--terracotta);
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clay);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__image-frame {
  border-radius: 200px 200px 40px 40px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 600px;
  box-shadow: var(--shadow-soft);
}
.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder styling when image hasn't loaded */
.hero__image-frame img,
.about__image-frame img,
.work__item img {
  background: linear-gradient(135deg, var(--soft-taupe), var(--clay));
  color: transparent; /* hide alt text */
  min-height: 200px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--clay);
  opacity: 0.4;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ── 2. VALUE PROP BAR ── */
.value-bar {
  background: var(--soft-taupe);
  padding: clamp(60px, 8vw, 100px) 0;
}

.value-bar__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--terracotta);
}
.value-bar__icon svg {
  width: 100%;
  height: 100%;
}

.value-bar__title {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

.value-bar__item p {
  font-size: 0.9rem;
  max-width: 300px;
  margin: 0 auto;
}


/* ── 3. ABOUT ── */
.about {
  background: var(--warm-linen);
}

.about__image-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
}
.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content h2 {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.4;
  color: var(--espresso);
  margin-bottom: 28px;
}

.about__body {
  margin-bottom: 32px;
}
.about__body p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about__body em {
  font-style: italic;
  color: var(--terracotta);
}
.about__body strong {
  font-weight: 600;
  color: var(--espresso);
}


/* ── 4. SERVICES ── */
.services {
  background: var(--soft-taupe);
}

.services__header {
  margin-bottom: clamp(40px, 6vw, 60px);
}
.services__header h2 {
  margin-bottom: 0;
}

.services__grid {
  margin-bottom: clamp(40px, 6vw, 60px);
}

.services__cta {
  margin-top: 10px;
}


/* ── 5. WORK SAMPLES ── */
.work {
  background: var(--warm-linen);
}

.work__header {
  margin-bottom: clamp(40px, 6vw, 60px);
}
.work__header h2 {
  margin-bottom: 12px;
}

.work__intro-text {
  font-size: 1rem;
  color: var(--clay);
  max-width: 500px;
  margin: 0 auto;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.work__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  will-change: transform;
}
.work__item:hover {
  z-index: 2;
  box-shadow: 0 20px 40px rgba(44, 36, 32, 0.15);
}
.work__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  background: linear-gradient(135deg, var(--soft-taupe), var(--clay));
  color: transparent;
  min-height: 200px;
}
.work__item:hover img {
  transform: scale(1.08);
}

.work__item--tall {
  grid-row: span 2;
}
.work__item--tall img {
  aspect-ratio: auto;
  height: 100%;
}

.work__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 16px 16px;
  background: linear-gradient(transparent, rgba(44, 36, 32, 0.7));
  transform: translateY(100%);
  transition: transform var(--transition-base);
}
.work__item:hover .work__overlay {
  transform: translateY(0);
}

.work__tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(194, 113, 79, 0.8);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Video showcase */
.work__videos {
  margin-top: clamp(50px, 7vw, 80px);
}
.work__videos-title {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--espresso);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.work__videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work__video-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--espresso);
}
.work__video-item video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s var(--ease-out);
}
.work__video-item.playing video {
  opacity: 1;
}
.work__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.9);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-base);
  pointer-events: none;
}
.work__video-item:hover .work__video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--cream);
}
.work__video-item.playing .work__video-play {
  opacity: 0;
}

.work__cta {
  margin-top: clamp(40px, 6vw, 60px);
}
.work__cta-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--espresso);
  margin-bottom: 20px;
}


/* ── 6. ADVANTAGE (DARK) ── */
.advantage {
  background: var(--walnut);
  color: var(--cream);
}

.advantage__headline {
  color: var(--cream);
  margin-bottom: 16px;
}

.advantage__sub {
  color: rgba(250, 247, 244, 0.7);
  max-width: 560px;
  margin: 0 auto clamp(40px, 6vw, 60px);
  font-size: 1.05rem;
}

.advantage__card {
  background: rgba(250, 247, 244, 0.06);
  border: 1px solid rgba(250, 247, 244, 0.1);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  transition: background var(--transition-base);
}
.advantage__card:hover {
  background: rgba(250, 247, 244, 0.1);
}

.advantage__card-icon {
  width: 40px;
  height: 40px;
  color: var(--ochre);
  margin-bottom: 20px;
}
.advantage__card-icon svg {
  width: 100%;
  height: 100%;
}

.advantage__card h3 {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

.advantage__card p {
  color: rgba(250, 247, 244, 0.65);
  font-size: 0.9rem;
}

.advantage__cta {
  margin-top: clamp(40px, 6vw, 60px);
}


/* ── 7. PROCESS ── */
.process {
  background: var(--warm-linen);
}

.process__header {
  margin-bottom: clamp(40px, 6vw, 70px);
}
.process__header h2 {
  margin-bottom: 16px;
}
.process__header p {
  max-width: 480px;
  margin: 0 auto;
}

.process__steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid rgba(44, 36, 32, 0.1);
  align-items: start;
}
.process__step:last-child {
  border-bottom: 1px solid rgba(44, 36, 32, 0.1);
}

.process__step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(44, 36, 32, 0.08);
  line-height: 1;
}

.process__step-content h3 {
  margin-bottom: 10px;
  color: var(--espresso);
}

.process__step-content p {
  font-size: 0.9rem;
}


/* ── 8. SOCIAL PROOF ── */
.proof {
  background: var(--soft-taupe);
  padding: clamp(80px, 10vw, 140px) 0;
}

.proof .label {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.proof__quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
  text-align: left;
}

.proof__quote {
  background: var(--cream);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
}

.proof__quotemark {
  width: 32px;
  height: 32px;
  color: var(--terracotta);
  opacity: 0.3;
  margin-bottom: 20px;
}

.proof__text {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--espresso);
  margin-bottom: 24px;
}

.proof__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 1px;
}
.proof__role {
  font-size: 0.75rem;
  color: var(--clay);
  margin-top: 2px;
}


/* ── 9. FINAL CTA ── */
.final-cta {
  background: linear-gradient(160deg, #EDE5DA, #E0D6CA, #D8CFC0);
  padding: clamp(80px, 10vw, 120px) 0;
}

.final-cta__headline {
  color: var(--espresso);
  margin-bottom: 20px;
}

.final-cta__sub {
  font-size: 1.1rem;
  color: var(--clay);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* Intake Form */
.intake-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intake-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.intake-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intake-form__field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--espresso);
}

.intake-form__field input,
.intake-form__field select,
.intake-form__field textarea {
  padding: 14px 16px;
  border: 1px solid rgba(44, 36, 32, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.intake-form__field input::placeholder,
.intake-form__field textarea::placeholder {
  color: var(--clay);
  opacity: 0.5;
}

.intake-form__field input:focus,
.intake-form__field select:focus,
.intake-form__field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(194, 113, 79, 0.1);
}

.intake-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.intake-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B5B4C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.intake-form__submit {
  margin-top: 8px;
}

.intake-form__micro {
  font-size: 0.78rem;
  color: var(--clay);
  margin-top: 12px;
  opacity: 0.7;
}

.final-cta__or {
  font-size: 0.9rem;
  color: var(--clay);
  margin-top: 8px;
}
.final-cta__link {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}
.final-cta__link:hover {
  color: var(--terracotta-hover);
}


/* ══════════════════════════════════
   RESPONSIVE — SECTIONS
══════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__content { order: 2; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { order: 1; }
  .hero__image-frame {
    max-height: 400px;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__scroll-hint { display: none; }

  .about__content { text-align: left; order: 2; }
  .about__image { order: 1; }
  .about__image-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .work__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .work__item--tall { grid-row: span 1; }
  .work__item--tall img { aspect-ratio: 3/4; height: auto; }

  .work__videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .process__step {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }
  .process__step-num { font-size: 2rem; }

  .stats-bar__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stats-bar__divider { display: none; }

  .logos-bar__grid { gap: 20px; }
  .logos-bar__item img { height: 24px; }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing__card--featured { transform: scale(1); }
  .pricing__card--featured:hover { transform: translateY(-4px); }

  .case-study__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-study__stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .intake-form__row {
    grid-template-columns: 1fr;
  }

  /* Extra bottom padding for sticky CTA on mobile */
  .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .work__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}
