/* Locitall — Direction A, "The Statement". Mobile first. */

@font-face { font-family: "Anton"; font-weight: 400; font-display: swap; src: url(../fonts/anton.woff2) format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-weight: 400; font-display: swap; src: url(../fonts/space-grotesk-400.woff2) format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-weight: 500; font-display: swap; src: url(../fonts/space-grotesk-500.woff2) format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-weight: 700; font-display: swap; src: url(../fonts/space-grotesk-700.woff2) format("woff2"); }

:root {
  --ink: #151519;
  --ink-2: #202027;
  --vermilion: #F4472C;
  --cobalt: #244EEB;
  --citron: #D5EB43;
  --paper: #F7F5EF;
  --paper-2: #ECE9E0;
  --line-dark: #3A3A44;
  --line-paper: #D6D2C6;
  --muted-dark: #B9B9C2;   /* on ink: 9.6:1 */
  --muted-paper: #52525B;  /* on paper: 7.2:1 */

  --display: "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --body: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1440px;
  --section: clamp(4.5rem, 10vw, 9rem);
  --col-gap: clamp(12px, 2vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 1rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, figure, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; }
.hero :focus-visible, .home :focus-visible, .site-header :focus-visible,
.site-footer :focus-visible, .lightbox :focus-visible, .joseph :focus-visible { outline-color: var(--citron); }
.enquire :focus-visible { outline-color: var(--ink); }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--citron); color: var(--ink); padding: .75rem 1rem; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- Type ---------- */
.display {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3rem, 13vw, 7.5rem); line-height: .95; letter-spacing: -.01em;
}
.eyebrow {
  font-size: .8125rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.eyebrow .num { font-family: var(--display); font-size: 1rem; letter-spacing: .02em; }
.section-intro { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); max-width: 34rem; margin-top: 1.5rem; }
.accent { color: var(--vermilion); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 3.25rem; padding: .875rem 1.5rem;
  font: 700 .9375rem/1.2 var(--body); letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  border: 2px solid transparent; border-radius: 0; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--vermilion); color: var(--ink); }
.btn-primary:hover { background: var(--citron); }
.btn-ghost { border-color: var(--paper); color: var(--paper); }
.btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--cobalt); }
.btn-ink { background: var(--ink); color: var(--paper); width: 100%; }
.btn-ink:hover { background: var(--ink-2); color: var(--citron); }

.text-link {
  display: inline-flex; gap: .5rem; align-items: center; min-height: 44px;
  font-weight: 700; text-decoration: underline; text-underline-offset: .3em; text-decoration-thickness: 2px;
}

/* ---------- Header ---------- */
.site-header { background: var(--ink); color: var(--paper); position: relative; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 4.25rem; gap: 1rem; }
.wordmark {
  font: 400 1.75rem/1 var(--display); color: var(--citron); text-transform: uppercase;
  text-decoration: none; letter-spacing: .01em; padding-block: .5rem;
}
.menu-toggle {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 .25rem;
  background: none; border: 0; cursor: pointer;
  font-weight: 700; font-size: .875rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
}
.menu-toggle::after { content: ""; width: 18px; height: 10px; margin-left: .6rem; border-block: 2px solid currentColor; }
.menu-toggle[aria-expanded="true"]::after { height: 2px; border-bottom: 0; }

.nav-list { display: none; }
.site-header.is-open .nav-list {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--ink); border-top: 1px solid var(--line-dark);
  padding: .5rem var(--gutter) 1.5rem;
}
.site-header.is-open .nav-list a {
  display: flex; align-items: center; min-height: 3.25rem; text-decoration: none;
  font: 400 1.75rem/1 var(--display); text-transform: uppercase; border-bottom: 1px solid var(--line-dark);
}
.site-header.is-open .nav-list .nav-cta { color: var(--vermilion); border-bottom: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--paper); padding-bottom: clamp(3rem, 8vw, 6rem); overflow: hidden; }
.strands { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.motion .strands { opacity: 0; transition: opacity .9s ease; }
.motion .strands.is-ready { opacity: 1; }
.hero-grid { position: relative; z-index: 1; }
/* Vertical swipes scroll the page; sideways drags move the strands. */
.hero { touch-action: pan-y; }
.hero.can-grab { cursor: grab; }
.hero.is-grabbing { cursor: grabbing; user-select: none; -webkit-user-select: none; }
/* Strands run behind the text; a soft shadow keeps the smaller copy crisp. */
.hero-eyebrow, .hero-lead { text-shadow: 0 0 12px var(--ink), 0 0 4px var(--ink), 0 0 2px var(--ink); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.hero-eyebrow {
  display: flex; align-items: center; gap: .6rem; padding-top: 1.25rem;
  color: var(--citron); font-weight: 500; font-size: .875rem; letter-spacing: .16em; text-transform: uppercase;
}
.dot { width: .625rem; height: .625rem; background: var(--vermilion); border-radius: 50%; flex: none; }
.hero-title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.9rem, 19.5vw, 11.5rem); line-height: .92; letter-spacing: -.01em;
  margin-top: 1rem;
}
.hero-title .line { display: block; }
.hero-body { margin-top: 5.5rem; }   /* room for the locs growing from the headline */
.hero-lead { font-size: clamp(1.1875rem, 2vw, 1.5rem); line-height: 1.4; max-width: 32rem; text-wrap: balance; }
.actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.75rem; }
.hero-figure { position: relative; margin-top: 2.5rem; margin-inline: calc(var(--gutter) * -1); }
.hero-stage { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink-2); }
.hero-slide { position: absolute; inset: 0; display: block; overflow: hidden; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure figcaption {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 1rem;
  display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap;
}
.tag {
  background: var(--cobalt); color: #fff; font-weight: 700; font-size: .8125rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .6rem .85rem;
}
.credit {
  background: rgba(21, 21, 25, .82); color: var(--paper); font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; padding: .45rem .7rem;
}

.nowrap { white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Statement band ---------- */
.statement-band {
  background: var(--citron); color: var(--ink);
  font: 400 clamp(1.5rem, 5.4vw, 4.25rem)/1 var(--display); text-transform: uppercase;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .1em .45em;
  padding: clamp(1.1rem, 2.6vw, 2rem) var(--gutter); text-align: center;
}
.statement-band .sep { color: var(--vermilion); }

/* ---------- Work ---------- */
.work { padding-block: var(--section); }
.work-head .eyebrow .num { color: var(--vermilion); }
.work-head .section-intro { color: var(--muted-paper); }

.gallery { display: grid; gap: 2.5rem; margin-top: clamp(2.5rem, 6vw, 5rem); }
.plate { width: 88%; }
.plate:nth-child(even) { justify-self: end; }
.plate-link { display: block; position: relative; text-decoration: none; background: var(--paper-2); }
.plate-link img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.plate-open {
  position: absolute; right: 0; bottom: 0; background: var(--ink); color: var(--paper);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .6rem .85rem;
}
.plate-num { font: 400 1.5rem/1 var(--display); margin-top: .75rem; }
.plate:nth-child(3n+1) .plate-num { color: var(--vermilion); }
.plate:nth-child(3n+2) .plate-num { color: var(--cobalt); }

.work-cta {
  margin-top: clamp(3rem, 7vw, 6rem); padding-top: 2rem; border-top: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start;
}
.work-cta .tagline { font: 400 clamp(3rem, 11vw, 6.5rem)/.95 var(--display); text-transform: uppercase; }
.work-cta-line { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); font-weight: 500; margin-top: .75rem; }

/* ---------- Meet Joseph ---------- */
.joseph { background: var(--cobalt); color: #fff; padding-block: var(--section); }
.joseph-grid { display: grid; gap: 2.5rem; }
.joseph-figure { margin-inline: calc(var(--gutter) * -1); }
.joseph-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 0; }
.joseph .eyebrow { color: var(--citron); }
.joseph-name { color: var(--citron); font-size: clamp(3.5rem, 17vw, 9rem); }
.joseph-name span { display: block; }
.joseph-lead { font-size: clamp(1.25rem, 2.2vw, 1.625rem); line-height: 1.35; font-weight: 500; margin-block: 1.5rem 1.25rem; max-width: 26rem; }
.joseph-copy p + p { margin-top: 1rem; }
.joseph-copy > p:not(.eyebrow):not(.joseph-lead) { max-width: 34rem; }
.joseph .text-link { margin-top: 1.5rem; color: var(--citron); }

/* ---------- Home visits ---------- */
.home { background: var(--ink); color: var(--paper); padding-block: var(--section); }
.home .eyebrow { color: var(--citron); }
.home .section-intro { color: var(--muted-dark); }
.steps { display: grid; gap: 0; margin-top: clamp(2.5rem, 6vw, 4.5rem); counter-reset: step; }
.step { border-top: 1px solid var(--line-dark); padding-block: 1.75rem; display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); column-gap: 1rem; }
.step-num { font: 400 3rem/.9 var(--display); color: var(--citron); grid-row: span 2; }
.step h3 { font: 400 clamp(1.625rem, 3vw, 2.25rem)/1 var(--display); text-transform: uppercase; }
.step p { color: var(--muted-dark); margin-top: .75rem; max-width: 30rem; }
.notice {
  margin-top: 2rem; border-left: 6px solid var(--vermilion); background: var(--ink-2);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem; max-width: 46rem;
}
.notice-title { font-weight: 700; font-size: 1.125rem; color: #fff; }
.notice p + p { margin-top: .35rem; color: var(--muted-dark); }

/* ---------- Details ---------- */
.details { padding-block: var(--section); background: var(--paper); }
.details-head .eyebrow .num { color: var(--cobalt); }
.details-head .section-intro { color: var(--muted-paper); }
.facts { margin-top: 2.5rem; border-top: 2px solid var(--ink); }
.fact { border-bottom: 1px solid var(--line-paper); padding-block: 1.5rem; display: grid; gap: .75rem; }
.fact dt { font: 400 clamp(1.5rem, 3vw, 2rem)/1 var(--display); text-transform: uppercase; }
.fact dd { color: var(--muted-paper); max-width: 36rem; }
.fact dd.is-confirmed { color: var(--ink); }
.fact dd ul { list-style: none; display: grid; gap: .4rem; }
.fact dd li { padding-left: 1.25rem; position: relative; }
.fact dd li::before { content: ""; position: absolute; left: 0; top: .7em; width: .5rem; height: .5rem; background: var(--vermilion); }
.pending-tag {
  display: inline-block; margin-right: .5rem; padding: .15rem .5rem; vertical-align: .1em;
  background: var(--cobalt); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- Enquire ---------- */
.enquire { background: var(--vermilion); color: var(--ink); padding-block: var(--section); }
.enquire-grid { display: grid; gap: 3rem; }
.enquire .eyebrow .num { color: var(--ink); }
.enquire-lead { font-size: clamp(1.125rem, 1.8vw, 1.375rem); line-height: 1.45; margin-top: 1.5rem; max-width: 32rem; font-weight: 500; }
.contact-pending {
  margin-top: 1.75rem; background: var(--ink); color: var(--paper); padding: 1rem 1.25rem; max-width: 36rem;
}
.contact-pending strong { color: var(--citron); }
.contact-pending[hidden] { display: none; }
.enquiry-form { display: none; }
.js .enquiry-form { display: grid; gap: 1.25rem; margin-top: 2rem; max-width: 36rem; }
.field label { display: block; font-weight: 700; margin-bottom: .4rem; }
.optional { font-weight: 400; }
.field input, .field textarea {
  display: block; width: 100%; min-height: 3.25rem; padding: .75rem .9rem;
  background: var(--paper); color: var(--ink); border: 2px solid var(--ink); border-radius: 0;
  font-size: 1.0625rem; /* ≥16px avoids iOS zoom */
}
.field textarea { resize: vertical; min-height: 7.5rem; }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.field [aria-invalid="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); background: #FFF3F0; }
.hint { font-size: .9375rem; margin-top: .35rem; }
.field-error { font-weight: 700; font-size: .9375rem; margin-top: .35rem; }
.field-error::before { content: "! "; }
.form-note { font-size: .9375rem; }
.form-status:empty { display: none; }
.form-status { background: var(--ink); color: var(--paper); padding: 1rem 1.25rem; }
.form-status strong { color: var(--citron); }
.direct-contact { margin-top: 1.5rem; font-weight: 500; }
.direct-contact a { font-weight: 700; text-underline-offset: .25em; }
.wa-handle { font-weight: 500; }
.enquire-figure { width: 78%; justify-self: end; }
.enquire-figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 10%; border: 0; }
.enquire-figure figcaption { font: 400 1.25rem/1 var(--display); text-transform: uppercase; margin-top: .75rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(3.5rem, 7vw, 5.5rem) 6rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-mark { font: 400 clamp(3.5rem, 16vw, 8rem)/.9 var(--display); color: var(--citron); text-transform: uppercase; }
.footer-tagline { font: 400 clamp(1.75rem, 6vw, 3rem)/1 var(--display); text-transform: uppercase; margin-top: .5rem; }
.footer-line { margin-top: 1rem; color: var(--muted-dark); }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; font-weight: 500; }
.footer-nav a:hover { color: var(--citron); text-decoration: underline; }
.footer-small { font-size: .875rem; color: var(--muted-dark); border-top: 1px solid var(--line-dark); padding-top: 1.25rem; }

/* ---------- Floating mobile enquiry button ---------- */
.float-cta {
  position: fixed; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); z-index: 30;
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 1rem;
  background: var(--vermilion); color: var(--ink); text-decoration: none;
  font-weight: 700; font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 0 0 2px var(--ink);
  visibility: hidden; opacity: 0; transform: translateY(8px);
}
.float-cta.is-visible { visibility: visible; opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0;
  background: var(--ink); color: var(--paper);
}
.lightbox[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.lightbox::backdrop { background: rgba(21, 21, 25, .96); }
.lightbox-bar, .lightbox-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem var(--gutter); }
.lightbox-count { font: 400 1.25rem/1 var(--display); letter-spacing: .02em; text-transform: uppercase; color: var(--citron); }
.lightbox-btn {
  min-height: 48px; min-width: 48px; padding: 0 1rem; background: transparent; color: var(--paper);
  border: 2px solid var(--line-dark); cursor: pointer; font-weight: 700; font-size: .875rem; letter-spacing: .08em; text-transform: uppercase;
}
.lightbox-btn:hover { border-color: var(--paper); }
.lightbox-figure { min-height: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; justify-items: center; padding: 0 var(--gutter); }
.lightbox-figure img { align-self: center; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; min-height: 0; }
.lightbox-figure figcaption { font-size: .9375rem; color: var(--muted-dark); max-width: 44rem; text-align: center; padding-top: .75rem; }

/* ---------- Motion (only when welcome) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .float-cta { transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s; }
  .float-cta.is-visible { transition: opacity .2s ease, transform .2s ease, visibility 0s; }
  .plate-link img { transition: filter .25s ease; }
  .plate-link:hover img { filter: brightness(1.04); }
  .lightbox[open] { animation: fade-in .18s ease-out; }
  @keyframes fade-in { from { opacity: 0; } }
}

/* ---------- Entrance motion ----------
   Active only with html.motion (set by motion-init.js when reduced motion
   isn't requested). Without it, everything is simply visible. */
.line { display: block; }
.line-inner { display: block; }
.motion .hero-title .line, .motion [data-reveal="lines"] .line { overflow: hidden; padding-block: .06em .08em; margin-block: -.06em -.08em; }
.motion [data-reveal="lines"] .line-inner { transform: translateY(105%); transition: transform .9s var(--ease-out); }
.motion [data-reveal="lines"].is-in .line-inner { transform: none; }

:root { --ease-out: cubic-bezier(.16, 1, .3, 1); --ease-wipe: cubic-bezier(.77, 0, .18, 1); }

.motion [data-reveal=""] {
  opacity: 0; transform: translateY(12px);
  transition: opacity .7s ease, transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.motion [data-reveal=""].is-in { opacity: 1; transform: none; }

.motion [data-reveal="fade"] { opacity: 0; transition: opacity 1.1s ease; }
.motion [data-reveal="fade"].is-in { opacity: 1; }

/* Hero: a timed entrance on load */
@keyframes rise { from { transform: translateY(110%); } }
@keyframes settle { from { scale: 1.04; } }
@keyframes fade-in { from { opacity: 0; } }

.motion .hero-eyebrow { animation: fade-in .6s ease both; }
.motion .hero-title .line-inner { animation: rise .9s var(--ease-out) .1s both; }
.motion .hero-title .line + .line .line-inner { animation-delay: .2s; }
.motion .hero-body { animation: fade-in .8s ease .6s both; }
/* The photograph waits until it has loaded (site.js adds .is-loaded) before fading in. */
.motion .hero-figure:not(.is-loaded) .hero-slide { opacity: 0; }
.motion .hero-figure:not(.is-loaded)::before,
.motion .hero-figure:not(.is-loaded) figcaption > * { opacity: 0; }
.motion .hero-figure.is-loaded .hero-slide { animation: fade-in .9s ease both; }
.motion .hero-figure.is-loaded .hero-slide img { animation: settle 1.6s var(--ease-out) both; }
.motion .hero-figure.is-loaded::before { animation: fade-in .9s ease .4s both; }
.motion .hero-figure.is-loaded figcaption > * { animation: fade-in .6s ease .7s both; }



/* Hover detail */
.plate-link { overflow: hidden; }
.plate-open { transition: transform .35s var(--ease-out), background-color .2s; }
@media (hover: hover) {
  .motion .plate-link img { transition: scale 1.8s var(--ease-out), filter .25s ease; }
  .motion .plate-link.is-in:hover img { scale: 1.035; transition-duration: .9s; }
  .plate-link:hover .plate-open { background: var(--vermilion); color: var(--ink); }
  .btn-primary, .btn-dark, .btn-ink, .nav-cta { position: relative; }
  .text-link span { transition: transform .3s var(--ease-out); }
  .text-link:hover span { transform: translateX(6px); }
}

/* =================== Tablet ≥ 600px =================== */
@media (min-width: 600px) {
  .actions { flex-direction: row; flex-wrap: wrap; }
  .hero-figure { margin-inline: 0; width: 82%; justify-self: end; }
  .hero-figure figcaption { left: 1rem; right: 1rem; }

  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--col-gap); row-gap: 3rem; }
  .plate { width: 100%; }
  .plate:nth-child(even) { margin-top: 5rem; }

  .joseph-figure { margin-inline: 0; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: var(--col-gap); }
  .step { display: block; border-top-width: 2px; border-top-color: var(--citron); }
  .step-num { display: block; font-size: 4rem; margin-bottom: 1.25rem; }
  .fact { grid-template-columns: minmax(0, 14rem) minmax(0, 1fr); column-gap: var(--col-gap); align-items: baseline; }
  .enquire-figure { width: 60%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-small { grid-column: 1 / -1; }
}

/* =================== Desktop ≥ 960px =================== */
@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .nav-list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.25rem); }
  .nav-list a { text-decoration: none; font-weight: 500; font-size: .9375rem; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 44px; }
  .nav-list a:hover { color: var(--citron); }
  .nav-list .nav-cta {
    background: var(--vermilion); color: var(--ink); padding: 0 1.1rem; font-weight: 700;
    font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase;
  }
  .nav-list .nav-cta:hover { background: var(--citron); color: var(--ink); }
  .float-cta { display: none; }

  /* Hero: headline runs across the photograph's edge on a 12-column grid. */
  .hero { padding-bottom: clamp(4rem, 7vw, 7rem); }
  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap);
    grid-template-rows: auto auto 1fr;
  }
  .hero-eyebrow { grid-column: 1 / 8; grid-row: 1; padding-top: 3rem; }
  .hero-title { grid-column: 1 / 11; grid-row: 2; z-index: 2; position: relative; font-size: clamp(6rem, 11.4vw, 12rem); margin-top: 1.5rem; }
  .hero-body { grid-column: 1 / 7; grid-row: 3; align-self: end; margin-top: 2.5rem; }
  .hero-figure {
    grid-column: 8 / 13; grid-row: 1 / 4; width: 100%; margin-top: 3rem; align-self: start;
  }
  .hero-figure::before {
    content: ""; position: absolute; z-index: 0; inset: 2.5rem -1.25rem -1.25rem 2.5rem; background: var(--cobalt);
  }
  .hero-stage { z-index: 1; }
  .hero-figure figcaption { z-index: 2; }

  /* Work: an asymmetric editorial layout, every image kept at its natural 3:4. */
  .work-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); align-items: end; }
  .work-head .eyebrow { grid-column: 1 / -1; }
  .work-head .display { grid-column: 1 / 8; font-size: clamp(5rem, 9vw, 9rem); }
  .work-head .section-intro { grid-column: 9 / 13; margin: 0 0 .5rem; }

  .gallery { grid-template-columns: repeat(12, minmax(0, 1fr)); row-gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .plate.plate-1 { grid-column: 1 / 8; margin-top: 0; }
  .plate.plate-2 { grid-column: 9 / 13; margin-top: 14rem; }
  .plate.plate-3 { grid-column: 2 / 6; margin-top: 4rem; }
  .plate.plate-4 { grid-column: 7 / 13; margin-top: 0; }
  .plate.plate-5 { grid-column: 1 / 7; margin-top: 0; }
  .plate.plate-6 { grid-column: 8 / 12; margin-top: 10rem; }
  .plate-num { font-size: 2rem; }

  .work-cta { flex-direction: row; justify-content: space-between; align-items: flex-end; }

  .joseph-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); align-items: center; }
  .joseph-figure { grid-column: 1 / 6; }
  .joseph-copy { grid-column: 7 / 13; }
  .joseph-name { font-size: clamp(6rem, 10vw, 10rem); }

  .home-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); align-items: end; }
  .home-head .eyebrow { grid-column: 1 / -1; }
  .home-head .display { grid-column: 1 / 8; font-size: clamp(5rem, 9vw, 9rem); }
  .home-head .section-intro { grid-column: 8 / 13; margin: 0 0 .5rem; }
  .notice { margin-top: 3rem; }

  .details-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); align-items: start; }
  .details-head { grid-column: 1 / 6; position: sticky; top: 2rem; }
  .facts { grid-column: 7 / 13; margin-top: .5rem; }
  .fact { grid-template-columns: 1fr; }

  .enquire-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--col-gap); align-items: start; }
  .enquire-copy { grid-column: 1 / 7; }
  .enquire-copy .display { font-size: clamp(5rem, 8.4vw, 8.5rem); }
  .enquire-figure { grid-column: 8 / 13; width: 100%; margin-top: 4rem; }

  .footer-grid { grid-template-columns: 2fr 1fr; align-items: end; }
  .site-footer { padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }
}

@media (min-width: 1280px) {
  .fact { grid-template-columns: minmax(0, 12rem) minmax(0, 1fr); }
}

/* Lightbox: side-by-side controls on larger screens */
@media (min-width: 960px) {
  .lightbox-figure { padding: 0 6rem; }
  .lightbox-nav { position: absolute; inset: 50% 0 auto 0; transform: translateY(-50%); pointer-events: none; }
  .lightbox-nav .lightbox-btn { pointer-events: auto; background: var(--ink); }
}

@media print {
  .site-header, .float-cta, .enquiry-form, .lightbox { display: none !important; }
}

/* ---------- 404 ---------- */
.not-found { min-height: 100vh; display: flex; align-items: center; padding-block: 4rem; }
