:root {
  --ink: #080809;
  --paper: #fff;
  --lime: #c7ff3f;
  --muted: #b3b3af;
  --line-dark: #303033;
  --line-light: #d7d7d3;
  --body: Archivo, Arial, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --gutter: clamp(22px, 4.8vw, 76px);
  --width: 1304px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; font: 400 1rem/1.7 var(--body); color: var(--ink); background: var(--ink); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a, input, summary { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; border-radius: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3.25vw, 3rem); }
h3 { font-size: 1.375rem; letter-spacing: -.025em; line-height: 1.25; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
[hidden] { display: none !important; }
.container { width: 100%; max-width: calc(var(--width) + 2 * var(--gutter)); padding-inline: var(--gutter); margin-inline: auto; }
.dark { background: var(--ink); color: #f6f6f3; }
.light { background: var(--paper); color: var(--ink); }
.mono, .eyebrow { font: 400 .75rem/1.6 var(--mono); letter-spacing: .07em; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; color: #646460; margin-bottom: 21px; }
.dark .eyebrow { color: var(--muted); }
.heading-note { font-size: 1rem; line-height: 1.7; color: #666660; margin-top: 24px; }
.section-rule { position: relative; padding-block: 78px; }
.section-rule::before { content: ""; height: 1px; background: var(--line-light); position: absolute; top: 0; left: var(--gutter); right: var(--gutter); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 52px; padding: 14px 23px; font-size: .875rem; line-height: 1.5; font-weight: 600; border: 1px solid transparent; transition: background-color .18s, color .18s, border-color .18s; }
.button-lime { background: var(--lime); color: var(--ink); }
.button-lime:hover { background: #ddff8b; }
.button-outline { background: transparent; color: #f6f6f3; border-color: #62625f; }
.button-outline:hover { border-color: #f6f6f3; background: #1a1a1b; }
.arrow { line-height: 1; transition: transform .18s; flex-shrink: 0; }
/* Arrows are drawn, never typed: U+2197 is outside the Archivo subset, so iOS
   substituted Apple Color Emoji and the CTA showed a colour emoji arrow. */
.ico { flex: 0 0 auto; vertical-align: -1px; }
.button:hover .arrow { transform: translate(2px, -2px); }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 44px; border-bottom: 1px solid currentColor; font-size: .9375rem; font-weight: 500; line-height: 1.5; }
.text-link span { font-size: 1.25rem; flex-shrink: 0; }
.text-link .ico { transition: transform .18s; }
.text-link:hover { opacity: .75; }
.skip-link { position: absolute; left: 20px; top: -100px; z-index: 100; background: var(--lime); padding: 12px 20px; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* A single dark opening: identity, the real shipment, and trading terms. */
.site-header { position: sticky; top: 0; z-index: 20; background: var(--ink); color: #fff; border-bottom: 1px solid var(--line-dark); }
.nav-inner { min-height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 22px; margin-right: auto; min-height: 44px; flex-shrink: 0; }
.brand img { width: 144px; height: auto; }
.brand-meta { color: #aaa; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { display: flex; align-items: center; min-height: 44px; font-size: .875rem; color: #bdbdb8; white-space: nowrap; }
.desktop-nav a:hover { color: #fff; }
.button-nav { background: transparent; border-color: #535353; color: #fff; min-height: 44px; padding: 10px 18px; white-space: nowrap; }
.button-nav:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.button-nav span { font-size: 1.125rem; }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 11px; color: #fff; flex-shrink: 0; }
.menu-toggle span { height: 1px; background: currentColor; display: block; margin: 7px 0; transition: transform .18s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { position: absolute; top: 100%; left: 0; width: 100%; padding: 14px var(--gutter) 22px; background: var(--ink); border-bottom: 1px solid var(--line-dark); }
.mobile-nav a, .mobile-nav button { display: block; padding: 13px 0; font-size: 1.125rem; color: #eee; border: 0; background: none; text-align: left; width: 100%; }
.mobile-nav button { color: var(--lime); }
/* Same type and colour as the rest of the menu; the arrow marks that it leaves the site. */
.mobile-nav-util { display: flex !important; align-items: center; gap: 8px; }
.hero { padding-top: 26px; padding-bottom: 65px; }
.desk-line { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line-dark); padding-block: 10px 14px; color: #aaa; text-transform: uppercase; }
.hero-layout { display: grid; grid-template-columns: minmax(0,1.14fr) minmax(0,1fr); gap: 62px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.7rem, 4.55vw, 4.375rem); line-height: 1.025; letter-spacing: -.052em; }
.hero-copy h1 span { display: block; }
.hero-copy h1 span:last-child { color: var(--lime); }
.hero-intro { margin-top: 29px; font-weight: 600; font-size: 1.0625rem; line-height: 1.6; }
.hero-request { color: #bdbdb8; max-width: 470px; margin-top: 6px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero-actions .button { min-width: 252px; justify-content: space-between; }
.collection-note { text-transform: uppercase; color: #b3b3af; }
.reply-note { margin-top: 20px; color: #b3b3af; font-size: .875rem; line-height: 1.7; max-width: 435px; }
.hero-figure { align-self: center; }
.image-frame { aspect-ratio: 1.27; overflow: hidden; background: #242424; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 49% 50%; }
.hero-figure figcaption { display: flex; justify-content: space-between; gap: 12px; text-transform: uppercase; margin-top: 14px; color: #aaa; letter-spacing: .04em; }
.facts { border-top: 1px solid var(--line-dark); }
.fact-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.fact { padding: 27px 26px 30px; border-left: 1px solid var(--line-dark); }
.fact:first-child { padding-left: 0; border-left: 0; }
.fact:last-child { padding-right: 0; }
.fact .eyebrow { color: var(--lime); margin-bottom: 10px; }
.fact h3 { font: 500 1.125rem/1.5 var(--mono); letter-spacing: -.025em; }
.fact > p:last-child { font-size: .875rem; line-height: 1.65; color: #b3b3af; margin-top: 8px; max-width: 270px; }

/* White body: company proof, useful stock scope, then the buying process. */
.identity { padding-block: 72px; }
.identity-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.identity .section-heading { padding-top: 9px; }
.identity h2 { font-size: clamp(2.125rem, 3.3vw, 3.125rem); letter-spacing: -.05em; }
.identity-list { border-top: 1px solid var(--line-light); }
.identity-list > div { display: grid; grid-template-columns: 135px minmax(0,1fr); gap: 22px; padding-block: 16px; border-bottom: 1px solid var(--line-light); align-items: baseline; }
.identity-list dt { font: 400 .75rem/1.7 var(--mono); text-transform: uppercase; letter-spacing: .055em; color: #65655e; }
.identity-list dd { font-size: 1rem; line-height: 1.65; overflow-wrap: anywhere; }
.identity-list .text-link { min-height: 28px; }
.stock-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.stock-intro { max-width: 530px; color: #474743; }
.stock-intro p + p { margin-top: 13px; }
.brand-caption { color: #65655e; margin-top: 42px; letter-spacing: .035em; }
.brand-list { padding: 0; list-style: none; display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); margin: 15px 0 25px; border-top: 1px solid var(--line-light); }
.brand-list li { padding: 23px 12px 23px 0; border-bottom: 1px solid var(--line-light); font-size: clamp(1.125rem, 1.7vw, 1.625rem); line-height: 1.3; letter-spacing: -.03em; font-weight: 500; display: flex; align-items: center; min-height: 80px; }
.brand-disclaimer { font-size: .875rem; color: #64645e; line-height: 1.8; max-width: 1020px; }
.brand-disclaimer a { text-decoration: underline; text-underline-offset: 3px; }
.process-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.process-heading .text-link { margin-bottom: 4px; flex-shrink: 0; }
.process-list { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 38px; }
.process-list li { padding-top: 19px; border-top: 1px solid var(--ink); }
.step-number { display: block; margin-bottom: 25px; color: #64645e; }
.process-list h3 { margin-bottom: 14px; }
.process-list p { color: #55554f; line-height: 1.75; max-width: 370px; }
.questions-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; }
.questions .section-heading { padding-top: 9px; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { font-size: 1.1875rem; line-height: 1.5; font-weight: 500; letter-spacing: -.02em; padding: 21px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: #686862; }
.disclosure { width: 14px; height: 14px; position: relative; flex: 0 0 14px; margin-right: 3px; }
.disclosure::before, .disclosure::after { content: ""; position: absolute; background: currentColor; width: 14px; height: 1px; top: 6px; left: 0; }
.disclosure::after { transform: rotate(90deg); transition: transform .18s; }
.faq-list details[open] .disclosure::after { transform: rotate(0); }
.faq-answer { padding-bottom: 23px; padding-right: 25px; }
.faq-answer p { color: #50504a; font-size: 1rem; line-height: 1.8; }
.text-button { background: none; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); padding: 10px 0 3px; min-height: 44px; font-size: .9375rem; font-weight: 500; margin-top: 10px; }

/* Bull Kicks stays a quiet, direct introduction. */
.consumer { padding-block: 40px; }
.consumer-intro { display: grid; grid-template-columns: 180px minmax(0,1fr) auto; gap: 48px; align-items: center; }
.consumer-brand .eyebrow { margin-bottom: 14px; letter-spacing: .05em; }
.consumer-brand img { width: 124px; height: auto; }
.consumer-description { max-width: 600px; font-size: 1rem; line-height: 1.75; color: #bdbdb8; }
.consumer-link { color: var(--lime); justify-self: end; white-space: nowrap; }

/* The same accessible enquiry is used inline and in the native dialog. */
.enquiry { padding-block: 85px 90px; border-block: 1px solid var(--line-dark); }
.enquiry-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.enquiry .eyebrow { color: var(--lime); }
.enquiry-copy h2 { font-size: clamp(2.7rem, 4.35vw, 4rem); line-height: 1.045; letter-spacing: -.05em; }
.enquiry-copy > p:not(.eyebrow) { color: #bdbdb8; margin-top: 25px; max-width: 430px; }
.enquiry-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 0; margin-top: 25px; }
.enquiry-contact a { display: inline-flex; align-items: center; color: var(--lime); font-size: 1rem; min-height: 40px; }
.enquiry-contact a + a { color: #ddd; font-size: .9375rem; }
.enquiry-contact a:hover { text-decoration: underline; text-underline-offset: 4px; }
.enquiry-form { padding-top: 5px; min-width: 0; }
.form-note { color: #b3b3af; border-bottom: 1px solid var(--line-dark); padding-bottom: 18px; margin-bottom: 23px; letter-spacing: .015em; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 23px 22px; align-items: end; }
.form-grid label { display: block; font-size: .875rem; line-height: 1.6; color: #deded8; }
.field-wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { display: block; width: 100%; height: 50px; margin-top: 8px; background: #141415; color: #fff; border: 1px solid #62625f; border-radius: 0; padding: 10px 13px; font-size: 1rem; line-height: 1.4; min-width: 0; transition: border-color .15s; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #91918d; }
.form-grid input:hover, .form-grid select:hover, .form-grid textarea:hover { border-color: #93938b; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--lime); }
.field-hint { display: block; margin-top: 7px; color: #b3b3af; font-size: .875rem; }
.form-actions { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; margin-top: 27px; }
.form-actions .button-lime { justify-content: space-between; }
.form-actions .button { padding-inline: 19px; }
.form-help { font-size: .875rem; line-height: 1.7; color: #b3b3af; margin-top: 17px; max-width: 490px; }
.footer { padding-top: 52px; }
.footer-main { display: grid; grid-template-columns: 1.2fr .9fr 1fr; gap: 70px; padding-bottom: 42px; }
.footer-brand p { color: #aaa; font-size: .875rem; line-height: 1.8; margin-top: 20px; }
.footer .eyebrow { margin-bottom: 13px; }
.footer nav a, .footer-link, .footer-contact > a, .footer-contact > span { display: block; font-size: .875rem; color: #b3b3af; line-height: 1.65; padding-block: 7px; }
.footer a:hover, .footer-link:hover { color: #fff; }
.footer-link { border: 0; background: none; text-align: left; }
.footer-contact > a { color: #e0e0dc; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 22px 28px; border-top: 1px solid var(--line-dark); color: #aaa; }
.footer-bottom .mono { letter-spacing: .07em; }
.footer-bottom a { font-size: .875rem; }
.mobile-contact { display: none; transform: translateY(110%); transition: transform .38s cubic-bezier(.32,.72,0,1); }
.mobile-contact.is-visible { transform: none; }
.enquiry-dialog { position: fixed; border: 1px solid #62625f; padding: 40px; width: min(610px,calc(100% - 32px)); max-height: calc(100dvh - 40px); overflow-y: auto; overscroll-behavior: contain; color: #f6f6f3; margin: auto; }
.enquiry-dialog::backdrop { background: rgba(0,0,0,.82); }
.enquiry-dialog .eyebrow { color: var(--lime); margin-bottom: 18px; padding-right: 30px; }
.enquiry-dialog h2 { font-size: 2.25rem; max-width: 400px; }
.dialog-close { position: absolute; top: 11px; right: 11px; width: 44px; height: 44px; border: 0; background: transparent; color: #ccc; font-size: 2rem; line-height: 1; }
.dialog-close:hover { color: var(--lime); }
.dialog-intro { color: #bdbdb8; font-size: .9375rem; line-height: 1.7; margin-top: 16px; margin-bottom: 23px; }
.enquiry-dialog .form-note { font-family: var(--body); font-size: .875rem; padding-bottom: 14px; margin-bottom: 20px; }
.enquiry-dialog .form-grid { gap: 19px 20px; }
.enquiry-dialog .form-actions { margin-top: 23px; }
.dialog-open { overflow: hidden; }
.noscript-contact { background: var(--lime); padding: 12px; text-align: center; color: var(--ink); }
.noscript-contact a { text-decoration: underline; }

@media (max-width: 1150px) {
  .nav-inner { gap: 24px; }
  .desktop-nav { gap: 20px; }
  .brand-meta { display: none; }
  .hero-layout { gap: 36px; }
  .hero-actions { gap: 14px; }
  .hero-figure figcaption { flex-wrap: wrap; gap: 2px 10px; }
  .identity-layout, .questions-layout { gap: 42px; grid-template-columns: .74fr 1.26fr; }
  .identity-list > div { grid-template-columns: 118px minmax(0,1fr); gap: 16px; }
  .fact { padding-inline: 20px; }
  .fact h3 { font-size: 1rem; }
  .stock-heading { gap: 48px; }
  .process-list { gap: 26px; }
  .process-list h3 { font-size: 1.25rem; }
  .consumer-intro { gap: 28px; grid-template-columns: 170px minmax(0,1fr) auto; }
  .enquiry-layout { gap: 50px; }
  .form-actions .button { padding-inline: 16px; gap: 14px; }
  .footer-main { gap: 40px; }
}
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .brand-meta { display: block; }
  .hero-layout { grid-template-columns: 1.1fr 1fr; gap: 26px; }
  .hero-copy h1 { font-size: clamp(2rem, 4.65vw, 2.65rem); }
  .hero-intro { font-size: 1rem; }
  .image-frame { aspect-ratio: .8; }
  .hero-actions .button { min-width: 0; width: 100%; }
  .hero-figure figcaption span:last-child { display: none; }
  .fact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fact { padding: 24px; }
  .fact:nth-child(odd) { border-left: 0; padding-left: 0; }
  .fact:nth-child(even) { padding-right: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .fact h3 { font-size: 1.125rem; }
  .section-rule { padding-block: 60px; }
  .identity { padding-block: 60px; }
  .identity-layout { grid-template-columns: .75fr 1.25fr; gap: 32px; }
  .identity-list > div { grid-template-columns: 1fr; gap: 3px; padding-block: 12px; }
  .brand-list { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .brand-list li { font-size: 1.375rem; }
  .process-list { gap: 22px; }
  .questions-layout { grid-template-columns: 1fr; gap: 32px; }
  .questions h2 br { display: none; }
  .consumer-intro { grid-template-columns: 170px minmax(0,1fr); gap: 14px 32px; }
  .consumer-brand { grid-row: span 2; }
  .consumer-link { grid-column: 2; justify-self: start; }
  .enquiry-layout { grid-template-columns: .9fr 1.1fr; gap: 32px; }
  .enquiry-copy h2 { font-size: 2.625rem; }
  .form-actions { grid-template-columns: 1fr; }
  .form-actions .button-outline { min-height: 48px; }
  .enquiry-dialog .form-actions { grid-template-columns: minmax(0,1fr) auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .footer-brand p { margin-top: 0; }
}
@media (max-width: 680px) {
  html { scroll-padding-top: 84px; }
  .nav-inner { min-height: 66px; gap: 16px; }
  .brand { gap: 15px; }
  .brand img { width: 117px; }
  .brand-meta { letter-spacing: .06em; }
  .button-nav { display: none; }
  .hero { padding-top: 15px; padding-bottom: 34px; }
  .desk-line { font-size: .75rem; letter-spacing: .015em; padding-block: 9px 11px; gap: 10px; }
  .hero-layout { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 10.6vw, 3.25rem); line-height: 1.035; letter-spacing: -.05em; }
  .hero-intro { margin-top: 23px; max-width: 390px; }
  .hero-request { margin-top: 7px; max-width: 390px; }
  .hero-actions { margin-top: 24px; gap: 10px; }
  .hero-actions .button { min-height: 52px; }
  .collection-note { font-size: .75rem; }
  .reply-note { margin-top: 14px; max-width: 400px; }
  .image-frame { aspect-ratio: 1.55; }
  .hero-figure figcaption { margin-top: 11px; letter-spacing: .015em; }
  .hero-figure figcaption span:last-child { display: inline; }
  .fact { padding: 23px 18px; }
  .fact h3 { font: 500 1rem/1.5 var(--body); letter-spacing: -.015em; }
  .fact .eyebrow { margin-bottom: 8px; }
  .fact > p:last-child { font-size: .875rem; }
  .identity { padding-block: 43px; }
  .identity-layout { grid-template-columns: 1fr; gap: 28px; }
  .identity .section-heading { padding: 0; }
  .identity .eyebrow { margin-bottom: 16px; }
  .identity h2 { font-size: 2.2rem; }
  .identity h2 br { display: none; }
  .heading-note { margin-top: 15px; }
  .heading-note br { display: none; }
  .identity-list > div { grid-template-columns: 110px minmax(0,1fr); gap: 15px; padding-block: 15px; }
  .identity-list dt { letter-spacing: .015em; }
  .identity-list dd { font-size: 1rem; }
  .identity-list .text-link { font-size: .875rem; gap: 8px; overflow-wrap: anywhere; max-width: 100%; }
  .section-rule { padding-block: 45px; }
  .stock-heading { grid-template-columns: 1fr; gap: 24px; }
  h2 { font-size: 2.2rem; line-height: 1.1; }
  .eyebrow { margin-bottom: 17px; }
  .stock-intro p + p { margin-top: 12px; }
  .brand-caption { margin-top: 28px; letter-spacing: 0; }
  .brand-list { grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 13px; margin-bottom: 22px; }
  .brand-list li { font-size: 1.4375rem; min-height: 66px; padding-block: 18px; }
  .process-heading { display: block; }
  .process-heading .text-link { margin-top: 17px; }
  .process-list { grid-template-columns: 1fr; gap: 25px; margin-top: 30px; }
  .process-list li { display: grid; grid-template-columns: 32px minmax(0,1fr); column-gap: 16px; padding-top: 23px; }
  .step-number { grid-row: span 2; margin: 2px 0 0; }
  .process-list h3 { font-size: 1.25rem; margin-bottom: 10px; }
  .process-list p { max-width: 480px; }
  .questions-layout { gap: 27px; }
  .questions .section-heading { padding-top: 0; }
  .questions h2 br { display: block; }
  .faq-list summary { font-size: 1.125rem; padding-block: 20px; gap: 20px; }
  .faq-answer { padding-right: 12px; }
  .consumer { padding-block: 33px; }
  .consumer-intro { grid-template-columns: 1fr; gap: 20px; }
  .consumer-brand { grid-row: auto; }
  .consumer-description { max-width: 36rem; }
  .consumer-link { grid-column: auto; justify-self: start; }
  .enquiry { padding-block: 48px; }
  .enquiry-layout { grid-template-columns: 1fr; gap: 30px; }
  .enquiry-copy h2 { font-size: clamp(2.5rem, 11.5vw, 3.5rem); }
  .enquiry-copy > p:not(.eyebrow) { margin-top: 22px; }
  .enquiry-contact { margin-top: 18px; }
  .enquiry-contact a { min-height: 44px; }
  .enquiry-form { padding-top: 0; }
  .form-grid { gap: 21px 15px; }
  .form-note { font-family: var(--body); font-size: .875rem; letter-spacing: 0; margin-bottom: 21px; }
  .form-actions, .enquiry-dialog .form-actions { grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
  .form-actions .button { padding-inline: 16px; gap: 12px; }
  .footer { padding-top: 35px; padding-bottom: calc(85px + env(safe-area-inset-bottom,0px)); }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
  .footer-brand { display: block; }
  .footer-brand img { width: 133px; }
  .footer-brand p { margin-top: 17px; }
  .footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 18px; }
  .footer nav .eyebrow { grid-column: 1/-1; margin-bottom: 6px; }
  .footer nav a, .footer-link, .footer-contact > a { min-height: 44px; padding-block: 10px; }
  .footer-bottom { align-items: flex-start; flex-wrap: wrap; gap: 15px; padding-block: 20px 4px; }
  .footer-bottom .mono { letter-spacing: .02em; }
  .mobile-contact { display: flex; position: fixed; z-index: 30; bottom: 0; left: 0; right: 0; padding: 10px 16px calc(10px + env(safe-area-inset-bottom,0px)); border-top: 1px solid #555; gap: 10px; }
  .mobile-contact .button { min-height: 48px; font-size: .875rem; padding: 12px 19px; }
  .mobile-contact .button-lime { flex: 1; justify-content: space-between; }
  .mobile-contact .button-outline { min-width: 87px; }
  .enquiry-dialog { padding: 30px 22px 25px; max-height: calc(100dvh - 24px); width: calc(100% - 24px); }
  .enquiry-dialog h2 { font-size: 2rem; max-width: 350px; }
  .enquiry-dialog .form-grid { gap: 19px 14px; }
}
@media (max-width: 380px) {
  .brand-meta { display: none; }
  .desk-line { flex-wrap: wrap; gap: 4px 10px; }
  .desk-line span:last-child { margin-left: auto; }
  .hero-copy h1 { font-size: clamp(1.9rem, 10.3vw, 2.4rem); }
  .hero-figure figcaption { flex-direction: column; gap: 0; }
  .identity-list > div { grid-template-columns: 1fr; gap: 3px; }
  .identity-list .text-link { font-size: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions, .enquiry-dialog .form-actions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv, .hv, .hero-photo { opacity: 1 !important; transform: none !important; }
  .runner { left: 12px !important; }
  .runner-trail { display: none !important; }
}


/* ============================================================
   CAPRA additions on top of the demo stylesheet
   ============================================================ */

/* --- the running bull: the one continuous motion on the site --- */
/* The runner animates `left` to calc(100% + 40px), so without clipping it widens the
   document every cycle and the page visibly resizes while you scroll on a phone. */
.bull-lane { position: relative; height: 47px; overflow: hidden; }
.runner { position: absolute; top: 4px; left: 0; width: 72px; height: 40px; pointer-events: none; z-index: 3;
  animation: runnerRun 13s linear -4.4s infinite, runnerGallop .34s ease-in-out infinite; }
.runner-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.runner-trail { position: absolute; top: 25%; right: 100%; width: 90px; height: 50%; display: flex; flex-direction: column; justify-content: space-between; padding-right: 6px; pointer-events: none; }
.runner-trail span { display: block; height: 1.5px; background: linear-gradient(to left, var(--lime), transparent); opacity: 0; animation: trailPulse .5s ease-out infinite; }
.runner-trail span:nth-child(1) { width: 60%; animation-delay: 0s; }
.runner-trail span:nth-child(2) { width: 95%; height: 2px; animation-delay: .1s; }
.runner-trail span:nth-child(3) { width: 75%; animation-delay: .2s; }
.runner-trail span:nth-child(4) { width: 50%; animation-delay: .3s; }
@keyframes runnerRun { from { left: -80px; } to { left: calc(100% + 40px); } }
@keyframes runnerGallop { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
@keyframes trailPulse { 0% { opacity: 0; transform: translateX(14px); } 25% { opacity: 1; } 100% { opacity: 0; transform: translateX(-6px); } }
@media (max-width: 680px) { .bull-lane { height: 40px; } .runner { width: 48px; height: 27px; top: 6px; } .runner-trail { width: 56px; } }

/* --- entrance: hero pieces arrive in order, transform + opacity only --- */
.hv { opacity: 0; transform: translateY(14px); transition: opacity .8s cubic-bezier(.32,.72,0,1), transform .8s cubic-bezier(.32,.72,0,1); transition-delay: var(--d, 0ms); }
.hv.in { opacity: 1; transform: none; }
.hero-copy h1 span.hv { display: block; }
.hero-photo { opacity: 0; transform: scale(1.06); transform-origin: 50% 60%;
  transition: opacity 1s cubic-bezier(.32,.72,0,1) .25s, transform 1.9s cubic-bezier(.32,.72,0,1) .25s; }
.hero-figure.in .hero-photo { opacity: 1; transform: none; }

/* --- scroll reveal: one rule for the whole page, staggered per group --- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .75s cubic-bezier(.32,.72,0,1), transform .75s cubic-bezier(.32,.72,0,1); transition-delay: var(--d, 0ms); }
.rv.in { opacity: 1; transform: none; }
details.rv { will-change: auto; }

/* --- FAQ: answer eases in when a question opens --- */
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-list details[open] .faq-answer { animation: faqIn .4s cubic-bezier(.32,.72,0,1) both; }
.faq-list summary { transition: color .18s; }

/* --- hover: colour only, arrows nudge --- */
.text-link { transition: opacity .18s; }
.text-link span { transition: transform .18s; }
.text-link:hover span, .text-link:hover .ico { transform: translate(2px, -2px); }
.desktop-nav a { transition: color .18s; }
.identity-list > div, .brand-list li, .faq-list details { transition-property: opacity, transform; }
.brand-list li { color: var(--ink); transition: color .18s, opacity .75s cubic-bezier(.32,.72,0,1), transform .75s cubic-bezier(.32,.72,0,1); }

/* --- sticky header: a hairline that darkens once the page has scrolled --- */
.site-header { transition: border-color .25s; }
.site-header.is-scrolled { border-bottom-color: #3d3d41; }

/* --- the original enquiry fields on the demo's form vocabulary --- */
.form-grid .field { display: block; font-size: .875rem; line-height: 1.6; color: #deded8; min-width: 0; }
.form-grid label, .form-grid .field > label { display: block; }
.opt { font: 400 .6875rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: #8e8e89; margin-left: 8px; vertical-align: middle; }
.form-grid select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%23b3b3af' stroke-width='1.4'%3E%3Cpath d='M2 5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; }
.form-grid select:invalid { color: #91918d; }
.form-grid select option { color: #fff; background: #141415; }
.form-grid textarea { height: auto; min-height: 96px; resize: vertical; line-height: 1.55; }
.phone-row { display: grid; grid-template-columns: 124px minmax(0, 1fr); gap: 8px; margin-top: 8px; }
.phone-row select, .phone-row input { margin-top: 0; }
.form-status { display: none; margin-top: 18px; padding: 13px 15px; border: 1px solid #62625f; font-size: .875rem; line-height: 1.6; color: #deded8; }
.form-status.show { display: block; }
.form-status.err { border-color: #b3b3af; color: #fff; }
.form-help a { color: var(--lime); }
.form-help a:hover { text-decoration: underline; text-underline-offset: 3px; }
.enquiry-dialog .form-grid { max-height: none; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } .enquiry-dialog .form-grid { grid-template-columns: 1fr; } }
@media (max-width: 380px) { .phone-row { grid-template-columns: 110px minmax(0, 1fr); } }


/* --- enquiry: essentials first, the rest unfolds --- */
.form-more-toggle { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; margin-top: 24px; padding: 15px 0; background: none; border: 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: #deded8; font-size: .875rem; font-weight: 500; text-align: left; min-height: 48px; transition: color .18s; }
.form-more-toggle:hover { color: #fff; }
.form-more-toggle .disclosure { color: #b3b3af; }
.form-more-toggle[aria-expanded="true"] .disclosure::after { transform: rotate(0); }
.form-more-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s cubic-bezier(.32,.72,0,1); }
.form-more-wrap.is-open { grid-template-rows: 1fr; }
.form-more { overflow: hidden; min-height: 0; visibility: hidden; transition: visibility 0s .5s; }
.form-more-wrap.is-open .form-more { visibility: visible; transition-delay: 0s; }
.form-more .form-grid { padding-top: 23px; }
.enquiry-dialog .form-more-toggle { display: none; }
.enquiry-dialog .form-more-wrap { grid-template-rows: 1fr; }
.enquiry-dialog .form-more { visibility: visible; }
.enquiry-dialog .form-more .form-grid { padding-top: 19px; }
@media (max-width: 1150px) { .enquiry-layout { grid-template-columns: .85fr 1.15fr; gap: 40px; } }
@media (max-width: 1000px) { .enquiry-layout { grid-template-columns: 1fr; gap: 36px; } .enquiry-copy > p:not(.eyebrow) { max-width: 560px; } .form-grid .field { grid-column: 1 / -1; } }

/* --- the floating WhatsApp button ---
   The one shadow in the system, and it is earned: this button floats over photography
   and body copy, where a hairline alone would not separate it. */
.wa-launcher { position: fixed; bottom: max(24px, env(safe-area-inset-bottom, 0px)); right: max(24px, env(safe-area-inset-right, 0px)); z-index: 40;
  display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 20px; border-radius: 999px;
  background: var(--lime); color: var(--ink); font-size: .9375rem; font-weight: 600; line-height: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  transition: background-color .18s, transform .25s cubic-bezier(.32,.72,0,1), bottom .38s cubic-bezier(.32,.72,0,1); }
.wa-launcher:hover { background: #ddff8b; color: var(--ink); transform: translateY(-2px); }
.wa-launcher svg { flex: 0 0 auto; }
.dialog-open .wa-launcher { display: none; }
@media (max-width: 680px) {
  /* Phones: the label crowds the thumb zone, so the button becomes a disc. */
  .wa-launcher { width: 54px; height: 54px; padding: 0; justify-content: center; gap: 0; bottom: max(14px, env(safe-area-inset-bottom, 0px)); right: max(14px, env(safe-area-inset-right, 0px)); }
  .wa-launcher-label { display: none; }
  .mobile-contact.is-visible ~ .wa-launcher { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}


/* ============================================================
   Inner pages — the same system, a page hero without a photograph
   ============================================================ */
.page-hero { padding-top: 26px; padding-bottom: 60px; }
.page-hero .hero-layout { grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); align-items: start; gap: 80px; }
.page-hero h1 { font-size: clamp(2.5rem, 4.1vw, 3.9rem); line-height: 1.03; letter-spacing: -.05em; max-width: 12em; text-wrap: pretty; }
.page-hero .hero-intro { max-width: 34em; }
.page-hero .hero-request { max-width: 34em; }
.crumb { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; }
.crumb a { color: #aaa; }
.crumb a:hover { color: #fff; }
.crumb span { color: #666; }
.page-index { border-top: 1px solid var(--line-dark); margin-top: 8px; }
.page-index .eyebrow { margin: 18px 0 6px; }
.page-index ol { list-style: none; margin: 0; padding: 0; }
.page-index li { border-bottom: 1px solid var(--line-dark); }
.page-index a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; min-height: 44px; font-size: .9375rem; color: #deded8; transition: color .18s; }
.page-index a:hover { color: var(--lime); }
.page-index a .mono { color: #7a7a77; font-size: .75rem; }
.page-index a:hover .mono { color: var(--lime); }
.process-list.tagged li { padding-top: 17px; }
.process-list .step-tag { display: block; margin-bottom: 22px; color: #64645e; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.process-list.four { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 30px; }
.process-list.four p { max-width: none; }
.lede-block { max-width: 46em; color: #474743; margin-top: 18px; font-size: 1.0625rem; line-height: 1.7; }
.terms-list { border-top: 1px solid var(--line-light); margin-top: 44px; }
.terms-list > div { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 22px; padding-block: 18px; border-bottom: 1px solid var(--line-light); align-items: baseline; }
.terms-list dt { font: 400 .75rem/1.7 var(--mono); text-transform: uppercase; letter-spacing: .055em; color: #65655e; }
.terms-list dd { font-size: 1rem; line-height: 1.7; color: #2a2a28; }
.sub-heading { margin-top: 56px; }
.sub-heading .eyebrow { margin-bottom: 12px; }
.sub-heading h3 { font-size: 1.5rem; letter-spacing: -.03em; }
.enquiry-compact { padding-block: 80px; border-block: 1px solid var(--line-dark); }
.enquiry-compact .enquiry-layout { align-items: end; }
.enquiry-compact .enquiry-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.enquiry-compact .enquiry-actions .button-lime { min-width: 252px; justify-content: space-between; }
.enquiry-compact .enquiry-side { border-left: 1px solid var(--line-dark); padding-left: 32px; display: flex; flex-direction: column; gap: 14px; }
.enquiry-compact .enquiry-side .eyebrow { margin-bottom: 0; }
.enquiry-compact .enquiry-side a, .enquiry-compact .enquiry-side span { font: 400 .9375rem/1.5 var(--mono); color: #f6f6f3; }
.enquiry-compact .enquiry-side a { color: var(--lime); }
.enquiry-compact .enquiry-side a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 1150px) {
  .page-hero .hero-layout { gap: 44px; }
  .process-list.four { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; }
}
@media (max-width: 900px) {
  .page-hero .hero-layout { grid-template-columns: 1fr; gap: 30px; }
  .page-index { margin-top: 0; }
  .terms-list > div { grid-template-columns: 1fr; gap: 4px; padding-block: 14px; }
}
@media (max-width: 680px) {
  .page-hero { padding-top: 15px; padding-bottom: 36px; }
  .page-hero h1 { font-size: clamp(2.1rem, 9.8vw, 2.9rem); }
  .process-list.four { grid-template-columns: 1fr; }
  .enquiry-compact { padding-block: 48px; }
  .enquiry-compact .enquiry-layout { grid-template-columns: 1fr; gap: 28px; }
  .enquiry-compact .enquiry-side { border-left: 0; padding-left: 0; }
  .enquiry-compact .enquiry-actions .button { width: 100%; min-width: 0; }
}

@media (max-width: 680px) {
  .process-list.tagged li { display: block; padding-top: 20px; }
  .process-list.tagged .step-tag { margin: 0 0 12px; }
  .process-list.tagged h3 { margin-bottom: 10px; }
}

/* --- flow: a three-node chain drawn in rules and type --- */
.flow { margin: 44px 0 0; }
.flow-track { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 34px; }
.flow-node { position: relative; padding-top: 20px; border-top: 2px solid var(--ink); }
.flow-node::after { content: ""; position: absolute; top: -6px; right: -24px; width: 9px; height: 9px; border-top: 2px solid var(--ink); border-right: 2px solid var(--ink); transform: rotate(45deg); }
.flow-node:last-child::after { display: none; }
.flow-step { display: block; margin-bottom: 20px; color: #64645e; font-size: .75rem; letter-spacing: .12em; }
.flow-title { font-size: 1.25rem; letter-spacing: -.025em; line-height: 1.25; margin-bottom: 10px; }
.flow-text { color: #55554f; line-height: 1.75; max-width: 24em; }
.flow figcaption { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line-light); font: 400 .75rem/1.7 var(--mono); letter-spacing: .04em; color: #65655e; }
@media (max-width: 900px) { .flow-track { gap: 24px; } .flow-node::after { right: -18px; } }
@media (max-width: 680px) { .flow-track { grid-template-columns: 1fr; gap: 26px; } .flow-node::after { display: none; } .flow-node { padding-top: 18px; } }

.desktop-nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -1px 0 var(--lime); }
.mobile-nav a[aria-current="page"] { color: #fff; }

/* --- split: the handover line, CAPRA on one side and the buyer on the other --- */
.split { margin: 44px 0 0; }
.split-grid { display: grid; grid-template-columns: minmax(0,1fr) 72px minmax(0,1fr); gap: 0 20px; align-items: stretch; }
.split-col { border-top: 2px solid var(--ink); padding-top: 18px; }
.split-tag { display: block; margin-bottom: 14px; color: #64645e; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.split ul { list-style: none; margin: 0; padding: 0; }
.split li { padding: 11px 0; border-bottom: 1px solid var(--line-light); font-size: 1rem; line-height: 1.6; color: #2a2a28; }
.split-rule { position: relative; display: flex; align-items: center; justify-content: center; }
.split-rule::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--ink); }
.split-rule span { position: relative; background: var(--paper); padding: 10px 0; writing-mode: vertical-rl; transform: rotate(180deg); font: 500 .75rem/1 var(--mono); text-transform: uppercase; letter-spacing: .18em; color: var(--ink); }
.split figcaption { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line-light); font: 400 .75rem/1.7 var(--mono); letter-spacing: .04em; color: #65655e; }
.proof { margin: 60px 0 0; }
.proof-media { border: 1px solid var(--line-light); overflow: hidden; background: #111; }
.proof-media img { display: block; width: 100%; height: auto; aspect-ratio: 1400 / 932; object-fit: cover; }
.proof-cap { display: grid; grid-template-columns: 290px minmax(0,1fr); gap: 22px; margin-top: 16px; align-items: baseline; }
.proof-cap-tag { font: 400 .75rem/1.7 var(--mono); text-transform: uppercase; letter-spacing: .12em; color: #65655e; }
.proof-cap-text { font-size: .9375rem; line-height: 1.7; color: #55554f; max-width: 46em; }
.note-block { max-width: 46em; color: #474743; margin-top: 34px; font-size: 1rem; line-height: 1.75; }
@media (max-width: 900px) { .proof-cap { grid-template-columns: 1fr; gap: 6px; } }
@media (max-width: 680px) {
  .split-grid { grid-template-columns: 1fr; gap: 22px; }
  .split-rule { height: 40px; }
  .split-rule::before { top: 50%; bottom: auto; left: 0; right: 0; width: auto; height: 1px; }
  .split-rule span { writing-mode: horizontal-tb; transform: none; padding: 0 12px; }
  .proof { margin-top: 44px; }
}

.process-list.two { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px; }
.process-list.two p { max-width: 30em; }
@media (max-width: 680px) { .process-list.two { grid-template-columns: 1fr; } }

.faq-list summary h3 { font: inherit; letter-spacing: inherit; line-height: inherit; margin: 0; }

/* The dialog form is a clone of the inline one; a cloned .rv would sit at opacity 0
   forever, because nothing inside a dialog ever intersects the viewport. */
.enquiry-dialog .rv, .enquiry-dialog .hv { opacity: 1 !important; transform: none !important; }

@media (max-width: 680px) {
  /* tap targets: every link a thumb has to hit clears 44px */
  .identity-list .text-link { min-height: 44px; }
  .footer-bottom a, .footer-bottom .mono { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-brand a { display: inline-flex; align-items: center; min-height: 44px; }
  .brand-disclaimer a, .form-help a { display: inline; }
  /* The breadcrumb sits in a tight mono row: grow the hit area, not the row. */
  .crumb a { padding-block: 13px; margin-block: -13px; }
  .enquiry-side a { min-height: 44px; display: inline-flex; align-items: center; }
}
