/* Launch Win Fast — Premium charcoal & gold */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --ink: #0d0d12;
  --ink-soft: #1a1a24;
  --ink-muted: #2a2a38;
  --gold: #c9a962;
  --gold-light: #dfc88a;
  --gold-dark: #a8883f;
  --cream: #f7f5f0;
  --cream-deep: #ebe6dc;
  --text: #1a1a22;
  --text-soft: #4a4a58;
  --line: #d4cfc4;
  --white: #ffffff;
  --success: #1f6b4f;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --section-pad: clamp(72px, 9vw, 120px);
  --page-gutter: clamp(20px, 5vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.72;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.08), transparent),
    var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.cookie-open { padding-bottom: 180px; }

main { overflow-x: hidden; min-width: 0; }

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover, a:focus-visible { color: var(--ink); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
}

.skip:focus { left: 1rem; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin-bottom: 0.5rem; }

p, li { max-width: 68ch; }
.prose p + p { margin-top: 1.15rem; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.25rem; }
.prose li + li { margin-top: 0.45rem; }

.surface-light { background: var(--cream); color: var(--text); }
.surface-dark {
  background: linear-gradient(165deg, var(--ink) 0%, #060608 100%);
  color: #d8d4cc;
}
.surface-panel { background: var(--white); color: var(--text); }
.surface-ink { background: var(--ink-soft); color: #e8e4dc; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 207, 196, 0.6);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.header-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 1rem var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo span { color: var(--gold); }

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.35rem);
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] { color: var(--ink); }

.btn-nav {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-nav:hover, .btn-nav:focus-visible {
  background: var(--gold-dark) !important;
  color: var(--ink) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: var(--page-gutter);
    right: var(--page-gutter);
    width: auto;
    background: var(--cream);
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 1rem 1rem;
    padding: 1rem var(--page-gutter);
    display: none;
    box-shadow: 0 12px 32px rgba(13, 13, 18, 0.08);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; }
  .site-header { position: relative; }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: var(--section-pad) 0 clamp(48px, 6vw, 72px);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-soft);
  margin: 1.25rem 0 2rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid var(--line);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(13, 13, 18, 0.04),
    0 24px 64px rgba(13, 13, 18, 0.14);
  aspect-ratio: 4 / 5;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 1.5rem;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(13, 13, 18, 0.08);
}

/* Shared photo frame */
.image-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(13, 13, 18, 0.06),
    0 16px 48px rgba(13, 13, 18, 0.1);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 169, 98, 0.22);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-height: 360px; }
  .hero-visual img { width: 100%; object-fit: cover; height: 100%; }
}

/* Strip */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin-bottom: var(--section-pad);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 13, 18, 0.05);
}

.strip div {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.strip div:last-child { border-right: none; }

.strip span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.strip strong { font-size: 0.95rem; color: var(--ink); }

@media (max-width: 768px) {
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip div:nth-child(2) { border-right: none; }
  .strip div { border-bottom: 1px solid var(--line); }
  .strip div:nth-last-child(-n+2) { border-bottom: none; }
}

/* Sections */
.section { padding: var(--section-pad) 0; }

.section-head { margin-bottom: 2.5rem; max-width: 720px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.85rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.card:hover {
  box-shadow: 0 20px 48px rgba(13, 13, 18, 0.1);
  transform: translateY(-5px);
  border-color: rgba(201, 169, 98, 0.35);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 14px;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.25);
}

.card:nth-child(1) .card-icon::after { content: '↑'; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.card:nth-child(2) .card-icon::after { content: '◆'; font-size: 1.25rem; color: var(--ink); }
.card:nth-child(3) .card-icon::after { content: '◉'; font-size: 1.25rem; color: var(--ink); }

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-steps article {
  position: relative;
  padding: 1.65rem;
  background: var(--white);
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.process-steps article:hover {
  box-shadow: 0 12px 32px rgba(13, 13, 18, 0.08);
  transform: translateY(-3px);
}

.process-steps article::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.stats-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stats-band span { font-size: 0.9rem; color: #b8b4ac; }

@media (max-width: 768px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

/* CTA */
.cta-block {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201, 169, 98, 0.12), transparent),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-muted) 100%);
  border-radius: 1.5rem;
  color: #e8e4dc;
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 24px 64px rgba(13, 13, 18, 0.2);
}

.cta-block h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-block p { margin: 0 auto 2rem; max-width: 52ch; color: #b8b4ac; }

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
  align-content: start;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.footer-note { font-size: 0.92rem; color: #9a968e; max-width: 42ch; }

.footer-contact {
  font-style: normal;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--cream); }

.footer-copy { margin-top: 1.5rem; font-size: 0.82rem; }

.footer-links a { color: #b8b4ac; font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

/* Inner pages */
.inner-page { padding: var(--section-pad) 0; }
.inner-page h1 { margin-bottom: 1.25rem; }
.inner-page h2 { margin-top: 2rem; margin-bottom: 0.75rem; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(24px, 4vw, 40px) 0 3rem;
  align-items: start;
}

.contact-block address {
  font-style: normal;
  margin-top: 1.5rem;
  line-height: 1.85;
}

.contact-block h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 1rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow:
    0 4px 12px rgba(13, 13, 18, 0.04),
    0 20px 48px rgba(13, 13, 18, 0.07);
}

.form-grid {
  display: grid;
  gap: 1.15rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.form-submit {
  padding: 0.9rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.form-submit:hover, .form-submit:focus-visible {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.form-note { font-size: 0.82rem; color: var(--text-soft); }

.form-success {
  background: #e8f5ef;
  color: var(--success);
  padding: 1rem 1.15rem;
  border-radius: 0.6rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  border: 1px solid #b8dcc8;
}

.map-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-caption {
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  background: var(--cream-deep);
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Services page */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 5vw, 56px);
}

.page-hero-copy h1 { margin-bottom: 1.15rem; }

.page-hero-visual {
  aspect-ratio: 16 / 11;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-row figure {
  aspect-ratio: 4 / 3;
  margin: 0;
}

.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }

.service-row:last-child { border-bottom: none; }

.service-row h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

/* Contact page hero */
.contact-page-hero {
  padding-bottom: clamp(24px, 4vw, 40px);
}

.contact-page-hero .page-hero-visual {
  aspect-ratio: 16 / 11;
}

/* Work page */
.work-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: var(--section-pad);
}

.work-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(13, 13, 18, 0.05);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.work-card:hover {
  box-shadow: 0 16px 48px rgba(13, 13, 18, 0.1);
  transform: translateY(-3px);
}

.work-card:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.work-card:nth-child(even) .work-card-visual { order: 2; }
.work-card:nth-child(even) .work-card-body { order: 1; }

.work-card-visual {
  aspect-ratio: 4 / 3;
  margin: 0;
}

.work-card-body h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-bottom: 0.75rem;
}

.work-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding: 0;
}

.work-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  max-width: none;
}

@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-visual { order: -1; max-height: 280px; }
  .work-card,
  .work-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .work-card:nth-child(even) .work-card-visual,
  .work-card:nth-child(even) .work-card-body { order: unset; }
}

@media (max-width: 768px) {
  .service-row, .service-row:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .contact-layout { grid-template-columns: 1fr; }
}

/* 404 */
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink);
  color: #d8d4cc;
  padding: 1.25rem var(--page-gutter);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p { max-width: 900px; font-size: 0.92rem; margin-bottom: 1rem; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions button {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease);
}

#cookie-accept { background: var(--gold); color: var(--ink); }
#cookie-reject { background: transparent; color: #d8d4cc; border-color: #4a4a58; }
#cookie-customise, #cookie-save { background: var(--ink-muted); color: #d8d4cc; border-color: #4a4a58; }

.cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #4a4a58;
}

.cookie-panel.open { display: block; }

.cookie-panel label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

/* 404 */
.error-page {
  text-align: center;
  padding: var(--section-pad) 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page h1 { font-size: clamp(4rem, 10vw, 7rem); color: var(--gold); }
.error-page p { margin: 1rem 0 2rem; color: var(--text-soft); }

/* Focus visible for WCAG */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 1.25rem;
    --section-pad: clamp(56px, 12vw, 80px);
  }

  main {
    padding-inline: 0;
  }

  .shell,
  .header-inner {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .hero,
  .page-hero,
  .inner-page,
  .section,
  .contact-layout,
  .work-grid,
  .service-row {
    min-width: 0;
  }

  .hero-visual,
  .page-hero-visual,
  .image-frame,
  .work-card-visual {
    border-radius: 1rem;
    max-width: 100%;
  }

  .image-frame:hover img {
    transform: none;
  }

  .strip,
  .cta-block,
  .form-card,
  .map-card,
  .work-card,
  .card,
  .process-steps article {
    border-radius: 1rem;
  }

  .cookie-banner {
    padding: 1.25rem var(--page-gutter);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
