@layer reset, tokens, base, layout, components, refinements, responsive, final, carousel;

@layer reset{
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, blockquote, ul { margin: 0; }
  ul { padding: 0; list-style: none; }
  img, picture { display: block; }
  img { max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }
}

@layer tokens{
  :root {
    --black: #080808;
    --charcoal: #111111;
    --white: #ffffff;
    --paper: #f7f7f5;
    --paper-deep: #eeeeeb;
    --ink: #121212;
    --muted: #666761;
    --line: #d9d9d5;
    --line-dark: rgba(255,255,255,.16);
    --red: #e51b23;
    --red-dark: #c1131a;
    --hero-red: #d32a31;
    --container: 1180px;
    --container-wide: 1360px;
    --gutter: clamp(22px, 4vw, 64px);
    --s1: 4px;
    --s2: 8px;
    --s3: 12px;
    --s4: 16px;
    --s6: 24px;
    --s8: 32px;
    --s12: 48px;
    --s16: 64px;
    --s20: 80px;
    --s24: 96px;
    --s28: 112px;
    --ease: 180ms ease;
  }
}

@layer base{
  body {
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: "Poppins", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  :focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
  }

  .container {
    width: min(var(--container), calc(100% - 2 * var(--gutter)));
    margin-inline: auto;
  }

  .skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--black);
    background: var(--white);
    transform: translateY(-160%);
  }
  .skip-link:focus { transform: translateY(0); }

  .eyebrow {
    color: #f24449;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .16em;
  }
  .eyebrow--dark { color: var(--red); }
  .eyebrow--hero { color: var(--hero-red); }

  h1, h2, h3 { text-wrap: balance; }
}

@layer layout{
  .site-header {
    position: absolute;
    z-index: 20;
    inset: 0 0 auto;
    height: 82px;
    color: var(--white);
    background: rgba(8,8,8,.92);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s12);
  }
  .brand { width: 132px; flex: 0 0 auto; }
  .brand img { width: 100%; }
  .site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    color: rgba(255,255,255,.94);
    font-size: 12px;
    font-weight: 600;
  }
  .site-nav a {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding-top: 2px;
    transition: color var(--ease);
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
  }
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active { color: var(--white); }
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a.is-active::after { transform: scaleX(1); }
  .menu-toggle { display: none; }

  .hero {
    position: relative;
    height: clamp(460px, 41.7vw, 600px);
    min-height: 460px;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
  }
  .hero-image {
    position: absolute;
    inset: 0;
  }
  .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,8,8,.44) 0%, rgba(8,8,8,.12) 35%, rgba(8,8,8,0) 62%);
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 82px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0,1fr));
    align-items: center;
  }
  .hero h1 {
    grid-column: 1 / span 6;
    max-width: 650px;
    padding-top: 12px;
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1.01;
    font-weight: 600;
    letter-spacing: -.045em;
    text-shadow: 0 2px 20px rgba(0,0,0,.38);
  }
  .hero h1 span {
    display: block;
    margin-bottom: 8px;
    font-size: .67em;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.03em;
  }
  .hero-credit {
    position: absolute;
    z-index: 3;
    right: var(--gutter);
    bottom: 20px;
    padding: 7px 10px 7px 26px;
    color: rgba(255,255,255,.94);
    background: rgba(8,8,8,.62);
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .02em;
    text-shadow: 0 1px 8px rgba(0,0,0,.8);
  }
  .hero-credit::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 1.15em;
    width: 10px;
    height: 2px;
    background: var(--red);
  }
  .hero-credit strong { color: var(--white); font-weight: 600; }

  .clients {
    padding: 54px 0 42px;
    color: var(--ink);
    background: #ececea;
    border-bottom: 1px solid var(--line);
  }
  .client-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: var(--s12);
  }
  .client-heading > div:first-child { max-width: 760px; }
  .client-heading h2 {
    margin-top: 10px;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -.035em;
  }
  .client-heading > div:first-child > p:last-child {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
  }
  .carousel-controls {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
  }
  .carousel-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    color: var(--ink);
    background: transparent;
    border: 1px solid #a9aaa5;
    cursor: pointer;
    font-size: 18px;
    transition: color var(--ease), background var(--ease), border-color var(--ease);
  }
  .carousel-button:hover,
  .carousel-button:focus-visible {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
  }
  .client-carousel {
    margin-top: 30px;
    overflow: clip;
    padding-inline: var(--gutter);
  }
  
  
  .client-logo {
    min-height: 154px;
    display: grid;
    place-items: center;
    scroll-snap-align: start;
  }
  .client-logo img {
    width: 100%;
    max-width: 220px;
    height: 132px;
    object-fit: contain;
  }
  .client-disclaimer {
    margin-top: 18px;
    color: #777872;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
  }

  .why {
    padding: clamp(80px, 8vw, 112px) 0;
    background: var(--paper);
  }
  .why-grid {
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: clamp(54px, 7vw, 96px);
    align-items: center;
  }
  .why-copy { max-width: 470px; }
  .why h2 {
    margin-top: var(--s4);
    font-size: clamp(40px, 4.2vw, 56px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -.04em;
  }
  .why-intro {
    margin-top: var(--s6);
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
  }
  .proof-list {
    margin-top: var(--s8);
    border-top: 1px solid var(--line);
  }
  .proof-list li {
    display: grid;
    gap: 3px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-list strong { color: var(--red-dark); font-size: 15px; font-weight: 600; }
  .proof-list span { color: var(--muted); font-size: 13px; line-height: 1.55; }
  .showreel {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--charcoal) url("../assets/images/showreel.webp") center / cover no-repeat;
  }
  .showreel iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .work {
    padding: clamp(80px, 8vw, 112px) 0 clamp(72px, 7vw, 96px);
    color: var(--white);
    background: var(--black);
  }
  .work-heading {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: var(--s12);
    align-items: end;
  }
  .work-heading h2 {
    margin-top: var(--s4);
    font-size: clamp(42px, 4.6vw, 62px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -.04em;
  }
  .work-heading > p {
    max-width: 440px;
    justify-self: end;
    padding-bottom: 6px;
    color: rgba(255,255,255,.66);
    font-size: 16px;
    line-height: 1.65;
  }
  .work-strip {
    width: min(1540px, 100%);
    margin: clamp(48px, 5vw, 70px) auto 0;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1.35fr;
    min-height: 350px;
  }
  .work-item {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    background: #1a1a1a;
  }
  .work-item + .work-item { border-left: 4px solid var(--black); }
  .work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms ease, filter 500ms ease;
  }
  .work-item:nth-child(2) img { object-position: 48% center; }
  .work-item:nth-child(3) img { object-position: 58% center; }
  .work-item:nth-child(4) img { object-position: 55% center; }
  .work-item::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
  }
  .work-item:hover img { transform: scale(1.025); filter: saturate(1.05); }
  .work-item figcaption {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .12em;
  }
  .work-footer { display: flex; justify-content: flex-end; margin-top: var(--s8); }

  .services {
    padding: clamp(88px, 9vw, 128px) 0;
    background: var(--paper);
  }
  .services-intro {
    display: grid;
    grid-template-columns: 7fr 4fr;
    align-items: end;
    gap: var(--s12);
  }
  .services-intro h2 {
    max-width: 720px;
    margin-top: var(--s4);
    font-size: clamp(42px, 4.8vw, 64px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -.045em;
  }
  .services-intro > p {
    max-width: 440px;
    justify-self: end;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
  }
  .service-list { margin-top: clamp(52px, 6vw, 80px); border-top: 1px solid var(--ink); }
  .service-row {
    display: grid;
    grid-template-columns: 70px minmax(240px, 4fr) 5fr;
    gap: var(--s8);
    align-items: baseline;
    padding: 27px 0;
    border-bottom: 1px solid var(--line);
  }
  .service-row > span {
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
  }
  .service-row h3 {
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.02em;
  }
  .service-row p { max-width: 600px; color: var(--muted); font-size: 15px; }
  .photography-note {
    margin-top: var(--s8);
    padding-top: var(--s6);
    border-top: 1px solid var(--line);
  }
  .photography-note p {
    max-width: 760px;
    color: var(--muted);
    font-size: 14px;
  }
  .photography-note strong { color: var(--ink); font-weight: 600; }
  .photography-note a {
    color: var(--red-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .pricing {
    padding: clamp(80px, 8vw, 112px) 0;
    color: var(--white);
    background: var(--charcoal);
  }
  .pricing-heading {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: var(--s12);
    align-items: end;
  }
  .pricing-heading h2 {
    max-width: 780px;
    margin-top: var(--s4);
    font-size: clamp(40px, 4.4vw, 58px);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -.04em;
  }
  .pricing-heading > p {
    max-width: 450px;
    justify-self: end;
    color: rgba(255,255,255,.65);
    font-size: 15px;
  }
  .price-list { margin-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--line-dark); }
  .price-row {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 3fr;
    gap: var(--s8);
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .price-row > p {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
  }
  .price-row strong {
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.025em;
  }
  .price-row span { color: rgba(255,255,255,.65); font-size: 14px; }
  .pricing-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s8);
    margin-top: var(--s12);
  }
  .pricing-action p { max-width: 670px; color: rgba(255,255,255,.7); }

  .about {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    min-height: 720px;
    color: var(--white);
    background: var(--black);
  }
  .about-image {
    min-height: 720px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #0a0a0a;
  }
  .about-portrait-frame {
    width: min(80%, 650px);
    height: 82%;
    min-height: 550px;
    display: grid;
    align-items: end;
    overflow: hidden;
  }
  .about-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }
  .about-copy {
    align-self: center;
    max-width: 670px;
    padding: clamp(72px, 8vw, 120px) var(--gutter);
  }
  .about-copy h2 {
    margin-top: var(--s4);
    font-size: clamp(42px, 4.8vw, 66px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -.045em;
  }
  .about-copy > p {
    max-width: 600px;
    margin-top: var(--s6);
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.72;
  }
  .about-copy blockquote {
    margin-top: var(--s8);
    padding-left: var(--s6);
    border-left: 3px solid var(--red);
    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.35;
    font-weight: 500;
  }
  .about-facts {
    margin-top: var(--s12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s6);
    padding-top: var(--s8);
    border-top: 1px solid var(--line-dark);
  }
  .about-facts p { display: grid; gap: 4px; }
  .about-facts strong { color: var(--white); font-size: 18px; font-weight: 600; }
  .about-facts span { color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.45; }

  .reviews {
    position: relative;
    padding: clamp(88px, 9vw, 128px) 0;
    background: var(--paper);
  }
  .anchor-alias { position: absolute; top: 0; }
  .reviews-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--s12);
  }
  .reviews-heading h2 {
    max-width: 780px;
    margin-top: var(--s4);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -.045em;
  }
  .google-source {
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 0 14px 20px;
    border-left: 1px solid var(--line);
  }
  .google-source:hover strong,
  .google-source:focus-visible strong { color: var(--red-dark); }
  .google-g {
    color: #4285f4;
    font-size: 31px;
    line-height: 1;
    font-weight: 700;
  }
  .google-source > span:last-child { display: grid; gap: 2px; }
  .google-source strong { font-size: 13px; font-weight: 600; transition: color var(--ease); }
  .google-source small { color: var(--muted); font-size: 10px; }
  .reviews-layout {
    margin-top: clamp(48px, 6vw, 76px);
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: clamp(44px, 6vw, 88px);
  }
  .review { padding-top: var(--s6); border-top: 1px solid var(--line); }
  .review--feature { padding-top: var(--s8); border-top-color: var(--ink); }
  .review-stars { color: var(--red); font-size: 13px; letter-spacing: .18em; }
  .review > p {
    margin-top: var(--s4);
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: -.018em;
  }
  .review--feature > p {
    max-width: 770px;
    font-size: clamp(28px, 3.2vw, 43px);
    line-height: 1.27;
    font-weight: 500;
    letter-spacing: -.035em;
  }
  .review footer { display: grid; gap: 2px; margin-top: var(--s6); }
  .review footer strong { font-size: 13px; font-weight: 600; }
  .review footer span { color: var(--muted); font-size: 11px; }
  .review-stack { display: grid; gap: var(--s12); }
  .reviews-footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--s12);
    margin-top: var(--s12);
    padding-top: var(--s6);
    border-top: 1px solid var(--line);
  }
  .reviews-footer > p {
    max-width: 760px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
  }

  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    color: var(--white);
    background: var(--black);
  }
  .contact-copy {
    width: min(590px, calc(100% - 2 * var(--gutter)));
    justify-self: end;
    align-self: center;
    padding: clamp(72px, 8vw, 112px) var(--gutter) clamp(72px, 8vw, 112px) 0;
  }
  .contact-copy h2 {
    margin-top: var(--s4);
    font-size: clamp(40px, 4.5vw, 61px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -.046em;
  }
  .contact-copy > p {
    max-width: 530px;
    margin-top: var(--s6);
    color: rgba(255,255,255,.7);
    font-size: 15px;
  }
  .contact-links {
    display: grid;
    gap: 5px;
    margin-top: var(--s8);
    font-size: 17px;
    font-weight: 500;
  }
  .contact-links a:hover { color: var(--red); }
  .contact-copy > .button { margin-top: var(--s8); }
  .contact-image { min-height: 580px; overflow: hidden; }
  .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
  }

  .site-footer { color: var(--ink); background: var(--paper-deep); }
  .footer-light { background: var(--paper-deep); }
  .footer-main {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr;
    gap: var(--s16);
    padding: 52px 0 48px;
  }
  .footer-main h2 {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
  }
  .footer-brand p {
    max-width: 310px;
    color: #4f504c;
    font-size: 12px;
    line-height: 1.6;
  }
  .footer-brand p + p { margin-top: 4px; }
  .footer-nav {
    display: grid;
    align-content: start;
    gap: 5px;
    font-size: 12px;
  }
  .footer-nav h2 { margin-bottom: 7px; }
  .footer-nav a:hover,
  .footer-nav a:focus-visible { color: var(--red-dark); }
  .footer-social { align-self: start; }
  .social-links { display: flex; flex-wrap: wrap; gap: 9px; }
  .social-links a {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    transition: background var(--ease);
  }
  .social-links a:hover,
  .social-links a:focus-visible { background: var(--red-dark); }
  .footer-legal-wrap { color: rgba(255,255,255,.46); background: #050505; }
  .footer-legal {
    display: flex;
    justify-content: space-between;
    gap: var(--s8);
    padding: 17px 0 20px;
    font-size: 10px;
  }
}

@layer components{
  .button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .button--primary { color: var(--white); background: var(--red); transition: background var(--ease); }
  .button--primary:hover, .button--primary:focus-visible { background: var(--red-dark); }
  .text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
  .text-link span { color: var(--red); transition: transform var(--ease); }
  .text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }
  .text-link--light { color: rgba(255,255,255,.9); }
}


@layer refinements{
  /* V6.2: match the original hero image presentation with no vertical crop. */
  .site-header { position: relative; inset: auto; }
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 2200 / 917;
  }
  .hero-image img {
    object-fit: contain;
    object-position: center center;
  }
  .hero-inner { padding-top: 0; }
  .hero h1 {
    grid-column: 1 / span 6;
    max-width: 610px;
  }
  .hero-credit {
    right: auto;
    left: var(--gutter);
    bottom: 24px;
    padding: 0;
    color: rgba(255,255,255,.78);
    background: transparent;
    font-size: 11px;
    font-style: normal;
  }
  .hero-credit::before { display: none; }
  .hero-credit em { color: var(--white); font-weight: 600; }

  .client-heading { display: block; }
  .carousel-controls { display: none; }
  
  

  .about {
    min-height: 0;
    padding: clamp(78px, 8vw, 112px) 0;
    align-items: start;
  }
  .about-image {
    min-height: 0;
    align-content: start;
    justify-items: center;
    padding: 0 var(--gutter);
    overflow: visible;
  }
  .about-portrait-frame {
    width: min(78%, 520px);
    height: auto;
    min-height: 0;
    aspect-ratio: 502 / 334;
    align-items: start;
    border: 1px solid rgba(255,255,255,.42);
  }
  .about-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }
  .john-linkedin {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-top: 16px;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
    transition: color var(--ease), background var(--ease), transform var(--ease);
  }
  .john-linkedin svg { width: 20px; height: 20px; fill: currentColor; }
  .john-linkedin:hover,
  .john-linkedin:focus-visible { color: var(--white); background: #0a66c2; transform: translateY(-2px); }
  .about-copy {
    align-self: start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact {
    min-height: 0;
    align-items: stretch;
  }
  .contact-copy { align-self: center; }
  .contact-image {
    min-height: 0;
    display: grid;
    place-items: center;
    padding: clamp(42px, 5vw, 72px);
  }
  .contact-image img {
    width: min(100%, 560px);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
  }

  .button--outline-red {
    color: var(--white);
    background: var(--black);
    border: 2px solid var(--red);
    transition: color var(--ease), background var(--ease);
  }
  .button--outline-red:hover,
  .button--outline-red:focus-visible { color: var(--black); background: var(--red); }

  .footer-main {
    grid-template-columns: minmax(280px, 1.45fr) .75fr .9fr;
    align-items: stretch;
    padding: 0;
  }
  .footer-brand-panel {
    min-height: 230px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 8px;
    margin-left: calc(-1 * var(--gutter));
    padding: 42px var(--gutter);
    color: var(--white);
    background: var(--black);
  }
  .footer-logo { width: 168px; margin-bottom: 10px; }
  .footer-logo img { width: 100%; }
  .footer-brand-panel p {
    max-width: 330px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.55;
  }
  .footer-nav,
  .footer-social { padding: 52px 0 48px; }
}

@layer responsive{
  @media (max-width: 1279px){
    
    .client-logo img { max-width: 220px; height: 130px; }
  }

  @media (max-width: 1080px){
    .site-nav { gap: 17px; font-size: 11px; }
  }

  @media (max-width: 980px){
    .site-header { height: 76px; }
    .brand { width: 118px; }
    .site-nav { gap: 15px; font-size: 10px; }
    .hero { height: 460px; min-height: 460px; }
    .hero-inner { padding-top: 76px; }
    .hero h1 { grid-column: 1 / span 7; max-width: 580px; }
    
    .why-grid { grid-template-columns: 5fr 7fr; gap: 44px; }
    .work-strip { min-height: 300px; }
    .work-item { min-height: 300px; }
    .services-intro, .pricing-heading { grid-template-columns: 6fr 5fr; }
    .service-row { grid-template-columns: 54px 3.5fr 4fr; gap: 22px; }
    .about { grid-template-columns: .9fr 1.1fr; min-height: 650px; }
    .about-image { min-height: 650px; }
    .about-portrait-frame { width: 88%; height: 78%; min-height: 470px; }
    .about-facts { grid-template-columns: 1fr; gap: 16px; }
    .about-facts p { grid-template-columns: 90px 1fr; align-items: baseline; }
    .reviews-layout { grid-template-columns: 1.2fr .8fr; gap: 42px; }
    .contact { grid-template-columns: 1fr 1fr; min-height: 540px; }
    .contact-image { min-height: 540px; }
  }

  @media (max-width: 820px){
    .site-nav { display: none; }
    .menu-toggle { display: inline-flex; }
  }

  @media (max-width: 760px){
    .site-header { position: absolute; height: 72px; background: rgba(8,8,8,.96); }
    .header-inner { gap: var(--s4); }
    .brand { width: 108px; }
    .menu-toggle {
      min-width: 72px;
      min-height: 44px;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      padding: 0;
      color: var(--white);
      background: transparent;
      border: 0;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
    }
    .menu-lines, .menu-lines::before, .menu-lines::after { width: 20px; height: 2px; display: block; background: var(--white); }
    .menu-lines { position: relative; }
    .menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
    .menu-lines::before { top: -6px; }
    .menu-lines::after { top: 6px; }
    .site-nav {
      position: absolute;
      inset: 72px 0 auto;
      padding: 22px var(--gutter) 28px;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      color: var(--white);
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { min-height: 44px; width: 100%; font-size: 13px; }
    .site-nav a::after { width: 42px; }

    .hero { height: 665px; min-height: 665px; padding-top: 72px; }
    .hero-image { inset: 72px 0 auto; height: 430px; }
    .hero-image::after {
      background: linear-gradient(180deg, rgba(8,8,8,0) 44%, rgba(8,8,8,.12) 68%, var(--black) 100%);
    }
    .hero-image img { object-position: center 34%; }
    .hero-inner {
      position: absolute;
      inset: auto 0 0;
      height: auto;
      padding-top: 0;
      padding-bottom: 34px;
      display: block;
    }
    .hero h1 {
      max-width: 350px;
      padding-top: 0;
      font-size: clamp(39px, 11.4vw, 50px);
      line-height: 1.02;
    }
    .hero h1 span { margin-bottom: 5px; }
    .hero-credit {
      top: 461px;
      right: var(--gutter);
      bottom: auto;
      max-width: 270px;
      font-size: 10px;
    }

    .clients { padding: 42px 0 36px; }
    .client-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; }
    .client-heading h2 { font-size: 29px; }
    .client-heading > div:first-child > p:last-child { font-size: 13px; }
    .carousel-controls { align-self: end; }
    .carousel-button { width: 42px; height: 42px; }
    .client-carousel { margin-top: 25px; }
    
    .client-logo { min-height: 132px; }
    .client-logo img { max-width: 190px; height: 116px; }
    .client-disclaimer { margin-top: 12px; text-align: left; }

    .why { padding: 68px 0 72px; }
    .why-grid { display: flex; flex-direction: column; gap: 38px; }
    .why-copy { max-width: 100%; }
    .why h2 { margin-top: 12px; font-size: clamp(36px, 10.2vw, 46px); }
    .why-intro { margin-top: 18px; font-size: 16px; }
    .proof-list { margin-top: 24px; }
    .proof-list li { padding: 15px 0; }
    .showreel { width: calc(100% + 2 * var(--gutter)); margin-inline: calc(-1 * var(--gutter)); }

    .work { padding: 68px 0 64px; }
    .work-heading { display: block; }
    .work-heading h2 { margin-top: 12px; font-size: clamp(36px, 10.6vw, 48px); }
    .work-heading > p { margin-top: 18px; justify-self: auto; font-size: 15px; }
    .work-strip { width: 100%; margin-top: 38px; grid-template-columns: 1fr 1fr; min-height: 0; }
    .work-item { min-height: 220px; }
    .work-item:first-child { grid-column: 1 / -1; min-height: 290px; }
    .work-item:last-child { grid-column: 1 / -1; min-height: 250px; }
    .work-item + .work-item { border-left: 0; border-top: 4px solid var(--black); }
    .work-item:nth-child(3) { border-left: 4px solid var(--black); }
    .work-footer { justify-content: flex-start; margin-top: 28px; }

    .services { padding: 72px 0; }
    .services-intro { display: block; }
    .services-intro h2 { margin-top: 12px; font-size: clamp(36px, 10.6vw, 48px); }
    .services-intro > p { margin-top: 18px; justify-self: auto; font-size: 15px; }
    .service-list { margin-top: 42px; }
    .service-row { grid-template-columns: 42px 1fr; gap: 10px 16px; padding: 24px 0; }
    .service-row h3 { font-size: 22px; }
    .service-row p { grid-column: 2; font-size: 14px; }

    .pricing { padding: 72px 0; }
    .pricing-heading { display: block; }
    .pricing-heading h2 { margin-top: 12px; font-size: clamp(35px, 10vw, 47px); }
    .pricing-heading > p { margin-top: 20px; justify-self: auto; }
    .price-list { margin-top: 40px; }
    .price-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
    .price-row strong { font-size: 29px; }
    .pricing-action { display: grid; justify-items: start; margin-top: 36px; }

    .about { display: flex; flex-direction: column; min-height: 0; }
    .about-image { min-height: 420px; }
    .about-portrait-frame { width: 88%; height: 88%; min-height: 360px; }
    .about-portrait-frame img { object-position: center bottom; }
    .about-copy { max-width: 100%; padding: 68px var(--gutter) 74px; }
    .about-copy h2 { margin-top: 12px; font-size: clamp(36px, 10.4vw, 48px); }
    .about-copy > p { margin-top: 18px; font-size: 15px; }
    .about-copy blockquote { margin-top: 26px; font-size: 21px; }
    .about-facts { margin-top: 34px; grid-template-columns: 1fr; }
    .about-facts p { grid-template-columns: 88px 1fr; }

    .reviews { padding: 72px 0 76px; }
    .anchor-alias { position: absolute; top: 0; }
    .reviews-heading { display: grid; gap: 24px; }
    .reviews-heading h2 { margin-top: 12px; font-size: clamp(36px, 10.5vw, 49px); }
    .google-source { min-width: 0; padding: 14px 0 0; border-left: 0; border-top: 1px solid var(--line); }
    .reviews-layout { margin-top: 42px; display: block; }
    .review--feature > p { font-size: 27px; }
    .review-stack { margin-top: 44px; gap: 36px; }
    .review > p { font-size: 18px; }
    .reviews-footer { display: grid; gap: 18px; }

    .contact { display: flex; flex-direction: column; min-height: 0; }
    .contact-copy { width: auto; padding: 70px var(--gutter) 72px; }
    .contact-copy h2 { margin-top: 12px; font-size: clamp(37px, 10.8vw, 50px); }
    .contact-copy > p { margin-top: 18px; font-size: 15px; }
    .contact-links { font-size: 16px; }
    .contact-image { min-height: 370px; }

    .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 28px; padding: 46px 0 42px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-legal { display: grid; gap: 6px; }
  }


  @media (max-width: 460px){
    .client-heading { grid-template-columns: 1fr; }
    .carousel-controls { justify-self: start; }
  }


  @media (max-width: 980px){
    .hero { aspect-ratio: 2200 / 917; height: auto; min-height: 0; }
    .hero-inner { padding-top: 0; }
    .about { padding: 72px 0; }
    .about-image { min-height: 0; }
    .about-portrait-frame { width: min(84%, 480px); height: auto; min-height: 0; }
    .contact-image { min-height: 0; padding: 44px; }
  }

  @media (max-width: 760px){
    .site-header { position: relative; }
    .hero {
      height: auto;
      min-height: 0;
      aspect-ratio: auto;
      padding-top: 0;
      display: grid;
      background: var(--black);
    }
    .hero-image {
      position: relative;
      inset: auto;
      height: auto;
      aspect-ratio: 1200 / 1350;
    }
    .hero-image img { object-fit: cover; object-position: center center; }
    .hero-inner {
      position: absolute;
      inset: 0;
      height: 100%;
      display: flex;
      align-items: flex-end;
      padding-bottom: 58px;
    }
    .hero h1 { max-width: 330px; }
    .hero-credit {
      top: auto;
      right: auto;
      left: var(--gutter);
      bottom: 24px;
      max-width: calc(100% - 2 * var(--gutter));
      font-size: 10px;
    }
    .client-heading { display: block; }
    .about { padding: 0; }
    .about-image { min-height: 0; padding: 62px var(--gutter) 0; }
    .about-portrait-frame { width: min(100%, 502px); height: auto; min-height: 0; }
    .about-copy { padding-top: 48px; }
    .contact-copy h2 { margin-top: 0; }
    .contact-image { min-height: 0; padding: 0 var(--gutter) 64px; }
    .contact-image img { width: 100%; max-width: 500px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 0 28px; }
    .footer-brand-panel {
      grid-column: 1 / -1;
      min-height: 0;
      margin: 0 calc(-1 * var(--gutter));
      padding: 44px var(--gutter);
    }
    .footer-nav,
    .footer-social { padding: 40px 0; }
  }

  @media (prefers-reduced-motion: reduce){
    html { scroll-behavior: auto; }
    *:not(.swiper-wrapper), *:not(.swiper-wrapper)::before, *:not(.swiper-wrapper)::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  }
}

@layer final {
  html, body { overflow-x: clip; }

  .site-header {
    position: relative;
    inset: auto;
    height: 82px;
    background: #050505;
    border-bottom-color: rgba(255,255,255,.08);
  }

  .hero {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 2048 / 930;
  }
  .hero-image { inset: 0; }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-inner {
    height: 100%;
    padding-top: 0;
    align-items: center;
  }
  .hero-copy {
    grid-column: 1 / span 6;
    max-width: 610px;
  }
  .hero h1 {
    grid-column: auto;
    max-width: none;
    padding-top: 0;
  }
  .hero-credit {
    position: static;
    max-width: 100%;
    margin-top: 15px;
    padding: 0;
    color: rgba(255,255,255,.82);
    background: transparent;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: .015em;
    text-shadow: 0 1px 8px rgba(0,0,0,.9);
  }
  .hero-credit::before { display: none; }
  .hero-credit em { color: var(--white); font-weight: 600; }

  .work-item:nth-child(4) img { object-position: 50% center; }
  .service-row:last-child { border-bottom: 0; }

  .about {
    min-height: 0;
    padding: clamp(78px, 8vw, 112px) 0;
    align-items: start;
  }
  .about-image {
    min-height: 0;
    align-content: start;
    justify-items: center;
    padding: 31px var(--gutter) 0;
    overflow: visible;
  }
  .about-portrait-frame {
    width: min(92%, 620px);
    height: auto;
    min-height: 0;
    aspect-ratio: 1537 / 1023;
    align-items: start;
    border: 1px solid rgba(255,255,255,.42);
  }
  .about-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }
  .john-linkedin {
    position: relative;
    top: 4px;
    width: 44px;
    height: 44px;
    margin-top: 18px;
  }
  .john-linkedin svg { width: 23px; height: 23px; }
  .about-copy { align-self: start; padding-top: 0; padding-bottom: 0; }

  .contact { min-height: 0; align-items: stretch; }
  .contact-copy { align-self: center; }
  .contact-image {
    min-height: 0;
    aspect-ratio: 1;
    display: grid;
    place-items: stretch;
    margin-bottom: 52px;
    padding: 0;
    overflow: hidden;
  }
  .contact-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
  }

  .button { border-radius: 6px; }

  .site-footer,
  .footer-light,
  .footer-legal-wrap {
    color: var(--white);
    background: #050505;
  }
  .site-footer { border-top: 1px solid rgba(255,255,255,.08); }
  .footer-main {
    grid-template-columns: 1.45fr .75fr .9fr;
    align-items: start;
    gap: var(--s16);
    padding: 52px 0 48px;
  }
  .footer-brand-panel {
    min-height: 0;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--white);
    background: transparent;
  }
  .footer-brand-panel p { color: rgba(255,255,255,.62); }
  .footer-nav,
  .footer-social { padding: 0; color: var(--white); }
  .footer-nav a { color: rgba(255,255,255,.82); }
  .footer-nav a:hover,
  .footer-nav a:focus-visible { color: var(--white); }
  .social-links a {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,.46);
  }
  .social-links a:hover,
  .social-links a:focus-visible {
    color: var(--white);
    background: var(--red-dark);
    border-color: var(--red-dark);
  }
  .footer-legal-wrap { border-top: 1px solid rgba(255,255,255,.1); }
  .footer-legal { align-items: start; color: rgba(255,255,255,.46); }
  .footer-company-note {
    margin-left: auto;
    max-width: 330px;
    text-align: right;
  }

  @media (max-width: 980px) {
    .hero {
      height: auto;
      min-height: 0;
      max-height: none;
      aspect-ratio: 2048 / 930;
    }
    .hero-inner { padding-top: 0; }
    .hero-copy { grid-column: 1 / span 7; max-width: 560px; }
    .about-image { padding-top: 30px; }
    .about-portrait-frame { width: min(94%, 560px); }
  }

  @media (max-width: 760px) {
    .site-header { position: relative; height: 72px; background: #050505; }
    .hero {
      height: auto;
      min-height: 0;
      max-height: none;
      aspect-ratio: auto;
      display: grid;
      background: var(--black);
    }
    .hero-image {
      position: relative;
      inset: auto;
      height: auto;
      aspect-ratio: 1200 / 1350;
    }
    .hero-image img { object-fit: cover; object-position: center center; }
    .hero-inner {
      position: absolute;
      inset: 0;
      height: 100%;
      display: flex;
      align-items: flex-end;
      padding-bottom: 46px;
    }
    .hero-copy { max-width: 340px; }
    .hero h1 { max-width: 330px; }
    .hero-credit { margin-top: 11px; max-width: 310px; font-size: 10px; }
    .about-image { padding: 0 var(--gutter); }
    .about-portrait-frame { width: min(100%, 560px); }
    .john-linkedin { margin-top: 17px; }
    .contact-image { width: 100%; aspect-ratio: 1; padding: 0; }
    .footer-main {
      grid-template-columns: 1fr 1fr;
      gap: 38px 28px;
      padding: 46px 0 42px;
    }
    .footer-brand-panel { grid-column: 1 / -1; }
    .footer-nav,
    .footer-social { padding: 0; }
    .footer-company-note { margin-left: 0; max-width: none; text-align: left; }
  }
}

@layer carousel {
  .client-carousel.swiper {
    position: relative;
    width: min(var(--container), calc(100% - 2 * var(--gutter)));
    margin: 30px auto 0;
    padding: 4px 0 12px;
    overflow: hidden !important;
    scrollbar-width: none;
  }
  .client-carousel.swiper::-webkit-scrollbar { display: none; }

  .client-carousel .swiper-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    animation: none !important;
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(.25, .1, .25, 1) !important;
    will-change: transform;
  }

  .client-carousel .swiper-slide.client-logo {
    width: auto;
    min-width: 0;
    min-height: 154px;
    height: auto;
    flex: 0 0 auto !important;
    display: grid;
    place-items: center;
    margin: 0;
    scroll-snap-align: none;
  }

  .client-carousel .swiper-slide.client-logo img {
    width: 100%;
    max-width: 220px;
    height: 132px;
    object-fit: contain;
  }

  .client-carousel:not(.swiper-initialized) .swiper-wrapper { gap: 45px; }
  .client-carousel:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 calc((100% - 180px) / 5) !important;
  }

  @media (max-width: 980px) {
    .client-carousel:not(.swiper-initialized) .swiper-wrapper { gap: 36px; }
    .client-carousel:not(.swiper-initialized) .swiper-slide {
      flex-basis: calc((100% - 108px) / 4) !important;
    }
  }

  @media (max-width: 760px) {
    .client-carousel .swiper-slide.client-logo { min-height: 132px; }
    .client-carousel .swiper-slide.client-logo img { max-width: 190px; height: 116px; }
    .client-carousel:not(.swiper-initialized) .swiper-wrapper { gap: 24px; }
    .client-carousel:not(.swiper-initialized) .swiper-slide {
      flex-basis: calc((100% - 24px) / 2) !important;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .client-carousel .swiper-wrapper {
      transition-duration: 1000ms !important;
      animation: none !important;
    }
  }
}
