/* Contemporary studio typography: compact, bold sans throughout all chapters. */
:root {
  --font-display: 'Arial', 'Helvetica Neue', system-ui, sans-serif;
  --font-serif: var(--font-display);
}
h1, h2, h3,
body.experience .chapter-body h1,
body.experience .chapter-body h2,
.page-hero h1,
.watch-scrub-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.055em;
  line-height: 1.02;
  text-wrap: balance;
}
body.experience .chapter-body h1 em,
body.experience .chapter-body h2 em,
.page-hero h1 em,
h2 em,
.watch-scrub-controls .watch-scrub-title em {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.055em;
}
.menu-title {
  font: 800 clamp(2rem, 4vw, 3.5rem)/1.02 var(--font-display);
  letter-spacing: -.055em;
  margin: .2rem 0 1.5rem;
  color: #fff;
}
.menu-title em { color: var(--accent); font-style: italic; }
.mobile-menu-content {
  width: min(94vw, 40rem);
  background: linear-gradient(90deg, #050507f5, #050507d9 85%, #05050780);
  backdrop-filter: blur(10px);
  transform: translateY(-24px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .35s;
}
.mobile-menu.is-open .mobile-menu-content { transform: translateY(0); opacity: 1; }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.025em;
  min-height: 46px;
  transform: translateY(16px);
  transition: transform .4s, opacity .4s, color .2s;
}
.mobile-menu-links a > span { font-family: var(--font-mono); font-size: .7rem; }
.mobile-menu.is-open .mobile-menu-links a { transform: translateY(0); }
.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible { color: var(--accent); }
@media (min-width: 64rem) {
  .site-nav .menu-toggle { display: inline-flex; margin-left: 1rem; }
}
@media (max-width: 48rem) {
  .mobile-menu-content { padding-top: 6rem; padding-inline: 1.25rem; }
  .menu-title { margin-bottom: 1rem; }
  .mobile-menu-links a { min-height: 44px; padding-block: .6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu-content,
  .mobile-menu-links a { transition: none !important; transform: none !important; }
}

/* A compact dropdown, with a dedicated film below the links. */
.mobile-menu {
  inset: calc(var(--nav-height) + .5rem) var(--page-gutter) auto auto;
  width: min(32rem, calc(100vw - 2rem));
  max-height: calc(100vh - var(--nav-height) - 1.5rem);
  max-height: calc(100dvh - var(--nav-height) - 1.5rem);
  border: 1px solid var(--border);
  border-radius: 1rem 1rem 3rem 1rem;
  background: var(--surface);
  box-shadow: 0 24px 80px #0009;
  transform: translateY(-16px) scale(.98);
  transform-origin: top right;
  transition: opacity .3s ease, transform .4s cubic-bezier(.2,.8,.2,1), visibility 0s linear .43s;
}
.mobile-menu.is-open { transform: translateY(0) scale(1); }
.mobile-menu .mobile-menu-content {
  width: 100%;
  height: auto;
  max-height: inherit;
  padding: 1.25rem;
  background: none;
  backdrop-filter: none;
  transform: none;
}
.mobile-menu .mobile-menu-kicker { margin: 0 0 .4rem; font-size: .7rem; }
.mobile-menu .menu-title { font-size: clamp(1.8rem, 6vw, 2.6rem); margin: 0 0 1rem; }
.mobile-menu .mobile-menu-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }
.mobile-menu .mobile-menu-links a {
  font-size: 1rem;
  min-height: 44px;
  padding: .7rem 0;
  gap: .45rem;
  align-items: center;
}
.mobile-menu .mobile-menu-links a span { width: 1.1rem; font-size: .65rem; }
.mobile-menu .mobile-menu-links a:hover { background: #ffffff06; }
.mobile-menu .mobile-menu-actions { margin-top: 1rem; gap: .65rem; }
.mobile-menu .mobile-menu-cta { min-height: 44px; border-radius: .6rem; }
.mobile-menu .mobile-menu-social { justify-content: center; }
.mobile-menu .mobile-menu-social a { min-height: 36px; }
.mobile-menu .menu-control-panel { margin: 0; padding: 0; border: 0; background: none; }
.mobile-menu .menu-control-panel > summary {
  cursor: pointer;
  min-height: 44px;
  padding: .6rem .1rem;
  border-block: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text-muted);
}
.mobile-menu .menu-control-head { margin-top: 1rem; }
.menu-film-card { display: block; overflow: hidden; border-radius: .75rem .75rem 2rem .75rem; text-decoration: none; background: var(--bg); }
.menu-film-frame { position: relative; aspect-ratio: 2.5; overflow: hidden; }
.mobile-menu .menu-film-frame .mobile-menu-film { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.menu-film-caption { display: flex; justify-content: space-between; align-items: center; gap: .5rem; min-height: 44px; padding: .5rem .85rem; font-size: .75rem; color: var(--text-muted); }
.menu-film-caption b { color: var(--text); font-weight: 600; }
.menu-film-card:focus-visible { outline: 2px solid var(--focus); outline-offset: -2px; }
@media (max-width: 48rem) {
  .mobile-menu { right: 1rem; }
  .mobile-menu .mobile-menu-content { padding: 1rem; }
  .mobile-menu .mobile-menu-links { column-gap: .7rem; }
  .mobile-menu .mobile-menu-links a { font-size: .9375rem; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transform: none !important; transition: none !important; }
}

/* Sales copy stays compact; project descriptions sit beneath the existing links. */
body.experience #ch-10 .website-links a { flex-direction: column; align-items: flex-start; justify-content: center; gap: .2rem; }
.website-links small { font-size: .75rem; font-weight: 400; opacity: .82; }
.experience-note { font-size: .75rem; margin-top: .75rem; }
.scrub-contact { display: inline-block; min-height: 44px; padding: .75rem 0; color: #fff; font-size: .875rem; }
.enquiry-page { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-top: calc(var(--nav-height) + 3rem); padding-bottom: 3rem; }
.enquiry-copy h1 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; }
.enquiry-copy > p { margin: 1.25rem 0; }
.enquiry-panel { padding: 1.5rem; border: 1px solid #ffffff30; border-radius: 1rem 1rem 2.5rem 1rem; background: var(--surface); }
.enquiry-panel form { display: grid; gap: .6rem; }
.enquiry-panel input:not([type=hidden]), .enquiry-panel textarea { width: 100%; min-width: 0; padding: .75rem; border: 1px solid #ffffff60; border-radius: .5rem; background: var(--bg); color: var(--text); font: inherit; font-size: 1rem; }
.enquiry-panel textarea { resize: vertical; }
.enquiry-panel :is(input,textarea):focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.enquiry-panel .contact-note { margin: .75rem 0; font-size: .875rem; }
.enquiry-panel .button { min-height: 48px; }
.enquiry-panel .enquiry-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.enquiry-error { border-left: 3px solid var(--accent); padding: .75rem; margin-bottom: 1rem; }
@media (max-width: 700px) {
  .enquiry-page { grid-template-columns: 1fr; gap: 1rem; padding-top: calc(var(--nav-height) + 1.5rem); }
  .enquiry-panel { padding: 1.1rem; }
  .enquiry-copy h1 { font-size: 2.5rem; }
  body.experience #ch-01 h1 { font-size: clamp(2.5rem, 10.5vw, 4rem); }
}

.enquiry-page .contact-note { color: var(--text); opacity: .8; }

/* The enquiry page has no films; keep media controls clear of form fields. */
body.enquiry-view .sound-control { display: none; }
.enquiry-panel form[hidden] { display: none; }

/* Fuller copy for tablets and desktops; phones keep their existing short copy. */
body.experience .chapter .chapter-intro.wide-only { display: none !important; }
@media (min-width: 700px) and (min-height: 600px), (min-width: 1024px) {
  body.experience .chapter .desktop-support { display: inline !important; }
  body.experience .chapter .mobile-support { display: none !important; }
  body.experience .chapter .chapter-body .chapter-intro {
    display: block !important;
    max-width: min(48ch, 100%) !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  body.experience .chapter .chapter-body .chapter-intro.wide-only { display: block !important; }
}
@media (min-width: 769px) and (max-width: 1023px) and (max-height: 599px) {
  body.experience .chapter .desktop-support { display: none !important; }
  body.experience .chapter .mobile-support { display: inline !important; }
}

/* Moving gallery rail uses real muted video previews, with the same crop as images. */
.gallery-rail-media video { width: 100%; height: 100%; object-fit: cover; }

/* The menu button enters once on page load, independently of the menu panel. */
@media (prefers-reduced-motion: no-preference) {
  .site-nav .menu-toggle {
    animation: menu-button-arrive .7s cubic-bezier(.16, 1, .3, 1) .15s both;
  }
  /* Keyboard users can reach and see the control immediately. */
  .site-nav .menu-toggle:focus-visible { animation: none; }
}
@keyframes menu-button-arrive {
  from { opacity: 0; transform: translate3d(0, -110px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}


/* Editorial refinement: neutral headings, restrained accents and clean spacing. */
body :is(h1, h2, h3) em,
body.experience .chapter-body :is(h1, h2) em,
body .watch-scrub-controls .watch-scrub-title em,
.mobile-menu .menu-title em { color: inherit !important; }
body.experience .chapter .eyebrow i { background: currentColor; opacity: .6; }
body.experience .chapter :is(.service-list summary, .faq-list summary) :is(span, b) { color: var(--text); }

body.experience .chapter .chapter-body.shell { box-sizing: border-box; width: 100% !important; padding-inline: var(--page-gutter) !important; }
body.experience .chapter:not(#ch-02) .chapter-intro { margin-left: 0; margin-right: auto; }
body.experience #ch-06 .chapter-body { text-align: left; align-items: flex-start; }

/* Keep the showcase film clear; its timeline opens only when requested. */
body.experience #ch-02 .film-console {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: max-content;
  max-width: calc(100% - 2.5rem);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
body.experience #ch-02 .film-console[hidden] { display: none; }
body.experience #ch-02 [data-film-toggle],
.film-seek-details > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .5rem .75rem;
  border: 1px solid #ffffff35;
  border-radius: 999px;
  background: #05050735;
  color: #fff;
  font: 500 .75rem/1.2 var(--font-text);
  cursor: pointer;
  list-style: none;
}
.film-seek-details > summary::-webkit-details-marker { display: none; }
.film-seek-details > summary:hover, .film-seek-details[open] > summary { border-color: #ffffff90; }
.film-seek-panel {
  position: absolute;
  bottom: calc(100% + .6rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(19rem, calc(100vw - 2.5rem));
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border: 1px solid #ffffff30;
  border-radius: .8rem;
  background: #101014ef;
}
.film-seek-panel input { flex: 1; min-width: 0; accent-color: #fff; }
.film-seek-panel output { color: #fff; font-size: .75rem; }

/* Generous link rows; supporting controls sit quietly below. */
.mobile-menu .mobile-menu-links { gap: .15rem 1.15rem; }
.mobile-menu .mobile-menu-links a { min-height: 49px; font-size: 1.02rem; border-bottom-color: #ffffff16; }
.mobile-menu .mobile-menu-links a > span { color: #ffffff80; }
.mobile-menu .mobile-menu-links a:is(.is-active, [aria-current]),
.mobile-menu .mobile-menu-links a:hover,
.mobile-menu .mobile-menu-links a:focus-visible { color: var(--text); }
.mobile-menu .mobile-menu-social { justify-content: flex-start; gap: 1.1rem; }
.mobile-menu .mobile-menu-social a { min-height: 44px; padding: 0; border: 0; background: none; box-shadow: none; color: #ffffffb3; font-size: .8rem; }
.mobile-menu .mobile-menu-social svg { width: 14px; height: 14px; }
.mobile-menu .menu-control-panel > summary { border-block-color: #ffffff16; font-size: .8rem; }
.mobile-menu .menu-film-frame { aspect-ratio: 3; }

/* Project names are the focal point, with no thumbnails obscuring the footage. */
body.experience #ch-10 .website-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .4rem 1.5rem; max-width: 46rem; }
body.experience #ch-10 .website-links a { min-height: 64px; gap: .3rem; padding: .65rem 0; border-color: #ffffff40; background: none; }
.project-link-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
body.experience #ch-10 .website-links small { font-size: .75rem; line-height: 1.4; color: #ffffffbd; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .project-link-title { transition: transform .25s ease; }
  .website-links a:hover .project-link-title { transform: translateX(4px); }
}
@media (max-width: 48rem) {
  body.experience .chapter .chapter-body.shell { padding-inline: 1.25rem !important; }
  body.experience #ch-10 .website-links { gap: .25rem 1rem; }
  .project-link-title { font-size: .9375rem; }
}

/* Quiet career logos. Two identical groups make a seamless CSS loop.
   Locally hosted vectors stay sharp and use a CSS monochrome treatment. */
#ch-03 .brand-strip {
  width: 100%; max-width: 38rem; overflow: hidden;
  margin: 1.75rem auto 1rem; padding-block: .9rem;
  background: rgb(5 7 10 / .86);
  transform: skewY(-3deg);
  box-shadow: 0 10px 28px rgb(0 0 0 / .22);
  border-block: 1px solid rgb(255 255 255 / .16);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  filter: grayscale(1); color: #b5b5b5;
}
#ch-03 .brand-track { display: flex; width: max-content; animation: career-drift 32s linear infinite; animation-play-state: paused; }
#ch-03.is-current .brand-track { animation-play-state: running; }
#ch-03 .brand-strip:focus .brand-track,
#ch-03 .brand-strip.is-paused .brand-track,
html.menu-open #ch-03 .brand-track,
html.page-hidden #ch-03 .brand-track { animation-play-state: paused; }
#ch-03 .brand-group { display: flex; align-items: center; gap: 1.25rem; padding: 0 1.25rem 0 0; margin: 0; list-style: none; }
#ch-03 .brand-group li { display: flex; align-items: center; justify-content: center; flex: none; white-space: nowrap; font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.4; }
#ch-03 .brand-group img {
  display: block; width: 110px; height: 64px; object-fit: contain;
  filter: grayscale(1) brightness(0) invert(.7) drop-shadow(0 3px 2px rgb(0 0 0 / .35));
  opacity: .9;
}
#ch-03 .brand-ferrari img { width: 64px; height: 76px; }
#ch-03 .brand-google img, #ch-03 .brand-facebook img { width: 54px; height: 54px; }
#ch-03 .brand-motion { min-height: 44px; padding: .4rem 0; border: 0; background: transparent; color: #b5b5b5; font: inherit; font-size: .7rem; text-decoration: underline; text-underline-offset: .25em; cursor: pointer; }
#ch-03 .brand-motion:focus-visible, #ch-03 .brand-strip:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
#ch-03 .experience-note { margin-top: 0; }
@keyframes career-drift { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  #ch-03 .brand-track { animation: none; width: auto; }
  #ch-03 .brand-group { flex-wrap: wrap; gap: .5rem 1.5rem; padding: 0; }
  #ch-03 .brand-group[aria-hidden], #ch-03 .brand-motion { display: none; }
  #ch-03 .brand-strip { mask-image: none; }
}

/* A hanging tab anchors the menu to the top edge without covering the film. */
.site-nav .menu-toggle {
  position: absolute;
  top: 0;
  right: max(var(--page-gutter), env(safe-area-inset-right));
  display: inline-flex;
  justify-content: center;
  margin: 0;
  min-width: 96px;
  min-height: calc(60px + env(safe-area-inset-top));
  padding: calc(.8rem + env(safe-area-inset-top)) 1rem .8rem;
  border: 1px solid rgb(255 255 255 / .6);
  border-top: 0;
  border-bottom: 2px solid var(--accent);
  border-radius: 0 0 16px 16px;
  background: #101012;
  color: #fff;
  box-shadow: 0 5px 18px rgb(0 0 0 / .2);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-nav .menu-toggle:hover,
.site-nav .menu-toggle[aria-expanded="true"] { background: #1b1b1f; box-shadow: 0 7px 22px rgb(0 0 0 / .3); }
.site-nav .menu-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (min-width: 49rem) {
  .site-nav .site-nav-links { margin-right: 7.5rem; }
}

/* Folder filters are real links: pagination also works without JavaScript. */
.gallery-filter a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: .6rem 1rem; border: 1px solid #ffffff30; border-radius: 99px; background: #111; color: #ddd; text-decoration: none; }
.gallery-filter a.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.gallery-filter a:focus-visible, .gallery-pagination a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.gallery-page-status { color: var(--text-muted); font-size: .85rem; margin-block: 1rem; }
.gallery-pagination { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1rem; margin-block: 2rem; }
.gallery-pagination a { display: inline-flex; align-items: center; min-height: 44px; padding: .6rem 1rem; border: 1px solid #ffffff40; border-radius: 99px; text-decoration: none; }
.gallery-pagination a:hover { background: #ffffff14; }

/* The archive shares the cinematic rail, italic type and asymmetric grid. */
.gallery-experience .gallery-showreel { transform: skewY(-2deg); margin-block: 3rem 5rem; }
.gallery-experience .gallery-section { scroll-margin-top: 90px; }
.gallery-tools { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.25rem; border-top: 1px solid #ffffff30; }
.gallery-types { display: flex; gap: .3rem; padding: .3rem; background: #ffffff08; border: 1px solid #ffffff20; border-radius: 99px; }
.gallery-types a { display: flex; align-items: center; justify-content: center; gap: .45rem; min-height: 44px; padding: .5rem 1rem; border-radius: 99px; color: #bbb; text-decoration: none; font-weight: 700; }
.gallery-types a[aria-current] { background: #efefef; color: #111; }
.gallery-types span { font-size: .7rem; font-weight: 400; }
.gallery-sort { display: flex; align-items: center; gap: .6rem; font-size: .85rem; }
.gallery-sort select, .gallery-sort button { min-height: 44px; padding: .5rem .8rem; border-radius: .6rem; border: 1px solid #ffffff30; background: #151517; color: #fff; font: inherit; }
.gallery-sort button { cursor: pointer; }
.gallery-experience .gallery-filter { position: static; background: none; backdrop-filter: none; margin: 0; padding-top: .5rem; }
.gallery-experience .gallery-filter a { font-size: .8rem; }
.gallery-tools :is(a, select, button):focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.gallery-empty { padding: 3rem 1rem; text-align: center; border: 1px dashed #ffffff40; border-radius: 1rem; }
@media (max-width: 48rem) {
  .gallery-tools { align-items: stretch; gap: .85rem; }
  .gallery-types { width: 100%; }
  .gallery-types a { flex: 1; padding-inline: .65rem; }
  .gallery-sort { width: 100%; }
  .gallery-sort select { flex: 1; min-width: 0; }
  .gallery-experience .gallery-showreel { margin-block: 2rem 3.5rem; }
  .gallery-experience .gallery-grid-head h2 { font-size: clamp(2rem, 8vw, 3rem); }
}
.gallery-item, .gallery-rail-card { color: inherit; text-decoration: none; }
.work-view { padding-top: calc(85px + env(safe-area-inset-top)); padding-bottom: 3rem; }
.work-back { display: inline-flex; align-items: center; min-height: 44px; margin-bottom: 1rem; text-decoration: none; }
.work-view-figure { margin: 0; }
.work-view-figure > img, .work-view-figure > video { display: block; width: 100%; height: auto; max-height: 76svh; object-fit: contain; background: #080809; border-radius: .8rem; }
.work-view-figure figcaption { padding-block: 1.5rem; max-width: 55rem; }
.work-view-figure h1 { font: italic 800 clamp(1.8rem, 4vw, 3.2rem)/1.08 Arial, Helvetica, sans-serif; letter-spacing: -.04em; margin-block: .6rem; }
.work-view-figure figcaption > p:last-child { color: var(--text-muted); }

/* Dense, equal-width image columns; the full artwork opens on its own page. */
.gallery-experience .gallery-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem .7rem; padding: 0; perspective: none;
}
.gallery-experience .gallery-grid .gallery-item {
  grid-column: auto; width: 100%; min-width: 0; margin: 0 !important;
  transform: none; rotate: none !important; translate: none !important;
  transform-origin: top left;
  content-visibility: auto; contain-intrinsic-size: auto 220px;
}
.gallery-experience .gallery-item figure {
  margin: 0; overflow: hidden; transform: none; border-radius: .65rem;
}
.gallery-experience .gallery-item img,
.gallery-experience .gallery-item video {
  display: block; width: 100%; height: auto; aspect-ratio: 1;
  object-fit: cover; border-radius: .65rem;
}
.gallery-experience .gallery-item figcaption {
  position: static; min-height: 0; padding: .45rem .1rem;
  background: none; transform: none;
}
.gallery-experience .gallery-item .gallery-item-title {
  display: block; font-size: .8rem; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gallery-experience .gallery-item-meta,
.gallery-experience .gallery-item-action { display: none; }
.gallery-experience .gallery-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.gallery-experience .gallery-item[data-type="video"] figure::after {
  top: .4rem; left: .4rem; right: auto; bottom: auto;
  padding: .25rem .4rem; font-size: .5rem;
}
.gallery-pagination [hidden] { display: none !important; }
.gallery-experience .gallery-grid-head { margin-bottom: .85rem; }
.gallery-experience .gallery-grid-head h2 { font-size: clamp(1.6rem, 4vw, 3rem); }
.gallery-experience .gallery-grid-head > p { display: none; }
.gallery-tools {
  padding: .65rem; gap: .55rem; border: 1px solid #ffffff24;
  border-radius: 1.1rem; background: linear-gradient(135deg, #1a1a1e, #0c0c0f);
}
.gallery-types { border: 0; background: #00000040; padding: .15rem; }
.gallery-sort select { border-color: #ffffff20; background: #09090c; }
.gallery-sort button { background: #ededf0; color: #111; border-color: #ededf0; font-weight: 700; }
.gallery-sort label { color: #a9a9b1; font-size: .75rem; }
.gallery-experience .gallery-filter { padding-block: .65rem .1rem; }
.gallery-experience .gallery-filter a { font-size: .7rem; min-height: 44px; padding: .4rem .75rem; }
.gallery-experience .gallery-page-status { margin-block: .65rem; font-size: .7rem; }
@media (max-width: 64rem) {
  .gallery-experience .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 48rem) {
  .gallery-experience .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem .5rem; }
  .gallery-experience .gallery-item { contain-intrinsic-size: auto 140px; }
  .gallery-experience .gallery-item .gallery-item-title { font-size: .64rem; }
  .gallery-experience .gallery-grid-head .eyebrow { display: none; }
  .gallery-tools { gap: .45rem; }
  .gallery-types a { min-height: 44px; font-size: .8rem; padding: .4rem .5rem; }
  .gallery-types span { font-size: .6rem; }
  .gallery-sort { gap: .5rem; font-size: .75rem; }
  .gallery-sort select { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-experience .gallery-showreel { transform: none; }
}
.gallery-view-page:has(.work-view-figure > img) .site-sound-control { display: none; }
.gallery-experience :is(h1, h2) em { font-family: Arial, Helvetica, sans-serif; font-weight: 800; font-style: italic; }

/* A single compact row replaces the stacked gallery filter panels. */
.gallery-controls { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .35rem; max-width: 42rem; padding: 0; border: 0; border-radius: 0; background: transparent; }
.gallery-controls label { min-width: 0; }
.gallery-controls label > span { display: block; margin: 0 0 .25rem .45rem; font-size: .62rem; color: #92929a; letter-spacing: .05em; text-transform: uppercase; }
.gallery-controls select { display: block; width: 100%; min-width: 0; min-height: 32px; padding: .25rem .4rem; border: 1px solid #ffffff30; border-radius: .3rem; background: #1b1b20; color: #eee; font: 500 .8rem Arial, Helvetica, sans-serif; text-overflow: ellipsis; cursor: pointer; }
.gallery-controls select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 48rem) {
  .gallery-controls { gap: .35rem; padding: 0; border-radius: 0; }
  .gallery-controls label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .gallery-controls select { font-size: .69rem; padding-inline: .25rem; }
}

/* View choices change only the gallery grid, never section navigation. */
.gallery-display-row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-block: .35rem .6rem; }
.gallery-display-row .gallery-page-status { margin: 0; }
.gallery-views { display: flex; align-items: center; gap: .15rem; flex: none; }
.gallery-views[hidden] { display: none; }
.gallery-views button { min-height: 30px; padding: .2rem .5rem; border: 0; border-radius: .45rem; background: transparent; color: #9999a2; font: 500 .72rem Arial, Helvetica, sans-serif; cursor: pointer; }
.gallery-views button[aria-pressed="true"] { color: #fff; background: #ffffff18; }
.gallery-views button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.gallery-experience .gallery-grid[data-view="compact"] { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.gallery-experience .gallery-grid[data-view="large"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-experience .gallery-grid[data-view="large"] .gallery-item img { aspect-ratio: auto; }
@media (max-width: 48rem) {
  .gallery-experience .gallery-grid[data-view="compact"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-experience .gallery-grid[data-view="large"] { grid-template-columns: minmax(0, 1fr); }
  .gallery-views button { padding-inline: .45rem; font-size: .65rem; }
}

/* Compact gallery headings leave the screen to the artwork. */
.gallery-experience .page-hero { min-height: 0; height: auto; padding-top: calc(95px + env(safe-area-inset-top)); padding-bottom: 1.4rem; }
.gallery-experience .page-hero-copy { position: relative; inset: auto; padding-top: 0; padding-bottom: 0; }
.gallery-experience .page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); line-height: 1.05; margin: 0; }
.gallery-experience .page-hero h1 br { display: none; }
.gallery-experience .page-hero .eyebrow, .gallery-experience .page-hero .tag-list { display: none; }
.gallery-experience .gallery-grid-head { margin-bottom: .55rem; }
.gallery-experience .gallery-grid-head h2 { font-size: 1.2rem; margin: 0; }
@media (max-width: 48rem) {
  .gallery-experience .gallery-grid-head h2 { font-size: 1.05rem; }
}

/* Keep the gallery title, controls and first image row together. */
.gallery-experience .gallery-section { padding-top: .65rem; scroll-margin-top: 70px; }
.gallery-experience .gallery-section > .gallery-controls { margin-top: .55rem; }
.gallery-experience .gallery-section > .gallery-grid { margin-top: 0; }
.gallery-experience .gallery-grid-head h2,
.gallery-experience .gallery-grid-head h2 em,
.gallery-experience .page-hero h1,
.gallery-experience .page-hero h1 em { color: var(--accent); }
.gallery-controls { grid-template-columns: .9fr 1fr 1.15fr; }

/* Compact native filters with restrained brand accents. */
.gallery-controls select {
  background: #151519; border-color: #ffffff35; color: #eee; font-weight: 500;
}
.gallery-controls select option { background: #151517; color: #fff; }
.gallery-views button { color: var(--accent); }
.gallery-views button[aria-pressed="true"] { background: #262029; color: var(--accent); box-shadow: inset 0 -2px var(--accent); font-weight: 600; }

/* Small breadcrumbs keep the route back clear without a separate header panel. */
.breadcrumbs { margin: 0 0 .4rem; font-size: .68rem; color: #9999a2; }
.breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 0 .5rem; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .5rem; min-height: 28px; }
.breadcrumbs li + li::before { content: '/'; color: #666670; }
.breadcrumbs a { display: inline-flex; align-items: center; min-height: 28px; color: #bdbdc5; text-decoration: none; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: #eee; }
.gallery-experience .gallery-section > .gallery-grid-head { margin-top: 0; }
.work-view .breadcrumbs { margin-bottom: .75rem; }
.gallery-experience .gallery-grid { overflow-anchor: none; }

/* Long-form service pages: compact headings, readable copy and clear next steps. */
.detail-main { padding-top: calc(86px + env(safe-area-inset-top)); padding-bottom: 2.5rem; }
.detail-heading { max-width: 74rem; margin-bottom: 1.5rem; }
.detail-heading .eyebrow { margin-block: .75rem; color: var(--accent); }
.detail-heading h1 { font: italic 800 clamp(1.8rem, 3.5vw, 2.8rem)/1.08 Arial, Helvetica, sans-serif; letter-spacing: -.045em; color: var(--accent); max-width: 28ch; margin: .5rem 0 1rem; }
.detail-lead { max-width: 68ch; font-size: 1.05rem; line-height: 1.7; color: #d1d1d8; }
.detail-topic-nav { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .75rem; margin-block: 1rem 1.75rem; }
.detail-topic-nav a { flex: none; display: inline-flex; align-items: center; min-height: 44px; padding: .4rem .8rem; border: 1px solid #ffffff24; border-radius: 99px; text-decoration: none; font-size: .8rem; }
.detail-topic-nav a[aria-current] { border-color: var(--accent); color: var(--accent); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 19rem; gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.detail-reading { max-width: 70ch; }
.detail-page h2 { font: italic 750 clamp(1.2rem, 2vw, 1.55rem)/1.2 Arial, Helvetica, sans-serif; letter-spacing: -.025em; }
.detail-reading p, .detail-aside p, .about-career p { font-size: 1rem; line-height: 1.75; color: #c5c5ce; margin-block: .8rem; }
.detail-benefits { padding: 1.4rem; background: linear-gradient(125deg, #1b141c, #101015); border: 1px solid #ffffff20; border-left: 3px solid var(--accent); border-radius: .85rem; }
.detail-benefits ul { padding-left: 1.1rem; margin: 1rem 0 0; }
.detail-benefits li { padding-block: .35rem; line-height: 1.5; }
.detail-benefits li::marker { color: var(--accent); }
.detail-block { position: relative; padding-block: 1.8rem; border-bottom: 1px solid #ffffff1f; }
.detail-index { display: block; color: var(--accent); font-size: .72rem; letter-spacing: .12em; margin-bottom: .7rem; }
.detail-aside { position: sticky; top: 85px; padding: 1.5rem; border: 1px solid #ffffff26; border-radius: 1rem; background: #111116; }
.detail-aside .eyebrow { font-size: .63rem; }
.detail-aside .button { width: 100%; margin-top: 1rem; font-size: .78rem; }
.detail-text-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--accent); font-size: .87rem; text-decoration: none; }
.detail-aside .detail-text-link { display: flex; }
.detail-faq { margin-block: 2rem; }
.detail-faq details { border-bottom: 1px solid #ffffff26; }
.detail-faq summary { padding: 1rem 0; min-height: 44px; cursor: pointer; font-weight: 650; }
.detail-faq details[open] summary { color: var(--accent); }
.detail-closing { margin-top: 2rem; padding: 1.7rem; border-radius: 1rem; border: 1px solid #ffffff20; background: #101014; }
.detail-closing p { color: #bbb; line-height: 1.6; margin-block: .75rem; }
.detail-closing .detail-text-link { margin-left: 1rem; }
.detail-projects { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin-block: 1.5rem 2rem; }
.detail-project-card { padding: 1.5rem; border: 1px solid #ffffff24; border-radius: 1rem; background: linear-gradient(145deg,#1a141c,#0c0c10); }
.detail-project-card p { margin-block: .7rem; color: #bbb; }
.detail-project-card .detail-text-link { margin-right: 1rem; }
.about-career { max-width: 74rem; padding-bottom: 1.5rem; }
.about-career p { max-width: 68ch; }
.chapter-detail-link { display: inline-flex; align-items: center; min-height: 44px; color: #fff; font-size: .78rem; text-underline-offset: .25em; }
.contact-breadcrumbs { grid-column: 1 / -1; }
.contact-direct { display: grid; justify-items: start; gap: .65rem; margin-top: 1.5rem; }
.whatsapp-button { background: var(--accent); color: #101014; border-color: var(--accent); }
.whatsapp-button:hover { background: var(--accent); filter: brightness(1.1); }
.contact-number { color: #b6b6c0; font-size: .8rem; }
.contact-email-link { color: var(--accent); overflow-wrap: anywhere; min-height: 44px; display: inline-flex; align-items: center; }
.enquiry-copy h1 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
.detail-page :is(a, summary):focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 48rem) {
  .detail-main { padding-top: calc(80px + env(safe-area-inset-top)); }
  .detail-heading h1 { font-size: 1.8rem; }
  .detail-lead { font-size: .97rem; }
  .detail-layout { grid-template-columns: minmax(0,1fr); gap: 1rem; }
  .detail-aside { position: static; }
  .detail-benefits, .detail-aside, .detail-closing, .detail-project-card { padding: 1.15rem; }
  .detail-projects { grid-template-columns: minmax(0,1fr); }
  .detail-reading p { font-size: .96rem; }
  .detail-block { padding-block: 1.5rem; }
  .detail-topic-nav { margin-bottom: 1rem; }
  .about-detail .detail-heading { padding-bottom: .5rem; }
}
.detail-topic-nav { scrollbar-width: none; }
.detail-topic-nav::-webkit-scrollbar { display: none; }
.detail-benefits ul { list-style: disc; }
.detail-page:not(.about-detail) .site-sound-control,
.enquiry-view .site-sound-control { display: none; }

.project-cover-link { display: block; margin: -1.5rem -1.5rem 0; overflow: hidden; border-radius: 1rem 1rem 0 0; }
.project-cover { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .45s ease; }
.project-cover-link:hover .project-cover { transform: scale(1.025); }
.detail-project-card .project-cover-caption { font-size: .62rem; color: #92929b; margin-block: .5rem 1rem; }
.project-cover-feature { margin: 1.2rem 0 2rem; }
.project-cover-feature img { display: block; width: 100%; height: auto; max-height: 60svh; object-fit: cover; border-radius: 1rem; }
.project-cover-feature figcaption { margin-top: .5rem; color: #92929b; font-size: .7rem; }
@media (max-width: 48rem) {
  .project-cover-link { margin: -1.15rem -1.15rem 0; }
}
@media (prefers-reduced-motion: reduce) { .project-cover { transition: none; } }

/* About: CV-backed skills grouped for reading, not a wall of badges. */
.about-profile :is(#approach, #capabilities, #experience, #tools) { scroll-margin-top: 80px; }
.profile-capabilities { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin-top: 1.2rem; }
.profile-capabilities article { padding: 1.1rem; background: #111116; border: 1px solid #ffffff20; border-radius: .8rem; }
.profile-capabilities h3 { margin: 0; font: italic 750 1.08rem/1.25 Arial, Helvetica, sans-serif; color: var(--accent); }
.profile-capabilities p { font-size: .91rem; }
.profile-tools { margin-top: 1rem; }
.profile-tools > div { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding-block: 1rem; border-top: 1px solid #ffffff20; }
.profile-tools dt { font-size: .9rem; font-weight: 700; }
.profile-tools dd { margin: 0; color: #c5c5ce; font-size: .95rem; line-height: 1.65; }
.profile-years { display: block; margin-bottom: 1.5rem; font: italic 800 3.5rem/1 Arial, Helvetica, sans-serif; color: var(--accent); }
.profile-years > span { display: block; margin-top: .55rem; font: 500 .75rem/1.4 Arial, Helvetica, sans-serif; color: #b5b5c0; }
@media (max-width: 48rem) {
  .profile-capabilities { grid-template-columns: minmax(0,1fr); }
  .profile-tools > div { grid-template-columns: minmax(0,1fr); gap: .35rem; }
  .profile-years { font-size: 2.8rem; }
}

/* Process: numbered editorial stages, with content always visible without JS. */
.process-route { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid #ffffff28; margin: 2rem 0; }
.process-route a { padding: 1rem .5rem; text-decoration: none; font: italic 700 1rem Arial, sans-serif; transition: color .2s, background .2s; }
.process-route a span { display: block; margin-bottom: .5rem; color: var(--accent); font: 500 .7rem Arial, sans-serif; }
.process-route a:hover, .process-route a:focus-visible { background: #ffffff09; color: var(--accent); }
.process-stage { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; padding: 3rem 0; border-bottom: 1px solid #ffffff22; scroll-margin-top: 85px; }
.process-stage-label > span { display: block; color: var(--accent); font: italic 800 clamp(3rem, 7vw, 6rem)/1 Arial, sans-serif; letter-spacing: -.07em; }
.process-stage-label h2 { margin-top: .7rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.process-stage-copy h3 { font: italic 700 1.25rem/1.25 Arial, sans-serif; }
.process-stage-copy p, .process-work > p { color: #c5c5ce; line-height: 1.75; max-width: 65ch; }
.process-stage-copy .process-delivery { border-left: 2px solid var(--accent); padding-left: 1rem; margin-top: 1.5rem; color: #fff; }
.process-work { margin-top: 3rem; }
.process-work .eyebrow { color: var(--accent); }
.process-work h3 { font: italic 700 1.2rem Arial, sans-serif; }
.process-work .detail-project-card { transition: border-color .25s, transform .25s; }
@media (hover: hover) { .process-work .detail-project-card:hover { transform: translateY(-4px); border-color: var(--accent); } }
@media (max-width: 700px) {
  .process-route a { font-size: .85rem; padding: .9rem .3rem; }
  .process-stage { grid-template-columns: 1fr; gap: .5rem; padding: 2rem 0; }
  .process-stage-label { display: flex; gap: 1rem; align-items: center; }
  .process-stage-label h2 { margin: 0; }
  .process-stage-copy p { font-size: .96rem; }
}
@media (prefers-reduced-motion: reduce) { .process-work .detail-project-card, .process-route a { transition: none; } }

/* B-roll shares the established mobile gallery layout. */
.b-roll-gallery .gallery-section { padding-top: calc(85px + env(safe-area-inset-top)); }
.b-roll-gallery .gallery-grid-head h1 { font: italic 800 1.3rem/1.15 Arial, sans-serif; color: var(--accent); margin: .4rem 0; }
.b-roll-gallery .gallery-grid-head > p { max-width: 52ch; }
@media (max-width: 700px) { .b-roll-gallery .gallery-grid-head h1 { font-size: 1.05rem; } }

/* Edge-attached navigation drawer. Internal spacing keeps links comfortable. */
.mobile-menu {
  inset: 0 auto 0 0;
  width: min(42rem, 94vw);
  height: 100vh;
  height: 100dvh;
  max-height: none;
  border: 0;
  border-right: 2px solid var(--accent);
  border-radius: 0;
  background: #08080a;
  box-shadow: 24px 0 80px #0008;
  transform: translateX(-102%);
  transform-origin: left center;
  transition: transform .42s cubic-bezier(.22,1,.36,1), opacity .2s, visibility 0s linear .43s;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu .mobile-menu-content {
  height: 100%;
  max-height: none;
  padding: calc(82px + env(safe-area-inset-top)) clamp(1.2rem, 4vw, 2.4rem) max(1.5rem, env(safe-area-inset-bottom));
  opacity: 1;
  background: #08080a;
  transform: none;
}
.mobile-menu .mobile-menu-kicker { color: var(--accent); font-size: .65rem; letter-spacing: .2em; }
.mobile-menu .menu-title { font-size: clamp(2.3rem, 7vw, 3.8rem); margin: .6rem 0 1.5rem; }
.mobile-menu .menu-title em { color: var(--accent) !important; }
.mobile-menu .mobile-menu-links { grid-template-columns: 1fr; gap: 0; }
.mobile-menu .mobile-menu-links a {
  min-height: 48px;
  padding: .7rem 0;
  font: italic 750 clamp(1.15rem, 3.8vw, 1.65rem)/1.15 Arial, sans-serif;
  border-bottom: 1px solid #ffffff18;
  transform: translateX(-20px);
  transition: transform .32s ease, opacity .32s ease, color .2s;
}
.mobile-menu.is-open .mobile-menu-links a { transform: translateX(0); transition-delay: 0s; }
.mobile-menu .mobile-menu-links a > span { width: 1.8rem; color: var(--accent); font-style: normal; }
.mobile-menu .mobile-menu-links a:hover,
.mobile-menu .mobile-menu-links a:focus-visible { color: var(--accent); background: #ffffff05; }
.mobile-menu .mobile-menu-actions { margin-top: 1.5rem; }
.mobile-menu .mobile-menu-cta { border-radius: 0; }
.mobile-menu .menu-film-card { border-radius: 0; }
html.menu-open body::after { content: ''; position: fixed; inset: 0; z-index: 28; background: #08080a; }
/* Keep busy content legible instead of hiding a film underneath it. */
.chapter.has-dense-copy { background: #111114 !important; }
.chapter.has-dense-copy > .chapter-film,
.chapter.has-dense-copy > .chapter-shade { visibility: hidden; }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .mobile-menu .mobile-menu-links a { transition: none !important; }
}

/* Compact angled drawer: flush left; secondary destinations expand in place. */
.mobile-menu {
  width: min(25rem, 94vw);
  height: auto;
  bottom: auto;
  max-height: 100vh;
  max-height: 100dvh;
  border-right: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 calc(100% - 12px));
  background: var(--accent);
}
.mobile-menu .mobile-menu-content {
  height: auto;
  max-height: 100vh;
  max-height: 100dvh;
  padding: calc(72px + env(safe-area-inset-top)) 28px 25px 16px;
  background: #08080a;
  clip-path: polygon(0 0, calc(100% - 3px) 0, calc(100% - 21px) calc(100% - 3px), 0 calc(100% - 15px));
}
.mobile-menu .mobile-menu-kicker { font-size: .58rem; }
.mobile-menu .menu-title { font-size: 1.85rem; margin: .35rem 0 .7rem; }
.mobile-menu .mobile-menu-links > a { min-height: 44px; padding: .45rem .3rem; font-size: 1.18rem; }
.mobile-menu .mobile-menu-links > a:nth-child(even) { padding-left: .9rem; }
.mobile-menu .mobile-menu-links > a::after { content: ''; width: 22px; height: 2px; background: var(--accent); margin-left: auto; transform: rotate(-16deg); opacity: .65; }
.mobile-menu .mobile-menu-links a > span { width: 1.5rem; }
.mobile-menu .mobile-menu-actions { margin-top: .7rem; gap: .3rem; }
.mobile-menu .menu-film-frame { aspect-ratio: 3.5; }
.mobile-menu .menu-film-caption { min-height: 32px; padding: .25rem .5rem; }
.mobile-menu .mobile-menu-social a { min-height: 36px; }
.mobile-menu .menu-more { border-bottom: 1px solid #ffffff20; }
.mobile-menu .menu-more summary { display: flex; align-items: center; justify-content: space-between; min-height: 44px; cursor: pointer; list-style: none; font: italic 750 1.1rem Arial, sans-serif; color: var(--accent); padding-inline: .3rem; }
.mobile-menu .menu-more summary::-webkit-details-marker { display: none; }
.mobile-menu .menu-more summary span { transition: transform .2s; font-size: 1.4rem; }
.mobile-menu .menu-more[open] summary span { transform: rotate(45deg); }
.mobile-menu .menu-more-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 .6rem; padding: 0 .3rem .6rem; }
.mobile-menu .menu-more-links a { min-height: 44px; font: 600 .8rem/1.2 Arial, sans-serif; padding: .4rem 0; }
.mobile-menu .menu-more[open] .menu-more-links { animation: menu-more-enter .22s ease both; }
@keyframes menu-more-enter { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
html.menu-open body::after { background: #19191d; }
@media (prefers-reduced-motion: reduce) { .mobile-menu .menu-more-links { animation: none !important; } .mobile-menu .menu-more summary span { transition: none; } }

.mobile-menu .mobile-menu-links > .menu-priority { font-size: 1.18rem; color: #fff; min-height: 44px; }
.mobile-menu .mobile-menu-links > .menu-priority::after { width: 30px; opacity: 1; }

/* Three clear packages, without video behind the buying decision. */
.pricing-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin: 2rem 0; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; padding: clamp(1.15rem,2.3vw,2rem); background: #121216; border: 1px solid #ffffff26; border-radius: 1rem; min-width: 0; }
.pricing-card-featured { border-color: var(--accent); background: linear-gradient(160deg,#28121f,#121216 55%); box-shadow: 0 12px 50px #0004; }
.pricing-kicker { color: var(--accent); text-transform: uppercase; font-size: .64rem; letter-spacing: .12em; margin: 0 0 1rem; }
.pricing-card h2 { font-size: 1.7rem; }
.pricing-price { font: italic 800 clamp(1.8rem,3vw,2.6rem)/1.1 Arial,sans-serif; margin: 1.2rem 0; }
.pricing-price small { display: block; font: 400 .75rem/1.5 Arial,sans-serif; color: #bcbcc6; margin-block: .35rem; }
.pricing-summary, .pricing-card li { font-size: .93rem; line-height: 1.6; color: #d0d0d8; }
.pricing-card ul { list-style: none; padding: 0; margin: 1.2rem 0; }
.pricing-card li { border-bottom: 1px solid #ffffff14; padding: .65rem 0; }
.pricing-card li::before { content: '—'; color: var(--accent); margin-right: .5rem; }
.pricing-scope { font-size: .75rem; line-height: 1.6; color: #bcbcc6; margin-top: auto; margin-bottom: 1rem; }
.pricing-card .button { width: 100%; font-size: .75rem; white-space: normal; text-align: center; }
.profile-film { margin: 0 0 2rem; max-width: 62rem; }
.profile-film video { display: block; width: 100%; max-height: 420px; aspect-ratio: 16/9; object-fit: contain; background: #09090b; border-radius: .8rem; }
.profile-film figcaption { display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-size: .7rem; line-height: 1.5; color: #a8a8b2; }
.profile-film figcaption a { color: var(--accent); padding-block: .8rem; }
@media (max-width: 760px) { .pricing-cards { grid-template-columns: 1fr; } .pricing-card { padding: 1.25rem; } }

.mobile-pricing-page .pricing-cards { grid-template-columns: minmax(0,1fr); max-width: 42rem; }

/* Keep intrinsic image dimensions from stretching the angled gallery cards. */
.experience #ch-08 .reel-item { overflow: hidden; }
.experience #ch-08 .reel-item > a { display: grid; grid-template-rows: minmax(0,1fr) auto; height: 100%; min-height: 0; }
.experience #ch-08 .reel-item :is(img,video) { display: block; width: 100%; height: 100%; min-height: 0; aspect-ratio: auto; object-fit: cover; border-radius: 0; }
.experience #ch-08 .reel-item figcaption { margin: 0; font-size: .7rem; letter-spacing: .03em; }

/* Filename search spans the compact filter row without shrinking the pickers. */
.gallery-controls { flex-wrap: wrap; }
.gallery-search { flex: 0 0 100%; display: flex; gap: .4rem; align-items: center; margin-bottom: .2rem; min-width: 0; }
.gallery-search label { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); }
.gallery-search input { flex: 1; width: 0; min-width: 0; min-height: 34px; padding: .25rem .6rem; border: 1px solid #ffffff35; border-radius: .5rem; color: #fff; background: #101014; font-size: 16px; }
.gallery-search button { min-height: 34px; padding: .25rem .65rem; color: var(--accent); background: #151519; border: 1px solid #ffffff35; border-radius: .3rem; font-size: .75rem; cursor: pointer; }

.gallery-search { grid-column: 1 / -1; }
.privacy-cards .pricing-card h2 { font-size: 1.35rem; }
.privacy-cards .pricing-card p:not(.pricing-kicker) { font-size: .92rem; line-height: 1.7; color: #c5c5ce; }
.privacy-cards a { color: var(--accent); overflow-wrap: anywhere; }

.free-art-heading { margin: 1rem 0; }
.free-art-heading .eyebrow { color: var(--accent); font-size: .65rem; }
.free-art-heading h1 { font: italic 800 1.5rem Arial,sans-serif; color: var(--accent); }
.free-art-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin: 1rem 0 2rem; }
.free-art-actions .button { min-height: 48px; }

/* A quiet moving art break on reading pages, with an angled inner track. */
.art-strip { margin: 1.5rem 0 2rem; min-width: 0; }
.art-strip-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .7rem; }
.art-strip-head a { color: var(--accent); text-decoration: none; padding-block: .7rem; }
.art-strip-pause { background: transparent; border: 0; color: #bbb; min-height: 44px; padding: .4rem; font-size: .7rem; cursor: pointer; }
.art-strip-window { overflow: hidden; padding-block: 1.5rem; background: #0b0b0e; }
.art-strip-track { display: flex; width: max-content; transform-origin: left center; animation: art-strip-travel 55s linear infinite; }
.art-strip-group { display: flex; flex: none; gap: .6rem; padding-right: .6rem; }
.art-strip-group a { transform: rotate(-3deg); display: block; flex: none; width: clamp(140px,20vw,240px); }
.art-strip-group img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border: 1px solid #ffffff1c; }
.art-strip.is-paused .art-strip-track, .art-strip:focus-within .art-strip-track, .art-strip-window:hover .art-strip-track { animation-play-state: paused; }
@keyframes art-strip-travel { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .art-strip-track { animation: none; }
  .art-strip-window { overflow-x: auto; }
  .art-strip-group[aria-hidden="true"], .art-strip-pause { display: none; }
}

/* Compact menu search: a touch-friendly field and a bounded preview grid. */
.menu-search { display: flex; gap: .35rem; margin: .6rem 0; }
.menu-search input { width: 0; flex: 1; min-width: 0; font-size: 16px; padding: .6rem; background: #18181d; color: #fff; border: 1px solid #ffffff30; border-radius: .35rem; }
.menu-search button { background: var(--accent); color: #fff; border: 0; border-radius: .35rem; padding: .5rem; min-height: 44px; }
#menu-search-results { margin: .5rem 0 1rem; }
#menu-search-results p, .menu-search-all { font-size: .72rem; }
.menu-search-all { display: block; color: var(--accent); padding: .7rem 0; }
.menu-search-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .5rem; }
.menu-search-grid a { min-width: 0; display: block; font-size: .67rem; color: #fff; text-decoration: none; }
.menu-search-grid img, .menu-search-grid video { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: .25rem; background: #202027; }
.menu-search-grid span { display: block; padding-top: .3rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ai-helper { position: fixed; right: 16px; bottom: calc(65px + env(safe-area-inset-bottom)); z-index: 27; }
html.menu-open .ai-helper { visibility: hidden; }
.ai-helper-toggle { border: 1px solid #ffffff40; border-radius: 99px; background: #101014; color: #fff; padding: .65rem .9rem; min-height: 44px; font-size: .75rem; cursor: pointer; }
.ai-helper-toggle span { color: var(--accent); margin-left: .5rem; }
#ai-helper-panel { position: absolute; bottom: 52px; right: 0; width: min(330px,calc(100vw - 32px)); max-height: 65dvh; overflow-y: auto; padding: 1rem; border: 1px solid #ffffff35; border-radius: .8rem; background: #101014; color: #fff; box-shadow: 0 8px 40px #0008; }
#ai-helper-panel p, #ai-helper-result { font-size: .8rem; line-height: 1.5; }
#ai-helper-form { display: grid; gap: .4rem; }
#ai-helper-form label { font-size: .7rem; }
#ai-helper-form input, #ai-helper-form select { width: 100%; min-width: 0; box-sizing: border-box; background: #202027; color: #fff; border: 1px solid #ffffff40; padding: .6rem; font-size: 16px; }
#ai-helper-form button { min-height: 44px; border: 0; background: var(--accent); color: #fff; }
#ai-helper-panel .ai-helper-note { font-size: .65rem; color: #b8b8c4; }
#ai-helper-panel a { color: var(--accent); }
#ai-helper-result a { display: block; margin-top: .7rem; }
#ai-helper-result img { width: 100%; max-height: 130px; object-fit: cover; display: block; }

/* Upright menu typography; retain the angled panel and pink accents. */
.mobile-menu .menu-title,
.mobile-menu .menu-title em,
.mobile-menu .mobile-menu-links a,
.mobile-menu .menu-more summary,
.mobile-menu .menu-more-links a { font-style: normal; }

/* One quiet monochrome film behind the drawer; all controls stay above it. */
.mobile-menu .mobile-menu-content { position: relative; isolation: isolate; }
.mobile-menu-content > :not(.menu-background-film) { position: relative; z-index: 1; }
.mobile-menu .mobile-menu-content > .menu-background-film {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .24; pointer-events: none; z-index: 0;
}
@media (prefers-reduced-motion: reduce) { .mobile-menu .menu-background-film { display: none; } }

/* Full-screen navigation: four equal destinations, secondary controls under More. */
.mobile-menu {
  inset: 0; width: 100%; height: 100vh; height: 100dvh;
  max-height: none; border: 0; border-radius: 0; clip-path: none;
  background: #08080a; box-shadow: none;
  transform: translateY(-12px); opacity: 0;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; }
.mobile-menu .mobile-menu-content {
  width: 100%; height: 100%; max-height: none; box-sizing: border-box;
  padding: calc(82px + env(safe-area-inset-top)) max(24px,calc((100vw - 900px)/2)) max(24px,env(safe-area-inset-bottom));
  clip-path: none; overflow-y: auto; overscroll-behavior: contain;
  scrollbar-width: auto; scrollbar-color: #aaa #16161a;
}
.mobile-menu-content::-webkit-scrollbar { display: block; width: 8px; }
.mobile-menu-content::-webkit-scrollbar-thumb { background: #aaa; border: 2px solid #16161a; border-radius: 8px; }
.mobile-menu .mobile-menu-kicker { display: none; }
.mobile-menu .menu-title { font: 600 .8rem/1.4 Arial,sans-serif; letter-spacing: .02em; margin: 0 0 .7rem; color: #bbb; }
.mobile-menu .menu-title em { color: #bbb !important; }
.mobile-menu .menu-search { margin: 0 0 1rem; }
.mobile-menu .mobile-menu-links > a,
.mobile-menu .mobile-menu-links > .menu-priority {
  min-height: clamp(76px,12dvh,112px); padding: .7rem 0; box-sizing: border-box;
  font: 700 clamp(2rem,5vw,3.6rem)/1.1 Arial,sans-serif;
  letter-spacing: -.035em; color: #fff;
}
.mobile-menu .mobile-menu-links > a:nth-child(even) { padding-left: 0; }
.mobile-menu .mobile-menu-links > a > span { width: 2rem; font-size: .7rem; }
.mobile-menu .mobile-menu-links > a::after { content: '↗'; width: auto; height: auto; background: none; transform: none; font: 400 1.5rem Arial,sans-serif; opacity: 1; color: var(--accent); }
.mobile-menu .menu-more summary { min-height: 52px; padding: 0; font: 600 1rem Arial,sans-serif; }
.mobile-menu .menu-more-links a { font: 500 .95rem/1.3 Arial,sans-serif; }
.mobile-menu .mobile-menu-actions { display: none; }
.mobile-menu:has(.menu-more[open]) .mobile-menu-actions { display: grid; }
.mobile-menu .mobile-menu-cta { display: none; }
.mobile-menu .menu-background-film { opacity: .16 !important; }
@media (max-height: 650px) {
  .mobile-menu .mobile-menu-content { padding-top: 70px; }
  .mobile-menu .mobile-menu-links > a { min-height: 64px; font-size: 1.85rem; }
}

/* The repair story follows the watch scrub, leaving the mechanism unobstructed. */
.experience #ch-07 .watch-scrub-controls {
  top: calc(96px + env(safe-area-inset-top)); bottom: 96px;
  left: 24px; right: 24px; max-width: 900px;
  padding: 0; background: none; pointer-events: none;
  display: flex; flex-direction: column; align-items: flex-start;
}
.experience #ch-07 .watch-scrub-controls[hidden] { display: none; }
.experience #ch-07 .watch-scrub-title { font-size: clamp(2rem,5vw,3.7rem); text-shadow: 0 2px 24px #000; }
.experience #ch-07 .scrub-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.experience #ch-07 .scrub-hint { display: block; margin: auto 0 .65rem; font: 700 clamp(1.2rem,3vw,1.7rem)/1.25 Arial,sans-serif; max-width: 26rem; color: #fff; text-shadow: 0 2px 20px #000; }
.experience #ch-07 .scrub-hint::before { content: attr(data-stage); display: block; margin-bottom: .6rem; color: #fff; font: 500 .65rem Arial,sans-serif; letter-spacing: .12em; }
.experience #ch-07 .scrub-contact { pointer-events: auto; font-size: .8rem; padding-block: .6rem; }
.experience #ch-07 .watch-scrub-range:focus-visible,
.experience #ch-07 .watch-scrub-fallback { pointer-events: auto; }
.experience #ch-07.watch-scrubbing .chapter-shade { background: linear-gradient(#0009,transparent 34%,transparent 60%,#000b); }

.experience #ch-07 .watch-scrub-controls .watch-scrub-title { font-size: clamp(2rem,5vw,3.7rem) !important; white-space: normal; overflow: visible; max-width: 100% !important; }
.experience #ch-07 .scrub-hint { transition: opacity .18s ease; }
.experience #ch-07 .scrub-hint.story-fading { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .experience #ch-07 .scrub-hint { transition: none; } }

/* Short, single-line package headings with readable inclusion lists. */
.pricing-page .detail-heading h1 { font-size: clamp(1.2rem,5.3vw,2.6rem); white-space: nowrap; text-wrap: nowrap; }
.pricing-page .pricing-card h2 { font-size: clamp(1rem,4.5vw,1.35rem); white-space: nowrap; text-wrap: nowrap; letter-spacing: -.04em; }
.pricing-includes { font-size: .75rem; color: var(--accent); margin: .8rem 0 0; }
.pricing-page .pricing-card ul { margin-top: .35rem; }
.pricing-page .pricing-card .button { font-size: .72rem; white-space: nowrap; }

/* A single-row toolbar; larger options only appear when requested. */
.gallery-section .gallery-controls {
  position: relative; display: grid; grid-template-columns: 32px .8fr 1.05fr .85fr 42px;
  gap: 4px; align-items: center; padding: 0; max-width: 42rem; z-index: 8;
}
.gallery-controls > label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.gallery-controls > details { min-width: 0; }
.gallery-controls > details > summary {
  box-sizing: border-box; display: flex; align-items: center; justify-content: center;
  height: 32px; list-style: none; padding: 0 4px; cursor: pointer;
  border: 1px solid #ffffff35; border-radius: .3rem; background: #151519;
  color: var(--accent); font: 500 11px Arial,sans-serif;
}
.gallery-controls > details > summary::-webkit-details-marker { display: none; }
.gallery-controls > details[open] > summary { border-color: var(--accent); }
.gallery-controls .gallery-tool-panel {
  position: absolute; top: calc(100% + 6px); padding: 8px;
  border: 1px solid #ffffff35; border-radius: .4rem; background: #111115;
  box-shadow: 0 8px 24px #0008;
}
.gallery-tool-search .gallery-tool-panel { left: 0; right: 0; }
.gallery-tool-view .gallery-tool-panel { right: 0; }
.gallery-controls .gallery-search { margin: 0; }
.gallery-controls select { height: 32px; padding-inline: 3px; font-size: 11px; }
.gallery-controls .gallery-views button { min-height: 32px; }
.gallery-controls summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.header-search-toggle { display: none; }
#header-search-panel { position: fixed; top: calc(var(--nav-height) + 8px); left: 12px; right: 12px; z-index: 45; padding: 10px; max-height: 65dvh; overflow-y: auto; background: #101014; border: 1px solid #ffffff35; border-radius: .5rem; box-shadow: 0 16px 40px #000a; }
#header-search-panel[hidden] { display: none; }
#header-search-panel .menu-search { margin: 0; }
#header-search-panel [role="status"] { font-size: .75rem; color: #ccc; }
@media (max-width: 48rem) {
  .site-nav .header-search-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex: none; padding: 0; margin-left: auto; margin-right: 8px; border: 1px solid #ffffff30; border-radius: 50%; background: #08080a; color: #fff; cursor: pointer; }
  .site-nav .menu-toggle { margin-left: 0; }
}
@media (max-width: 48rem) {
  .site-nav .header-search-toggle { position: absolute; right: calc(var(--page-gutter) + 114px); top: 10px; margin: 0; z-index: 2; }
}
