/* Pannon Stay — modular poster design system, 2026 */
:root {
  --paper: #f2efe7;
  --surface: #fffdf7;
  --surface-alt: #dfe3e8;
  --ink: #17191f;
  --ink-soft: #30343d;
  --muted: #5b626d;
  --line: #aeb4bc;
  --lime: #c8fa46;
  --lime-dark: #769500;
  --violet: #7057f5;
  --violet-dark: #4d38c7;
  --white: #fff;
  --danger: #a72620;
  --focus: #7057f5;
  --rail: 272px;
  --max: 1280px;
  --narrow: 780px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Trebuchet MS", "Segoe UI", sans-serif;
  --mono: "Courier New", Courier, monospace;
  --shadow-hard: 12px 12px 0 var(--ink);
  --cut-sm: 12px;
  --cut-lg: 28px;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.4rem;
  --space-5: 4rem;
  --space-6: 6.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
}
main,
.site-footer { margin-left: var(--rail); }
img { display: block; max-width: 100%; }
a {
  color: var(--violet-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: .22em;
}
a:hover { color: var(--ink); }
button,
input,
select { font: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 4px solid var(--focus); outline-offset: 4px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
h1,
h2,
h3 {
  margin: 0 0 .55em;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(3.25rem, 7.6vw, 7.8rem); }
h2 { font-size: clamp(2.6rem, 5.2vw, 5.4rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.02; }
p { margin: 0 0 1.15em; }
ul,
ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li + li { margin-top: .38em; }
.container { width: min(calc(100% - 4rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 4rem), var(--narrow)); margin-inline: auto; }
.section {
  position: relative;
  padding: var(--space-6) 0;
  border-top: 2px solid var(--ink);
}
.section::before {
  position: absolute;
  top: 1.15rem;
  left: 2rem;
  color: var(--muted);
  content: "P/ST — EVENT STUDIO";
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .1em;
}
.section--tight { padding: var(--space-5) 0; }
.section--white { background: var(--surface); }
.section--blue { background: var(--ink); color: #e6e8ed; }
.section--blue::before { color: var(--lime); }
.section--blue h2,
.section--blue h3,
.section--blue a { color: var(--white); }
.section--mist { background: #d9dde2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.35rem;
  padding: .35rem .65rem;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.25;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.eyebrow::before { content: "["; }
.eyebrow::after { content: "]"; }
.lead {
  max-width: 66ch;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.5;
}
.section--blue .lead { color: #d7dbe1; }
.measure { max-width: 68ch; }
.skip-link {
  position: fixed;
  z-index: 10000;
  top: .6rem;
  left: .6rem;
  padding: .8rem 1rem;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 auto 0 0;
  width: var(--rail);
  border-right: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}
.masthead {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.5rem;
}
.brand {
  display: block;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #494d57;
}
.brand img { width: 205px; height: auto; }
.utility {
  order: 5;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #494d57;
  color: #c5c9d1;
  font-family: var(--mono);
  font-size: .68rem;
  line-height: 1.55;
}
.utility__inner { display: grid; gap: .65rem; }
.utility a { color: var(--lime); text-decoration: none; }
.main-nav {
  display: block;
  margin: 2.2rem 0 1.5rem;
}
.nav-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: nav;
  list-style: none;
}
.nav-list li {
  margin: 0;
  border-bottom: 1px solid #494d57;
  counter-increment: nav;
}
.nav-list a {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .5rem;
  padding: .75rem 0;
  color: #eceef1;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.nav-list a::before {
  color: #7e8490;
  content: "0" counter(nav);
  font-family: var(--mono);
  font-size: .68rem;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] { color: var(--lime); }
.nav-list a[aria-current="page"]::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 9px;
  background: var(--lime);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.header-cta {
  width: 100%;
  margin-top: .5rem;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--lime);
  background: transparent;
  color: var(--lime);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .78rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%);
  transition: background .18s, color .18s, transform .18s;
}
.button::after { content: "↗"; font-size: 1.05rem; }
.button:hover {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
  transform: translate(-3px, -3px);
}
.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}
.button--outline { background: transparent; color: var(--ink); }
.section--blue .button--outline { border-color: var(--white); color: var(--white); }
.button--copper {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}
.button--copper:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  margin-top: 1.8rem;
}
.button-row--center { justify-content: center; }
.text-link { font-weight: 800; text-transform: uppercase; }
.text-blue { color: var(--violet-dark) !important; }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  overflow: hidden;
  background: var(--paper);
}
.hero::before {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 34px;
  background: var(--lime);
  content: "";
  transform: skewX(-8deg);
  transform-origin: top;
}
.hero::after {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 1.5rem;
  color: var(--white);
  content: "01 / ARRIVAL";
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}
.hero__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero .container {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
}
.hero__content {
  width: min(53%, 760px);
  padding: 6rem 2.2rem 5rem 0;
  color: var(--ink);
}
.hero h1 {
  max-width: 8.7ch;
  color: var(--ink);
  font-size: clamp(4.1rem, 8.2vw, 8.4rem);
}
.hero .eyebrow { color: var(--ink); }
.hero__lead {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.27rem);
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(690px, 100%);
  margin-top: 2.6rem;
  border: 2px solid var(--ink);
  background: var(--surface);
  font-family: var(--mono);
  font-size: .72rem;
  line-height: 1.35;
}
.hero-facts span { padding: 1rem; border-right: 1px solid var(--ink); }
.hero-facts span:last-child { border-right: 0; }
.hero-facts strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--violet);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  border-bottom: 2px solid var(--ink);
  background: var(--surface);
}
.page-hero::after {
  position: absolute;
  top: 0;
  right: -6rem;
  width: 30%;
  height: 18px;
  background: var(--violet);
  content: "";
  transform: skewX(-36deg);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
}
.page-hero__image {
  aspect-ratio: 5 / 6;
  width: 100%;
  object-fit: cover;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%);
}
.breadcrumbs {
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.breadcrumbs a { color: inherit; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.4rem; }
.grid-3 > * { grid-column: span 4; }
.grid-3 > :nth-child(2) { transform: translateY(1.8rem); }
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  border: 2px solid var(--ink);
  background: var(--ink);
}
.grid-4 > * { background: var(--surface); }
.split {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}
.split--reverse { grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); }
.split--reverse > :first-child {
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--lime);
}
.sticky-intro { position: sticky; top: 3rem; }
.rule-top { padding-top: 1.35rem; border-top: 3px solid var(--ink); }
.service-index {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.service-card {
  position: relative;
  grid-column: span 5;
  min-height: 310px;
  padding: 2rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%);
  transition: background .18s, color .18s, transform .18s;
}
.service-card:nth-child(3n + 1) { grid-column: span 7; }
.service-card:nth-child(4n + 2) { background: var(--lime); }
.service-card:nth-child(3n) { margin-top: 2rem; }
.service-card::after {
  position: absolute;
  right: 1.1rem;
  bottom: .8rem;
  color: var(--ink);
  content: "↗";
  font-size: 2rem;
}
.service-card:hover {
  z-index: 2;
  background: var(--violet);
  color: var(--white);
  transform: translate(-5px, -5px);
  box-shadow: 9px 9px 0 var(--ink);
}
.service-card:hover h3,
.service-card:hover a,
.service-card:hover .service-card__number,
.service-card:hover::after { color: var(--white); }
.service-card__number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--violet);
  font-family: var(--mono);
  font-size: .9rem;
  font-weight: 700;
}
.service-card p { max-width: 58ch; color: inherit; }
.service-card a { color: var(--ink); font-weight: 800; text-transform: uppercase; }
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.6rem;
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--ink);
}
.note__mark {
  min-width: 78px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3rem;
  line-height: .9;
}
.note p:last-child { margin-bottom: 0; }
.timeline { counter-reset: journey; margin: 0; padding: 0; list-style: none; }
.timeline li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-top: 2px solid var(--ink);
  counter-increment: journey;
}
.timeline li::before {
  content: "[" counter(journey, decimal-leading-zero) "]";
  color: var(--violet);
  font-family: var(--mono);
  font-size: .9rem;
  font-weight: 700;
}
.timeline strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) 1.35fr;
  gap: 2rem;
  padding: 1.7rem 0;
  border-top: 2px solid var(--ink);
}
.feature-row h3 { font-size: 1.55rem; }
.feature-row p { max-width: 70ch; color: var(--muted); }
.feature-row p:last-child { margin-bottom: 0; }
.audience-block { min-height: 230px; padding: 1.6rem; }
.audience-block span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--violet);
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 700;
}
.gallery {
  display: grid;
  grid-template-columns: 1.45fr .7fr .85fr;
  grid-template-rows: 300px 240px;
  gap: .8rem;
}
.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
}
.gallery figure:first-child { grid-row: span 2; }
.gallery figure:last-child { grid-column: span 2; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72);
  transition: filter .3s, transform .4s;
}
.gallery figure:hover img { filter: saturate(1); transform: scale(1.025); }
.gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.8rem .9rem .75rem;
  background: linear-gradient(transparent, rgba(23, 25, 31, .9));
  color: #fff;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.quote {
  position: relative;
  min-height: 320px;
  margin: 0;
  padding: 2rem;
  border: 2px solid var(--ink);
  background: var(--surface);
}
.quote::before {
  display: block;
  margin-bottom: 2rem;
  color: var(--violet);
  content: "“";
  font-family: var(--display);
  font-size: 5rem;
  line-height: .5;
}
.quote p { font-size: 1.1rem; font-weight: 700; line-height: 1.5; }
.quote cite {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .7rem;
  font-style: normal;
  text-transform: uppercase;
}
.scenario {
  min-height: 250px;
  padding: 1.6rem;
  border: 2px solid #656a73;
  background: #24272e;
}
.scenario:nth-child(2) { background: var(--lime); color: var(--ink); transform: translateY(1.8rem); }
.scenario:nth-child(2) strong { color: var(--ink); }
.scenario strong {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: .78rem;
  text-transform: uppercase;
}
.stat {
  min-height: 210px;
  padding: 1.6rem;
  border-right: 1px solid var(--ink);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  color: var(--violet);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1;
}

.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 2px solid var(--ink); }
.faq summary {
  position: relative;
  padding: 1.35rem 3.2rem 1.35rem 0;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  position: absolute;
  top: .9rem;
  right: .2rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--lime);
  content: "+";
  font-family: var(--mono);
  font-size: 1.2rem;
}
.faq details[open] summary::after { content: "−"; background: var(--violet); color: var(--white); }
.faq__answer { max-width: 72ch; padding: 0 3.2rem 1.4rem 0; color: var(--muted); }

.enquiry-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.form-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 12px 12px 0 var(--violet);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label,
.checkbox label {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: .72rem .85rem;
  border: 2px solid #737985;
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
}
.field input:focus,
.field select:focus { border-color: var(--lime); outline-color: var(--lime); }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #ff746d;
  box-shadow: 0 0 0 2px rgba(255, 116, 109, .18);
}
.field-error { min-height: 1.15rem; color: #ff938e; font-size: .76rem; }
.checkbox { display: grid; grid-template-columns: 22px 1fr; gap: .65rem; align-items: start; }
.checkbox input { width: 18px; height: 18px; margin-top: .25rem; accent-color: var(--lime); }
.checkbox a { color: var(--lime); }
.form-status { min-height: 1.5rem; color: #ff938e; font-weight: 700; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 2px solid var(--ink);
}
.contact-list strong { color: var(--violet-dark); text-transform: uppercase; }

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 2rem;
  padding: 1.4rem;
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--ink);
}
.legal-nav::before {
  display: block;
  margin-bottom: 1rem;
  content: "TARTALOM / INDEX";
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
}
.legal-nav ul { margin: 0; padding: 0; list-style: none; }
.legal-nav li + li { margin-top: .7rem; }
.legal-nav a { color: var(--ink); font-size: .86rem; font-weight: 700; }
.legal-content h2 {
  margin-top: 3.5rem;
  padding-top: .7rem;
  border-top: 3px solid var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}
.legal-content h3 { margin-top: 2.4rem; font-size: 1.65rem; }
.legal-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: .9rem;
}
.legal-content th,
.legal-content td {
  padding: .85rem;
  border: 2px solid var(--ink);
  text-align: left;
  vertical-align: top;
}
.legal-content th { background: var(--lime); color: var(--ink); }

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 2px solid var(--ink);
  background: var(--violet);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%);
}
.cta-band h2 { color: var(--white); font-size: clamp(2.3rem, 4vw, 4rem); }
.cta-band p { max-width: 65ch; margin-bottom: 0; }

.site-footer { border-top: 2px solid var(--ink); background: var(--ink); color: #cfd2d8; }
.footer-enquiry { padding: 4rem 0; border-bottom: 1px solid #4a4f58; background: var(--lime); color: var(--ink); }
.footer-enquiry__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer-enquiry h2 { max-width: 13ch; color: var(--ink); font-size: clamp(2.5rem, 5vw, 5rem); }
.footer-enquiry .eyebrow { background: var(--ink); color: var(--lime); }
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr .85fr .85fr;
  gap: 4rem;
  padding: 4rem 0;
}
.footer-logo { width: 210px; margin-bottom: 2rem; }
.footer-main h3 {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { padding: .28rem 0; border-bottom: 1px solid #393d45; }
.footer-links a { color: #e5e7eb; }
.footer-meta {
  padding: 1.4rem 0;
  border-top: 1px solid #4a4f58;
  color: #9ea4ae;
  font-family: var(--mono);
  font-size: .68rem;
}
.footer-meta__inner { display: flex; justify-content: space-between; gap: 1rem; }
.cookie-settings-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--lime);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.consent-banner {
  position: fixed;
  z-index: 5000;
  right: 1rem;
  bottom: 1rem;
  display: none;
  width: min(calc(100% - 2rem), 980px);
  padding: 1.5rem;
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: 10px 10px 0 var(--ink);
}
.consent-banner.is-visible { display: block; }
.consent-banner__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: end;
}
.consent-banner h2 {
  margin-bottom: .55rem;
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}
.consent-banner p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.consent-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.consent-actions button {
  min-height: 46px;
  padding: .55rem .65rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  cursor: pointer;
}
.consent-actions button:first-child { background: var(--lime); }
.consent-actions button:hover { background: var(--violet); color: #fff; }
.consent-modal {
  position: fixed;
  z-index: 6000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(16, 18, 23, .84);
}
.consent-modal.is-visible { display: flex; }
.consent-dialog {
  width: min(100%, 650px);
  max-height: 90vh;
  overflow: auto;
  padding: 2rem;
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: 12px 12px 0 var(--lime);
}
.consent-dialog__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.consent-dialog__top h2 { font-size: 2.1rem; }
.consent-close {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
}
.consent-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 2px solid var(--ink);
}
.consent-category strong { display: block; color: var(--ink); }
.consent-category p,
.consent-copy { margin: .25rem 0 0; color: var(--muted); font-size: .86rem; font-weight: 400; }
.consent-copy { display: block; }
.switch input { width: 22px; height: 22px; accent-color: var(--violet); }
.consent-modal__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 1.5rem;
}

.thank-you {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 5rem 1rem;
  background: var(--lime);
}
.thank-you__panel {
  max-width: 760px;
  padding: clamp(2rem, 6vw, 5rem);
  border: 2px solid var(--ink);
  background: var(--surface);
  text-align: center;
  box-shadow: 14px 14px 0 var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%);
}
.thank-you__mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
  border: 2px solid var(--ink);
  background: var(--violet);
  color: var(--white);
  font-family: var(--display);
  font-size: 2.4rem;
  transform: rotate(-4deg);
}

@media (max-width: 1180px) {
  :root { --rail: 228px; }
  .masthead { padding: 1.25rem; }
  .brand img { width: 175px; }
  .nav-list a { font-size: .75rem; }
  .hero h1 { font-size: clamp(3.7rem, 7.8vw, 7rem); }
}

@media (max-width: 960px) {
  :root { --rail: 0px; }
  body { padding-top: 76px; }
  main,
  .site-footer { margin-left: 0; }
  .site-header {
    inset: 0 0 auto 0;
    width: 100%;
    height: 76px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .masthead {
    min-height: 76px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
  }
  .brand { padding: 0; border: 0; }
  .brand img { width: 165px; }
  .utility { display: none; }
  .menu-toggle { display: grid; place-items: center; grid-column: 3; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow: auto;
    margin: 0;
    padding: 1rem;
    border-bottom: 2px solid var(--ink);
    background: var(--ink);
  }
  .main-nav.is-open { display: block; }
  .nav-list a { padding: 1rem .3rem; font-size: .9rem; }
  .header-cta { display: none; }
  .page-hero__grid,
  .enquiry-grid { grid-template-columns: 1fr; }
  .page-hero__image { max-width: 680px; aspect-ratio: 16 / 10; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --space-6: 4.8rem; --space-5: 3.3rem; }
  body { font-size: 15px; }
  .container,
  .narrow { width: min(calc(100% - 2rem), var(--max)); }
  .section::before { left: 1rem; }
  h1 { font-size: clamp(3rem, 16vw, 5.4rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 4.2rem); }
  .hero {
    min-height: auto;
    display: block;
    padding-bottom: 0;
  }
  .hero::before {
    top: 42%;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 18px;
    transform: skewY(-3deg);
  }
  .hero::after { right: .7rem; bottom: .8rem; }
  .hero__image {
    position: relative;
    width: 100%;
    height: 48vh;
    min-height: 320px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
  }
  .hero .container { display: block; }
  .hero__content {
    width: 100%;
    padding: 3.6rem 0 3rem;
  }
  .hero h1 { max-width: 9ch; font-size: clamp(3.7rem, 18vw, 6rem); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts span { border-right: 0; border-bottom: 1px solid var(--ink); }
  .hero-facts span:last-child { border-bottom: 0; }
  .page-hero { padding: 4rem 0 3.5rem; }
  .page-hero__grid { gap: 2.5rem; }
  .page-hero h1 { font-size: clamp(3.2rem, 16vw, 5.6rem); }
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .split--reverse,
  .legal-layout { grid-template-columns: 1fr; }
  .grid-3 > * { grid-column: 1; }
  .grid-3 > :nth-child(2),
  .scenario:nth-child(2) { transform: none; }
  .sticky-intro,
  .legal-nav { position: static; }
  .service-index { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(3n + 1) {
    grid-column: 1;
    min-height: auto;
    margin-top: 0;
  }
  .feature-row { grid-template-columns: 1fr; gap: .3rem; }
  .timeline li { grid-template-columns: 56px 1fr; gap: .8rem; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 210px 210px;
  }
  .gallery figure:first-child { grid-column: span 2; grid-row: auto; }
  .gallery figure:last-child { grid-column: span 2; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .contact-list li { grid-template-columns: 1fr; gap: .2rem; }
  .cta-band,
  .footer-enquiry__inner,
  .footer-meta__inner { grid-template-columns: 1fr; display: grid; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-main > :first-child { grid-column: auto; }
  .consent-banner {
    right: .65rem;
    bottom: .65rem;
    width: calc(100% - 1.3rem);
    max-height: calc(100vh - 1.3rem);
    overflow: auto;
  }
  .consent-banner__grid { grid-template-columns: 1fr; gap: 1rem; }
  .consent-actions,
  .consent-modal__actions { grid-template-columns: 1fr; }
  .thank-you__panel { box-shadow: 9px 9px 0 var(--ink); }
}

@media (max-width: 420px) {
  .masthead { grid-template-columns: 145px 1fr auto; }
  .brand img { width: 140px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 230px); }
  .gallery figure:first-child,
  .gallery figure:last-child { grid-column: 1; }
}

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