/*
Theme Name: Striiing Studio
Version: 0.3.4
Description: The Striiing design, with native WordPress content editing.
Requires PHP: 8.2
Text Domain: striiing
*/

:root {
  color-scheme: light;
  --body-copy: #4f5157;
  --logo-filter: brightness(0);
  --selection: #dfe5ff;
  --button-text: #fff;
  --contact-bg: #254cff;
  --background: #fcfcfa;
  --foreground: #161719;
  --muted: #62646a;
  --line: #d9dad7;
  --accent: #254cff;
  --soft: #f0f1ec;
  --radius: 0;
  --primary: #254cff;
  --primary-foreground: #fff;
  --border: #d9dad7;
  --ring: #254cff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--selection);
}
p {
  line-height: 1.6;
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.045em;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
.wrap {
  max-width: 1512px;
  padding-inline: clamp(22px, 5vw, 80px);
  margin: auto;
}
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.logo {
  width: 154px;
  filter: var(--logo-filter);
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
}
.nav a:not(.talk):hover {
  color: var(--accent);
}
.talk {
  display: flex;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--foreground);
  padding-block: 10px;
}
.arrow {
  display: inline-block;
  font-size: 23px;
  line-height: 1;
  transition: transform 0.2s;
}
.talk:hover .arrow,
.text-link:hover .arrow {
  transform: translate(3px, -3px);
}
.skip {
  position: fixed;
  top: -100px;
  left: 24px;
  background: var(--background);
  padding: 16px;
  z-index: 99;
}
.skip:focus {
  top: 12px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.5;
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.hero {
  position: relative;
  isolation: isolate;
  padding-top: 48px;
  padding-bottom: 50px;
  overflow: hidden;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 52px;
  min-height: 438px;
}
.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(56px, 7.2vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.hero h1 span {
  color: var(--accent);
}
.string-field {
  width: 100%;
  height: auto;
  overflow: visible;
  color: var(--accent);
}
.hero-strings {
  position: absolute;
  right: -55px;
  top: 4px;
  width: 52%;
  height: 450px;
  display: grid;
  place-items: center;
  transform: rotate(-16deg);
  pointer-events: none;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 44px;
  align-items: end;
}
.hero-description {
  max-width: 440px;
  font-size: 18px;
  color: var(--body-copy);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 54px;
  padding: 17px 23px;
  background: var(--foreground);
  color: var(--button-text);
  font-size: 15px;
  transition: background 0.2s;
}
.button:hover {
  background: var(--accent);
}
.text-link {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  font-size: 15px;
  padding-block: 14px;
}
.section {
  padding-block: 100px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
}
.section-head .eyebrow {
  color: var(--muted);
}
.work-section {
  padding-top: 28px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.23fr 1fr;
  gap: 60px 30px;
}
.project-image {
  overflow: hidden;
  background: var(--soft);
}
.project-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.project-card:hover img {
  transform: scale(1.035);
}
.project-card .project-image {
  aspect-ratio: 1.28;
}
.project-card:nth-child(2) {
  margin-top: 110px;
}
.project-card:nth-child(3) {
  grid-column: 1/-1;
}
.project-card:nth-child(3) .project-image {
  aspect-ratio: 2.45;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  padding-top: 20px;
}
.project-meta h3 {
  font-size: 25px;
  letter-spacing: -0.025em;
}
.project-meta p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 7px;
}
.project-meta .arrow {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.project-card:hover .project-meta .arrow {
  background: var(--accent);
  color: var(--button-text);
  border-color: var(--accent);
}
.work-note {
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
}
.services {
  background: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10%;
}
.section-intro h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.08;
  margin-top: 30px;
  max-width: 470px;
}
.section-intro p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 380px;
}
.service-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.service-row:first-child {
  padding-top: 0;
  border: 0;
}
.service-number {
  font-size: 13px;
  color: var(--muted);
  padding-top: 8px;
}
.service-row h3 {
  font-size: 31px;
  letter-spacing: -0.03em;
}
.service-row p {
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  margin-top: 14px;
}
.service-list {
  font-size: 13px;
  margin-top: 20px;
  color: var(--body-copy);
}
.studio {
  padding-block: 110px;
}
.studio-top {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 8%;
}
.studio-copy h2 {
  font-size: clamp(37px, 4.3vw, 64px);
  line-height: 1.12;
  max-width: 850px;
}
.studio-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
  font-size: 17px;
  color: var(--muted);
}
.studio-signature {
  margin-top: 26px;
  color: var(--foreground);
}
.principle {
  border-top: 1px solid var(--line);
  margin-top: 65px;
  padding-top: 25px;
  display: flex;
  gap: 45px;
  align-items: center;
}
.mini-string {
  width: 150px;
  flex-shrink: 0;
}
.principle p {
  font-size: 15px;
  color: var(--muted);
  max-width: 610px;
}
.contact {
  background: var(--contact-bg);
  color: white;
  padding-block: 65px 50px;
}
.contact .eyebrow {
  color: #dfe5ff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12%;
  margin-top: 36px;
  align-items: end;
}
.contact h2 {
  font-size: clamp(55px, 6.5vw, 95px);
  line-height: 1.04;
  max-width: 690px;
}
.contact p {
  font-size: 17px;
  max-width: 390px;
  color: #e2e6ff;
}
.email {
  display: inline-flex;
  gap: 26px;
  border-bottom: 1px solid #9baaff;
  padding: 15px 0 12px;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  margin-top: 20px;
}
.email:hover {
  border-color: white;
}
.contact-bottom {
  border-top: 1px solid #718bff;
  margin-top: 65px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #e2e6ff;
}
.contact:has(.enquiry-form) .contact-grid {
  grid-template-columns: 1fr 1.2fr;
  gap: 8%;
}
.enquiry-form {
  margin-top: 32px;
}
.enquiry-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}
.enquiry-fields label {
  display: block;
  font-size: 14px;
  color: white;
}
.enquiry-fields label > span {
  color: #dfe5ff;
  font-size: 12px;
}
.enquiry-wide {
  grid-column: 1 / -1;
}
.enquiry-fields input,
.enquiry-fields textarea {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 9px;
  padding: 12px;
  border: 1px solid #aebaff;
  border-radius: 0;
  background: #ffffff08;
  color: white;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: none;
}
.enquiry-fields textarea {
  min-height: 132px;
  resize: vertical;
}
.enquiry-fields input::placeholder,
.enquiry-fields textarea::placeholder {
  color: #dfe5ff;
  opacity: 1;
}
.enquiry-fields input:focus-visible,
.enquiry-fields textarea:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}
.contact .enquiry-privacy {
  font-size: 12px;
  margin-block: 18px;
  max-width: none;
}
.enquiry-submit {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 17px 20px;
  border-radius: 0;
  background: white;
  color: #171b21;
  font-size: 15px;
}
.enquiry-submit:hover {
  background: #e6eaff;
}
.enquiry-submit:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}
.enquiry-submit span {
  font-size: 25px;
  font-weight: 300;
}
.contact .enquiry-message {
  font-size: 14px;
  max-width: none;
  margin-top: 14px;
}
.enquiry-message:empty {
  display: none;
}
.enquiry-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.enquiry-success {
  border-top: 1px solid #aebaff;
  margin-top: 32px;
  padding-top: 28px;
}
.enquiry-success > span {
  font-size: 28px;
}
.enquiry-success h3 {
  font-size: 28px;
  margin-block: 16px;
}
@media (max-width: 760px) {
  .contact:has(.enquiry-form) .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 440px) {
  .enquiry-fields {
    grid-template-columns: 1fr;
  }
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 30px;
  gap: 30px;
  font-size: 13px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer a:hover {
  color: var(--accent);
}
.case-header {
  padding-block: 60px 55px;
}
.back-link {
  color: var(--muted);
  font-size: 14px;
}
.case-title {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10%;
  margin-top: 65px;
  align-items: end;
}
.case-title h1 {
  font-size: clamp(56px, 7vw, 105px);
  line-height: 1.02;
  margin-top: 22px;
}
.case-title p {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.case-info {
  display: flex;
  gap: 50px;
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 22px;
  font-size: 14px;
}
.case-info span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.case-hero {
  max-height: 780px;
  object-fit: cover;
  aspect-ratio: 1.7;
}
.case-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10%;
  padding-block: 80px;
}
.case-story h2 {
  font-size: 38px;
  line-height: 1.15;
}
.story-block {
  margin-bottom: 42px;
}
.story-block h3 {
  font-size: 25px;
  margin-bottom: 16px;
}
.story-block p {
  font-size: 18px;
  color: var(--body-copy);
  max-width: 760px;
  line-height: 1.7;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.gallery figure {
  margin: 0;
}
.gallery img {
  aspect-ratio: 1.35;
  object-fit: cover;
  background: var(--soft);
}
.gallery figcaption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 13px;
  line-height: 1.5;
}
.next-project {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 36px 0 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.next-project h2 {
  font-size: 45px;
  margin-top: 14px;
}
.not-found {
  min-height: 60vh;
  padding-block: 100px;
}
.not-found h1 {
  font-size: 64px;
  margin-bottom: 25px;
}
@media (min-width: 1600px) {
  .hero-layout {
    min-height: 490px;
  }
  .hero-strings {
    height: 490px;
  }
}
@media (max-width: 900px) {
  .nav {
    gap: 22px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .hero h1 {
    font-size: clamp(60px, 9.5vw, 83px);
    max-width: 650px;
  }
  .hero-strings {
    opacity: 0.25;
    right: -160px;
    width: 75%;
    top: 15px;
  }
  .hero-bottom {
    gap: 25px;
  }
  .hero-actions {
    gap: 16px;
    flex-wrap: wrap;
  }
  .split {
    gap: 8%;
    grid-template-columns: 1fr 1.2fr;
  }
  .studio-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    gap: 7%;
  }
  .case-title {
    gap: 5%;
  }
  .case-title p {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 25px;
  }
  .site-header {
    height: 85px;
    gap: 18px;
  }
  .logo {
    width: 115px;
  }
  .nav {
    font-size: 14px;
    gap: 18px;
  }
  .nav .desktop-link {
    display: none;
  }
  .talk {
    gap: 14px;
  }
  .hero {
    padding-top: 29px;
    padding-bottom: 42px;
  }
  .hero-top .location {
    display: none;
  }
  .hero-layout {
    padding-top: 35px;
    min-height: 310px;
  }
  .hero h1 {
    font-size: clamp(48px, 12.7vw, 75px);
  }
  .hero-strings {
    right: -100px;
    top: 25px;
    width: 80%;
    height: 300px;
    opacity: 0.13;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 22px;
    gap: 26px;
  }
  .hero-description {
    font-size: 17px;
    max-width: 340px;
  }
  .hero-actions {
    justify-content: flex-start;
    gap: 24px;
  }
  .button {
    gap: 24px;
  }
  .section {
    padding-block: 64px;
  }
  .work-section {
    padding-top: 8px;
  }
  .section-head {
    margin-bottom: 28px;
    align-items: center;
  }
  .section-head .eyebrow {
    font-size: 12px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .project-card:nth-child(2) {
    margin: 0;
  }
  .project-card:nth-child(3) {
    grid-column: auto;
  }
  .project-card:nth-child(3) .project-image {
    aspect-ratio: 1.28;
  }
  .project-meta h3 {
    font-size: 23px;
  }
  .project-meta p {
    font-size: 14px;
  }
  .work-note {
    font-size: 14px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 43px;
  }
  .section-intro h2 {
    margin-top: 22px;
    max-width: 330px;
  }
  .service-row h3 {
    font-size: 28px;
  }
  .service-row {
    gap: 14px;
    grid-template-columns: 26px 1fr;
  }
  .studio {
    padding-block: 64px;
  }
  .studio-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .principle {
    gap: 24px;
    align-items: start;
    margin-top: 40px;
  }
  .mini-string {
    width: 70px;
  }
  .principle p {
    font-size: 14px;
  }
  .contact {
    padding-block: 48px 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 26px;
  }
  .contact h2 {
    font-size: 57px;
  }
  .email {
    font-size: 26px;
  }
  .contact-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 45px;
  }
  .footer {
    align-items: start;
    flex-direction: column;
    gap: 17px;
    padding-block: 25px;
  }
  .case-header {
    padding-block: 32px;
  }
  .case-title {
    grid-template-columns: 1fr;
    margin-top: 35px;
    gap: 24px;
  }
  .case-title h1 {
    font-size: 57px;
  }
  .case-title p {
    font-size: 21px;
  }
  .case-info {
    gap: 30px;
    flex-wrap: wrap;
  }
  .case-hero {
    aspect-ratio: 1.12;
  }
  .case-story {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 50px 20px;
  }
  .case-story h2 {
    font-size: 32px;
  }
  .story-block p {
    font-size: 17px;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .next-project {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .next-project h2 {
    font-size: 32px;
  }
  .next-project .arrow {
    font-size: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* Keep case-study artwork visible in full rather than cropping identity boards. */
.gallery img {
  aspect-ratio: auto;
  height: auto;
}
/* Quiet, independent oscillation; animation rests when offscreen or paused. */
.string-motion {
  position: relative;
  width: 100%;
  color: var(--accent);
}
.motion-toggle {
  pointer-events: auto;
  position: absolute;
  right: 32px;
  bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--background);
  color: var(--muted);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  opacity: 0.7;
}
.motion-toggle:hover {
  opacity: 1;
  border-color: var(--accent);
  color: var(--accent);
}
.string-small .motion-toggle {
  right: 0;
  bottom: -20px;
  width: 28px;
  height: 28px;
  font-size: 13px;
}
.contact-grid {
  align-items: start;
}
/* Expanded site: shared page rhythm and purposeful navigation. */
:root {
  --popover: var(--background);
  --popover-foreground: var(--foreground);
  --muted-foreground: var(--muted);
}
.nav {
  gap: 24px;
  font-size: 14px;
}
.nav a[aria-current='page'] {
  color: var(--accent);
}
.compact-nav {
  display: none;
}
.menu-trigger {
  border: 1px solid var(--line);
  padding: 12px 15px;
  display: flex;
  gap: 15px;
  background: transparent;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}
.site-menu {
  background: var(--background);
  color: var(--foreground);
  padding: 65px 28px 30px !important;
  width: min(90vw, 390px) !important;
  max-width: 390px !important;
}
.site-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.site-menu nav a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 23px;
  letter-spacing: -0.03em;
}
.site-menu a[aria-current='page'] {
  color: var(--accent);
}
.menu-email {
  margin-top: auto;
  font-size: 17px;
}
.page-intro {
  padding: 65px 0 75px;
}
.page-intro > .eyebrow {
  color: var(--muted);
}
.page-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10%;
  align-items: end;
  margin-top: 40px;
}
.page-intro h1 {
  font-size: clamp(52px, 6.3vw, 88px);
  line-height: 1.04;
  max-width: 800px;
}
.page-intro-grid > p {
  font-size: 20px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}
.page-work {
  padding-bottom: 65px;
}
.portfolio-end {
  margin-top: 45px;
  font-size: 17px;
  color: var(--muted);
}
.portfolio-end a {
  color: var(--foreground);
  border-bottom: 1px solid var(--line);
}
.availability {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  text-decoration: none;
}
.availability .dot {
  margin-right: 3px;
  position: relative;
}
.availability .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: availability-pulse 2.8s ease-out infinite;
}
@keyframes availability-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.7;
  }
  75%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .availability .dot::after {
    animation: none;
    opacity: 0;
  }
}
.availability:hover {
  color: var(--accent);
}
.availability > span:last-child {
  margin-left: 9px;
}
.studio-profile figure {
  margin: 28px 0 0;
  max-width: 310px;
}
.studio-profile img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 42%;
  background: #111;
}
.studio-profile figcaption,
.profile-photo figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
.studio-profile .eyebrow {
  max-width: 250px;
}
.studio-top {
  gap: 7%;
  grid-template-columns: 1fr 2.1fr;
}
.studio-body {
  gap: 30px;
}
.studio {
  border-top: 1px solid var(--line);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding-bottom: 85px;
}
.capability-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.capability-grid h2 {
  font-size: 29px;
}
.capability-grid p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 20px;
}
.capability-grid article > div {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.8;
}
.pricing-section {
  padding: 75px 0;
  background: var(--soft);
}
.pricing-intro {
  max-width: 610px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 45px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--background);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card h3 {
  font-size: 31px;
}
.price-description {
  font-size: 16px;
  color: var(--muted);
  min-height: 77px;
  margin-top: 18px;
}
.price {
  font-size: 52px;
  letter-spacing: -0.06em;
  margin-top: 20px;
  line-height: 1.3;
}
.price > span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--muted);
}
.price-time {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.price-card ul {
  list-style: none;
  padding: 25px 0;
  margin: 25px 0 0;
  border-top: 1px solid var(--line);
}
.price-card li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}
.price-card li:before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.scope-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: auto;
}
.price-card .text-link {
  margin-top: 20px;
  font-size: 14px;
  gap: 15px;
}
.pricing-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 28px;
  max-width: 1000px;
}
.service-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  padding-block: 95px;
}
.service-notes h2 {
  font-size: 38px;
  line-height: 1.12;
  margin: 23px 0;
}
.service-notes p {
  font-size: 17px;
  color: var(--muted);
}
.questions article {
  margin-top: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.questions h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.questions p {
  font-size: 16px;
}
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-steps li {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.process-steps li > .eyebrow {
  color: var(--accent);
  padding-top: 10px;
}
.process-steps h3 {
  font-size: 38px;
  margin-bottom: 18px;
}
.process-steps p {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}
.step-outcome {
  font-size: 14px;
  margin-top: 22px;
  color: var(--muted);
}
.step-outcome span {
  color: var(--foreground);
}
.process-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-compact li {
  display: block;
  padding-top: 15px;
  border: 0;
}
.process-compact h3 {
  font-size: 25px;
  margin-top: 23px;
}
.process-compact p {
  font-size: 16px;
}
.working-together {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12%;
  padding-block: 85px;
}
.working-together h2 {
  font-size: 42px;
  line-height: 1.12;
  margin-top: 24px;
}
.working-together p,
.working-together li {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}
.working-together ul {
  padding-left: 20px;
  margin-block: 25px;
}
.working-together li {
  margin-bottom: 12px;
}
.approach-note {
  padding: 35px 40px;
  margin-bottom: 80px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.approach-note p {
  max-width: 670px;
  font-size: 17px;
}
.approach-note a {
  flex-shrink: 0;
}
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 11%;
  align-items: start;
  padding-bottom: 85px;
}
.profile-photo {
  margin: 0;
}
.profile-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.profile-story h2 {
  font-size: 44px;
  line-height: 1.12;
  margin-bottom: 30px;
}
.profile-story p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
}
.studio-principles {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.studio-principles > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 35px;
}
.studio-principles h3 {
  font-size: 27px;
  margin-bottom: 15px;
}
.studio-principles p {
  color: var(--muted);
  font-size: 17px;
}
.name-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
  padding-block: 90px;
}
.name-story h2 {
  font-size: 47px;
  margin: 20px 0;
}
.name-story p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.blog-index {
  padding-bottom: 85px;
}
.blog-row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 35px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.blog-number {
  font-size: 14px;
  color: var(--muted);
  padding-top: 6px;
}
.blog-row .eyebrow {
  color: var(--accent);
}
.blog-row .eyebrow span {
  color: var(--muted);
}
.blog-row h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.15;
  margin-top: 20px;
  max-width: 840px;
}
.blog-excerpt {
  font-size: 17px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 680px;
}
.blog-row > .arrow {
  align-self: center;
}
.blog-row:hover h2 {
  color: var(--accent);
}
.home-blog {
  padding-top: 0;
}
.home-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.home-posts > a {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.home-posts .eyebrow {
  color: var(--muted);
  font-size: 12px;
}
.home-posts h3 {
  font-size: 30px;
  line-height: 1.16;
  margin-top: 25px;
  margin-bottom: 20px;
}
.home-posts .text-link {
  margin-top: auto;
}
.home-posts a:hover h3 {
  color: var(--accent);
}
.article {
  padding-top: 50px;
}
.article-header {
  max-width: 1000px;
  margin: 65px auto 50px;
}
.article-header > .eyebrow {
  color: var(--accent);
}
.article h1 {
  font-size: clamp(45px, 5.6vw, 78px);
  line-height: 1.07;
  margin-top: 27px;
}
.article-lead {
  font-size: 24px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 850px;
  margin-top: 30px;
}
.article-byline {
  font-size: 14px;
  color: var(--muted);
  padding-top: 25px;
  border-top: 1px solid var(--line);
  margin-top: 35px;
}
.article-body {
  max-width: 760px;
  margin-inline: auto;
}
.article-body section {
  margin-bottom: 45px;
}
.article-body h2 {
  font-size: 31px;
  line-height: 1.2;
  margin-bottom: 21px;
}
.article-body p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--body-copy);
  margin-bottom: 20px;
}
.article-body aside {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 55px;
}
.article + .next-project h2 {
  font-size: 36px;
  max-width: 800px;
}
.footer-links {
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }
  .logo {
    width: 135px;
  }
  .price-grid {
    gap: 16px;
  }
  .price-card {
    padding: 27px 20px;
  }
  .price-card h3 {
    font-size: 27px;
  }
  .price-card .text-link {
    gap: 10px;
  }
  .studio-top {
    grid-template-columns: 1fr 1.8fr;
  }
  .process-compact {
    grid-template-columns: 1fr 1fr;
  }
  .price-description {
    min-height: 100px;
  }
}
@media (max-width: 1000px) {
  .full-nav {
    display: none;
  }
  .compact-nav {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .page-intro-grid {
    gap: 6%;
  }
  .page-intro-grid > p {
    font-size: 18px;
  }
  .profile-layout {
    gap: 7%;
  }
  .profile-story h2 {
    font-size: 37px;
  }
  .profile-story p {
    font-size: 17px;
  }
  .studio-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .studio-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 35px;
  }
  .studio-profile figure {
    margin: 0;
    max-width: 260px;
    justify-self: end;
  }
  .studio-profile img {
    aspect-ratio: 1;
  }
  .studio-profile .eyebrow {
    font-size: 15px;
  }
  .studio-body {
    grid-template-columns: 1fr 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-description {
    min-height: 0;
  }
  .price-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 45px;
  }
  .price-card h3,
  .price-description,
  .price,
  .price-time {
    grid-column: 1;
  }
  .price-card ul {
    grid-column: 2;
    grid-row: 1/5;
    border: 0;
    margin: 0;
    padding-top: 0;
  }
  .price-card .scope-note {
    grid-column: 1/-1;
    margin-top: 25px;
  }
  .price-card .text-link {
    grid-column: 1/-1;
  }
  .approach-note {
    display: block;
  }
  .home-posts {
    gap: 25px;
  }
  .home-posts h3 {
    font-size: 25px;
  }
  .capability-grid {
    gap: 25px;
  }
  .capability-grid h2 {
    font-size: 25px;
  }
}
@media (max-width: 600px) {
  .compact-nav {
    gap: 14px;
  }
  .compact-nav .talk {
    font-size: 14px;
  }
  .menu-trigger {
    font-size: 13px;
    padding: 10px;
  }
  .site-header .logo {
    width: 111px;
  }
  .page-intro {
    padding: 42px 0 45px;
  }
  .page-intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 27px;
  }
  .page-intro h1 {
    font-size: 51px;
  }
  .page-intro-grid > p {
    font-size: 18px;
  }
  .studio-profile {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
  .studio-profile .eyebrow {
    font-size: 13px;
    max-width: none;
  }
  .studio-profile figure {
    max-width: 100%;
    width: 100%;
  }
  .studio-profile img {
    aspect-ratio: 1.3;
    object-position: 50% 39%;
  }
  .studio-body {
    grid-template-columns: 1fr;
  }
  .hero-top .availability {
    font-size: 12px;
  }
  .hero-strings .motion-toggle {
    right: 65px;
    bottom: 5px;
    width: 36px;
    height: 36px;
  }
  .hero-strings {
    opacity: 0.24;
  }
  .string-small .motion-toggle {
    width: 30px;
    height: 30px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 55px;
  }
  .capability-grid article > div {
    margin-top: 18px;
  }
  .pricing-section {
    padding-block: 50px;
  }
  .pricing-section .section-head {
    display: block;
  }
  .pricing-section .section-head h2 {
    margin-bottom: 18px;
  }
  .pricing-intro {
    font-size: 17px;
  }
  .price-card {
    display: flex;
    padding: 28px;
  }
  .price-card ul {
    border-top: 1px solid var(--line);
    margin-top: 25px;
    padding-top: 25px;
  }
  .price {
    font-size: 50px;
  }
  .price-card .scope-note {
    margin-top: 5px;
  }
  .service-notes {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 55px;
  }
  .service-notes h2 {
    font-size: 32px;
  }
  .process-steps li {
    grid-template-columns: 25px 1fr;
    gap: 18px;
    padding-block: 30px;
  }
  .process-steps h3 {
    font-size: 28px;
  }
  .process-steps p {
    font-size: 17px;
  }
  .process-compact {
    gap: 22px;
  }
  .process-compact li {
    padding: 0;
    display: block;
  }
  .process-compact h3 {
    font-size: 24px;
  }
  .process-compact p {
    font-size: 15px;
  }
  .process-compact li > .eyebrow {
    padding: 0;
  }
  .working-together {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 50px;
  }
  .working-together h2 {
    font-size: 35px;
  }
  .approach-note {
    padding: 25px;
    margin-bottom: 55px;
  }
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }
  .profile-photo img {
    aspect-ratio: 1;
  }
  .profile-story h2 {
    font-size: 35px;
  }
  .studio-principles > div {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .name-story {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 50px;
  }
  .name-story > .string-motion {
    max-width: 300px;
  }
  .name-story h2 {
    font-size: 38px;
  }
  .blog-row {
    grid-template-columns: 1fr 25px;
    gap: 20px;
    padding-block: 30px;
  }
  .blog-number {
    display: none;
  }
  .blog-row h2 {
    font-size: 31px;
  }
  .blog-excerpt {
    font-size: 16px;
  }
  .home-posts {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-posts h3 {
    font-size: 29px;
    margin-top: 17px;
  }
  .section-head:has(.text-link) {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .article {
    padding-top: 35px;
  }
  .article-header {
    margin-top: 40px;
  }
  .article h1 {
    font-size: 44px;
  }
  .article-lead {
    font-size: 21px;
  }
  .article-body h2 {
    font-size: 27px;
  }
  .article-body p {
    font-size: 18px;
  }
  .article + .next-project h2 {
    font-size: 28px;
  }
  .footer-links {
    gap: 18px;
  }
  .motion-toggle {
    opacity: 1;
  }
}
/* Keep motion controls readable even where the decorative lines are faded. */
@media (max-width: 900px) {
  .hero-strings {
    opacity: 1;
  }
  .hero-strings .string-field {
    opacity: 0.25;
  }
}
@media (max-width: 600px) {
  .hero-strings .string-field {
    opacity: 0.18;
  }
}
@media (max-width: 420px) {
  .process-compact {
    grid-template-columns: 1fr;
  }
  .site-header .logo {
    width: 95px;
  }
  .compact-nav {
    gap: 10px;
  }
  .compact-nav > .talk span {
    display: none;
  }
  .menu-trigger {
    padding: 10px;
    gap: 10px;
  }
}
/* Theme tokens apply to every route, including the menu, pricing and article body. */
html[data-theme='dark'] {
  color-scheme: dark;
  --background: #111315;
  --foreground: #f1f2ef;
  --muted: #aeb3bc;
  --body-copy: #bfc3cb;
  --line: #34383e;
  --accent: #91a5ff;
  --soft: #1b1e22;
  --primary: #91a5ff;
  --primary-foreground: #111315;
  --border: #34383e;
  --ring: #91a5ff;
  --selection: #354879;
  --button-text: #111315;
  --contact-bg: #233fc6;
  --logo-filter: none;
}
.button:hover {
  color: var(--button-text);
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 26px;
}
.theme-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}
.theme-icon:hover {
  color: var(--foreground);
  background: var(--soft);
}
.theme-icon .theme-sun,
html[data-theme='dark'] .theme-icon .theme-moon {
  display: none;
}
html[data-theme='dark'] .theme-icon .theme-sun {
  display: block;
}
.theme-icon:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.motion-toggle {
  opacity: 1;
  color: var(--foreground);
  border-color: var(--line);
}
@media (max-width: 1250px) {
  .header-controls {
    gap: 20px;
  }
  .full-nav {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .header-controls {
    gap: 16px;
  }
  .compact-nav > .talk {
    display: none;
  }
  .site-header {
    gap: 15px;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
}
.home-opening {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.home-opening .hero {
  isolation: auto;
  overflow: visible;
  padding-bottom: 28px;
}
.home-opening .work-section {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.hero-top,
.hero-location {
  align-items: center;
}
.hero-location {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.hero-location .theme-icon {
  margin-block: -12px;
  margin-right: -10px;
}
@media (max-width: 600px) {
  .hero-top {
    gap: 10px;
  }
  .hero-top .availability {
    min-width: 0;
    white-space: normal;
  }
}
.hero .hero-strings {
  z-index: -1;
  left: 50%;
  right: auto;
  top: 42%;
  width: min(200vw, 2600px);
  min-width: 1300px;
  height: auto;
  opacity: 0.16;
  transform: translate(-38%, -50%) rotate(-16deg);
  pointer-events: none;
}
.hero .hero-strings .string-field {
  display: block;
  opacity: 1;
}
html[data-theme='dark'] .hero .hero-strings {
  opacity: 0.12;
}
.section-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.service-number {
  padding-top: 4px;
}
.process-marker {
  display: flex;
  align-items: center;
  gap: 15px;
  align-self: start;
  color: var(--muted);
}
.capability-grid .section-icon {
  margin-bottom: 24px;
}
.post-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--soft);
}
.post-image-empty {
  border: 1px solid var(--line);
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-posts .post-image {
  margin-bottom: 26px;
}
.blog-row {
  grid-template-columns: minmax(160px, 28%) 1fr 40px;
}
.post-image-large {
  aspect-ratio: 16 / 9;
  margin-bottom: 55px;
}
@media (max-width: 600px) {
  .hero .hero-strings {
    left: 35%;
    opacity: 0.12;
  }
  .blog-row {
    grid-template-columns: 1fr 28px;
  }
  .blog-row .post-image {
    grid-column: 1 / -1;
  }
}
.empty-copy {
  font-size: 18px;
  color: var(--muted);
  padding-block: 25px;
  line-height: 1.6;
}
.empty-copy a {
  color: var(--accent);
}
.not-found > .button {
  border: 0;
  margin-top: 25px;
  margin-right: 25px;
  cursor: pointer;
}

.studio-music { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; }
.music-label { display:flex; align-items:center; gap:8px; margin-bottom:14px; font-size:11px; text-transform:uppercase; letter-spacing:.09em; }
.music-track { display:flex; gap:12px; align-items:center; }
.music-track img { width:48px; height:48px; object-fit:contain; flex-shrink:0; }
.music-track > span { display:grid; gap:3px; min-width:0; }
.music-track strong { font-size:14px; font-weight:500; overflow-wrap:anywhere; }
.music-track small { font-size:10px; opacity:.7; }

.wp-block-group{box-sizing:border-box}.wp-block-image{margin:0}.wp-block-image img{max-width:100%;height:auto}.wp-block-group > :first-child{margin-top:0}.wp-block-group > :last-child{margin-bottom:0}.entry-content{margin:0}.entry-content .wp-block-group{max-width:none}.entry-content .wrap{max-width:1440px}.wp-block-image figcaption{font-size:14px;color:var(--muted)}
.wp-menu-toggle{display:none;background:none;border:1px solid var(--line);padding:10px;color:var(--foreground)}
@media(max-width:760px){.wp-menu-toggle{display:block}.site-header{position:relative}.nav{display:none!important;position:absolute;top:100%;left:0;right:0;background:var(--background);padding:24px;z-index:20}.nav.is-open{display:flex!important;flex-direction:column;align-items:flex-start;gap:20px}}
/* WordPress block wrappers retain the original process and page rhythm. */
.entry-content .wrap{max-width:1512px}
.process-steps > .wp-block-group{padding:40px 0;border-top:1px solid var(--line)}
.process-compact > .wp-block-group{display:block;padding:24px 0 0;border-top:0}
.process-compact > .wp-block-group h3{font-size:26px;margin:22px 0}
.process-compact > .wp-block-group p{font-size:16px}
.home-posts > a > img{aspect-ratio:3/2;object-fit:cover;margin-bottom:24px}

/* Keep service cards aligned when their native blocks share a grid. */
.capability-grid .service-row{display:block;border-top:1px solid var(--line);padding:28px 0;margin:0}
.capability-grid .service-row .section-icon{margin-bottom:24px}
.capability-grid .service-row h3{margin-top:0}
.entry-content > .wp-block-image{margin:32px 0}
.single-post .entry-content{max-width:900px;margin-inline:auto}
.single-project .case-section{max-width:900px;margin:48px auto}

@font-face{font-family:Manrope;font-style:normal;font-weight:200 800;font-display:swap;src:url('assets/fonts/manrope-variable.ttf') format('truetype')}
body,button,input,textarea,select{font-family:Manrope,sans-serif}
.button,.enquiry-submit{border:0;border-radius:0;cursor:pointer;line-height:1.5;min-height:54px}
.button .arrow,.text-link .arrow,.enquiry-submit .arrow{flex-shrink:0}
.enquiry-submit{align-items:center;gap:24px}
.enquiry-submit:disabled{cursor:wait;opacity:.65}
.enquiry-status:empty{display:none}
.contact .enquiry-status{font-size:14px;max-width:none;margin:14px 0}
.contact .enquiry-privacy{margin:18px 0}
.enquiry-fields label{line-height:1.5}
.enquiry-fields input,.enquiry-fields textarea{appearance:none}
.enquiry-fields label:has(input[name=company]){grid-column:1/-1}
.hero-actions > p{margin:0}
.hero-top .availability{display:inline-flex;align-items:center;gap:10px;line-height:1.6}
.hero-top .availability .dot{flex:0 0 7px;margin:0}
.hero-top .availability .arrow{flex:0 0 18px}
.entry-content .pricing-section{padding:clamp(32px,5vw,75px);margin-block:64px}
.pricing-section > h2{margin-bottom:24px}
.pricing-section > p:not(.pricing-note){max-width:650px;margin-bottom:40px;color:var(--muted)}
.price-card .price{margin-block:26px 16px}
.price-card > p{margin-bottom:12px}
.price-card > .text-link{margin-top:auto;padding-top:24px}
.entry-content .article-section{margin:48px 0}
.article-section h2{font-size:clamp(28px,3vw,42px);margin-bottom:22px}
.article-section p + p{margin-top:20px}
.case-summary{display:grid;grid-template-columns:1fr 2fr;gap:8%;padding-bottom:64px;align-items:start}
.case-summary .eyebrow{color:var(--muted);max-width:250px}
.case-deck{font-size:clamp(22px,2.7vw,36px);line-height:1.4;letter-spacing:-.035em;max-width:820px}
.case-study .case-media{margin-block:clamp(40px,7vw,110px);width:78%}
.case-study .case-media--wide{width:100%;margin-top:0}
.case-study .case-media--right{margin-left:auto}
.case-study .case-media--left{margin-right:auto}
.case-study .case-media img{width:100%;height:auto;object-fit:contain}
.case-study .case-caption{font-size:12px;color:var(--muted);margin-top:14px;max-width:600px}
.case-narrative{display:grid;grid-template-columns:1fr 2fr;gap:8%;padding-block:clamp(32px,5vw,72px);border-top:1px solid var(--line)}
.case-narrative > .eyebrow{color:var(--accent);padding-top:9px}
.case-section-copy h2{font-size:clamp(30px,3.3vw,48px);margin-bottom:24px;line-height:1.15}
.case-section-copy p{max-width:720px;color:var(--body-copy);font-size:18px;line-height:1.8}
.case-outro{padding:64px 0 90px;border-top:1px solid var(--line);max-width:100%}
.case-outro h2{font-size:clamp(30px,4vw,52px);margin-bottom:20px}
.case-outro > p + p{margin-top:30px}
@media(max-width:760px){
 .case-summary,.case-narrative{grid-template-columns:1fr;gap:22px}
 .case-summary{padding-bottom:36px}
 .case-study .case-media{width:92%;margin-block:40px}
 .case-study .case-media--wide{width:100%;margin-top:0}
 .case-section-copy p{font-size:16px}
 .case-outro{padding-block:40px 64px}
 .entry-content .pricing-section{padding:28px 20px;margin-inline:-20px}
 .hero-top .availability{font-size:10px;max-width:calc(100% - 38px)}
 .hero-top .availability .arrow{display:none}
}

.contact h2{font-size:clamp(42px,5vw,76px);line-height:1.1}

/* A quiet, persistent invitation, aligned to the navigation's centre line. */
.nav .nav-contact{display:inline-flex;align-items:center;justify-content:center;gap:18px;padding:12px 18px;min-height:46px;background:var(--accent);color:var(--background);border:1px solid transparent;line-height:1.5;white-space:nowrap;animation:contact-glow 4s ease-in-out infinite;transition:background .2s,color .2s}
.nav .nav-contact .arrow{display:flex;align-items:center;line-height:1}
.nav .nav-contact .arrow svg{display:block;width:20px;height:20px}
.nav .nav-contact:hover{background:var(--foreground);color:var(--background)}
.nav .nav-contact:focus-visible{outline:2px solid var(--accent);outline-offset:5px}
@keyframes contact-glow{0%,100%{box-shadow:0 0 0 0 transparent,0 0 12px color-mix(in srgb,var(--accent) 10%,transparent)}50%{box-shadow:0 0 0 5px color-mix(in srgb,var(--accent) 7%,transparent),0 0 24px color-mix(in srgb,var(--accent) 22%,transparent)}}
.reveal-pending{opacity:0;transition:opacity .7s ease}
.reveal-visible{opacity:1}
.blog-content{padding-bottom:clamp(90px,10vw,150px)}
.footer{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);gap:28px}
.footer-flag{display:flex;align-items:center;justify-content:center;opacity:.72}
.footer-flag svg{display:block;width:40px;height:20px}
.footer .footer-links{justify-content:flex-end;flex-wrap:wrap}
@media(max-width:760px){.footer{grid-template-columns:1fr;text-align:center;gap:24px}.footer .footer-links{justify-content:center}.nav .nav-contact{align-self:flex-start}.blog-content{padding-bottom:90px}}
@media(prefers-reduced-motion:reduce){.nav .nav-contact{animation:none}.reveal-pending,.reveal-visible{opacity:1;transition:none}}

/* Launch rhythm: allow content to finish before the enquiry section. */
.page-content{padding-bottom:clamp(80px,9vw,136px)}
.page-content .case-outro{padding-bottom:20px}
.home-opening .work-section{padding-bottom:clamp(90px,10vw,150px)}
.footer{grid-template-columns:minmax(230px,1fr) minmax(0,1.4fr);align-items:center;padding-block:48px;row-gap:24px}
.footer-links{column-gap:24px;row-gap:16px}
.error-links{display:flex;align-items:center;gap:32px;flex-wrap:wrap;margin-top:36px}
.legal-copy{max-width:820px;margin-inline:auto;font-size:17px;line-height:1.8}
.legal-copy h2{font-size:clamp(26px,3vw,36px);line-height:1.2;margin:48px 0 20px}
.legal-copy p,.legal-copy ul{margin-bottom:22px}
.legal-copy a,.enquiry-privacy a{text-decoration:underline;text-underline-offset:4px}
.music-track{align-items:flex-start;gap:20px;flex-wrap:wrap}
.music-track .record-sleeve{display:block;width:216px;height:144px;position:relative;flex-shrink:0;isolation:isolate}
.music-track .record-sleeve img{position:relative;width:144px;height:144px;object-fit:contain;z-index:2;border-radius:0;box-shadow:0 5px 16px #0002}
.record-disc{position:absolute;right:0;top:0;width:144px;height:144px;border-radius:50%;background:repeating-radial-gradient(circle,#151515 0 2px,#272727 3px 4px);animation:vinyl-spin 12s linear infinite}
.record-disc:before{content:"";position:absolute;inset:0;border-radius:50%;background:conic-gradient(transparent,#ffffff22,transparent 40%,#ffffff15,transparent 80%)}
.record-disc:after{content:"";position:absolute;inset:52px;border:17px solid var(--accent);border-radius:50%;background:#111}
.music-track .music-copy{display:grid;gap:6px;align-self:center}
.music-copy small{font-size:11px;opacity:1;color:var(--muted)}
@keyframes vinyl-spin{to{transform:rotate(360deg)}}
@media(max-width:760px){.footer{grid-template-columns:1fr}.page-content{padding-bottom:88px}.music-track{gap:16px}}
@media(prefers-reduced-motion:reduce){.record-disc{animation:none}}

/* Editorial line endings: balance display copy, preserve a natural body rag. */
h1,h2,h3,h4,.case-deck{text-wrap:balance}
p,li,figcaption,label,.music-copy{text-wrap:pretty;orphans:2;widows:2}
.entry-content .legal-copy{max-width:820px}
.single-post .entry-content .article-section{max-width:72ch;margin-inline:auto}
.page-intro h1{max-width:15ch}
.single-post .page-intro h1{max-width:19ch}
.section-head .eyebrow{flex-shrink:0;white-space:nowrap}
.case-summary .eyebrow{max-width:30ch}
.price > span{white-space:nowrap}
@media(max-width:1100px) and (min-width:761px){
 .page-intro-grid{grid-template-columns:1.3fr 1fr;gap:6%}
 .page-intro h1{font-size:clamp(42px,5.4vw,60px)}
 .home-posts{grid-template-columns:1fr 1fr}
 .capability-grid{grid-template-columns:1fr}
}
@media(max-width:760px){
 .page-intro h1{font-size:clamp(36px,10.5vw,51px);max-width:17ch;line-height:1.09}
 .single-post .page-intro h1{font-size:clamp(34px,9.8vw,48px)}
 .studio-copy h2{font-size:clamp(30px,8vw,42px)}
 .section-head{flex-wrap:wrap;gap:18px}
 .section-head h2{font-size:clamp(29px,8vw,38px)}
}
@media print{h1,h2,h3,h4{break-after:avoid}p,li{orphans:3;widows:3}}
.type-tail{white-space:nowrap}
.page-intro [data-typeset=type-work-title]{font-size:clamp(34px,5.1vw,72px);max-width:none}
.page-intro [data-typeset=type-studio-title]{font-size:clamp(32px,4.5vw,64px);max-width:none}
[data-typeset=type-process-title]{font-size:clamp(30px,3.6vw,50px)}
@media(min-width:761px) and (max-width:1100px){
 .studio-principles{grid-template-columns:1fr}
 .page-intro-grid{grid-template-columns:1fr;gap:30px}
 .page-intro-grid>p{max-width:55ch}
 .studio-profile{min-width:0}
 [data-typeset=type-faq-title]{font-size:32px}
}
@media(max-width:760px){
 .page-intro [data-typeset=type-studio-title]{font-size:32px}
}

.project-meta p{text-wrap:balance}
@media(min-width:761px) and (max-width:1100px){
 .studio-profile{display:flex;flex-direction:column;align-items:flex-start;gap:20px}
 .studio-profile figure{width:100%;max-width:260px;justify-self:auto}
 .studio-profile .eyebrow{font-size:12px;max-width:none}
}

.page-intro [data-typeset=type-service-title]{font-size:clamp(32px,5.1vw,72px);max-width:none}
@media(max-width:360px){
 .hero h1{font-size:44px}
 .studio-copy h2{font-size:26px}
 .profile-story h2{font-size:26px}
 .legal-copy p{text-wrap:balance}
}
