/* Purpose Productions — site styles
   Loaded on every page. Edit here once. */

:root {
    --bg: #FFFFFF;
    --bg-alt: #F5F5F7;
    --bg-dark: #0F0B26;
    --bg-dark-2: #1A1438;
    --ink: #150F2B;
    --ink-soft: #3A364F;
    --muted: #6E6E73;
    --purple: #704C9F;
    --purple-hover: #5B3F82;
    --purple-soft: #EDE5F5;
    --purple-accent: #9B82C9;
    --divider: #E8E8ED;
    --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .wrap--narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }
  .center { text-align: center; }

  /* NAV — evokes Apple's minimal top bar */
  nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--divider);
  }
  nav .wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: 56px;
  }
  .logo {
    font-weight: 800; font-size: 18px;
    letter-spacing: -0.02em; color: var(--ink);
    display: flex; align-items: center; gap: 8px;
  }

  .logo-svg { height: 28px; width: auto; display: block; }
  .logo__dot {
    width: 10px; height: 10px; border-radius: 3px; background: var(--purple);
    display: inline-block;
  }
  .nav-links {
    display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-soft);
  }
  .nav-links a:hover { color: var(--purple); }
  .nav-cta {
    background: var(--ink); color: white;
    padding: 8px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 600;
  }

  /* HERO */
  .hero {
    padding: 140px 0 120px;
    text-align: left;
    position: relative;
    overflow: hidden;
  }
  .hero--bg {
    background-image: url('assets/hero-inspired-ceo.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(15,11,38,0.97) 0%, rgba(15,11,38,0.90) 30%, rgba(15,11,38,0.45) 58%, transparent 80%),
      linear-gradient(to top, rgba(15,11,38,0.5) 0%, transparent 35%);
    z-index: 0;
  }
  .hero__content {
    position: relative;
    z-index: 1;
  }
  .hero__left {
    max-width: 860px;
  }
  .hero__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
  }
  .hero__title {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: white;
    max-width: 16ch;
    margin: 0;
  }
  .hero__title .accent { color: var(--purple-accent); }
  .hero__sub {
    margin: 24px 0 0;
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 400;
    color: rgba(255,255,255,0.70);
    max-width: 44ch;
    line-height: 1.55;
  }
  .hero__ctas {
    margin-top: 40px;
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  /* HERO PATHWAY CARDS */
  .hero__paths {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 48px;
    text-align: left;
  }
  .hero__path-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex: 1;
  }
  .hero__path {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s ease, border-color 0.2s ease;
    color: white;
    display: block;
  }
  .hero__path:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.32);
  }
  .hero__path-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: white;
  }
  .hero__path-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .hero__path-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-accent);
  }
  .hero__book-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 18px 28px;
    font-size: 15px;
  }

  @media (max-width: 760px) {
    .hero__paths { flex-direction: column; align-items: stretch; }
    .hero__path-cards { grid-template-columns: 1fr; }
  }

  .btn--ghost-white {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
    display: inline-flex; align-items: center;
    padding: 16px 28px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .btn--ghost-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 28px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .btn--primary {
    background: var(--purple); color: white;
  }
  .btn--primary:hover { background: var(--purple-hover); transform: translateY(-1px); }
  .btn--secondary {
    background: var(--ink); color: white;
  }
  .btn--secondary:hover { background: #000; }
  .btn--ghost {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--divider);
  }
  .btn--ghost:hover { border-color: var(--ink); }
  .btn--outline-white {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
  }
  .btn--outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }


  /* SECTION */
  section { padding: 120px 0; }
  section.alt { background: var(--bg-alt); }
  section.dark { background: var(--bg-dark); color: white; }

  .sec-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }
  .sec-title {
    font-weight: 700;
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: -0.035em;
    line-height: 1.02;
    max-width: 18ch;
    margin-bottom: 24px;
  }
  .sec-title .accent { color: var(--purple); }
  .sec-lede {
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--muted);
    max-width: 56ch;
    line-height: 1.5;
  }
  section.dark .sec-lede { color: rgba(255,255,255,0.7); }
  section.dark .sec-eyebrow { color: var(--purple-accent); }
  .sec-head--center { text-align: center; }
  .sec-head--center .sec-title,
  .sec-head--center .sec-lede { margin-left: auto; margin-right: auto; }

  /* PALETTE */
  .palette {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 64px;
  }
  .swatch__chip {
    aspect-ratio: 1;
    border-radius: 20px;
    border: 1px solid var(--divider);
    margin-bottom: 16px;
  }
  .swatch__name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
  .swatch__hex { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
  .swatch__use { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

  /* TYPE SPECIMEN */
  .specimens { margin-top: 64px; display: grid; gap: 48px; }
  .specimen__label {
    display: flex; gap: 20px; margin-bottom: 16px;
    font-size: 12px; font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .spec-d1 {
    font-weight: 800;
    font-size: clamp(64px, 10vw, 144px);
    line-height: 0.95;
    letter-spacing: -0.04em;
  }
  .spec-d1 .accent { color: var(--purple); }
  .spec-d2 {
    font-weight: 700;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  .spec-d3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }
  .spec-body {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 60ch;
    color: var(--ink-soft);
  }

  /* FEATURE CARDS */
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 72px;
  }
  .card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--divider);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(20,17,46,0.15); }
  .card__icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--purple-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    font-size: 24px; font-weight: 700;
    margin-bottom: 24px;
  }
  .card__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
  }
  .card__body {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
  }

  /* STATS BAR */
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    margin-top: 72px;
  }
  .stat__num {
    font-weight: 800;
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple) 0%, #4F3BB8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .stat__label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
  }

  /* STUDIO DEEP DIVE (full-bleed) */
  .studio-hero {
    padding: 0;
  }
  .studio-hero__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .studio-hero__card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
  }
  .studio-hero__card img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6);
  }
  .studio-hero__copy {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: white; text-align: center;
    padding: 48px;
  }
  .studio-hero__copy h2 {
    font-size: clamp(48px, 8vw, 112px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
  }
  .studio-hero__copy p {
    font-size: clamp(18px, 1.8vw, 22px);
    max-width: 52ch;
    opacity: 0.85;
    line-height: 1.5;
  }

  /* WORK GRID */
  .work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 72px;
  }
  .tile {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
  }
  .tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .tile:hover img { transform: scale(1.04); }
  .tile__meta {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    color: white;
    background: linear-gradient(180deg, transparent 0%, rgba(15,11,38,0.85) 100%);
  }
  .tile__client {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 6px;
    color: var(--purple-accent);
  }
  .tile__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  /* CASE STUDY GRID — video page */
  .case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-top: 72px;
  }
  .case {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: inherit;
    text-decoration: none;
  }
  .case__visual {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
  }
  .case__visual img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .case__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .case__visual::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23150F2B'><path d='M8 5v14l11-7z'/></svg>") no-repeat center / 24px 24px;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1;
  }
  .case:hover .case__visual img { transform: scale(1.03); }
  .case:hover .case__visual::before,
  .case:hover .case__visual::after { opacity: 1; transform: scale(1); }
  .case:focus-visible .case__visual::before { opacity: 1; transform: scale(1); }
  .case__body { display: flex; flex-direction: column; gap: 8px; }
  .case__client {
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .case__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
  }
  .case__desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
  }
  @media (max-width: 860px) {
    .case-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* CLIP REEL — vertical 9:16 tiles, HTML5 video autoplay muted loop */
  .reel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .reel__item {
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
  }
  .reel__item video {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  @media (max-width: 720px) {
    .reel { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 100%; }
  }

  /* Page-lead section takes over the top-of-page role when there's no page hero */
  .page-lead { padding-top: 96px; }

  /* IN THE STUDIO — full-bleed horizontal photo scroller */
  .studio-strip { padding: 96px 0; }
  .studio-strip__scroller {
    margin-top: 56px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .studio-strip__scroller::-webkit-scrollbar { display: none; }
  .studio-strip__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(460px, 82vw);
    gap: 20px;
    padding: 0 clamp(20px, 6vw, 96px);
  }
  .studio-strip__item {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    scroll-snap-align: start;
  }
  .studio-strip__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .studio-strip__item:hover img { transform: scale(1.03); }

  @media (max-width: 720px) {
    .studio-strip { padding: 72px 0; }
    .studio-strip__scroller { margin-top: 40px; }
  }

  /* TRUST STRIP */
  .trust-strip {
    background: var(--bg-dark);
    padding: 72px 0;
  }
  .trust-strip__label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 40px;
  }
  .trust {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    align-items: center;
    gap: 40px 48px;
  }
  .trust__logo-img {
    height: 36px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.2s ease;
    display: block;
    margin: 0 auto;
  }
  .trust__logo-img:hover { opacity: 1; }

  @media (max-width: 860px) {
    .trust { grid-template-columns: repeat(3, 1fr); gap: 32px 36px; }
    .trust__logo-img { height: 30px; max-width: 120px; }
  }

  /* FINAL CTA */
  .cta-final {
    text-align: center;
    padding: 140px 0;
    background: radial-gradient(ellipse at center, #2A1F6B 0%, var(--bg-dark) 60%);
    color: white;
    border-radius: 28px;
    margin: 48px 32px;
    overflow: hidden;
    position: relative;
  }
  .cta-final::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(124, 92, 224, 0.3) 0%, transparent 50%);
    pointer-events: none;
  }
  .cta-final__inner { position: relative; z-index: 1; }
  .cta-final h2 {
    font-size: clamp(48px, 7vw, 104px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
  }
  .cta-final p {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255,255,255,0.7);
    max-width: 48ch;
    margin: 0 auto 40px;
    line-height: 1.5;
  }
  .cta-final__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .cta-final__head { text-align: center; max-width: 56ch; margin: 0 auto 56px; }
  .cta-final__head h2 { margin-bottom: 24px; }
  .cta-final__head p { margin: 0 auto; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
  }
  .contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-card__title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
  }
  .contact-card__body {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
    margin: 0;
    flex: 1;
  }
  .contact-card .btn { align-self: flex-start; }

  .contact-form__row { display: flex; flex-direction: column; gap: 6px; }
  .contact-form__row span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .contact-form input,
  .contact-form textarea {
    font: inherit;
    color: white;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color .15s ease, background .15s ease;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--purple-accent);
    background: rgba(255,255,255,0.08);
  }
  .contact-form__submit { align-self: flex-start; }
  .contact-form__note {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 4px 0 0;
    min-height: 1.2em;
  }

  @media (max-width: 720px) {
    .contact-grid { grid-template-columns: 1fr; }
    .cta-final__head { margin-bottom: 36px; }
  }

  /* FOOTER */
  footer {
    padding: 80px 0 64px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
  }
  }


  /* CLIP WALL */
  .clip-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 56px auto 0;
    max-width: 920px;
  }
  @media (min-width: 600px) {
    .clip-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  }
  .clip {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
  }
  .clip img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .clip:hover img { transform: scale(1.05); }
  .clip__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 700;
    padding-left: 3px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
  .clip__cap {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }

  /* GRID SPLIT */
  .grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .location-image {
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
  }
  .location-image img {
    width: 100%; height: 100%; object-fit: cover;
  }

  /* ADDRESS CARD */
  .address-card {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid var(--divider);
    display: inline-block;
  }
  .address-card__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .address-card__line {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
  }

  /* PRICING CARD */
  .pricing-card {
    background: white;
    border: 1px solid var(--divider);
    border-radius: 28px;
    padding: 56px;
    margin-top: 56px;
    box-shadow: 0 40px 80px -40px rgba(20, 17, 46, 0.18);
  }
  .pricing-card__head {
    text-align: center;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--divider);
    margin-bottom: 36px;
  }
  .pricing-card__num {
    font-size: clamp(64px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
  }
  .pricing-card__gst {
    font-size: 24px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: -0.02em;
  }
  .pricing-card__label {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
  }
  .check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 40px;
  }
  .check-list li {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.4;
  }
  .check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 2px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--purple-soft);
  }
  .check-list li::after {
    content: '';
    position: absolute;
    left: 7px; top: 8px;
    width: 8px; height: 4px;
    border-left: 2px solid var(--purple);
    border-bottom: 2px solid var(--purple);
    transform: rotate(-45deg);
  }
  .pricing-card__note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted);
  }

  /* SCHEDULE */
  .schedule {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--divider);
    overflow: hidden;
  }
  .schedule__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--divider);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
  }
  .schedule__row:last-child { border-bottom: 0; }
  .schedule__hours {
    text-align: right;
    color: var(--muted);
    font-weight: 400;
    font-size: 14px;
  }
  .schedule__row--closed { color: var(--muted); }
  .schedule__row--closed > span:first-child { font-weight: 500; }
  .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #2BB673;
    display: inline-block;
    margin: 0 16px;
    box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.15);
  }
  .dot--off {
    background: var(--divider);
    box-shadow: none;
  }

  /* RESPONSIVE */
  @media (max-width: 860px) {
    .grid-split { grid-template-columns: 1fr; gap: 40px; }
    .check-list { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px 24px; }
    .palette { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .work { grid-template-columns: 1fr; }
    section { padding: 80px 0; }
    .hero { padding: 80px 0 48px; }
    .cta-final { padding: 96px 24px; margin: 24px 16px; }
    .wrap { padding: 0 20px; }
    .nav-links { display: none; }
  }

/* =====================================================
   ADDITIONS for the multi-page site
   ===================================================== */

/* NAV — active link state */
.nav-links a.is-active { color: var(--purple); }
.nav-links a.is-active::after {
  content: '';
  display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--purple);
  margin: 4px auto 0;
}

/* PAGE HERO — for non-home pages */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg-alt);
}
.page-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.page-hero__title {
  font-weight: 800;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 24px;
}
.page-hero__title .accent { color: var(--purple); }
.page-hero__sub {
  margin: 0 auto;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.5;
}

/* PROCESS — numbered step rows for service pages */
.process { display: grid; gap: 24px; margin-top: 64px; }
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--divider);
}
.process__step:first-child { border-top: 0; padding-top: 0; }
.process__num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--purple);
  line-height: 1;
}
.process__copy h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.process__copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 44ch;
}
.process__visual {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}
.process__visual img {
  width: 100%; height: 100%; object-fit: cover;
}

/* CATEGORIES — for video service page */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.cat {
  background: white;
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(20,17,46,0.12); }
.cat__num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 16px;
}
.cat__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cat__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ABOUT page split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-split__photo {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}
.about-split__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-split__copy h2 {
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-split__copy h2 .accent { color: var(--purple); }
.about-split__copy p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 50ch;
}
.about-split__copy p:last-child { margin-bottom: 0; }

/* FAQ accordion */
.faq { margin-top: 56px; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq__item {
  border-bottom: 1px solid var(--divider);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 28px 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq__q::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--purple);
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after { content: '−'; }
.faq__a {
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}

/* FOOTER — full site footer */
footer.site {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  text-align: left;
}
footer.site .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
footer.site .col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
footer.site .col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.2s ease;
}
footer.site .col a:hover { color: var(--purple-accent); }
footer.site .brand img { height: 32px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
footer.site .brand p { font-size: 14px; line-height: 1.5; max-width: 32ch; }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 860px) {
  .process__step { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  footer.site .wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer.site .brand { grid-column: 1 / -1; }
  .page-hero { padding: 100px 0 56px; }
}
