@font-face {
  font-family: 'Mango Grotesque';
  src: url('./assets/MangoGrotesque-SemiBold-BF6a47cba8b4c2a.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OceanTrace';
  src: url('./assets/OceanTrace.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #ededed;
  --surface: #ffffff;
  --text: #181818;
  --muted: #6b6b6b;
  --muted-light: #8b8b8b;
  --line: rgba(0,0,0,0.08);
  --orange: #e74d5f;
  --orange-dark: #ff4c00;
  --dark: #0f0f10;
  --dark-2: #161617;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --shadow-soft: 0 16px 40px rgba(0,0,0,0.08);
  --shadow-dark: 0 24px 60px rgba(0,0,0,0.24);
  --max: 1180px;
  --text-xs: clamp(0.75rem, 0.72rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.25rem, 1.1rem + 0.8vw, 1.8rem);
  --text-xl: clamp(2rem, 1.35rem + 2vw, 3.6rem);
  --text-hero: clamp(2.9rem, 1.2rem + 5.5vw, 6.8rem);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Mango Grotesque', 'Arial Narrow', sans-serif;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
details summary { list-style: none; cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 28px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 28px), 820px); }
.section { padding: clamp(2.5rem, 6vw, 5.5rem) 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237, 237, 237, 0.86);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img { width: 156px; height: auto; }
.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-cta,
.primary-pill {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}
.mobile-nav {
  display: none;
  padding: 0 14px 14px;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
}
.hero {
  position: relative;
}
.hero-shell {
  display: grid;
  gap: 22px;
}
.hero-copy {
  text-align: left;
  max-width: 760px;
  margin: 0;
  justify-self: start;
}
.micro-label,
.section-mini {
  color: var(--muted-light);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-title {
  margin-top: 16px;
  font-size: var(--text-hero);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 700;
}
.hero-title span { display: block; }
.hero-title .hero-title-accent { color: var(--orange); }
.hero-title em,
.hero-title strong,
.hero-title b {
  display: inline-block;
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
  transform-origin: center;
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.hero-text {
  max-width: 580px;
  color: var(--muted);
  margin-top: 18px;
}
.hero-actions { margin-top: 22px; }
.frame-card {
  border-radius: 26px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-dark);
}
.glass-card {
  border-radius: 24px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
}
.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  opacity: 0.9;
}
.testimonials-brand-row.logo-marquee {
  overflow: hidden;
  width: 100%;
  opacity: 1;
  margin-top: 120px;
  display: block;
  background: #ffffff;
  padding: 28px 0;
  border-radius: 18px;
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: logoScrollLeftToRight 60s linear infinite;
}
.logo-marquee-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo-marquee-group img {
  display: block;
  height: clamp(48px, 6vw, 88px);
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  margin: 0 clamp(40px, 5vw, 80px);
}
@keyframes logoScrollLeftToRight {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    transform: none;
  }
}
.ticker-zone {
  margin-top: 14px;
  overflow: hidden;
  display: grid;
  gap: 10px;
}
.ticker {
  display: flex;
  gap: 10px;
  min-width: max-content;
}
.ticker span,
.chip-row span,
.service-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 0.88rem;
  white-space: nowrap;
}
.ticker-left { animation: marqueeLeft 28s linear infinite; }
.ticker-right { animation: marqueeRight 30s linear infinite; }
.intro-section { padding-top: 3rem; }
.intro-title {
  margin-top: 12px;
  font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.4rem);
  line-height: 1.18;
  text-align: center;
}
.chip-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.section-center { text-align: center; }
.display-title,
.section-title {
  margin-top: 10px;
  font-size: var(--text-xl);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.ghost-title {
  color: rgba(0,0,0,0.12);
}
.testimonial-stage {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: stretch;
}
.stats-panel {
  padding: 18px;
  display: grid;
  gap: 16px;
}
.stats-panel strong {
  display: block;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 3rem);
  line-height: 1;
}
.stats-panel span { color: var(--muted); font-size: 0.95rem; }
.quote-panel {
  display: grid;
  grid-template-columns: 325px 1fr;
  gap: 0;
}
.quote-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-copy {
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}
.quote-copy blockquote {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}
.quote-copy p { margin-top: 12px; color: rgba(255,255,255,0.74); }
.work-stack {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}
.project-card img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.project-card:hover img { transform: scale(1.03); }
.project-meta {
  position: absolute;
  inset: auto 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.project-card { position: relative; }
.project-meta h3 {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}
.services-spotlight {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.service-word {
  font-size: clamp(2.3rem, 2rem + 2vw, 5rem);
  letter-spacing: -0.2em;
  color: var(--orange);
  line-height: 0.84;
}
.service-word.right { text-align: right; }
.service-center-card {
  width: min(100%, 500px);
  padding: 16px;
}
.service-center-card img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}
.service-pills {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.about-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}
.about-card {
  position: relative;
}
.about-card img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
}
.social-dots {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}
.social-dots span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}
.about-copy p:last-of-type,
.about-copy > p:nth-of-type(2) {
  margin-top: 14px;
  color: var(--muted);
}
.timeline-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.timeline-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.timeline-list span { color: var(--muted); }
.awards-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.awards-list div {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.awards-list span { color: var(--muted); }
.pricing-stack {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}
.pricing-card {
  padding: 24px;
  border-radius: 24px;
}
.light-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.dark-glow {
  color: #fff;
  background:
    radial-gradient(circle at 20% 100%, rgba(255,90,20,0.9), transparent 24%),
    linear-gradient(180deg, #111114 0%, #171718 100%);
  box-shadow: var(--shadow-dark);
}
.plan-name { font-weight: 600; }
.plan-copy { margin-top: 10px; color: var(--muted); }
.dark-glow .plan-copy { color: rgba(255,255,255,0.72); }
.price-line {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-line strong {
  font-size: clamp(2rem, 1.3rem + 2vw, 3.4rem);
  line-height: 1;
}
.pricing-card ul {
  margin-top: 18px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}
.faq-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.faq-grid details {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}
.faq-grid summary {
  position: relative;
  padding-right: 24px;
  font-weight: 500;
}
.faq-grid summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--muted);
}
.faq-grid details[open] summary::after { content: '−'; }
.faq-grid p { margin-top: 10px; color: var(--muted); }
.contact-visual {
  position: relative;
}
.contact-visual img {
  width: 100%;
  aspect-ratio: 2.2;
  object-fit: cover;
  filter: brightness(0.58);
}
.contact-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}
.contact-overlay h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 1.4rem + 2vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.light { color: rgba(255,255,255,0.72); }
.light-pill { background: #fff; color: #111; }
.site-footer { padding: 0 0 0px; }
.footer-card {
  overflow: hidden;
  color: #161616;
  padding: 26px 22px 14px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.footer-links p {
  color: #e74d5f;
  margin-bottom: 10px;
}
.footer-links a {
  display: block;
  color: rgba(22, 22, 22, 0.85);
  margin-bottom: 2px;
}
.footer-brand {
  margin-top: 36px;
  font-size: clamp(8rem, 3rem + 8vw, 8rem);
  line-height: 0.5;
  letter-spacing: -0.07em;
  font-weight: 800;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s cubic-bezier(.16,1,.3,1), opacity 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal-scale { transform: scale(0.96); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
/* Recent Works Section */
#recent-works {
  overflow: hidden;
}
.works-scroll-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 3rem;
}
.works-row {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
}
.works-row.row-1,
.works-row.row-3 {
  animation: scrollLeft 60s linear infinite;
}
.works-row.row-2 {
  animation: scrollRight 60s linear infinite;
}
.work-card {
  min-width: 20%;
  width: 20%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.4) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-20%);
  }
  40% {
    transform: translateX(-40%);
  }
  60% {
    transform: translateX(-40%);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-40%);
  }
  20% {
    transform: translateX(-20%);
  }
  40% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(-40%);
  }
}
@media (max-width: 900px) {
  .testimonial-stage,
  .quote-panel,
  .about-layout,
  .services-spotlight,
  .faq-grid,
  .awards-list div,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .service-word { text-align: center; }
  .service-word.right { text-align: center; }
  .contact-overlay {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 760px) {
  /* Navigation & Header */
  .desktop-nav, .desktop-only { display: none; }
  .menu-toggle { display: inline-flex; min-width: 44px; min-height: 44px; }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a { min-height: 44px; display: flex; align-items: center; }
  .nav-cta, .primary-pill { min-height: 44px; min-width: 44px; }
  /* Hero Section */
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.6rem); letter-spacing: -0.06em; line-height: 1.05; }
  .hero-copy { max-width: 90vw; }
  .hero-text { font-size: 0.95rem; line-height: 1.5; }
  /* Typography & Spacing */
  .brand-row { gap: 16px; }
  .logo-marquee-group img { height: 36px; margin: 0 24px; }
  .testimonials-brand-row.logo-marquee { padding: 18px 0; margin-top: 48px; }
  .ticker span, .chip-row span, .service-pills span { font-size: 0.8rem; padding: 10px 13px; line-height: 1.3; }
  .section-mini, .micro-label { font-size: 0.7rem; letter-spacing: 0.1em; }
  .section { padding: 2.5rem 0; }
  /* Testimonials */
  .testimonial-stage { grid-template-columns: 1fr; gap: 12px; margin-top: 14px; }
  .stats-panel { padding: 14px; border-radius: 12px; }
  .stats-panel strong { font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2.2rem); }
  .quote-panel { grid-template-columns: 1fr; min-height: auto; border-radius: 12px; }
  /* Recent Works */
  .works-scroll-container { gap: 16px; margin-top: 2rem; }
  .work-card { font-size: 1.4rem; border-radius: 12px; }
  @keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60%); }
  }
  @keyframes scrollRight {
    0% { transform: translateX(-60%); }
    100% { transform: translateX(0); }
  }
  .quote-copy { padding: 14px; }
  .quote-copy blockquote { font-size: clamp(0.95rem, 0.92rem + 0.4vw, 1.2rem); }
  .agency-value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .agency-value-wrap,
  .studio-coverage-wrap,
  .studio-coverage-header,
  .studio-coverage-copy,
  .studio-coverage-list,
  .studio-button-wrap {
    width: min(calc(100% - 20px), 100%);
  }
  /* Cards & Buttons */
  button, a, details { min-height: 44px; min-width: 44px; }
  .footer-brand { margin-top: 24px; }
  .pricing-card { min-height: auto; }
  /* Forms */
  .contact-form input, .contact-form textarea, .contact-form select {
    min-height: 44px;
    font-size: 16px;
    border-radius: 12px;
  }
  .contact-form textarea { min-height: 100px; }
  /* FAQs */
  .faq-grid { grid-template-columns: 1fr; gap: 10px; }
  .faq-grid details { padding: 12px 14px; border-radius: 12px; }
  .faq-grid summary { font-size: 0.9rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-left, .ticker-right { animation: none; }
  .project-card img { transition: none; }
}

/* Services page */
.services-page {
  background: #fff;
  color: #181818;
}
.services-page .site-header {
  background: rgba(255, 255, 255, 0.88);
}
.services-page .desktop-nav a:first-child {
  color: var(--orange);
}
.services-main {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 9vw, 8rem);
}
.services-hero {
  max-width: 1040px;
}
.services-breadcrumb {
  color: #a1a1a1;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.services-kicker {
  margin-top: 28px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.services-title,
.service-detail-title,
.services-cta-title {
  font-family: 'Mango Grotesque', 'Arial Narrow', sans-serif;
  font-stretch: condensed;
  text-transform: uppercase;
}
.services-title {
  margin-top: 10px;
  max-width: 1000px;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.91;
  letter-spacing: -0.055em;
  font-weight: 700;
}
.services-title span { display: block; color: var(--orange); }
.services-intro {
  max-width: 520px;
  margin-top: 24px;
  color: #858585;
  font-size: 0.95rem;
}
.services-list {
  margin-top: clamp(3rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-detail {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #f7f7f7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.035);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s ease, background 0.35s ease;
}
.service-detail:first-child {
  grid-column: 1 / -1;
  min-height: 360px;
  background: #fff0f1;
  border-color: rgba(231, 77, 95, 0.15);
}
.service-detail:nth-child(4) {
  color: #fff;
  background: #181818;
  border-color: #181818;
}
.service-detail:hover { transform: translateY(-5px); box-shadow: 0 20px 34px rgba(0, 0, 0, 0.1); }
.service-index {
  color: var(--orange);
  font-family: 'Mango Grotesque', 'Arial Narrow', sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
}
.service-detail-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.service-category {
  margin: 0;
  color: var(--orange);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-detail-title {
  max-width: 680px;
  margin-top: 44px;
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.service-detail-copy {
  max-width: 620px;
  margin-top: 14px;
  color: #777;
  font-size: 0.78rem;
  line-height: 1.55;
}
.service-detail:nth-child(4) .service-detail-copy,
.service-detail:nth-child(4) .service-detail-list span { color: rgba(255, 255, 255, 0.68); }
.service-detail:nth-child(4) .service-detail-list strong { color: #fff; }
.service-detail-list {
  max-width: 680px;
  margin: 14px 0 0;
  padding-left: 15px;
  color: #777;
  font-size: 0.76rem;
  line-height: 1.55;
}
.service-detail-list li { padding-left: 3px; margin-top: 6px; }
.service-detail-list li::marker { color: var(--orange); }
.service-detail-list strong { color: #292929; }
.service-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 17px;
  border: 1px solid #222;
  border-radius: 999px;
  font-size: 0.7rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.service-detail:nth-child(4) .service-button { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.service-detail:nth-child(4) .service-button:hover { background: #fff; color: #181818; }
.service-button:hover { background: #181818; color: #fff; transform: translateY(-2px); }
.services-cta {
  width: min(calc(100% - 24px), 1120px);
  margin: clamp(4rem, 9vw, 8rem) auto 0;
  padding: clamp(3.2rem, 7vw, 5.5rem) 20px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  background: #141414;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.13);
}
.services-cta-kicker { color: #f0a0a7; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }
.services-cta-title { margin: 12px auto 0; max-width: 500px; font-size: clamp(2.25rem, 5vw, 4.7rem); line-height: 0.92; letter-spacing: -0.04em; }
.services-cta-title span { color: var(--orange); }
.services-cta-copy { margin: 18px auto 0; color: #aaa; font-size: 0.75rem; }
.services-cta-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.services-cta-actions a { min-height: 40px; padding: 0 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; display: inline-flex; align-items: center; font-size: 0.7rem; }
.services-cta-actions a:first-child { border-color: var(--orange); background: var(--orange); }
.services-page .footer-card { background: #fff; }
@media (max-width: 760px) {
  .services-main { padding-top: 3rem; }
  .services-title { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .services-list { grid-template-columns: 1fr; }
  .service-detail,
  .service-detail:first-child { grid-column: auto; min-height: 0; }
  .service-detail-meta { gap: 14px; }
  .service-category { margin-top: 0; }
  .service-detail-title { margin-top: 34px; }
  .services-cta { width: min(calc(100% - 16px), 100%); }
}

.about-page {
  background: #fff;
  color: #181818;
}
.about-page .site-header { background: rgba(255, 255, 255, 0.88); }
.about-page .desktop-nav a:nth-child(2) { color: var(--orange); }
.about-main { padding: clamp(3rem, 5vw, 4.5rem) 0 0; overflow: hidden; }
.about-hero { max-width: 900px; padding-bottom: clamp(1.5rem, 3vw, 3rem); }
.about-breadcrumb,
.about-kicker,
.about-section-kicker,
.about-team-role {
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.about-breadcrumb { color: #a1a1a1; letter-spacing: 0.04em; text-transform: none; }
.about-kicker,
.about-section-kicker { margin-top: 28px; color: var(--orange); font-weight: 700; }
.about-title,
.about-section-title,
.about-story-title,
.about-team-title {
  font-family: 'Mango Grotesque', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.about-title {
  max-width: 900px;
  margin-top: 10px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.91;
  letter-spacing: -0.055em;
}
.about-title span { color: var(--orange); }
.about-lead { max-width: 500px; margin-top: 22px; color: #858585; font-size: 0.9rem; }
.about-story {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.75rem, 5vw, 4.75rem) 0;
  background: #f7f6f4;
}
.container.about-shell {
  width: min(calc(100% - 24px), 1040px);
  margin-inline: auto;
}
.about-story-grid,
.about-origin-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.32fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.about-section-title { max-width: 350px; margin-top: 12px; font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 0.88; letter-spacing: -0.04em; }
.about-story-copy,
.about-origin-copy { max-width: 680px; color: #707070; font-size: 0.78rem; line-height: 1.65; }
.about-story-copy p + p,
.about-origin-copy p + p { margin-top: 14px; }
.about-origin { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.about-origin-media {
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  border-radius: 8px;
  background: linear-gradient(145deg, #81776c, #b9b0a5 65%, #d0c8bf);
  box-shadow: 0 18px 30px rgba(0,0,0,.09);
  transform: translateY(0) rotate(-1.5deg);
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}
.about-origin-media.is-visible { transform: translateY(-9px) rotate(1deg); }
.about-origin-copy { padding-top: 10px; }
.about-origin-copy strong { color: #202020; }
.about-story-title {
  font-size: clamp(2.4rem, 1.4rem + 3.2vw, 4.6rem);
  line-height: 0.88;
  font-weight: 700;
  color: #181818;
  margin-bottom: 22px;
}
.about-story-title em { color: var(--orange); font-style: normal; }
.about-signoff { margin-top: 20px; color: #252525; font-family: 'Mango Grotesque', sans-serif; font-size: clamp(1.2rem, 1.4rem + 1vw, 2.3rem); line-height: 0.95; text-transform: uppercase; }
.about-signoff span { display: block; margin-top: 2px; color: var(--orange); font-family: 'Poppins', sans-serif; font-size: .6rem; letter-spacing: .08em; }
.about-values { padding: clamp(3.25rem, 6vw, 5rem) 0; background: #fff; }
.about-values-heading { max-width: 420px; margin-bottom: 28px; }
.about-values-list { border-top: 1px solid rgba(0,0,0,.12); }
.about-value {
  display: grid;
  grid-template-columns: 34px minmax(130px, .55fr) 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.about-value-number { color: var(--orange); font-family: 'Mango Grotesque', sans-serif; font-size: .8rem; }
.about-value-title { font-weight: 700; font-size: .8rem; }
.about-value p { color: #858585; font-size: .72rem; }
.about-stats { padding: 0 0 clamp(3.5rem, 6vw, 5rem); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border-bottom: 1px solid rgba(0,0,0,.12); padding: 30px 0 24px; }
.about-stat strong { display: block; font-family: 'Mango Grotesque', sans-serif; font-size: clamp(2rem, 3vw, 3.3rem); line-height: .9; }
.about-stat:last-child strong { color: var(--orange); }
.about-stat span { display: block; margin-top: 14px; color: #898989; font-size: .68rem; line-height: 1.4; }
.about-team { padding: clamp(3.5rem, 6vw, 5rem) 0; background: #f7f6f4; }
.about-team-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.about-team-title { max-width: 400px; margin-top: 12px; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: .94; letter-spacing: -.04em; }
.about-team-intro { max-width: 280px; color: #838383; font-size: .75rem; }
.about-team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 16px; margin-top: 34px; }
.about-team-card { padding: 22px; border: 1px solid rgba(0,0,0,.07); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.035); transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease; }
.about-team-card:hover { transform: translateY(-5px); box-shadow: 0 20px 34px rgba(0,0,0,.1); }
.about-avatar { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(231,77,95,.25); border-radius: 50%; color: var(--orange); background: #fff0f1; font-family: 'Mango Grotesque', sans-serif; }
.about-team-card h3 { margin-top: 18px; font-family: 'Mango Grotesque', sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.about-team-role { margin-top: 3px; color: var(--orange); font-size: .55rem; letter-spacing: .08em; }
.about-team-education { margin-top: 10px; color: #969696; font-size: .68rem; }
.about-team-card p:last-child { margin-top: 14px; color: #858585; font-size: .72rem; line-height: 1.6; }
.about-cta { width: 100%; margin: clamp(3.5rem, 6vw, 5.5rem) auto; padding: clamp(3rem, 5vw, 4.5rem) 20px; border-radius: 8px; color: #fff; text-align: center; background: #141414; box-shadow: 0 18px 34px rgba(0,0,0,.13); }
.about-cta-title { max-width: 540px; margin: 12px auto 0; font-family: 'Mango Grotesque', sans-serif; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .92; text-transform: uppercase; }
.about-cta-title span { color: var(--orange); }
.about-cta-copy { margin-top: 18px; color: #aaa; font-size: .75rem; }
.about-cta-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.about-cta-actions a { min-height: 40px; padding: 0 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; display: inline-flex; align-items: center; font-size: .7rem; }
.about-cta-actions a:first-child { border-color: var(--orange); background: var(--orange); }
@media (max-width: 760px) {
  .container.about-shell { width: min(calc(100% - 16px), 100%); }
  .about-title { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .about-story-grid, .about-origin-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-origin-media { height: auto; min-height: 0; align-self: auto; aspect-ratio: 1.1; }
  .about-value { grid-template-columns: 28px 1fr; gap: 10px; }
  .about-value p { grid-column: 2; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .about-team-header { display: block; }
  .about-team-intro { margin-top: 18px; }
  .about-team-grid { grid-template-columns: 1fr; }
}
body {
  background: #ededed;
  color: #181818;
}
.container { width: min(calc(100% - 24px), 1120px); }
.section { padding: clamp(2.25rem, 5.2vw, 4.75rem) 0; }
.hero-shell { gap: 18px; }
.hero-copy { max-width: 700px; }
.hero-title { font-size: clamp(2.65rem, 1.1rem + 5vw, 6.1rem); line-height: .93; }
.hero-text { max-width: 540px; font-size: 1rem; }
.hero-media { border-radius: 22px; }
.hero-media img { aspect-ratio: 1.72; }
.brand-row { gap: 28px; }
.ticker-zone { gap: 8px; }
.ticker span, .chip-row span, .service-pills span { background: #e74d5f; font-weight: 500; }
.intro-section { padding-top: 2.3rem; }
.narrow { width: min(calc(100% - 24px), 760px); }
.intro-title { font-size: clamp(1.45rem, 1.12rem + 1vw, 2rem); max-width: 640px; margin-left: auto; margin-right: auto; }
.ghost-title { font-size: clamp(3.6rem, 7vw, 6.7rem); line-height: .88; letter-spacing: -.08em; }
.testimonial-stage { grid-template-columns: 200px 1fr; gap: 14px; margin-top: 18px; }
.stats-panel { padding: 16px; border-radius: 18px; }
.stats-panel strong { font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.55rem); }
.quote-panel { border-radius: 18px; grid-template-columns: 250px 1fr; min-height: 220px; }
.quote-copy { padding: 20px; }
.quote-copy blockquote { font-size: clamp(1rem, .95rem + .6vw, 1.35rem); }
@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 16px), 100%); }
  .section { padding: 2rem 0; }
  .hero-title { font-size: clamp(2.1rem, 10vw, 3.5rem); line-height: 1.05; }
  .ghost-title { font-size: clamp(2.8rem, 16vw, 4.7rem); }
  .service-center-card { width: 100%; }
  .footer-brand { font-size: clamp(3.8rem, 19vw, 6rem); }
  /* Mobile-specific optimizations */
  .nav-wrap { min-height: 64px; gap: 12px; padding: 8px 0; }
  .brand img { width: 156px; margin-top: 13px; }
  .hero-media { border-radius: 12px; }
  .hero-media img { aspect-ratio: auto; border-radius: 12px; }
  .intro-section { padding: 2rem 0 1.5rem; }
  .intro-title { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem); max-width: 100%; }
  .chip-row { gap: 8px; }
  .agency-value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .agency-value-wrap,
  .studio-coverage-wrap,
  .studio-coverage-header,
  .studio-coverage-copy,
  .studio-coverage-list,
  .studio-button-wrap {
    width: min(calc(100% - 20px), 100%);
  }
}
body.is-loading {
  overflow: hidden;
}
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #0f0f10;
  color: #fff;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), visibility .8s cubic-bezier(.16,1,.3,1);
}
.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  text-align: center;
  transform: translateY(10px) scale(.98);
  animation: splashRise 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.splash-mini {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.splash-inner h1 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  letter-spacing: -.08em;
  line-height: .92;
}
@keyframes splashRise {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-media img { aspect-ratio: 1.62; }
.testimonial-stage {
  grid-template-columns: 240px 1fr;
  gap: 18px;
}
.stats-panel {
  min-height: 100%;
  padding: 20px;
}
.quote-panel {
  grid-template-columns: 300px 1fr;
  min-height: 280px;
}
.quote-copy {
  padding: 26px;
}
.services-spotlight {
  gap: 18px;
}
.service-center-card {
  width: min(100%, 520px);
  padding: 16px;
  border-radius: 24px;
}
.service-center-card img {
  aspect-ratio: 1.5;
}
.pricing-card {
  padding: 24px;
  border-radius: 22px;
}
.contact-section .container {
  display: grid;
  gap: 18px;
}
.contact-visual {
  border-radius: 24px;
}
.contact-visual img {
  aspect-ratio: 2.05;
}
.contact-copy {
  margin-top: 10px;
  color: rgba(255,255,255,.76);
}
.contact-form-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding: 22px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form span {
  font-size: .9rem;
  color: #5f5f5f;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: #171717;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #e74d5f;
  box-shadow: 0 0 0 3px rgba(231,77,95,.12);
}
@media (max-width: 900px) {
  .testimonial-stage,
  .quote-panel,
  .field-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --max-wide: 1248px;
}
.container.wide-shell {
  width: min(calc(100% - 20px), var(--max-wide));
}
.hero-shell
,
.contact-section .container,
.site-footer .container {
  width: min(calc(100% - 20px), var(--max-wide));
}
.hero-media
,
.contact-visual,
.footer-card {
  width: 100%;
}
.project-card
,
.contact-visual,
.footer-card,
.hero-media {
  max-width: none;
}
.splash-screen {
  background: radial-gradient(circle at 50% 50%, rgba(255,91,20,0.08), transparent 20%), #0f0f10;
}
.splash-screen::before,
.splash-screen::after {
  content: '';
  position: absolute;
  width: 30vw;
  height: 30vw;
  max-width: 320px;
  max-height: 320px;
  border-radius: 44% 56% 52% 48% / 42% 38% 62% 58%;
  background: rgba(255,91,20,0.13);
  filter: blur(10px);
  animation: liquidBlob 5.8s ease-in-out infinite;
}
.splash-screen::before {
  left: 50%;
  top: 50%;
  transform: translate(-62%, -52%);
}
.splash-screen::after {
  left: 50%;
  top: 50%;
  transform: translate(-38%, -48%);
  animation-duration: 7.4s;
  background: rgba(255,255,255,0.07);
}
.splash-inner {
  position: relative;
  z-index: 1;
}
.splash-mini {
  font-size: .72rem;
  margin-bottom: 8px;
}
.splash-inner h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -.07em;
}
@keyframes liquidBlob {
  0% {
    border-radius: 44% 56% 52% 48% / 42% 38% 62% 58%;
    transform: translate(-62%, -52%) scale(1);
  }
  25% {
    border-radius: 52% 48% 40% 60% / 52% 44% 56% 48%;
    transform: translate(-58%, -48%) scale(1.08);
  }
  50% {
    border-radius: 60% 40% 58% 42% / 44% 54% 46% 56%;
    transform: translate(-64%, -50%) scale(.94);
  }
  75% {
    border-radius: 48% 52% 46% 54% / 58% 46% 54% 42%;
    transform: translate(-60%, -54%) scale(1.03);
  }
  100% {
    border-radius: 44% 56% 52% 48% / 42% 38% 62% 58%;
    transform: translate(-62%, -52%) scale(1);
  }
}
.contact-overlay.with-form {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .92fr);
  align-items: end;
  gap: 22px;
}
.embedded-form {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 18px;
}
.embedded-form span {
  color: rgba(255,255,255,0.78);
}
.embedded-form input,
.embedded-form textarea {
  background: rgba(255,255,255,0.96);
}
.contact-form-card {
  display: none;
}
.footer-card {
  width: min(calc(100% - 20px), var(--max-wide));
  margin: 0 auto;
  border-radius: 24px;
}
@media (max-width: 900px) {
  .contact-overlay.with-form {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 760px) {
  .hero-shell
  ,
  .contact-section .container,
  .site-footer .container,
  .container.wide-shell {
    width: min(calc(100% - 12px), 100%);
  }
  .splash-inner h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }
  .contact-overlay {
    padding: 16px;
  }
  /* Enhanced mobile form experience */
  .embedded-form { padding: 12px; border-radius: 12px; }
  .embedded-form input, .embedded-form textarea {
    font-size: 16px;
    min-height: 44px;
    border-radius: 8px;
  }
}
.hero .container.wide-shell,
.hero-shell {
  width: min(calc(100vw - 20px), 1280px);
  max-width: 1280px;
}
.hero-media {
  width: 100%;
  max-width: none;
  border-radius: 24px;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
}
@media (max-width: 760px) {
  .hero .container.wide-shell,
  .hero-shell {
    width: min(calc(100vw - 12px), 100%);
    max-width: 100%;
  }
  .hero-media img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
}
/* Blue-marked reference adjustments */
.hero-copy {
  max-width: 620px;
}
.hero-title {
  font-size: clamp(2.35rem, 1rem + 4.1vw, 4.7rem);
  line-height: .94;
}
.hero-text {
  max-width: 500px;
  font-size: .92rem;
}
.hero-media {
  border-radius: 8px;
}
.hero-media img {
  aspect-ratio: 1.86;
}
.ticker-zone {
  margin-top: 10px;
}
.intro-section .narrow {
  max-width: 620px;
}
.intro-title {
  font-size: clamp(1.3rem, 1.05rem + .7vw, 1.72rem);
  max-width: 520px;
}
.chip-row span {
  padding: 8px 12px;
  font-size: .78rem;
}
.display-title.ghost-title {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: .88;
}
.testimonial-stage {
  max-width: 760px;
  margin: 18px auto 0;
  grid-template-columns: 180px 1fr;
  gap: 10px;
}
.stats-panel {
  border-radius: 10px;
  padding: 14px;
}
.stats-panel strong {
  font-size: clamp(1.6rem, 1.1rem + 1vw, 2.3rem);
}
.quote-panel {
  border-radius: 10px;
  min-height: 170px;
  grid-template-columns: 180px 1fr;
}
.quote-copy {
  padding: 16px;
}
.quote-copy blockquote {
  font-size: clamp(.92rem, .86rem + .5vw, 1.15rem);
}
.services-spotlight {
  margin-top: 14px;
  grid-template-columns: 1fr 300px 1fr;
}
.service-word {
  font-size: clamp(1.9rem, 1rem + 2vw, 3.6rem);
}
.service-center-card {
  width: 300px;
  padding: 8px;
  border-radius: 10px;
}
.service-center-card img {
  border-radius: 8px;
  aspect-ratio: 1.48;
}
.service-pills span {
  font-size: .7rem;
  padding: 6px 10px;
}
.pricing-stack {
  max-width: 420px;
  margin: 14px auto 0;
  gap: 10px;
}
.pricing-card {
  border-radius: 10px;
  padding: 14px;
}
.plan-name {
  font-size: .84rem;
}
.plan-copy,
.pricing-card li,
.price-line span {
  font-size: .72rem;
}
.price-line strong {
  font-size: clamp(1.5rem, 1rem + 1vw, 2.2rem);
}
.faq-grid {
  max-width: 700px;
  margin: 16px auto 0;
  gap: 8px;
}
.faq-grid details {
  border-radius: 8px;
  padding: 12px 14px;
}
.faq-grid summary,
.faq-grid p {
  font-size: .76rem;
}
.contact-section .container,
.container.wide-shell {
  width: min(calc(100% - 16px), 1180px);
}
.contact-visual {
  border-radius: 4px;
}
.contact-visual img {
  aspect-ratio: 2.45;
}
.contact-overlay {
  padding: 18px;
}
.contact-overlay h2 {
  font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.5rem);
}
.contact-copy {
  font-size: .82rem;
}
.embedded-form {
  border-radius: 10px;
  padding: 14px;
}
.embedded-form span,
.embedded-form input,
.embedded-form textarea {
  font-size: .78rem;
}
.footer-card {
  width: min(calc(100% - 16px), 1180px);
  border-radius: 0;
  padding: 18px 16px 0px;
}
.footer-links p,
.footer-links a {
  font-size: .74rem;
}
.footer-brand {
  font-size: clamp(8rem, 2.6rem + 6vw, 8rem);
  width: 100%;
}
@media (max-width: 900px) {
  .testimonial-stage,
  .quote-panel,
  .services-spotlight,
  .contact-overlay.with-form {
    grid-template-columns: 1fr;
  }
  .service-center-card {
    width: min(100%, 300px);
    margin: 0 auto;
  }
}
@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }
  .display-title.ghost-title {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }
.intro-section {
  padding: 5.2rem 0 4rem;
}
.intro-exact {
  max-width: 1040px;
  text-align: center;
}
.intro-hello {
  color: #e74d5f;
  font-size: clamp(1.6rem, 1.1rem + 1vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
}
.intro-heading {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.04em;
  font-size: clamp(2.5rem, 1.6rem + 2.7vw, 5rem);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 700;
}
.intro-heading .line {
  display: block;
}
.intro-word {
  display: inline-block;
  white-space: nowrap;
}
.intro-heading .dark-line {
  color: #111111;
}
.intro-heading .muted-line {
  color: #e74d5f;
}
.intro-chip-wrap {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.intro-chip-wrap span {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #6d6d70 0%, #5b5b5e 100%);
  color: #f0f0f0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 5px 14px rgba(0,0,0,.16);
  font-size: 1rem;
}
.intro-chip-wrap span i {
  font-style: normal;
  opacity: .92;
}
.intro-hello-anim {
  opacity: 0;
  transform: translateY(18px) rotate(-3deg);
}
.intro-heading-anim {
  opacity: 0;
  transform: translateY(24px);
}
.intro-chip-anim {
  opacity: 0;
  transform: translateY(20px) scale(.98);
}
.intro-hello-anim.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  transition: transform .75s cubic-bezier(.16,1,.3,1), opacity .75s cubic-bezier(.16,1,.3,1);
}
.intro-heading-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .9s cubic-bezier(.16,1,.3,1);
}
.intro-chip-anim.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform .9s cubic-bezier(.16,1,.3,1) .12s, opacity .9s cubic-bezier(.16,1,.3,1) .12s;
}
.intro-chip-wrap span {
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1);
}
.intro-chip-wrap span:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 10px 20px rgba(0,0,0,.18);
}
}
@media (max-width: 760px) {
  .intro-section {
    padding: 3.2rem 0 2.8rem;
  }
  .intro-exact {
    max-width: 100%;
  }
  .intro-hello {
    margin-bottom: 18px;
    font-size: 1.35rem;
  }
  .intro-heading {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    line-height: 1.02;
  }
  .intro-chip-wrap {
    margin-top: 34px;
    gap: 10px;
  }
  .intro-chip-wrap span {
    min-height: 46px;
    padding: 0 18px;
    font-size: .88rem;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-hello-anim,
  .intro-heading-anim,
  .intro-chip-anim {
    opacity: 1;
    transform: none;
  }
}
.recent-feature-card {
  position: relative;
  margin-top: 18px;
  min-height: 720px;
  border-radius: 34px;
  overflow: hidden;
  padding: 74px 54px;
  display: grid;
  grid-template-columns: 260px minmax(320px, 430px) 220px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #cbc7c1 0%, #b8b2aa 100%);
}
.works-blur-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 31% 24%, rgba(58,22,12,0.74), transparent 11%),
    radial-gradient(circle at 64% 64%, rgba(22,16,10,0.76), transparent 13%),
    linear-gradient(130deg, rgba(226,227,223,0.84) 7%, rgba(205,107,62,0.86) 34%, rgba(48,35,26,0.92) 52%, rgba(201,98,54,0.88) 73%, rgba(228,227,221,0.84) 94%);
  filter: blur(18px) saturate(.92);
  transform: scale(1.08);
}
.recent-feature-card > * {
  position: relative;
  z-index: 1;
}
.works-left-meta,
.works-right-meta {
  color: rgba(255,255,255,0.96);
}
.works-copy {
  max-width: 210px;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}
.works-index-block {
  margin-top: 250px;
}
.works-index-block span {
  display: inline-block;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  letter-spacing: .04em;
}
.works-index-block h3 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 3vw, 4.3rem);
  line-height: .9;
  letter-spacing: -.08em;
  color: #f7f3ee;
}
.works-image-frame {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 22px 60px rgba(0,0,0,0.14);
}
.works-image-frame img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
  transform: scale(1.02);
}
.works-right-meta {
  display: grid;
  gap: 54px;
  align-content: start;
}
.works-right-meta .meta-group p {
  color: rgba(255,255,255,0.68);
  font-size: .95rem;
  margin-bottom: 10px;
}
.works-right-meta .meta-group strong,
.works-right-meta .meta-group li {
  color: rgba(255,255,255,0.96);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
}
.works-right-meta ul {
  list-style: none;
  display: grid;
  gap: 2px;
}
@media (max-width: 1100px) {
  .recent-feature-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
  }
  .works-copy {
    max-width: 100%;
  }
  .works-index-block {
    margin-top: 18px;
  }
  .works-right-meta {
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}
@media (max-width: 760px) {
/* Reverted stacked recent works cards */
html,
body {
  overflow-x: hidden;
}
.container,
.container.wide-shell,
.hero-shell,
.hero .container.wide-shell
,
.contact-section .container,
.site-footer .container,
.footer-card {
  width: min(calc(100vw - 24px), 1440px);
  max-width: 1440px;
}
.narrow {
  width: min(calc(100vw - 24px), 900px);
  max-width: 900px;
}
/* Website-matched splash screen */
.splash-screen {
  background: #ededed;
  color: #181818;
}
.splash-screen::before,
.splash-screen::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(0);
}
.splash-screen::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,91,20,0.14) 0%, rgba(255,91,20,0.02) 70%, transparent 100%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.9);
  animation: haloPulse 1.5s cubic-bezier(.16,1,.3,1) infinite alternate;
}
.splash-screen::after {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.08) 50%, transparent 100%);
  transform: scaleX(0);
  animation: lineSweep 1.2s cubic-bezier(.16,1,.3,1) forwards;
}
.splash-inner {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  transform: none;
  animation: none;
}
.splash-mini {
  color: #e74d5f;
  font-size: .72rem;
  letter-spacing: .22em;
  margin-bottom: 0;
}
.splash-inner h1 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -.08em;
  line-height: .9;
  font-weight: 700;
}
.splash-wordmark {
  display: inline-flex;
  gap: .08em;
}
.splash-wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: letterLift .7s cubic-bezier(.16,1,.3,1) forwards;
}
.splash-wordmark span:nth-child(1) { animation-delay: .04s; }
.splash-wordmark span:nth-child(2) { animation-delay: .08s; }
.splash-wordmark span:nth-child(3) { animation-delay: .12s; }
.splash-wordmark span:nth-child(4) { animation-delay: .16s; }
.splash-wordmark span:nth-child(5) { animation-delay: .20s; }
.splash-wordmark span:nth-child(6) { animation-delay: .24s; }
.splash-wordmark span:nth-child(7) { animation-delay: .28s; }
.splash-wordmark span:nth-child(8) { animation-delay: .32s; }
.splash-wordmark span:nth-child(9) { animation-delay: .36s; }
.splash-wordmark span:nth-child(10) { animation-delay: .40s; }
.splash-wordmark span:nth-child(11) { animation-delay: .44s; }
.splash-wordmark span:nth-child(12) { animation-delay: .48s; }
.splash-underline {
  width: 140px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,91,20,0) 0%, #e74d5f 30%, #e74d5f 70%, rgba(255,91,20,0) 100%);
  transform: scaleX(0);
  transform-origin: center;
  animation: underlineGrow .8s cubic-bezier(.16,1,.3,1) .25s forwards;
}
@keyframes haloPulse {
  from { transform: translate(-50%, -50%) scale(.92); opacity: .55; }
  to { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
@keyframes lineSweep {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
}
@keyframes letterLift {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes underlineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
@media (max-width: 760px) {
.contact-section-heading {
  margin-bottom: 14px;
}
.faq-grid {
  max-width: 700px;
  margin: 16px auto 0;
  gap: 10px;
}
.faq-grid details {
  position: relative;
  overflow: clip;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  transition: border-color .24s ease, box-shadow .24s ease, background-color .24s ease, transform .24s ease;
}
.faq-grid details:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}
.faq-grid details[open] {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.faq-grid summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 48px 14px 16px;
  font-size: .78rem;
  font-weight: 500;
  user-select: none;
}
.faq-grid summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #5a5a5a;
  background: rgba(0,0,0,0.04);
  transition: transform .24s ease, background-color .24s ease, color .24s ease;
}
.faq-grid details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255,91,20,0.12);
  color: #e74d5f;
}
.faq-grid .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s cubic-bezier(.16,1,.3,1);
}
.faq-grid details[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-grid .faq-answer > div {
  overflow: hidden;
}
.faq-grid p {
  margin: 0;
  padding: 0 16px 16px;
  font-size: .76rem;
  color: var(--muted);
  transform: translateY(-4px);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.faq-grid details[open] p {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .faq-grid details,
  .faq-grid summary::after,
  .faq-grid .faq-answer,
  .faq-grid p {
    transition: none;
  }
}
html {
  scroll-behavior: smooth;
}
body,
a,
button,
summary,
input,
textarea,
select,
label {
  cursor: none;
}
.reveal
,
.intro-hello-anim,
.intro-heading-anim,
.intro-chip-anim {
  will-change: transform, opacity;
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: transform .95s cubic-bezier(.16,1,.3,1), opacity .95s cubic-bezier(.16,1,.3,1), filter .95s cubic-bezier(.16,1,.3,1);
  filter: blur(1px);
}
.reveal-scale {
  transform: translate3d(0, 18px, 0) scale(.985);
}
.reveal-left {
  transform: translate3d(-32px, 0, 0);
}
.reveal-right {
  transform: translate3d(32px, 0, 0);
}.reveal.is-visible,
.intro-hello-anim.is-visible,
.intro-heading-anim.is-visible,
.intro-chip-anim.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0) scale(1);
}
.pixel-cursor,
.pixel-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 12000;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.pixel-cursor {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
  background:
    linear-gradient(#111 0 0) 4px 0/4px 4px no-repeat,
    linear-gradient(#111 0 0) 8px 0/4px 4px no-repeat,
    linear-gradient(#111 0 0) 12px 0/4px 4px no-repeat,
    linear-gradient(#111 0 0) 0 4px/4px 4px no-repeat,
    linear-gradient(#e74d5f 0 0) 4px 4px/4px 4px no-repeat,
    linear-gradient(#e74d5f 0 0) 8px 4px/4px 4px no-repeat,
    linear-gradient(#111 0 0) 12px 4px/4px 4px no-repeat,
    linear-gradient(#111 0 0) 0 8px/4px 4px no-repeat,
    linear-gradient(#e74d5f 0 0) 4px 8px/4px 4px no-repeat,
    linear-gradient(#111 0 0) 8px 8px/4px 4px no-repeat,
    linear-gradient(#111 0 0) 12px 8px/4px 4px no-repeat,
    linear-gradient(#111 0 0) 4px 12px/4px 4px no-repeat,
    linear-gradient(#111 0 0) 8px 12px/4px 4px no-repeat,
    linear-gradient(#111 0 0) 8px 16px/4px 4px no-repeat;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.14));
}
.pixel-cursor-dot {
  width: 6px;
  height: 6px;
  background: #e74d5f;
  box-shadow: 0 0 0 2px rgba(231,77,95,.16);
}

body.cursor-ready .cursor-follow-circle {
  opacity: 1;
}
body.cursor-ready .pixel-cursor,
body.cursor-ready .pixel-cursor-dot {
  opacity: 1;
}
body.cursor-hover .pixel-cursor {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 4px 10px rgba(231,77,95,.24));
}
body.cursor-hover .pixel-cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
}
@media (hover: none), (pointer: coarse) {
  body,
  a,
  button,
  summary,
  input,
  textarea,
  select,
  label {
    cursor: auto;
  }
  .pixel-cursor,
  .pixel-cursor-dot,
  .cursor-follow-circle {
    display: none;
  }
}
}
/* Slower, smoother motion */
html {
  scroll-behavior: smooth;
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: transform 1.35s cubic-bezier(.18,1,.22,1), opacity 1.35s cubic-bezier(.18,1,.22,1), filter 1.35s cubic-bezier(.18,1,.22,1);
  filter: blur(1.5px);
}
.reveal-scale {
  transform: translate3d(0, 28px, 0) scale(.982);
}
.reveal-left {
  transform: translate3d(-40px, 0, 0);
}
.reveal-right {
  transform: translate3d(40px, 0, 0);
}.reveal.is-visible,
.intro-hello-anim.is-visible,
.intro-heading-anim.is-visible,
.intro-chip-anim.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.delay-1 { transition-delay: .14s; }
.delay-2 { transition-delay: .24s; }
.pixel-cursor {
  display: none !important;
}
.pixel-cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e74d5f;
  box-shadow: 0 0 0 6px rgba(231,77,95,.08), 0 0 18px rgba(231,77,95,.26);
  mix-blend-mode: normal;
}
/* Button animations */
.nav-cta,
.primary-pill,
.light-pill,
.contact-form button,
.intro-chip-wrap span,
.ticker span,
.service-pills span,
.faq-grid summary::after {
  transition: transform .38s cubic-bezier(.16,1,.3,1),
              box-shadow .38s cubic-bezier(.16,1,.3,1),
              background-color .38s cubic-bezier(.16,1,.3,1),
              color .38s cubic-bezier(.16,1,.3,1),
              border-color .38s cubic-bezier(.16,1,.3,1),
              opacity .38s cubic-bezier(.16,1,.3,1);
}
.nav-cta,
.primary-pill,
.light-pill,
.contact-form button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nav-cta::before,
.primary-pill::before,
.light-pill::before,
.contact-form button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-110%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}
.nav-cta:hover,
.primary-pill:hover,
.light-pill:hover,
.contact-form button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(231,77,95,.18);
}
.nav-cta:hover::before,
.primary-pill:hover::before,
.light-pill:hover::before,
.contact-form button:hover::before {
  transform: translateX(110%);
}
.nav-cta:active,
.primary-pill:active,
.light-pill:active,
.contact-form button:active {
  transform: translateY(0) scale(.985);
}
.intro-chip-wrap span:hover,
.ticker span:hover,
.service-pills span:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 20px rgba(231,77,95,.12);
}
.intro-chip-wrap span:active,
.ticker span:active,
.service-pills span:active {
  transform: translateY(0) scale(.98);
}
.mobile-nav a,
.desktop-nav a,
.footer-links a {
  position: relative;
  transition: color .32s cubic-bezier(.16,1,.3,1), opacity .32s cubic-bezier(.16,1,.3,1);
}
.mobile-nav a::after,
.desktop-nav a::after,
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #e74d5f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s cubic-bezier(.16,1,.3,1);
}
.mobile-nav a:hover::after,
.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}
@media (hover: none), (pointer: coarse) {
  body,
  a,
  button,
  summary,
  input,
  textarea,
  select,
  label {
    cursor: auto;
  }
  .pixel-cursor-dot {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal
  ,
  .nav-cta,
  .primary-pill,
  .light-pill,
  .contact-form button,
  .intro-chip-wrap span,
  .ticker span,
  .service-pills span,
  .mobile-nav a::after,
  .desktop-nav a::after,
  .footer-links a::after {
    transition: none;
  }
  .pixel-cursor-dot {
    display: none;
  }
}
/* Cursor hover bug fix */
.pixel-cursor-dot {
  opacity: 0;
}
body.cursor-ready .pixel-cursor-dot {
  opacity: 1;
}
body.cursor-hover .pixel-cursor-dot {
  box-shadow: 0 0 0 9px rgba(231,77,95,.12), 0 0 22px rgba(231,77,95,.32);
}
/* Cursor visibility and nav hover stability fix */
.pixel-cursor-dot {
  will-change: transform;
}
.desktop-nav a,
.mobile-nav a,
.footer-links a,
.nav-cta,
.primary-pill,
.light-pill,
.contact-form button,
summary
,
.faq-grid details {
  cursor: none !important;
}
:root {
  --accent: #e74d5f;
  --page-bg: #ededed;
  --text-main: #171717;
  --text-muted-2: #6f6f73;
  --content-max: 1240px;
}
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.65), transparent 34%),
    linear-gradient(180deg, #efefef 0%, #e8e8e8 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .045;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.55) 0.5px, transparent 0.8px),
    radial-gradient(circle at 80% 40%, rgba(0,0,0,.42) 0.5px, transparent 0.8px),
    radial-gradient(circle at 40% 80%, rgba(0,0,0,.38) 0.5px, transparent 0.8px);
  background-size: 18px 18px, 22px 22px, 26px 26px;
  mix-blend-mode: multiply;
}
main, header, footer, .splash-screen {
  position: relative;
  z-index: 2;
}
.container,
.container.wide-shell,
.hero-shell
,
.contact-section .container,
.site-footer .container {
  width: min(calc(100% - 20px), var(--content-max));
}
.hero-media,
.contact-visual,
.footer-card
,
.quote-panel,
.stats-panel,
.faq-grid details,
.embedded-form,
.primary-pill,
.nav-cta,
.light-pill {
  position: relative;
  overflow: hidden;
}
/* Slower smoother motion */
.reveal,
.reveal-scale {
  transform: translate3d(0, 40px, 0) scale(.98);
}
.reveal-left {
  transform: translate3d(-48px, 0, 0);
}
.reveal-right {
  transform: translate3d(48px, 0, 0);
}

body.cursor-hover .pixel-cursor-dot {
  box-shadow: 0 0 0 10px rgba(231,77,95,.12), 0 0 28px rgba(231,77,95,.28);
}
/* Remove intro chips spacing after deletion */
.intro-section {
  padding-bottom: 3rem;
}
.intro-heading {
  margin-bottom: 0;
}
/* Recent works stacked scrolling */
.stack-card {
  position: sticky;
  top: 96px;
  margin-bottom: 24px;
  transform-origin: center top;
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.stack-card.is-past {
  opacity: .14;
  transform: scale(.965) translateY(-14px);
  filter: saturate(.88) blur(.4px);
}
.stack-card.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.stack-card:nth-child(2) { top: 118px; }
.stack-card:nth-child(3) { top: 140px; }
/* Button polish */
button,
.primary-pill,
.nav-cta,
.light-pill,
.contact-form button,
.desktop-nav a,
.mobile-nav a,
.footer-links a,
summary {
  -webkit-tap-highlight-color: transparent;
}
.primary-pill,
.nav-cta,
.light-pill,
.contact-form button {
  backdrop-filter: blur(8px);
}
.primary-pill:hover,
.nav-cta:hover,
.light-pill:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(231,77,95,.18);
}
/* Responsive system */
img, video {
  max-width: 100%;
  height: auto;
}
.field-grid,
.contact-overlay.with-form,
.testimonial-stage,
.quote-panel,
.services-spotlight {
  align-items: stretch;
}
@media (max-width: 1180px) {
  .hero-title {
    font-size: clamp(2rem, 4.6vw, 4.2rem);
  }
  .display-title.ghost-title {
    font-size: clamp(3rem, 8vw, 5.4rem);
  }
}
@media (max-width: 900px) {
  .container,
  .container.wide-shell,
  .hero-shell
  ,
  .contact-section .container,
  .site-footer .container {
    width: min(calc(100% - 16px), 100%);
  }
  .testimonial-stage,
  .quote-panel,
  .services-spotlight,
  .contact-overlay.with-form,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .quote-panel,
  .contact-overlay {
    min-height: unset;
  }
  .stack-card,
  .stack-card:nth-child(2),
  .stack-card:nth-child(3) {
    top: 74px;
  }
}
@media (max-width: 760px) {
  body::before {
    opacity: .03;
  }
  .section {
    padding: 1.9rem 0;
  }
  .hero-shell,
  .container,
  .container.wide-shell
  ,
  .contact-section .container,
  .site-footer .container {
    width: min(calc(100% - 12px), 100%);
  }
  .hero-title {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }
  .intro-heading {
    font-size: clamp(1.8rem, 7.6vw, 2.8rem);
  }
  .display-title.ghost-title {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }
  .contact-visual img {
    aspect-ratio: 1.45;
  }
  .footer-brand {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }
  .stack-card,
  .stack-card:nth-child(2),
  .stack-card:nth-child(3) {
    position: relative;
    top: auto;
    margin-bottom: 12px;
  }
  .stack-card.is-past {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal
  ,
  .stack-card {
    transition: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
  body::before,
  .hero-media::before,
  .contact-visual::before,
  .footer-card::before,
  .quote-panel::before,
  .stats-panel::before,
  .faq-grid details::before,
  .embedded-form::before,
  .primary-pill::after,
  .nav-cta::after,
  .light-pill::after {
    display: none;
  }
}
/* --- Repair pass --- */
.ticker-zone { display:none !important; }
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(237,237,237,.98);
  backdrop-filter: blur(8px);
  transition: opacity .55s cubic-bezier(.16,1,.3,1), visibility .55s cubic-bezier(.16,1,.3,1);
}
.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header, .site-header, nav { position: relative; z-index: 60; }
.splash-inner { text-align:center; display:grid; gap:10px; justify-items:center; }
.splash-mini { color:#e74d5f; font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; }
.splash-wordmark { font-size:clamp(1.8rem, 3vw, 3rem); letter-spacing:-.08em; line-height:.92; }
.splash-wordmark span { display:inline-block; opacity:0; transform:translateY(14px); animation: splashLift .55s cubic-bezier(.16,1,.3,1) forwards; }
.splash-wordmark span:nth-child(1){animation-delay:.03s}.splash-wordmark span:nth-child(2){animation-delay:.06s}.splash-wordmark span:nth-child(3){animation-delay:.09s}.splash-wordmark span:nth-child(4){animation-delay:.12s}.splash-wordmark span:nth-child(5){animation-delay:.15s}.splash-wordmark span:nth-child(6){animation-delay:.18s}.splash-wordmark span:nth-child(7){animation-delay:.21s}.splash-wordmark span:nth-child(8){animation-delay:.24s}.splash-wordmark span:nth-child(9){animation-delay:.27s}.splash-wordmark span:nth-child(10){animation-delay:.30s}
.splash-underline { width:130px; height:4px; border-radius:999px; background:#e74d5f; opacity:0; transform:scaleX(.2); animation:splashLine .55s cubic-bezier(.16,1,.3,1) .22s forwards; }
@keyframes splashLift { to { opacity:1; transform:translateY(0);} }
@keyframes splashLine { to { opacity:1; transform:scaleX(1);} }
/* Recent works smoother reference-like overlap */
@media (min-width: 761px) {
.container,
.container.wide-shell,
.hero-shell,
.hero .container.wide-shell,
.contact-section .container,
.site-footer .container {
  width: 100%;
  max-width: 100vw;
  padding-inline: 20px;
}
}

/* Works gallery */
#recent-works {
  position: relative;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: 0 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: #000;
  color: #fff;
}
#recent-works::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(231,77,95,.8) 7%, rgba(231,77,95,.78) 82%, transparent 100%);
}
#recent-works::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, #000 82%);
}
.works-shell {
  position: relative;
  width: min(calc(100vw - 48px), 1420px);
  margin: 0 auto;
  padding-top: 8px;
}
.works-accent {
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff174f;
  box-shadow: 0 0 22px rgba(255,23,79,.6);
}
.works-masonry {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.works-column {
  display: grid;
  gap: 14px;
}
.works-column-middle {
  padding-top: 0;
}
.work-card {
  position: relative;
  display: block;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #090909;
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: none;
  isolation: isolate;
}
.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.08) 38%, rgba(0,0,0,.24));
  z-index: 1;
}
.work-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: brightness(.74) saturate(.95);
  transition: transform .9s cubic-bezier(.16,1,.3,1), filter .9s cubic-bezier(.16,1,.3,1);
}
.work-card:hover img {
  transform: scale(1.045);
  filter: brightness(.9) saturate(1.02);
}
.work-card:hover {
  transform: none;
  box-shadow: none;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.work-card:hover img {
  transform: scale(1.045);
}
.work-card-slim { aspect-ratio: 2.65; }
.work-card-square { aspect-ratio: 1.28; }
.work-card-tall { aspect-ratio: 1.28; }

@media (max-width: 900px) {
  #recent-works {
    padding-bottom: 4rem;
  }
  .works-shell {
    width: min(calc(100vw - 24px), 100%);
  }
  .works-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .works-column {
    gap: 12px;
  }
  .works-column:last-child {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .works-shell {
    width: min(calc(100vw - 16px), 100%);
    padding-top: 10px;
  }
  .works-accent {
    top: 18px;
    width: 7px;
    height: 7px;
  }
  .works-masonry,
  .works-column:last-child {
    grid-template-columns: 1fr;
  }
  .work-card-wide,
  .work-card-slim,
  .work-card-square,
  .work-card-tall {
    aspect-ratio: 1.45;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-card img {
    transition: none;
  }
}

/* Works numbered marquee */
#recent-works {
  position: relative;
  margin-top: 0;
  padding: clamp(2.25rem, 5.2vw, 4.75rem) 0;
  overflow: hidden;
  background: transparent;
  color: var(--text);
}
#recent-works::before,
#recent-works::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(32vw, 420px);
  pointer-events: none;
}
#recent-works::before {
  left: 0;
  height: auto;
  background: linear-gradient(90deg, #ededed 0%, rgba(237,237,237,.94) 28%, rgba(237,237,237,.58) 62%, rgba(237,237,237,0) 100%);
}
#recent-works::after {
  right: 0;
  left: auto;
  height: auto;
  background: linear-gradient(270deg, #ededed 0%, rgba(237,237,237,.94) 28%, rgba(237,237,237,.58) 62%, rgba(237,237,237,0) 100%);
}
.studio-coverage-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}
.studio-coverage-wrap {
  width: calc(100% - 28px);
  max-width: none;
  margin: 0 auto;
}
.agency-value-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  margin-top: 0.5rem;
}
.agency-value-wrap {
  width: calc(100% - 28px);
  max-width: none;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 2rem;
}
.agency-value-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.agency-value-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.agency-value-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.5rem, 2.4rem + 3.3vw, 6.1rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  text-align: left;
  font-weight: 900;
}
.agency-value-title span {
  color: #e74d5f;
}
.agency-value-text {
  margin-top: 18px;
  max-width: 620px;
  font-size: clamp(0.9rem, 0.84rem + 0.2vw, 1.15rem);
  line-height: 1.35;
  color: #232323;
  font-weight: 400;
  text-align: left;
}
.agency-value-points {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding-top: 6px;
  height: 100%;
}
.agency-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  flex: 0 0 auto;
  min-height: max-content;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.2);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
@media (hover: hover) {
  .agency-point:hover {
    transform: translateY(-4px);
    border-color: rgba(231,77,95,0.35);
    background: rgba(255,255,255,0.55);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  }
}
.agency-point > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.agency-point-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.agency-point-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.2;
  color: var(--orange);
}
.agency-point p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #2a2a2a;
}
.studio-coverage-header {
  width: calc(100% - 28px);
  margin: 0 auto 1.25rem;
}
.studio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  font-weight: 700;
}
.kicker-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #e74d5f;
}
.studio-coverage-title {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(2.8rem, 2.1rem + 3vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
}
.studio-coverage-title span {
  color: #e74d5f;
}
.studio-coverage-copy {
  width: calc(100% - 28px);
  max-width: 980px;
  margin: 0 auto 1.7rem;
  font-size: clamp(1.05rem, 0.92rem + 0.38vw, 1.6rem);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(17,17,17,0.86);
}
.studio-coverage-list {
  width: calc(100% - 28px);
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.studio-row {
  display: grid;
  grid-template-columns: 52px 1.2fr 1.1fr;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1.75rem 0 1.65rem;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.studio-row:last-child {
  border-bottom: 0;
}
.studio-number {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #111;
}
.studio-label {
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--orange);
}
.studio-description {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  text-align: left;
  font-size: clamp(0.85rem, 0.8rem + 0.18vw, 1.12rem);
  line-height: 1.5;
  color: rgba(17,17,17,0.82);
  font-weight: 400;
}
.studio-button-wrap {
  width: calc(100% - 28px);
  margin: 4rem auto 0;
  display: flex;
  justify-content: flex-start;
}
.studio-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0 1.5rem;
  border: 1px solid rgba(17,17,17,0.7);
  border-radius: 999px;
  background: transparent;
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform .38s cubic-bezier(.16,1,.3,1), box-shadow .38s cubic-bezier(.16,1,.3,1), border-color .38s ease;
}
.studio-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17,17,17,0.08);
  border-color: rgba(17,17,17,0.95);
}
.studio-cta:active {
  transform: translateY(0);
}

.studio-button-wrap {
  justify-content: center;
}

.studio-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background: var(--dark);
  color: #fff;
  transition: transform .38s cubic-bezier(.16,1,.3,1),
              box-shadow .38s cubic-bezier(.16,1,.3,1),
              background-color .38s cubic-bezier(.16,1,.3,1),
              color .38s cubic-bezier(.16,1,.3,1),
              opacity .38s cubic-bezier(.16,1,.3,1);
}
.studio-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-110%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}
.studio-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(231,77,95,.18);
}
.studio-cta:hover::before {
  transform: translateX(110%);
}
.studio-cta:active {
  transform: translateY(0) scale(.985);
}

.studio-row {
  grid-template-columns: 52px 1.2fr 1.1fr;
  column-gap: 1rem;
  row-gap: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1), background-color .3s ease, box-shadow .3s ease;
}

.studio-row:hover {
  transform: translateX(4px);
  background: rgba(231, 77, 95, 0.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.studio-label {
  white-space: nowrap;
}

.studio-coverage-list {
  width: min(calc(100% - 28px), 1180px);
  margin-inline: auto;
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}
#recent-works .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 1120px);
  padding-inline: 0;
}
.works-scroll-container {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 3rem;
  overflow: visible;
}
.works-row {
  display: block;
  width: 100%;
  overflow: visible;
  animation: none;
  position: relative;
  will-change: auto;
}
.works-row.row-1,
.works-row.row-2,
.works-row.row-3 {
  animation: none;
}
.works-track {
  --card-gap: 20px;
  display: flex;
  width: max-content;
  gap: var(--card-gap);
  will-change: transform;
}
.works-row.row-1 .works-track,
.works-row.row-3 .works-track {
  animation: workScrollRight 28s linear infinite;
}
.works-row.row-2 .works-track {
  animation: workScrollLeft 28s linear infinite;
}
.work-card {
  min-width: clamp(440px, 48vw, 640px);
  width: clamp(440px, 48vw, 640px);
  aspect-ratio: 2;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.4) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 2rem;
  font-weight: 700;
  isolation: auto;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-card::after {
  content: none;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
}
@keyframes workScrollLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - (var(--card-gap) / 2)), 0, 0); }
}
@keyframes workScrollRight {
  from { transform: translate3d(calc(-50% - (var(--card-gap) / 2)), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@media (max-width: 760px) {
  #recent-works {
    padding: 1.9rem 0;
  }
  #recent-works::before,
  #recent-works::after {
    width: 148px;
  }
  #recent-works .container {
    width: min(calc(100% - 12px), 100%);
  }
  .works-scroll-container {
    gap: 12px;
    margin-top: 1.5rem;
  }
  .works-track {
    --card-gap: 12px;
  }
  .work-card {
    min-width: clamp(300px, 70vw, 440px);
    width: clamp(300px, 70vw, 440px);
    border-radius: 10px;
    font-size: 1.1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .works-row .works-track {
    animation: none;
  }
}

/* Square custom cursor */
.cursor-follow-circle {
  display: none !important;
}
.pixel-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11999;
  display: block !important;
  width: 20px;
  height: 20px;
  border-radius: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(231,77,95,.18);
  box-shadow: 0 0 0 1px rgba(231,77,95,.12);
  filter: none;
  will-change: transform;
  transition: opacity .18s ease;
}
.pixel-cursor-dot {
  --cursor-scale: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  width: 12px;
  height: 12px;
  border-radius: 0;
  pointer-events: none;
  opacity: 0;
  background: #e74d5f;
  box-shadow: 0 0 0 6px rgba(231,77,95,.08), 0 0 18px rgba(231,77,95,.24);
  mix-blend-mode: normal;
  will-change: transform;
  transition: opacity .18s ease, box-shadow .22s cubic-bezier(.16,1,.3,1);
}
body.cursor-ready .pixel-cursor-dot {
  opacity: 1;
}
body.cursor-ready .pixel-cursor {
  opacity: 1;
}
body.cursor-hover .pixel-cursor-dot {
  --cursor-scale: 1.55;
  box-shadow: 0 0 0 9px rgba(231,77,95,.11), 0 0 24px rgba(231,77,95,.3);
}
body.cursor-hidden .pixel-cursor,
body.cursor-hidden .pixel-cursor-dot {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  html,
  body,
  body *,
  body *::before,
  body *::after {
    cursor: none !important;
  }
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .pixel-cursor,
  .pixel-cursor-dot {
    display: none;
  }
}



/* Testimonials marquee */
#testimonials {
  position: relative;
  padding-top: clamp(2.8rem, 5vw, 5rem);
  padding-bottom: clamp(2.4rem, 4vw, 4rem);
  overflow: hidden;
}
#testimonials::before,
#testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(24vw, 280px);
  z-index: 2;
  pointer-events: none;
}
#testimonials::before {
  left: 0;
  background: linear-gradient(90deg, rgba(240,240,240,1) 0%, rgba(240,240,240,0.86) 38%, rgba(240,240,240,0) 100%);
}
#testimonials::after {
  right: 0;
  background: linear-gradient(270deg, rgba(240,240,240,1) 0%, rgba(240,240,240,0.86) 38%, rgba(240,240,240,0) 100%);
}
#testimonials .container {
  position: relative;
  z-index: 1;
}
#testimonials .display-title {
  margin-bottom: 0.7rem;
}
.testimonial-subtitle {
  margin: 0 auto 1.5rem;
  max-width: 720px;
  text-align: center;
  font-size: clamp(1.06rem, 0.9rem + 0.5vw, 1.8rem);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(17,17,17,0.76);
}
.testimonial-marquee-wrap {
  position: relative;
  margin-top: 1.5rem;
}
.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 0.2rem;
}
.testimonial-marquee::before,
.testimonial-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(16vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(237,237,237,1) 0%, rgba(237,237,237,0.85) 32%, rgba(237,237,237,0) 100%);
}
.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(237,237,237,1) 0%, rgba(237,237,237,0.85) 32%, rgba(237,237,237,0) 100%);
}
.testimonial-track-row {
  --card-gap: 1.25rem;
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: var(--card-gap);
  will-change: transform;
  animation: testimonialScroll 30s linear infinite;
}
.testimonial-card {
  flex: 0 0 clamp(305px, 31vw, 420px);
  width: clamp(305px, 31vw, 420px);
  min-height: 255px;
  padding: 1.25rem 1.3rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.04);
  backdrop-filter: blur(2px);
}
.testimonial-stars {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  color: #e74d5f;
  margin-bottom: 0.85rem;
}
.testimonial-quote {
  margin: 0;
  color: rgba(17,17,17,0.8);
  font-size: clamp(0.98rem, 0.82rem + 0.38vw, 1.1rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(17,17,17,0.08);
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(231,77,95,0.12);
  color: #e74d5f;
  font-size: 0.88rem;
  font-weight: 800;
}
.testimonial-author strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
}
.testimonial-author small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.77rem;
  line-height: 1.4;
  color: rgba(17,17,17,0.7);
}
.testimonial-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
  padding-bottom: 0.2rem;
}
.testimonial-cta .button-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  border: 0;
  overflow: hidden;
  isolation: isolate;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: none;
  transition: transform .38s cubic-bezier(.16,1,.3,1),
              box-shadow .38s cubic-bezier(.16,1,.3,1),
              background-color .38s cubic-bezier(.16,1,.3,1),
              color .38s cubic-bezier(.16,1,.3,1),
              opacity .38s cubic-bezier(.16,1,.3,1);
}
.testimonial-cta .button-secondary::before {
  content: '';
  position: absolute;
  inset: -10% 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 32%, rgba(255,255,255,.5) 50%, rgba(255,255,255,.18) 68%, rgba(255,255,255,0) 100%);
  transform: translateX(-140%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  z-index: 0;
  pointer-events: none;
}
.testimonial-cta .button-secondary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(231,77,95,.18);
}
.testimonial-cta .button-secondary:hover::before {
  transform: translateX(140%);
}
.testimonial-cta .button-secondary:active {
  transform: translateY(0) scale(.985);
}
@keyframes testimonialScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - (var(--card-gap) / 2)), 0, 0);
  }
}
@media (max-width: 760px) {
  #testimonials {
    padding-top: 2rem;
  }
  #testimonials::before,
  #testimonials::after,
  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 92px;
  }
  .testimonial-subtitle {
    margin-bottom: 1.1rem;
  }
  .testimonial-card {
    flex-basis: min(78vw, 345px);
    width: min(78vw, 345px);
    min-height: 220px;
    padding: 1rem 1rem 0.95rem;
    border-radius: 16px;
  }
  .testimonial-quote {
    font-size: 0.97rem;
  }
  .testimonial-cta {
    margin-top: 1.2rem;
  }
}
.stats-block-wrap {
  position: relative;
}
.stats-block {
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
}
.stat-item > div:first-child,
.stat-item > div:last-child {
  width: 100%;
}
@media (max-width: 760px) {
  .stats-block {
    width: min(calc(100% - 12px), 100%) !important;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
}

/* Bigger centered intro */
.intro-section {
  min-height: 80vh;
  padding: clamp(7rem, 12vw, 11rem) 0;
  display: grid;
}
.intro-exact {
  width: min(calc(100vw - 48px), 1280px);
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  text-align: center;
  display: grid;
  justify-items: center;
}
.intro-hello {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
  font-size: clamp(1.7rem, 1.2rem + 1.1vw, 2.5rem);
}
.intro-heading {
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 32px;
  line-height: .94;
  overflow-wrap: normal;
  word-break: normal;
}
.intro-heading .dark-line,
.intro-heading .muted-line {
  color: inherit;
}
.intro-letter {
  color: rgb(var(--letter-color, 205 205 205));
  transition: color .24s linear;
}
@media (max-width: 900px) {
  .intro-section {
    min-height: 82vh;
    padding: 5rem 0;
  }
  .intro-exact {
    width: min(calc(100vw - 24px), 100%);
  }
  .intro-hello {
    font-size: clamp(1.3rem, 5.4vw, 1.75rem);
    margin-bottom: 1.5rem;
  }
  .intro-heading {
    font-size: clamp(1.95rem, 8.8vw, 3.15rem);
    line-height: .98;
  }
}

@media (min-width: 761px) {
  .about-page main > .container,
  .about-page .about-story-grid,
  .about-page .about-origin-grid,
  .about-page .about-values > .container,
  .about-page .about-stats-grid,
  .about-page .about-team > .container {
    width: min(calc(100% - 48px), 1120px);
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 0;
  }
}
@media (max-width: 760px) {
  .about-page main > .container,
  .about-page .about-story-grid,
  .about-page .about-origin-grid,
  .about-page .about-values > .container,
  .about-page .about-stats-grid,
  .about-page .about-team > .container {
    width: min(calc(100% - 24px), 100%);
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
  }
}

/* Mango Grotesque uses default kerning throughout the site. */
h1, h2, h3, h4, h5, h6,
.display-title,
.hero-title,
.project-meta h3,
.contact-overlay h2,
.works-index-block h3,
.services-title,
.service-detail-title,
.services-cta-title,
.service-index,
.about-title,
.about-section-title,
.about-story-title,
.about-team-title,
.about-signoff,
.about-value-number,
.about-stat strong,
.about-avatar,
.about-team-card h3,
.about-cta-title,
.splash-inner h1,
.splash-wordmark {
  letter-spacing: 0 !important;
}

.hero-title {
  font-size: clamp(2.95rem, 5.1vw, 5.9rem);
}

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(2.8rem, 10.5vw, 3.8rem);
  }
}

.hero-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  margin-top: 0;
  font-size: clamp(6.8rem, 11.6vw, 13.6rem);
  line-height: 0.78;
  font-weight: 800;
  letter-spacing: -0.02em !important;
}

.hero-text {
  margin-top: 0;
  margin-inline: auto;
}

.hero-title + .hero-text {
  margin-top: -28px;
}

.hero-actions {
  margin-top: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(6rem, 23vw, 8.8rem);
    line-height: 0.88;
  }
}

.intro-heading {
  width: min(100%, 820px);
  max-width: 820px;
  margin: -10px auto 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 1.9vw, 2rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .intro-heading {
    font-size: clamp(1.1rem, 4.8vw, 1.8rem);
  }
}

.intro-hello {
  color: var(--orange);
  font-family: 'OceanTrace', cursive;
  font-size: clamp(2.4rem, 1.7rem + 1.5vw, 3.6rem);
  margin-bottom: 0;
  line-height: 0.85;
  letter-spacing: 0;
}

.intro-exact {
  row-gap: 0;
}

@media (max-width: 900px) {
  .intro-hello {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }
}

.section-title {
  font-size: clamp(2.6rem, 1.7rem + 2.4vw, 4.7rem);
}

#recent-works .section-title {
  font-size: clamp(3rem, 2rem + 2.8vw, 5.4rem);
}

.studio-coverage-header {
  text-align: center;
}

.studio-coverage-title {
  max-width: 1200px;
  margin-inline: auto;
  font-size: clamp(3.5rem, 2.4rem + 3.3vw, 6.1rem);
  line-height: 0.82;
  text-align: center;
}

.display-title.ghost-title {
  max-width: 1200px;
  margin-inline: auto;
  font-size: clamp(3.5rem, 2.4rem + 3.3vw, 6.1rem);
  line-height: 0.82;
  text-align: center;
  font-weight: 900;
  color: #111;
}

.studio-coverage-copy {
  width: min(calc(100% - 28px), 640px);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: clamp(0.9rem, 0.84rem + 0.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.intro-section > .container.narrow {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.intro-section {
  min-height: auto;
  padding-bottom: 0;
}

.intro-section + .testimonials-brand-row {
  margin-top: clamp(7rem, 12vw, 11rem) !important;
}

.intro-heading {
  width: 100%;
  padding-inline: clamp(12px, 4vw, 56px);
}

/* Unified footer */
.site-footer {
  padding: clamp(2.5rem, 5vw, 5rem) 0 0;
  background: transparent;
  color: #111;
}
.footer-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem) 1.25rem;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}
.footer-shell::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background: none;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
}
.footer-intro {
  max-width: 390px;
}
.footer-logo {
  display: inline-flex;
  width: min(100%, 230px);
  min-height: auto;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-intro p {
  margin-top: 1.5rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.9rem, 0.84rem + 0.2vw, 1.05rem);
  line-height: 1.5;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  margin-top: 1.5rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer-cta:hover {
  background: transparent;
  color: #111;
  transform: translateY(-2px);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}
.footer-nav-group h2 {
  margin: 0 0 1rem;
  color: #f1a3a9;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-nav-group ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav-group a {
  display: inline-block;
  min-height: 24px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav-group a:hover,
.footer-nav-group a[aria-current='page'] {
  color: #111;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.72rem;
  line-height: 1.4;
}
.footer-nav-group a:focus-visible,
.footer-cta:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}
@media (max-width: 700px) {
  .footer-shell {
    padding-inline: 1.25rem;
  }
  .footer-top,
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .footer-top {
    gap: 2.5rem;
  }
  .footer-nav {
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* Services hero aligned with the main-page display treatment */
.services-main {
  padding-top: 0;
}
.services-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  min-height: clamp(380px, 54vh, 580px);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(1.75rem, 4vw, 3rem);
  text-align: center;
}
.services-breadcrumb {
  display: none;
}
.services-kicker {
  margin: 0;
  color: var(--muted-light);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
}
.services-title {
  max-width: 1120px;
  margin-top: 1rem;
  font-size: clamp(4rem, 2.2rem + 6.2vw, 7.4rem);
  line-height: 0.82;
  letter-spacing: 0 !important;
  font-weight: 900;
}
.services-intro {
  max-width: 640px;
  margin-top: 2rem;
  color: rgba(17, 17, 17, 0.86);
  font-size: clamp(0.9rem, 0.84rem + 0.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.35;
}
.services-list {
  margin-top: clamp(1.75rem, 3vw, 3rem);
}
.service-detail,
.service-detail:first-child,
.service-detail:nth-child(4) {
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1), box-shadow 0.3s ease;
}
.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}
.service-detail-title {
  color: var(--orange);
}
.service-index {
  color: var(--dark);
}

.about-hero {
  margin-inline: auto;
  text-align: center;
}
.about-lead {
  margin-inline: auto;
}
.about-section-title {
  max-width: none;
  font-size: clamp(3.25rem, 5.9vw, 6.2rem);
  line-height: 0.88;
}
.about-story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding-inline: 0;
}
.about-story .about-section-kicker {
  margin-top: 0;
}
.service-detail:nth-child(4) {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.08);
}
.service-detail:nth-child(4) .service-detail-copy,
.service-detail:nth-child(4) .service-detail-list span {
  color: #777;
}
.service-detail:nth-child(4) .service-detail-list strong {
  color: #292929;
}
.service-detail:nth-child(4) .service-button {
  color: #111;
  border-color: #111;
}
.service-detail:nth-child(4) .service-button:hover {
  background: #181818;
  color: #fff;
}
@media (max-width: 760px) {
  .services-hero {
    min-height: 0;
    padding: 5.5rem 0 4rem;
  }
  .services-title {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }
}

/* ============================================================
   RESPONSIVE PATCH — Tablet, phone & small-screen hardening
   Keeps the same visual layout across Desktop / Tablet / Phone.
   ============================================================ */

/* 1) Medium tablets & small laptops (1100px and below) */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }
  .studio-row {
    grid-template-columns: 52px 1fr;
    row-gap: 0.5rem;
  }
  .studio-description {
    grid-column: 2;
  }
  .studio-label {
    white-space: normal;
  }
  .footer-top {
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

/* 2) Tablet portrait (900px and below) */
@media (max-width: 900px) {
  .agency-value-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .agency-value-points {
    height: auto;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .about-team-header {
    display: block;
  }
  .about-team-intro {
    margin-top: 14px;
    max-width: 100%;
  }
  .nav-wrap {
    min-height: 68px;
  }
  .brand img {
    width: 140px;
  }
  .services-list {
    gap: 14px;
  }
  .service-detail {
    min-height: 0;
  }
  .hero-title {
    font-size: clamp(3.2rem, 11.5vw, 8.6rem);
  }
  .hero-title span {
    display: block;
    white-space: nowrap;
    font-size: 26vw;
    line-height: 1.04;
  }
  .display-title.ghost-title,
  .studio-coverage-title {
    font-size: clamp(2.8rem, 9.5vw, 6.1rem);
  }
  .intro-heading {
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  }
}

/* 3) Large phones & small tablets (620px and below) */
@media (max-width: 620px) {
  .stats-grid {
    row-gap: 20px;
  }
  .studio-row {
    grid-template-columns: 1fr;
    row-gap: 0.35rem;
    padding: 1.25rem 0;
  }
  .studio-description {
    grid-column: 1;
  }
  .testimonial-card {
    flex-basis: min(85vw, 330px);
    width: min(85vw, 330px);
  }
  .work-card {
    min-width: clamp(208px, 80vw, 320px);
    width: clamp(208px, 80vw, 320px);
  }
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .hero-actions .primary-pill {
    width: auto;
    flex: 0 1 auto;
    min-width: 0;
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .footer-logo {
    width: min(100%, 190px);
  }
  .footer-cta {
    width: min(100%, 260px);
    justify-content: center;
  }
}

/* 4) Phones (760px and below) — layout & overflow fixes */
@media (max-width: 760px) {
  /* Header / nav */
  .nav-wrap {
    min-height: 62px;
    gap: 10px;
  }
  .brand img {
    width: 132px;
    height: auto;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .mobile-nav {
    padding: 0 8px 12px;
  }

  /* Hero */
  .hero.section {
    padding-top: 1.5rem;
  }
  .hero-copy {
    gap: 18px;
  }
  .hero-title + .hero-text,
  .hero-text {
    margin-top: 6px;
  }
  .hero-text {
    padding-inline: 6px;
    line-height: 1.6;
  }
  .hero-title {
    line-height: 0.88;
  }
  .hero-title span {
    font-size: 26vw;
  }
  .hero-actions {
    margin-top: 10px;
  }
  .hero-actions {
    gap: 8px;
  }

  /* Intro section */
  .intro-section {
    min-height: auto;
    padding: 4rem 0 2.5rem;
  }

  /* Works marquee */
  .works-row {
    overflow: hidden;
  }
  .works-track {
    --card-gap: 10px;
  }
  /* Section-level edge fades off on phones — titles stay fully visible */
  #recent-works::before,
  #recent-works::after,
  #testimonials::before,
  #testimonials::after {
    display: none;
  }
  /* Fades now belong to the marquee rows only (width of the cards) */
  .works-row {
    position: relative;
  }
  .works-row::before,
  .works-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    z-index: 2;
    pointer-events: none;
  }
  .works-row::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(237,237,237,0) 100%);
  }
  .works-row::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg) 0%, rgba(237,237,237,0) 100%);
  }

  /* About page — story & origin: title centered, copy centered below */
  .about-page .about-story-grid,
  .about-page .about-origin-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-page .about-story-grid .reveal,
  .about-page .about-origin-grid .reveal {
    text-align: center;
  }
  .about-page .about-section-title {
    max-width: 620px;
    margin-inline: auto;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .about-page .about-story-copy,
  .about-page .about-origin-copy {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.7;
  }
  .about-page .about-story-copy p + p,
  .about-page .about-origin-copy p + p {
    margin-top: 16px;
  }
  .about-page .about-story-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }
  .about-page .about-origin-copy {
    padding-top: 0;
  }

  /* Studio coverage / agency value */
  .studio-coverage-section,
  .agency-value-section {
    width: 100%;
    margin-left: 0;
    padding-inline: 12px;
  }
  .studio-coverage-header,
  .studio-coverage-copy,
  .studio-coverage-list,
  .studio-button-wrap,
  .agency-value-wrap {
    width: 100%;
  }
  .agency-point {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px 14px;
    align-items: start;
    flex: 0 0 auto;
    min-height: max-content;
  }
  .agency-point-number {
    font-size: 1rem;
    padding-top: 2px;
  }
  .agency-point-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .agency-point p {
    font-size: 0.9rem;
  }
  .agency-value-points {
    gap: 12px;
  }
  .agency-value-title {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  /* Testimonials */
  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 48px;
  }
  .testimonial-marquee-wrap {
    margin-inline: -12px;
  }
  .testimonial-card {
    flex-basis: min(64vw, 300px);
    width: min(64vw, 300px);
    min-height: 0;
    padding: 0.9rem 0.95rem 0.85rem;
    border-radius: 14px;
  }
  .testimonial-stars {
    font-size: 0.78rem;
    margin-bottom: 0.55rem;
  }
  .testimonial-quote {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .testimonial-author {
    gap: 0.6rem;
    margin-top: 0.8rem;
    padding-top: 0.65rem;
  }
  .avatar {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.75rem;
  }
  .testimonial-author strong {
    font-size: 0.85rem;
  }
  .testimonial-author small {
    font-size: 0.68rem;
  }

  /* Stats block */
  .stats-block {
    width: 100% !important;
    padding: 18px 4px 12px !important;
  }

  /* Contact CTA (overrides inline styles) */
  #contact .container {
    padding: 32px 18px 30px !important;
  }
  #contact .display-title {
    font-size: clamp(2.2rem, 10vw, 3.6rem) !important;
  }
  #contact div[style] a {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    min-height: 54px;
  }
  #contact div[style] {
    width: 100%;
  }

  /* Footer */
  .footer-shell {
    padding-inline: 16px;
  }

  /* Touch targets */
  .service-button,
  .about-cta-actions a,
  .services-cta-actions a {
    min-height: 44px;
    width: min(100%, 300px);
    justify-content: center;
  }
}

/* 5) Small phones (380px and below) */
@media (max-width: 380px) {
  .brand img {
    width: 116px;
  }
  .hero-title {
    font-size: clamp(2.6rem, 13.5vw, 4rem);
  }
  .hero-title span {
    font-size: 26vw;
  }
  .testimonial-card {
    flex-basis: 68vw;
    width: 68vw;
  }
  .work-card {
    min-width: 84vw;
    width: 84vw;
    font-size: 1rem;
  }
  .stats-grid {
    gap: 14px 10px;
  }
  #contact .container {
    padding: 28px 14px 26px !important;
  }
}

/* 6) Landscape phones / short viewports */
@media (max-height: 480px) and (orientation: landscape) {
  .hero.section {
    padding-top: 1rem;
  }
  .intro-section {
    padding: 2rem 0;
  }
  .splash-screen {
    position: absolute;
  }
}

/* 7) Very large desktops — keep layout identical, just cap content */
@media (min-width: 1600px) {
  .container,
  .container.wide-shell,
  .hero .container.wide-shell,
  .hero-shell,
  .contact-section .container {
    max-width: 1420px;
  }
  .hero-title {
    font-size: clamp(6.8rem, 9vw, 11.5rem);
  }
}

/* 8) Touch devices: kill hover-dependent effects */
@media (hover: none), (pointer: coarse) {
  .agency-point:hover,
  .studio-row:hover,
  .work-card:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
  }
  .nav-cta:hover,
  .primary-pill:hover,
  .light-pill:hover,
  .studio-cta:hover,
  .footer-cta:hover,
  .testimonial-cta .button-secondary:hover,
  .service-button:hover,
  .about-cta-actions a:hover,
  .services-cta-actions a:hover {
    transform: none;
  }
}

/* 9) Print safety */
@media print {
  .splash-screen,
  .pixel-cursor,
  .pixel-cursor-dot,
  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}
