:root {
  --navy: #07172b;
  --navy-2: #101827;
  --paper: #fbfaf6;
  --white: #fffefb;
  --ink: #07172b;
  --black: #000000;
  --gray: #7d8085;
  --blue: #3157c8;
  --blue-2: #7d8085;
  --teal: #000000;
  --aqua: #7d8085;
  --gold: #f37021;
  --lime: #00a94f;
  --green: #00a94f;
  --coral: #fc0fc0;
  --orange: #f37021;
  --red: #c30017;
  --pink: #fc0fc0;
  --line: rgba(7, 23, 43, 0.25);
  --line-light: rgba(255, 255, 255, 0.28);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.55; text-rendering: optimizeLegibility; }
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.skip-link { position: fixed; z-index: 1000; top: .5rem; left: .5rem; padding: .7rem 1rem; background: var(--lime); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; z-index: 100; top: 0; display: flex; min-height: 104px; align-items: center; justify-content: space-between; gap: 2rem; padding: .55rem clamp(1rem, 3vw, 3rem); border-bottom: 1px solid var(--line); background: rgba(251, 250, 246, .97); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-wordmark { display: block; width: clamp(190px, 17vw, 260px); height: auto; mix-blend-mode: multiply; }
.nav { display: flex; align-items: center; gap: clamp(.8rem, 1.5vw, 1.6rem); font-family: var(--mono); font-size: .73rem; font-weight: 700; letter-spacing: .02em; }
.nav a { text-decoration: none; }
.nav a:not(.nav-cta):hover, .nav a:not(.nav-cta):focus-visible, .nav a[aria-current="page"] { color: var(--blue); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .35rem; }
.nav-cta { padding: .85rem 1rem; border: 1px solid var(--ink); background: var(--navy); color: var(--white); }
.nav-cta:hover, .nav-cta:focus-visible { border-color: var(--blue); background: var(--blue); }
.nav-toggle { display: none; border: 0; background: transparent; }
.status-ribbon { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; padding: .75rem clamp(1rem, 3vw, 3rem); background: var(--blue); color: white; font-family: var(--mono); font-size: .72rem; text-decoration: none; }
.status-ribbon span { color: var(--lime); font-weight: 800; text-transform: uppercase; }
.status-ribbon strong { font-weight: 600; }
.status-ribbon i { font-style: normal; }
.status-ribbon:hover i { text-decoration: underline; }

.hero { position: relative; overflow: hidden; }
.home-hero { display: grid; min-height: min(900px, 88vh); grid-template-columns: minmax(0, 1.15fr) minmax(300px, .35fr); isolation: isolate; background: var(--navy); color: white; }
.home-hero-image { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(7,23,43,.97) 0%, rgba(7,23,43,.88) 38%, rgba(7,23,43,.38) 70%, rgba(7,23,43,.1) 100%), linear-gradient(0deg, rgba(7,23,43,.72), transparent 52%); content: ""; pointer-events: none; }
.home-hero::after { position: absolute; z-index: 1; inset: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 68px 68px; content: ""; opacity: .3; pointer-events: none; }
.hero-copy { position: relative; z-index: 2; display: flex; max-width: 1050px; flex-direction: column; justify-content: center; padding: clamp(5rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem); }
.kicker, .section-code { margin: 0 0 1.7rem; font-family: var(--mono); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.kicker { color: var(--lime); }
.hero h1 { max-width: 1050px; margin: 0; font-family: var(--display); font-size: clamp(4.2rem, 7.3vw, 8.2rem); font-weight: 400; letter-spacing: -.065em; line-height: .86; }
.hero h1 em, .position h2 em, .visual-slide h2 em { color: var(--gold); font-family: var(--display); font-weight: 400; }
.hero-lede { max-width: 850px; margin: clamp(2rem, 4vw, 3.5rem) 0 0; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.35; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.4rem; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: .9rem 1.15rem; border: 1px solid currentColor; font-family: var(--mono); font-size: .75rem; font-weight: 800; letter-spacing: .03em; text-decoration: none; text-transform: uppercase; transition: .18s ease; }
.button-lime { border-color: var(--lime); background: var(--lime); color: var(--navy); }
.button-lime:hover { background: white; }
.button-outline { border-color: rgba(255,255,255,.7); color: white; }
.button-outline:hover { background: white; color: var(--navy); }
.button-dark { border-color: var(--navy); background: var(--navy); color: white; }
.button-dark:hover { border-color: var(--blue); background: var(--blue); }
.button-line { background: transparent; color: var(--navy); }
.button-line:hover { background: var(--navy); color: white; }
.hero-scope { position: relative; z-index: 2; display: flex; align-self: end; flex-direction: column; padding: 2.2rem; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); background: rgba(7,23,43,.78); backdrop-filter: blur(10px); }
.hero-scope p { margin: 0 0 .8rem; color: var(--lime); font-family: var(--mono); font-size: .7rem; font-weight: 800; letter-spacing: .09em; }
.hero-scope strong { margin-bottom: .6rem; font-size: clamp(1.4rem, 2.5vw, 2.3rem); letter-spacing: -.04em; }
.hero-scope span { padding: .18rem 0; font-size: .95rem; }
.hero-scope hr { width: 100%; margin: 1.6rem 0; border: 0; border-top: 1px solid var(--line-light); }

.section-pad { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 9vw, 10rem) clamp(1.2rem, 4vw, 4rem); }
.section-heading h2, .position h2, .featured-project h2, .page-hero h1, .article-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 6vw, 7rem); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.section-heading > p:last-child { max-width: 650px; font-size: 1.16rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 4rem; align-items: end; }
.split-heading > p { margin: 0; }
.position { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.position h2 { font-size: clamp(3.4rem, 6.7vw, 7.4rem); }
.position h2 em { color: var(--blue); }
.position-copy .lead { margin-top: 0; font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.3; }
.inline-links { display: flex; flex-wrap: wrap; gap: .2rem 1.5rem; }
.text-link { display: inline-block; margin-top: 1rem; color: var(--blue); font-family: var(--mono); font-size: .78rem; font-weight: 800; text-underline-offset: .3rem; }

.craft-value { max-width: none; background: var(--navy); color: white; }
.craft-value-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.craft-value h2 { max-width: 1050px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 7.6vw, 8.5rem); font-weight: 400; letter-spacing: -.06em; line-height: .86; }
.craft-value h2 em { color: var(--gold); font-weight: 400; }
.craft-value-copy .lead { margin-top: 0; font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.3; }
.craft-value-copy a { color: var(--gold); }
.value-principles { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.value-principles article { display: flex; min-height: 300px; flex-direction: column; padding: clamp(1.4rem, 2.5vw, 2.5rem); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.value-principles span { color: var(--gold); font-family: var(--mono); font-size: .67rem; font-weight: 800; letter-spacing: .08em; }
.value-principles h3 { margin: auto 0 .9rem; font-family: var(--display); font-size: clamp(2rem, 3.3vw, 3.5rem); font-weight: 400; letter-spacing: -.04em; line-height: .92; }
.value-principles p { margin: 0; color: rgba(255,255,255,.82); }

.craftsmanship-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); min-height: 760px; background: var(--paper); }
.craftsmanship-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem); }
.craftsmanship-hero h1 { max-width: 980px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 7.4vw, 8rem); font-weight: 400; letter-spacing: -.06em; line-height: .86; }
.craftsmanship-hero h1 em { color: var(--blue); font-weight: 400; }
.craftsmanship-hero .page-lede { max-width: 760px; margin: 2.5rem 0 0; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.35; }
.craftsmanship-hero figure { min-height: 620px; margin: 0; }
.craftsmanship-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.couture-model { max-width: none; background: var(--blue); color: white; }
.couture-model-grid { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); gap: clamp(3rem, 8vw, 9rem); }
.couture-model h2, .craft-definition h2, .recognise-singular h2 { margin: 0; font-family: var(--display); font-size: clamp(3.4rem, 6vw, 7rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.couture-model-copy .lead, .craft-definition .lead, .recognise-singular .lead { margin-top: 0; font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.3; }
.couture-model-copy a { color: white; text-underline-offset: .3rem; }
.craft-definition { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 9rem); }
.craft-definition blockquote { margin: 2.5rem 0; padding: 2rem; border-left: 8px solid var(--gold); background: white; font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.5rem); line-height: 1.25; }
.quality-dimensions { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 4rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.quality-dimensions article { display: flex; min-height: 320px; flex-direction: column; padding: 1.5rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.quality-dimensions span { color: var(--blue); font-family: var(--mono); font-size: .68rem; font-weight: 800; }
.quality-dimensions h3 { margin: auto 0 1rem; font-family: var(--display); font-size: clamp(1.7rem, 2.5vw, 2.8rem); font-weight: 400; letter-spacing: -.04em; line-height: .95; }
.recognise-singular { max-width: none; background: #eadcc4; }
.recognise-grid { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); gap: clamp(3rem, 8vw, 9rem); }
.recognise-questions { border-top: 1px solid var(--ink); }
.recognise-questions article { display: grid; grid-template-columns: 64px 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--ink); }
.recognise-questions span { color: var(--blue); font-family: var(--mono); font-size: .68rem; font-weight: 800; }
.recognise-questions h3 { margin: 0; font-size: clamp(1.3rem, 2.4vw, 2.2rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.research-bridge { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); gap: clamp(3rem, 7vw, 8rem); align-items: end; max-width: none; background: var(--navy); color: white; }
.research-bridge h2 { max-width: 1080px; margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 6.8vw, 7.6rem); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.research-bridge p { font-size: 1.12rem; }

.visual-carousel { position: relative; overflow: hidden; background: var(--navy); }
.carousel-track { display: flex; width: 100%; overflow: hidden; scroll-snap-type: x mandatory; }
.visual-slide { position: relative; display: flex; width: 100%; min-width: 100%; min-height: 72vh; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 6vw, 6rem); scroll-snap-align: start; isolation: isolate; }
.visual-slide::before, .visual-slide::after { position: absolute; z-index: -1; content: ""; }
.visual-slide p, .visual-slide span { font-family: var(--mono); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.visual-slide h2 { max-width: 1200px; margin: 4rem 0; font-family: var(--display); font-size: clamp(4rem, 9vw, 10rem); font-weight: 400; letter-spacing: -.065em; line-height: .84; }
.slide-blue { background: var(--blue); color: white; }
.slide-blue::before { top: -20%; right: -3%; width: 58vw; height: 58vw; border: 6vw solid var(--lime); border-radius: 50%; opacity: .9; }
.slide-blue::after { right: 28%; bottom: -20%; width: 25vw; height: 52vw; background: var(--pink); transform: rotate(34deg); }
.slide-teal { background: var(--teal); color: white; }
.slide-teal::before { inset: 0; background: repeating-linear-gradient(124deg, transparent 0 45px, rgba(207,255,46,.22) 46px 48px); }
.slide-teal::after { top: 15%; right: 8%; width: 34vw; height: 34vw; border: 5vw solid var(--coral); transform: rotate(12deg); }
.slide-craft-photo { min-height: min(82vh, 900px); background: url('/assets/craft-capability-editorial.webp') center 48% / cover no-repeat; color: white; }
.slide-craft-photo::before { inset: 0; background: linear-gradient(90deg, rgba(7,23,43,.88) 0%, rgba(7,23,43,.5) 48%, rgba(7,23,43,.08) 82%), linear-gradient(0deg, rgba(7,23,43,.58), transparent 52%); }
.slide-craft-photo::after { right: clamp(1.5rem, 5vw, 5rem); bottom: clamp(1.5rem, 5vw, 5rem); width: clamp(100px, 14vw, 210px); aspect-ratio: 1; border: clamp(10px, 1.8vw, 26px) solid var(--coral); border-radius: 50%; }
.slide-fashion-photo { min-height: min(82vh, 900px); background: url('/assets/fibre-cloth-editorial.webp') center 50% / cover no-repeat; color: white; }
.slide-fashion-photo::before { inset: 0; background: linear-gradient(90deg, rgba(7,23,43,.12) 0%, rgba(7,23,43,.34) 45%, rgba(7,23,43,.86) 100%), linear-gradient(0deg, rgba(7,23,43,.6), transparent 55%); }
.slide-fashion-photo::after { top: 0; right: 0; width: 34%; height: 12px; background: var(--coral); }
.slide-coral { background: var(--coral); color: var(--navy); }
.slide-coral h2 em { color: var(--blue); }
.slide-coral::before { top: 0; right: 8%; width: 23vw; height: 100%; background: repeating-linear-gradient(90deg, var(--lime) 0 9px, transparent 9px 32px); opacity: .85; }
.slide-coral::after { right: 22%; bottom: 10%; width: 30vw; aspect-ratio: 1; border: 5vw solid var(--navy); border-radius: 50%; }
.slide-photo { min-height: min(82vh, 900px); background: url('/assets/textiles-editorial.webp') center 48% / cover no-repeat; color: white; }
.slide-photo::before { inset: 0; background: linear-gradient(90deg, rgba(7,23,43,.9) 0%, rgba(7,23,43,.53) 48%, rgba(7,23,43,.08) 78%); }
.slide-photo::after { right: clamp(1.5rem, 5vw, 5rem); bottom: clamp(1.5rem, 5vw, 5rem); width: clamp(120px, 18vw, 260px); aspect-ratio: 1; border: clamp(12px, 2.4vw, 34px) solid var(--orange); border-radius: 50%; }
.slide-photo-copy { display: flex; min-height: 100%; flex: 1; flex-direction: column; justify-content: space-between; }
.slide-photo h2, .slide-craft-photo h2, .slide-fashion-photo h2 { max-width: 900px; text-shadow: 0 2px 28px rgba(7,23,43,.42); }
.slide-copy-right { width: min(58%, 980px); align-self: flex-end; }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; padding: .6rem clamp(1rem, 4vw, 4rem); background: var(--navy); color: white; }
.carousel-controls button { display: inline-grid; width: 48px; height: 42px; place-items: center; border: 1px solid var(--line-light); background: transparent; color: white; cursor: pointer; }
.carousel-controls > div { display: flex; gap: .5rem; }
.carousel-controls > div button { width: 45px; height: 5px; border: 0; background: rgba(255,255,255,.35); }
.carousel-controls > div button[aria-current="true"] { background: var(--lime); }

.audience { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); gap: clamp(3rem, 7vw, 8rem); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.audience-grid article { display: flex; min-height: 460px; flex-direction: column; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.audience-grid article > span { display: grid; width: 58px; height: 58px; place-items: center; background: var(--blue); color: white; font-family: var(--mono); font-weight: 800; }
.audience-grid article:first-child { background: var(--pink); color: var(--black); }
.audience-grid article:first-child > span { background: var(--black); color: white; }
.audience-grid article:last-child { background: var(--black); color: white; }
.audience-grid article:last-child > span { background: var(--pink); color: var(--black); }
.audience-grid article:last-child a { border-color: rgba(255,255,255,.62); }
.audience-grid h3 { margin: auto 0 1.5rem; font-size: clamp(2rem, 3.4vw, 3.5rem); letter-spacing: -.05em; line-height: 1; }
.audience-grid p { margin: 0 0 2rem; }
.audience-grid a { display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--ink); font-family: var(--mono); font-size: .76rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.audience-grid a:hover { color: var(--blue); }

.services-home { background: var(--white); }
.service-links { margin-top: clamp(3rem, 6vw, 7rem); border-top: 1px solid var(--ink); }
.service-links a { display: grid; grid-template-columns: 80px minmax(220px, .75fr) minmax(260px, 1fr) 40px; gap: 1rem; align-items: center; min-height: 150px; padding: 1.5rem 0; border-bottom: 1px solid var(--ink); text-decoration: none; }
.service-links span { font-family: var(--mono); font-size: .7rem; }
.service-links strong { font-size: clamp(1.7rem, 3vw, 3.3rem); letter-spacing: -.05em; line-height: 1; }
.service-links p { margin: 0; }
.service-links i { font-size: 1.5rem; font-style: normal; transition: transform .2s ease; }
.service-links a:hover { color: var(--blue); }
.service-links a:hover i { transform: translate(6px, -6px); }

.featured-project { display: grid; grid-template-columns: minmax(230px, .38fr) minmax(0, 1.62fr); gap: clamp(3rem, 8vw, 9rem); background: var(--blue); color: white; }
.featured-project-label > span { display: inline-block; padding: .45rem .65rem; background: var(--navy); color: white; font-family: var(--mono); font-size: .68rem; font-weight: 800; }
.featured-project h2 { font-size: clamp(4rem, 9vw, 10rem); }
.featured-project .project-facts { border-color: rgba(255,255,255,.58); }
.featured-project .project-facts span { border-color: rgba(255,255,255,.58); }
.featured-project .button-dark { border-color: var(--black); background: var(--black); }
.featured-project .button-dark:hover { border-color: white; background: white; color: var(--blue); }
.featured-project .button-line { border-color: white; color: white; }
.featured-project .button-line:hover { background: white; color: var(--blue); }
.project-deck { max-width: 1100px; font-size: clamp(1.4rem, 2.5vw, 2.3rem); line-height: 1.25; }
.project-facts { display: flex; flex-wrap: wrap; gap: 0; margin: 2.2rem 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.project-facts span { padding: .75rem 1rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.project-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); color: white; }
.project-strip a { display: flex; min-height: 360px; flex-direction: column; padding: 2rem; border-right: 1px solid var(--line-light); text-decoration: none; }
.project-strip span { color: var(--lime); font-family: var(--mono); font-size: .65rem; font-weight: 800; letter-spacing: .07em; }
.project-strip strong { margin: auto 0 1rem; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.05em; }
.project-strip p { min-height: 80px; margin: 0; }
.project-strip i { align-self: flex-end; font-size: 1.4rem; font-style: normal; }
.project-strip a:hover { background: var(--blue); }

.textile-pathway { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); min-height: 780px; background: var(--white); }
.textile-pathway-image { min-height: 700px; }
.textile-pathway-image img { width: 100%; height: 100%; object-fit: cover; }
.textile-pathway-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.textile-pathway-copy h2 { margin: 0 0 2rem; font-family: var(--display); font-size: clamp(3.2rem, 5.5vw, 6.4rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.textile-pathway-copy .lead { font-size: clamp(1.2rem, 1.8vw, 1.65rem); line-height: 1.35; }
.fibre-chain { display: grid; margin: 2rem 0; border-top: 1px solid var(--ink); }
.fibre-chain span { padding: .65rem 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.programme-map { display: grid; grid-template-columns: minmax(270px, .55fr) minmax(0, 1.45fr); gap: clamp(3rem, 7vw, 8rem); }
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.programme-grid article { display: flex; min-height: 400px; flex-direction: column; padding: 2rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.programme-grid article > p { margin: 0; color: var(--blue); font-family: var(--mono); font-size: .7rem; font-weight: 800; }
.programme-grid h3 { margin: auto 0 1.5rem; font-size: clamp(2rem, 3.3vw, 3.4rem); letter-spacing: -.055em; line-height: .95; }
.programme-grid span { display: block; padding: .35rem 0; border-top: 1px solid var(--line); font-size: .9rem; }
.programme-grid .programme-core { background: var(--blue); color: white; }
.programme-grid .programme-core > p { color: var(--lime); }
.programme-grid .programme-core span { border-color: rgba(255,255,255,.25); }
.programme-grid .programme-industry { background: var(--orange); }

.method-home { background: var(--blue-2); color: white; }
.method-accordions { margin-top: 4rem; border-top: 1px solid rgba(255,255,255,.7); }
.method-accordions details { border-bottom: 1px solid rgba(255,255,255,.7); }
.method-accordions summary { display: grid; grid-template-columns: 70px 1fr 40px; gap: 1rem; align-items: center; padding: 1.5rem 0; font-size: clamp(1.6rem, 3vw, 3.2rem); font-weight: 600; letter-spacing: -.04em; cursor: pointer; list-style: none; }
.method-accordions summary::-webkit-details-marker { display: none; }
.method-accordions summary span { font-family: var(--mono); font-size: .7rem; letter-spacing: 0; }
.method-accordions summary i { color: var(--lime); font-style: normal; }
.method-accordions details[open] summary i { transform: rotate(45deg); }
.method-accordions details p { max-width: 800px; margin: 0 0 2rem 70px; font-size: 1.1rem; }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 4vw, 4rem); background: var(--coral); }
.cta-band p { margin: 0; font-size: clamp(1.5rem, 3vw, 3rem); font-weight: 600; letter-spacing: -.045em; }
.cta-band a { display: flex; gap: 2rem; padding: 1rem 0; border-bottom: 2px solid var(--navy); font-family: var(--mono); font-size: .8rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }

.newsletter { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(3rem, 8vw, 9rem); padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 4vw, 4rem); background: var(--teal); color: white; }
.newsletter h2 { max-width: 950px; margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 5.5vw, 6rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.newsletter-action { align-self: end; }
.newsletter-action p { max-width: 560px; margin: 0 0 1.5rem; font-size: 1.08rem; }
.newsletter-action .button { width: max-content; }
.field-line { display: flex; border-bottom: 2px solid white; }
.field-line input { width: 100%; min-width: 0; padding: 1rem 0; border: 0; outline: 0; background: transparent; color: white; font-size: 1.1rem; }
.field-line input::placeholder { color: rgba(255,255,255,.72); }
.field-line button { padding: .6rem 0 .6rem 1rem; border: 0; background: transparent; color: white; font-family: var(--mono); font-size: .78rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.form-status { min-height: 2.8em; margin: .8rem 0 0; font-size: .82rem; }
.site-footer { padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 4vw, 4rem) 1.4rem; background: var(--navy); color: white; }
.footer-main { display: grid; grid-template-columns: 1fr .65fr 1fr; gap: 4rem; padding-bottom: 4rem; }
.footer-brand { width: fit-content; align-self: start; padding: .8rem; background: var(--paper); }
.footer-brand .brand-wordmark { width: min(280px, 70vw); }
.footer-main nav, .footer-sources { display: flex; flex-direction: column; gap: .55rem; }
.footer-main a { text-underline-offset: .25rem; }
.footer-main nav a { text-decoration: none; }
.footer-main nav a:hover { color: var(--lime); }
.footer-sources p { margin: 0 0 .5rem; color: var(--lime); font-family: var(--mono); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.footer-sources a { font-size: .88rem; }
.acknowledgement { max-width: 950px; margin: 0; padding: 2rem 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); font-size: 1.1rem; }
.footer-legal { display: grid; grid-template-columns: .5fr 1.8fr .6fr; gap: 2rem; padding-top: 1.5rem; color: rgba(255,255,255,.75); font-family: var(--mono); font-size: .68rem; }
.footer-legal p { margin: 0; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; padding: clamp(5rem, 10vw, 10rem) clamp(1.2rem, 4vw, 4rem); background: var(--navy); color: white; }
.page-hero::after { position: absolute; top: -15%; right: -8%; width: 42vw; min-width: 360px; aspect-ratio: 1; border: 5vw solid var(--orange); border-radius: 50%; content: ""; opacity: .68; }
.page-hero > * { position: relative; z-index: 1; }
.breadcrumbs { margin: 0 0 2rem; font-family: var(--mono); font-size: .7rem; text-transform: uppercase; }
.breadcrumbs a { color: var(--lime); }
.page-hero h1 { max-width: 1250px; font-size: clamp(4rem, 8.3vw, 9rem); }
.page-hero .page-lede { max-width: 900px; margin: 2.5rem 0 0; font-size: clamp(1.25rem, 2.2vw, 1.9rem); line-height: 1.35; }
.page-hero.hero-blue { background: var(--blue); }
.page-hero.hero-blue::after { border-color: var(--orange); }
.page-hero.hero-teal { background: var(--teal); }
.page-hero.hero-coral { background: var(--coral); color: var(--navy); }
.page-hero.hero-coral .kicker, .page-hero.hero-coral .breadcrumbs a { color: var(--blue); }
.editorial-page-hero { --hero-image: none; --hero-accent: var(--orange); display: flex; min-height: min(820px, 82vh); flex-direction: column; justify-content: flex-end; isolation: isolate; background-color: var(--black); background-image: var(--hero-image); background-position: center; background-size: cover; }
.editorial-page-hero::before { position: absolute; z-index: 0; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.8) 36%, rgba(0,0,0,.28) 67%, rgba(0,0,0,.08) 100%), linear-gradient(0deg, rgba(0,0,0,.74) 0%, transparent 58%); content: ""; }
.editorial-page-hero::after { position: absolute; z-index: 1; top: 0; right: 0; width: clamp(90px, 15vw, 250px); height: 10px; min-width: 0; border: 0; border-radius: 0; background: var(--hero-accent); content: ""; opacity: 1; }
.editorial-page-hero h1 { max-width: 1020px; text-wrap: balance; text-shadow: 0 2px 28px rgba(0,0,0,.3); }
.editorial-page-hero .page-lede { max-width: 760px; }
.editorial-page-hero .kicker { color: var(--hero-accent); }
.editorial-page-hero .breadcrumbs a { color: white; text-decoration-color: var(--hero-accent); text-decoration-thickness: 2px; text-underline-offset: .3rem; }
.hero-expertise { --hero-image: url('/assets/editorial-bauhaus-textile.webp'); --hero-accent: var(--green); background-position: center; }
.hero-services { --hero-image: url('/assets/editorial-millinery-atelier.webp'); --hero-accent: var(--orange); background-position: center; }
.hero-projects { --hero-image: url('/assets/editorial-shawl-couture.webp'); --hero-accent: var(--red); background-position: center; }
.hero-insights { --hero-image: url('/assets/editorial-provenance-dpp.webp'); --hero-accent: var(--pink); background-position: center; }
.hero-about { --hero-image: url('/assets/hero-artisan-editorial.webp'); --hero-accent: var(--gray); background-position: center; }
.intro-grid { display: grid; grid-template-columns: minmax(250px, .55fr) minmax(0, 1.45fr); gap: clamp(3rem, 8vw, 9rem); }
.intro-grid .lead { margin-top: 0; font-size: clamp(1.5rem, 2.8vw, 2.7rem); letter-spacing: -.035em; line-height: 1.25; }
.focus-list { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 4rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.focus-card { display: flex; min-height: 420px; flex-direction: column; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.focus-card .number { font-family: var(--mono); font-size: .7rem; }
.focus-card h2, .focus-card h3 { margin: auto 0 1.5rem; font-size: clamp(2.3rem, 4vw, 4.4rem); letter-spacing: -.055em; line-height: .94; }
.focus-card p { margin: 0; }
.focus-card .card-link { display: inline-block; margin-top: 1.5rem; font-family: var(--mono); font-size: .72rem; font-weight: 800; text-transform: uppercase; text-underline-offset: .3rem; }
.focus-card:nth-child(1) { background: var(--green); color: var(--black); }
.focus-card:nth-child(2) { background: var(--red); color: white; }
.focus-card:nth-child(3) { background: var(--coral); }
.focus-card:nth-child(4) { background: var(--black); color: white; }
.boundary { background: var(--white); }
.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 4rem; background: var(--ink); border: 1px solid var(--ink); }
.boundary-grid article { padding: clamp(2rem, 4vw, 4rem); background: var(--white); }
.boundary-grid article:first-child { background: var(--navy); color: white; }
.boundary-grid h3 { margin: 0 0 2rem; font-size: clamp(2rem, 3.5vw, 3.6rem); letter-spacing: -.05em; line-height: 1; }
.plain-list { margin: 0; padding: 0; list-style: none; }
.plain-list li { padding: .7rem 0; border-top: 1px solid currentColor; }
.source-panel { padding: clamp(2rem, 5vw, 5rem); background: var(--lime); }
.source-panel h2 { max-width: 1000px; margin: 0; font-size: clamp(2.7rem, 5.5vw, 5.8rem); letter-spacing: -.055em; line-height: .94; }
.source-panel p { max-width: 800px; font-size: 1.2rem; }

.route-section { background: white; }
.route-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 4rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.route-grid article { display: flex; min-height: 480px; flex-direction: column; padding: clamp(2rem, 4vw, 4rem); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.route-grid article:first-child { background: var(--blue); color: white; }
.route-grid article:last-child { background: var(--orange); }
.route-grid span { font-family: var(--mono); font-size: .7rem; font-weight: 800; }
.route-grid h3 { margin: auto 0 1.5rem; font-size: clamp(2.4rem, 4vw, 4.7rem); letter-spacing: -.06em; line-height: .93; }
.route-grid a { margin-top: 1.4rem; font-family: var(--mono); font-size: .72rem; font-weight: 800; text-underline-offset: .3rem; }
.mapping-evidence { display: grid; max-width: none; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 9rem); background: var(--navy); color: white; }
.mapping-evidence h2 { margin: 0; font-size: clamp(3.2rem, 5.5vw, 6.5rem); letter-spacing: -.065em; line-height: .9; }
.mapping-evidence .lead { font-size: 1.2rem; }
.source-line { color: rgba(255,255,255,.65); font-family: var(--mono); font-size: .7rem; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.metric-grid article { display: flex; min-height: 230px; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.metric-grid strong { color: var(--orange); font-size: clamp(3rem, 5vw, 6rem); letter-spacing: -.07em; line-height: .9; }
.metric-grid span { margin-top: 1rem; }

.image-page-hero { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); min-height: 760px; background: var(--navy); color: white; }
.image-page-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 7vw, 8rem) clamp(1.2rem, 5vw, 6rem); }
.image-page-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 7.2vw, 8rem); font-weight: 400; letter-spacing: -.06em; line-height: .86; }
.image-page-hero h1 em { color: var(--orange); font-family: var(--display); font-weight: 400; }
.image-page-hero .page-lede { max-width: 760px; margin: 2.5rem 0 0; font-size: clamp(1.2rem, 1.8vw, 1.65rem); line-height: 1.38; }
.image-page-hero figure { position: relative; min-height: 640px; margin: 0; overflow: hidden; }
.image-page-hero img { width: 100%; height: 100%; object-fit: cover; }
.image-page-hero figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: .45rem .65rem; background: rgba(7,23,43,.86); font-family: var(--mono); font-size: .6rem; }
.chain-section { max-width: none; padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 4vw, 4rem); background: var(--orange); }
.chain-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.chain-grid article { display: flex; min-height: 330px; flex-direction: column; padding: 1.6rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.chain-grid span { font-family: var(--mono); font-size: .7rem; font-weight: 800; }
.chain-grid h2 { margin: auto 0 1.2rem; font-size: clamp(1.8rem, 2.6vw, 3rem); letter-spacing: -.05em; line-height: .96; }
.chain-grid p { margin: 0; font-size: .95rem; }
.call-pathways { background: white; }
.call-route-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 4rem; border: 1px solid var(--ink); background: var(--ink); }
.call-route-cards article { display: flex; min-height: 640px; flex-direction: column; padding: clamp(2rem, 4vw, 4rem); background: var(--paper); }
.call-route-cards article:first-child { background: var(--navy); color: white; }
.call-route-cards article > p:first-child { color: var(--orange); font-family: var(--mono); font-size: .7rem; font-weight: 800; }
.call-route-cards h3 { margin: 2rem 0 .8rem; font-family: var(--mono); font-size: clamp(1.3rem, 2.2vw, 2.3rem); overflow-wrap: anywhere; }
.call-route-cards strong { font-size: clamp(1.6rem, 2.8vw, 3rem); letter-spacing: -.04em; line-height: 1.05; }
.call-route-cards dl { margin: auto 0 2rem; }
.call-route-cards dl div { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; padding: .6rem 0; border-top: 1px solid currentColor; }
.call-route-cards dt { font-family: var(--mono); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.call-route-cards dd { margin: 0; }
.call-route-cards a { margin-top: 1rem; font-family: var(--mono); font-size: .72rem; font-weight: 800; text-underline-offset: .3rem; }
.australian-node { max-width: none; background: var(--blue); color: white; }
.node-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.node-grid article { display: flex; min-height: 330px; flex-direction: column; padding: 2rem; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.node-grid span { color: var(--lime); font-family: var(--mono); font-size: .68rem; font-weight: 800; }
.node-grid h3 { margin: auto 0 1rem; font-size: clamp(1.8rem, 2.7vw, 3rem); letter-spacing: -.05em; line-height: .95; }
.node-grid p { margin: 0; }
.culture-authority { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); min-height: 760px; background: var(--teal); color: white; }
.culture-authority figure { position: relative; min-height: 650px; margin: 0; overflow: hidden; }
.culture-authority img { width: 100%; height: 100%; object-fit: cover; }
.culture-authority figcaption { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; padding: .55rem .7rem; background: rgba(7,23,43,.85); font-family: var(--mono); font-size: .62rem; }
.culture-authority > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.culture-authority h2 { margin: 0 0 2rem; font-family: var(--display); font-size: clamp(3rem, 5.4vw, 6rem); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.culture-authority > div > p:not(.section-code) { max-width: 760px; font-size: 1.08rem; }
.precedent-section { background: white; }
.precedent-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.precedent-grid a { display: flex; min-height: 400px; flex-direction: column; padding: 1.8rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; }
.precedent-grid span { color: var(--blue); font-family: var(--mono); font-size: .68rem; font-weight: 800; }
.precedent-grid h3 { margin: auto 0 1rem; font-size: clamp(2rem, 3vw, 3.4rem); letter-spacing: -.055em; line-height: .95; }
.precedent-grid p { margin: 0 0 1.2rem; }
.precedent-grid i { align-self: flex-end; font-family: var(--mono); font-size: .7rem; font-style: normal; font-weight: 800; text-transform: uppercase; }
.precedent-grid a:hover { background: var(--lime); }

.index-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.index-card { display: flex; min-height: 430px; flex-direction: column; padding: 2rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; }
.index-card > span { color: var(--blue); font-family: var(--mono); font-size: .7rem; font-weight: 800; }
.index-card h2, .index-card h3 { margin: auto 0 1.3rem; font-size: clamp(2rem, 3.4vw, 3.5rem); letter-spacing: -.055em; line-height: .95; }
.index-card p { margin: 0 0 1rem; }
.index-card i { align-self: flex-end; font-size: 1.5rem; font-style: normal; }
.index-card:hover { background: var(--lime); }
.index-card:nth-child(2n):hover { background: var(--blue); color: white; }

.service-detail { display: grid; grid-template-columns: minmax(240px, .45fr) minmax(0, 1.55fr); gap: clamp(3rem, 8vw, 9rem); }
.service-meta { position: sticky; top: 130px; align-self: start; padding-top: 1rem; border-top: 2px solid var(--ink); }
.service-meta p { margin: 0 0 2rem; font-family: var(--mono); font-size: .74rem; font-weight: 800; }
.service-meta a { display: block; padding: .85rem 0; border-top: 1px solid var(--line); font-size: .9rem; }
.service-content > p:first-child { margin-top: 0; font-size: clamp(1.5rem, 2.8vw, 2.7rem); line-height: 1.25; }
.service-content h2 { margin: 4rem 0 1.5rem; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.05em; line-height: 1; }
.deliverables { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.deliverables article { min-height: 210px; padding: 1.5rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.deliverables span { font-family: var(--mono); font-size: .67rem; font-weight: 800; }
.deliverables h3 { margin: 2.5rem 0 .5rem; font-size: 1.4rem; line-height: 1.1; }

.project-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin: 3rem 0; }
.project-filters button { padding: .8rem 1rem; border: 1px solid var(--ink); background: transparent; font-family: var(--mono); font-size: .72rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.project-filters button[aria-pressed="true"] { background: var(--navy); color: white; }
.project-cards { display: grid; gap: 1rem; }
.project-card { scroll-margin-top: 140px; border: 1px solid var(--ink); background: white; }
.project-card summary { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .8fr) 60px; gap: 2rem; align-items: end; padding: clamp(1.5rem, 3vw, 3rem); cursor: pointer; list-style: none; }
.project-card summary::-webkit-details-marker { display: none; }
.project-card .project-type { display: inline-block; margin-bottom: 2rem; color: var(--blue); font-family: var(--mono); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.project-card h2 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 6rem); letter-spacing: -.065em; line-height: .88; }
.project-card summary p { margin: 0; font-size: 1.05rem; }
.project-card summary > i { align-self: center; color: var(--blue); font-size: 2rem; font-style: normal; }
.project-card[open] summary > i { transform: rotate(45deg); }
.project-card summary { transition: filter .18s ease; }
.project-card summary:hover { filter: brightness(.94); }
.project-card .project-type, .project-card summary > i { color: inherit; }
.project-card:nth-child(1) summary { background: var(--pink); color: var(--black); }
.project-card:nth-child(2) summary { background: var(--black); color: white; }
.project-card:nth-child(3) summary { background: var(--red); color: white; }
.project-card:nth-child(4) summary { background: var(--orange); color: var(--black); }
.project-card:nth-child(5) summary { background: var(--green); color: var(--black); }
.project-card:nth-child(6) summary { background: var(--blue); color: white; }
.project-card:nth-child(7) summary { background: var(--pink); color: var(--black); }
.project-card:nth-child(8) summary { background: var(--black); color: white; }
.project-card:nth-child(9) summary { background: var(--green); color: var(--black); }
.project-body { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; padding: clamp(1.5rem, 3vw, 3rem); border-top: 1px solid var(--ink); }
.project-body dl { margin: 0; }
.project-body dl div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: .55rem 0; border-top: 1px solid var(--line); }
.project-body dt { font-family: var(--mono); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.project-body dd { margin: 0; }
.project-body h3 { margin: 0 0 1rem; font-size: 1.5rem; }
.project-body .button { margin-top: 1rem; }
.accuracy-note { margin: 2rem 0 0; padding: 1.2rem; border-left: 5px solid var(--coral); background: #fff4ee; }

.article-hero { padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 7vw, 8rem); background: white; }
.article-hero .article-meta { color: var(--blue); font-family: var(--mono); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.article-hero h1 { max-width: 1200px; margin-top: 3rem; }
.article-hero-image { position: relative; display: flex; min-height: min(780px, 78vh); flex-direction: column; justify-content: flex-end; overflow: hidden; isolation: isolate; background-position: center; background-size: cover; color: white; }
.article-hero-image::before { position: absolute; z-index: 0; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.78) 40%, rgba(0,0,0,.18) 76%), linear-gradient(0deg, rgba(0,0,0,.72), transparent 58%); content: ""; }
.article-hero-image::after { position: absolute; z-index: 1; top: 0; right: 0; width: clamp(90px, 15vw, 250px); height: 10px; background: var(--pink); content: ""; }
.article-hero-image > * { position: relative; z-index: 1; }
.article-hero-image .article-meta { color: var(--pink); }
.article-hero-dpp { background-image: url('/assets/editorial-provenance-dpp.webp'); }
.article-layout { display: grid; grid-template-columns: 240px minmax(0, 780px); gap: clamp(3rem, 8vw, 9rem); justify-content: center; padding: clamp(4rem, 8vw, 8rem) 1.2rem; }
.article-layout aside { font-family: var(--mono); font-size: .72rem; }
.article-layout article { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; line-height: 1.75; }
.article-layout article h2 { margin: 3rem 0 1rem; font-family: var(--sans); font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.05em; line-height: 1; }
.article-layout article a { color: var(--blue); }
.article-layout .pullquote { margin: 3rem -5vw; padding: 2rem 5vw; background: var(--lime); font-family: var(--sans); font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.2; }
.capability-callout { margin: 3rem 0; padding: clamp(1.5rem, 4vw, 3rem); border-top: 10px solid var(--pink); background: var(--navy); color: white; font-family: var(--sans); }
.capability-callout h2 { margin-top: 0 !important; }
.capability-callout a { color: white !important; font-family: var(--mono); font-size: .76rem; font-weight: 800; text-underline-offset: .3rem; text-transform: uppercase; }

.contact-layout { display: grid; grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr); gap: clamp(3rem, 8vw, 9rem); }
.contact-intro h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 5.4rem); letter-spacing: -.055em; line-height: .95; }
.direct-email { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--ink); }
.direct-email a { display: inline-block; margin-top: .35rem; color: var(--blue); font-family: var(--mono); font-size: clamp(.82rem, 1.2vw, 1rem); font-weight: 800; overflow-wrap: anywhere; text-underline-offset: .3rem; }
.contact-form { padding: clamp(1.5rem, 4vw, 4rem); border: 1px solid var(--ink); background: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--mono); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .9rem; border: 1px solid var(--ink); border-radius: 0; background: var(--paper); }
.form-field textarea { min-height: 180px; resize: vertical; }
.contact-form button { margin-top: 1.5rem; }
.preview-note { margin: 0 0 2rem; padding: 1rem; border-left: 5px solid var(--lime); background: var(--navy); color: white; font-size: .9rem; }
.contact-email-panel { display: flex; min-height: 420px; flex-direction: column; justify-content: center; }
.contact-email-panel h3 { margin: 0 0 1rem; font-family: var(--display); font-size: clamp(2.4rem, 4vw, 4.5rem); font-weight: 400; letter-spacing: -.05em; line-height: .95; }
.contact-email-panel p { max-width: 600px; }
.contact-email-panel .button { align-self: flex-start; }
.about-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.about-links a { display: block; padding: 1.5rem; border: 1px solid var(--ink); text-decoration: none; }
.about-links a:hover { background: var(--lime); }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--mono); font-size: .75rem; text-transform: uppercase; }
  .nav-toggle i, .nav-toggle i::before { display: block; width: 24px; height: 2px; background: var(--ink); content: ""; transition: .2s ease; }
  .nav-toggle i::before { transform: translateY(7px); }
  .nav-open .nav-toggle i { transform: rotate(45deg); }
  .nav-open .nav-toggle i::before { transform: rotate(90deg); }
  .nav { position: fixed; top: 132px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 1rem; background: var(--paper); font-size: 1.05rem; }
  .nav-open .nav { display: flex; }
  .nav a { padding: 1rem; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero .hero-copy { min-height: 680px; }
  .home-hero::before { background: linear-gradient(90deg, rgba(7,23,43,.95) 0%, rgba(7,23,43,.78) 62%, rgba(7,23,43,.25) 100%), linear-gradient(0deg, rgba(7,23,43,.78), transparent 58%); }
  .hero-scope { width: min(100%, 620px); justify-self: end; border-left: 1px solid var(--line-light); }
  .position, .audience, .programme-map, .featured-project, .intro-grid, .service-detail, .contact-layout, .mapping-evidence, .craft-value-intro, .couture-model-grid, .craft-definition, .recognise-grid, .research-bridge { grid-template-columns: 1fr; }
  .textile-pathway, .image-page-hero, .culture-authority, .craftsmanship-hero { grid-template-columns: 1fr; }
  .textile-pathway-image, .image-page-hero figure, .culture-authority figure { min-height: 62vw; max-height: 820px; }
  .chain-grid { grid-template-columns: repeat(3, 1fr); }
  .node-grid { grid-template-columns: 1fr 1fr; }
  .precedent-grid { grid-template-columns: 1fr 1fr; }
  .project-strip { grid-template-columns: 1fr 1fr; }
  .project-strip a { border-bottom: 1px solid var(--line-light); }
  .index-grid { grid-template-columns: 1fr 1fr; }
  .value-principles { grid-template-columns: 1fr 1fr; }
  .quality-dimensions { grid-template-columns: repeat(3, 1fr); }
  .service-meta { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-sources { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .preview-bar span:last-child { display: none; }
  .site-header { min-height: 78px; }
  .brand-wordmark { width: 160px; }
  .nav { top: 106px; }
  .status-ribbon { grid-template-columns: 1fr; gap: .35rem; }
  .status-ribbon i { display: none; }
  .home-hero { min-height: 0; }
  .home-hero .hero-copy { min-height: 620px; padding-top: 5rem; padding-bottom: 5rem; }
  .home-hero-image { object-position: 58% center; }
  .home-hero::before { background: linear-gradient(90deg, rgba(7,23,43,.95), rgba(7,23,43,.62)), linear-gradient(0deg, rgba(7,23,43,.9), transparent 52%); }
  .hero h1, .page-hero h1 { font-size: clamp(3.3rem, 15vw, 5.6rem); }
  .editorial-page-hero { min-height: 700px; background-position: 64% center; }
  .editorial-page-hero::before { background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)), linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 72%); }
  .hero-services { background-position: 70% center; }
  .hero-projects, .hero-insights { background-position: 68% center; }
  .article-hero-image { min-height: 680px; background-position: 68% center; }
  .hero-scope { width: 100%; }
  .split-heading { grid-template-columns: 1fr; gap: 2rem; }
  .visual-slide { min-height: 560px; }
  .visual-slide h2 { font-size: clamp(3.4rem, 15vw, 6rem); }
  .slide-copy-right { width: 100%; align-self: stretch; }
  .slide-fashion-photo::before { background: linear-gradient(90deg, rgba(7,23,43,.58), rgba(7,23,43,.72)), linear-gradient(0deg, rgba(7,23,43,.78), transparent 55%); }
  .slide-blue::after, .slide-coral::after { display: none; }
  .audience-grid, .programme-grid, .focus-list, .boundary-grid, .deliverables, .about-links, .route-grid, .metric-grid, .call-route-cards, .node-grid, .precedent-grid, .value-principles, .quality-dimensions { grid-template-columns: 1fr; }
  .craftsmanship-hero figure { min-height: 110vw; }
  .image-page-hero h1 { font-size: clamp(3.3rem, 15vw, 5.6rem); }
  .image-page-hero figure, .culture-authority figure, .textile-pathway-image { min-height: 108vw; max-height: none; }
  .chain-grid { grid-template-columns: 1fr; }
  .chain-grid article { min-height: 240px; }
  .call-route-cards article { min-height: 560px; }
  .call-route-cards dl div { grid-template-columns: 110px 1fr; }
  .node-grid article { min-height: 280px; }
  .precedent-grid a { min-height: 310px; }
  .audience-grid article { min-height: 390px; }
  .service-links a { grid-template-columns: 40px 1fr 30px; }
  .service-links p { grid-column: 2 / 3; }
  .service-links i { grid-column: 3; grid-row: 1 / 3; }
  .featured-project h2 { font-size: 16vw; }
  .project-strip, .index-grid { grid-template-columns: 1fr; }
  .project-strip a { min-height: 290px; }
  .method-accordions summary { grid-template-columns: 45px 1fr 30px; }
  .method-accordions details p { margin-left: 45px; }
  .cta-band, .newsletter { grid-template-columns: 1fr; }
  .footer-main, .footer-legal { grid-template-columns: 1fr; }
  .project-card summary { grid-template-columns: 1fr 40px; }
  .project-card summary > div:first-child { grid-column: 1 / -1; }
  .project-card summary > i { grid-column: 2; grid-row: 2; }
  .project-body, .form-grid, .article-layout { grid-template-columns: 1fr; }
  .article-layout aside { display: none; }
  .article-layout .pullquote { margin-right: 0; margin-left: 0; }
}

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