:root {
  --ink: #17181a;
  --paper: #ffffff;
  --paper-soft: #f4f6f9;
  --blue: #275fbd;
  --blue-light: #8db7ff;
  --line: #dfe4ec;
  --muted: #5c626d;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 40px));
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
img, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

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

.section { padding-block: clamp(48px, 5vw, 72px); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 6px;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 4px; }

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--blue-light); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 22px;
  color: var(--paper);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.button:hover { background: #1f4f9f; border-color: #1f4f9f; }
.button-small { min-height: 42px; padding: 9px 17px; font-size: 0.88rem; }

.button-white {
  color: #143b7a;
  background: var(--paper);
  border-color: var(--paper);
}

.button-white:hover {
  color: var(--paper);
  background: transparent;
  border-color: var(--paper);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--paper);
  background: rgba(23, 24, 26, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { position: relative; z-index: 2; flex: 0 0 auto; }
.brand img { width: 82px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav li a {
  color: #eef1f5;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav li a:hover { color: var(--blue-light); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform 150ms ease, opacity 150ms ease;
}

.hero {
  color: var(--paper);
  background: var(--ink);
  border-bottom: 8px solid var(--blue);
}

.hero-grid {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(36px, 5vw, 60px);
  padding-block: clamp(48px, 5vw, 68px);
}

.hero-copy { max-width: 650px; }

.hero h1 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.5vw, 7.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 span, .hero h1 strong { display: block; font: inherit; }
.hero h1 strong { color: #3472d3; }

.hero-tagline {
  width: fit-content;
  padding-top: 16px;
  margin-bottom: 14px;
  border-top: 4px solid var(--blue);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 480px;
  margin-bottom: 26px;
  color: #cdd1d8;
  font-size: 1.06rem;
}

.hero-portrait { width: min(100%, 450px); margin: 0 auto; }

.portrait-ring {
  aspect-ratio: 1;
  overflow: hidden;
  background: #ddddda;
  border: 10px solid var(--blue);
  border-radius: 50%;
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.client-proof {
  padding-block: 40px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.proof-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 5vw, 58px);
}

.proof-heading .eyebrow { margin-bottom: 7px; }

.proof-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.client-proof blockquote {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin: 0;
}

.client-avatar {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.client-avatar-placeholder {
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--paper-soft);
  font-size: 1rem;
  font-weight: 900;
}

.quote-copy {
  min-height: 76px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}

.client-proof .quote-copy p {
  margin-bottom: 10px;
  color: #34383f;
  font-size: 1rem;
  line-height: 1.5;
}

.client-proof blockquote footer {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading { max-width: 770px; margin-bottom: 34px; }

.section-heading h2, .about h2, .final-cta h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading h2 span, .about h2 span, .final-cta h2 span { color: var(--blue); }

.section-heading > h2 + p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  min-height: 104px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 28px 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-card:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--line); }
.service-card:nth-child(even) { padding-left: 40px; }

.service-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.about { color: var(--paper); background: var(--ink); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.about h2 span { color: var(--blue-light); }

.about-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  color: #d6dae1;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-highlights li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--blue-light);
  border-radius: 50%;
  content: "";
}

.about-copy { max-width: 580px; }
.about-copy p { color: #d6dae1; }

.about-copy .lead {
  color: var(--paper);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 750;
  line-height: 1.45;
}

.process { background: var(--paper-soft); }

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 64px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li { padding-top: 26px; border-top: 4px solid var(--blue); }

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.35rem;
}

.process-list h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.process-list p { max-width: 300px; margin-bottom: 0; color: var(--muted); }

.process-list .button { margin-top: 18px; }

.studio-heading { max-width: 820px; }

.studio-gallery {
  display: grid;
  height: clamp(420px, 54vw, 620px);
  grid-template-columns: minmax(0, 2.1fr) minmax(230px, 0.9fr);
  gap: 20px;
}

.studio-main-image, .studio-detail-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.studio-main-image img, .studio-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories { color: var(--paper); background: var(--ink); }
.stories .section-heading h2 span { color: var(--blue-light); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 24px;
}

.testimonial-card {
  overflow: hidden;
  background: #232426;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
}

.video-frame { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: var(--blue); }

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-copy { padding: 20px 24px 22px; }

.client-name {
  margin-bottom: 2px;
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.client-detail {
  margin: 0;
  color: #aeb5c0;
  font-size: 0.82rem;
}

.faq { background: var(--paper); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 9vw, 118px);
}

.faq .section-heading { margin-bottom: 0; }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--blue);
  content: "+";
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 650px;
  padding: 0 42px 18px 0;
  margin: 0;
  color: var(--muted);
}

.final-cta { padding-block: clamp(48px, 5vw, 68px); color: var(--paper); background: #143b7a; }

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
}

.final-cta h2 span { color: var(--blue-light); }
.final-cta h2 + p { margin: 18px 0 0; color: #dce7fa; font-size: 1.08rem; }

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.cta-actions .button { margin-bottom: 12px; }

.cta-actions > a:not(.button) {
  color: #eef4ff;
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.site-footer { padding-block: 54px 22px; color: #cbd0d9; background: var(--ink); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.5fr;
  gap: 50px;
  padding-bottom: 42px;
}

.footer-brand p { margin-bottom: 0; font-size: 0.9rem; }
.footer-brand strong { color: var(--paper); }

.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 6px;
  color: var(--paper);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a { font-size: 0.88rem; text-underline-offset: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p { margin-bottom: 0; }
.footer-bottom a { color: var(--paper); font-weight: 700; text-underline-offset: 4px; }

.mobile-sticky-cta { display: none; }

@media (max-width: 900px) {
  .js .nav-toggle { position: relative; z-index: 3; display: block; }

  .js .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 100px max(24px, 8vw) 40px;
    background: rgba(23, 24, 26, 0.99);
  }

  .js .site-nav[data-open="true"] { display: flex; }
  .site-nav ul { align-items: flex-start; flex-direction: column; gap: 16px; }

  .site-nav li a {
    font-family: var(--display);
    font-size: 2.4rem;
    line-height: 1;
    text-transform: uppercase;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 42px;
  }

  .hero h1 { font-size: clamp(3.7rem, 9vw, 5.4rem); }

  .proof-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-heading { grid-column: 1 / -1; }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 640px); }
  html { scroll-padding-top: 74px; }
  .section { padding-block: 48px; }
  .header-inner { min-height: 72px; }
  .brand img { width: 78px; }

  .hero-grid, .about-grid, .final-cta-inner { grid-template-columns: 1fr; }

  .hero-grid {
    min-height: auto;
    gap: 34px;
    padding-block: 44px 52px;
  }

  .hero h1 { font-size: clamp(4rem, 18vw, 6.4rem); }
  .hero-portrait { width: min(88%, 430px); }

  .proof-inner, .faq-grid { grid-template-columns: 1fr; }

  .client-proof { padding-block: 36px; }

  .proof-inner { gap: 24px; }

  .client-proof blockquote { grid-template-columns: 76px minmax(0, 1fr); gap: 14px; }

  .client-avatar { width: 76px; height: 76px; }

  .quote-copy { min-height: 76px; padding-left: 14px; }

  .services-grid, .process-list, .testimonial-grid { grid-template-columns: 1fr; }

  .service-card:nth-child(odd), .service-card:nth-child(even) {
    padding: 20px 0;
    border-right: 0;
  }

  .about-grid { gap: 32px; }
  .process-list { gap: 24px; }

  .process-list li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding-top: 20px;
  }

  .step-number { margin-bottom: 0; }

  .process-list li > div { padding-top: 3px; }

  .process-list h3 {
    margin-bottom: 6px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .process-list p {
    line-height: 1.45;
  }

  .studio-gallery { height: auto; grid-template-columns: 1fr; }
  .studio-main-image { aspect-ratio: 4 / 3; }
  .studio-detail-image { aspect-ratio: 16 / 8; }
  .final-cta-inner { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .site-footer {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 11px 18px;
    color: var(--paper);
    background: var(--blue);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.28);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }
}

@media (max-width: 440px) {
  .section-heading h2, .about h2, .final-cta h2 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .button, .final-cta, .site-footer, .mobile-sticky-cta { display: none !important; }
  .hero, .about, .stories { color: #000; background: #fff; }
}
