/* LaunchCraft Co — Light Warm Precision Launch Agency */
:root {
  --bg-parchment: #F7F3EC;
  --text-on-light: #1C1917;
  --bg-stone: #EDE6DC;
  --bg-mist: #F3E6DA;
  --bg-accent: #C4713D;
  --text-on-accent: #1C1917;
  --text-muted: #5C534C;
  --bg-espresso: #1C1917;
  --text-on-espresso: #F7F3EC;
  --copper: #C4713D;
  --radius-card: 12px;
  --radius-btn: 4px;
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --util-h: 36px;
  --shadow-soft: 0 12px 32px rgba(28, 25, 23, 0.08);
  --shadow-lift: 0 18px 40px rgba(28, 25, 23, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--bg-parchment);
  overflow-x: hidden;
}
body.panel-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--copper); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

.surface-parchment { background: #F7F3EC; color: #1C1917; }
.surface-stone { background: #EDE6DC; color: #1C1917; }
.surface-mist { background: #F3E6DA; color: #1C1917; }
.surface-accent { background: #C4713D; color: #1C1917; }
.surface-espresso { background: #1C1917; color: #F7F3EC; }
.surface-cta { background: #EDE6DC; color: #1C1917; }
.surface-parchment *, .surface-stone *, .surface-mist *, .surface-cta * { color: inherit; }
.surface-espresso a { color: #F7F3EC; }
.surface-espresso a:hover { color: #F3E6DA; }
.surface-accent a { color: #1C1917; }
.surface-cta a:not(.btn) { color: #1C1917; }
.surface-cta a:not(.btn):hover { color: var(--copper); }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.wrap-wide {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.launch-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.copper-rule {
  height: 1px;
  background: var(--copper);
  opacity: 0.55;
  border: 0;
  margin: 0 0 1.5rem;
}
.mist-bar {
  height: 24px;
  background: var(--bg-mist);
  border: 0;
  margin: 0;
}
.muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
a.btn.btn-copper,
button.btn.btn-copper,
.btn.btn-copper,
.header-cta.btn-copper,
.panel-cta.btn-copper,
.cookie-banner .btn-copper,
.surface-cta .btn-copper,
.cta-band .btn-copper {
  background: #C4713D;
  color: #ffffff !important;
  border-color: #C4713D;
}
a.btn.btn-copper:hover,
button.btn.btn-copper:hover,
.btn.btn-copper:hover,
.header-cta.btn-copper:hover,
.panel-cta.btn-copper:hover,
.cookie-banner .btn-copper:hover,
.surface-cta .btn-copper:hover,
.cta-band .btn-copper:hover {
  box-shadow: var(--shadow-soft);
  color: #ffffff !important;
}
.btn-ghost-light {
  background: transparent;
  color: #F7F3EC;
  border-color: #F7F3EC;
}
.btn-ghost-light:hover { background: rgba(247, 243, 236, 0.12); color: #F7F3EC; }
.btn-outline-copper {
  background: transparent;
  color: var(--text-on-light);
  border-color: var(--copper);
}
.btn-outline-copper:hover { background: var(--bg-mist); color: var(--text-on-light); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Utility bar + header */
.utility-bar {
  font-size: 13px;
  min-height: var(--util-h);
  display: flex;
  align-items: center;
}
.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  padding: 0.45rem 0;
}
.utility-bar a { text-decoration: none; font-weight: 500; }
.utility-bar a:hover { color: var(--copper); }

.launch-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(196, 113, 61, 0.18);
  transition: box-shadow 0.25s ease;
}
.launch-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(196, 113, 61, 0.12);
}
.launch-header .header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-on-light);
  flex-shrink: 0;
}
.logo:hover { color: var(--text-on-light); }
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem 1.35rem;
  margin-left: auto;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.nav-desktop a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 0.35rem 0;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--copper); }
.header-cta { display: none; margin-left: 0.5rem; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(28, 25, 23, 0.15);
  border-radius: var(--radius-btn);
  background: transparent;
  cursor: pointer;
  color: var(--text-on-light);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Right-edge panel */
.launch-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 1.25rem 1.5rem 2rem;
  box-shadow: -12px 0 40px rgba(28, 25, 23, 0.18);
  overflow-y: auto;
  visibility: hidden;
}
.launch-panel.is-open {
  transform: translateX(0);
  visibility: visible;
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.panel-close {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg-mist);
  border-radius: var(--radius-btn);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-on-light);
}
.panel-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.panel-nav a {
  display: block;
  padding: 0.85rem 0.5rem;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}
.panel-nav a:hover { color: var(--copper); }
.panel-cta { margin-top: 1.5rem; width: 100%; }
.panel-scrim {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  z-index: 180;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.panel-scrim[hidden] { display: none !important; }

@media (min-width: 1024px) {
  .launch-panel,
  .panel-scrim { display: none !important; }
}

/* Sections */
.section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section { padding: 48px 0; }
}

/* Hero Pattern B */
.hero-cinematic {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--bg-stone);
  background-image: url('/images/launchcraftco-01-hero-agency-studio.jpg');
  background-size: cover;
  background-position: center;
  color: #F7F3EC;
}
.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(28, 25, 23, 0.72) 0%,
    rgba(28, 25, 23, 0.35) 45%,
    rgba(247, 243, 236, 0.08) 100%
  ),
  linear-gradient(
    to top,
    rgba(247, 243, 236, 0.55) 0%,
    transparent 42%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
  display: grid;
  gap: 2rem;
}
.hero-copy { max-width: 640px; }
.hero-cinematic .eyebrow { color: #E8B48A; }
.hero-serial {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.hero-cinematic h1 {
  color: #F7F3EC;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 18px rgba(28, 25, 23, 0.35);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 1.5rem;
  color: #F7F3EC;
  opacity: 0.95;
}
.hero-trust {
  justify-self: end;
  align-self: end;
  background: rgba(247, 243, 236, 0.94);
  color: #1C1917;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-card);
  border-top: 2px solid var(--copper);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  max-width: 280px;
}
@media (max-width: 767px) {
  .hero-cinematic { min-height: 75vh; }
  .hero-inner { padding: 3rem 0 2.5rem; }
  .hero-trust { justify-self: start; max-width: 100%; }
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat-block { text-align: center; padding: 0.5rem; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-on-light);
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 767px) {
  .stats-strip { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.card {
  background: var(--bg-parchment);
  border-radius: var(--radius-card);
  border-top: 2px solid var(--copper);
  padding: 32px;
  box-shadow: 0 2px 0 rgba(28, 25, 23, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--copper);
}
.card-icon svg { width: 100%; height: 100%; }

.media-card {
  background: var(--bg-parchment);
  border-radius: var(--radius-card);
  border-top: 2px solid var(--copper);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.media-card .media-body { padding: 1.5rem 1.6rem 1.75rem; }

@media (max-width: 1023px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* Asymmetric split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.photo-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 3px solid var(--copper);
  box-shadow: var(--shadow-soft);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.method-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.method-list li {
  position: relative;
  padding: 1rem 0 1rem 3.25rem;
  border-bottom: 1px solid rgba(196, 113, 61, 0.25);
  counter-increment: step;
}
.method-list li::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--copper);
  font-size: 1.1rem;
}
@media (max-width: 1023px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
}

/* Programme offset cards */
.offset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.offset-grid .media-card:nth-child(2) { margin-top: 1.75rem; }
.offset-grid .media-card:nth-child(3) { margin-top: 0.5rem; }
@media (max-width: 1023px) {
  .offset-grid { grid-template-columns: 1fr; }
  .offset-grid .media-card { margin-top: 0 !important; }
}

/* FAQ two-column */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}
.faq-item { margin-bottom: 1.75rem; }
.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(196, 113, 61, 0.35);
}
@media (max-width: 767px) {
  .faq-split { grid-template-columns: 1fr; gap: 0; }
}

/* CTA band — light background, dark text */
.cta-band,
.cta-band.surface-cta,
.cta-band.surface-espresso {
  text-align: center;
  padding: 80px 0;
  background: #EDE6DC !important;
  color: #1C1917 !important;
}
.cta-band h2,
.cta-band p,
.cta-band.surface-cta h2,
.cta-band.surface-cta p,
.cta-band.surface-espresso h2,
.cta-band.surface-espresso p {
  color: #1C1917 !important;
}
.cta-band .copper-rule { max-width: 120px; margin: 0 auto 1.5rem; opacity: 0.8; }
.cta-band h2 { max-width: 640px; margin-inline: auto; }
.cta-band p { max-width: 520px; margin-inline: auto; margin-bottom: 1.5rem; opacity: 0.9; }
.cta-band .btn.btn-copper {
  color: #ffffff !important;
}

/* About layout */
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.photo-dock {
  position: sticky;
  top: calc(var(--util-h) + var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.photo-dock img {
  width: 100%;
  border-radius: var(--radius-card);
  border-top: 2px solid var(--copper);
  object-fit: cover;
  min-height: 260px;
}
.photo-dock img.lead-portrait,
.photo-dock img[src*="agency-lead-portrait"] {
  width: 100%;
  max-width: none;
  height: 280px;
  min-height: 280px;
  margin-inline: 0;
  object-fit: cover;
  object-position: center 20%;
}
@media (max-width: 1023px) {
  .about-layout { grid-template-columns: 1fr; }
  .photo-dock { position: static; flex-direction: row; }
  .photo-dock img { min-height: 180px; }
}
@media (max-width: 767px) {
  .photo-dock { flex-direction: column; }
}

/* Page header */
.page-hero {
  padding: 64px 0 48px;
}
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .lead {
  font-size: 1.125rem;
  max-width: 640px;
  color: var(--text-muted);
}

/* Programme / service blocks */
.programme-list { display: flex; flex-direction: column; gap: 2rem; }
.programme-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-card);
  border-top: 2px solid var(--copper);
  background: var(--bg-parchment);
}
.programme-card:nth-child(even) { background: var(--bg-mist); }
.programme-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.tier {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: var(--copper);
  margin-top: 0.75rem;
}
@media (max-width: 900px) {
  .programme-card { grid-template-columns: 1fr; }
  .programme-card img { order: -1; height: 220px; }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  border-top: 2px solid var(--copper);
  margin-bottom: 1.5rem;
}
.contact-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.inc-block {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border-top: 2px solid var(--copper);
}
.form-panel {
  padding: 2rem;
  border-radius: var(--radius-card);
  border-top: 2px solid var(--copper);
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 16px;
  border: 1px solid rgba(28, 25, 23, 0.2);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--text-on-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 1;
}
.consent-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 14px;
  line-height: 1.5;
}
.consent-row input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--copper);
}
.alert-success {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-btn);
  background: var(--bg-mist);
  border-left: 3px solid var(--copper);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Legal prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.legal-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.disclaimer-box {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-card);
  border-left: 3px solid var(--copper);
  font-size: 15px;
  margin: 1.5rem 0;
}

/* Footer */
.site-footer {
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: 0.85rem; }
.footer-brand .slogan {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--copper);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a {
  text-decoration: none;
  font-size: 15px;
}
.footer-col a:hover { color: var(--copper); }
.footer-contact p {
  font-size: 14px;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.footer-contact a { color: var(--text-on-light); }
.footer-disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 113, 61, 0.25);
  margin-bottom: 1rem;
}
.footer-hosting {
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 1.25rem;
  box-shadow: 0 -8px 32px rgba(28, 25, 23, 0.12);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-inner p {
  margin: 0;
  font-size: 14px;
  flex: 1 1 280px;
  max-width: 560px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-actions .btn {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 13px;
}
.cookie-Customise {
  display: none;
  width: min(100%, var(--max));
  margin: 1rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
  font-size: 14px;
}
.cookie-Customise.is-open { display: block; }
.cookie-Customise label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Reveal — only when JS class present */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .btn:hover,
  .card:hover,
  .media-card:hover { transform: none; }
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.error-page h1 { margin-bottom: 1rem; }

/* Legal pages image strip */
.page-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  border-top: 2px solid var(--copper);
  margin: 1.5rem 0 2rem;
  max-width: 640px;
}
.page-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
