:root {
  --bg: #f4f1eb;
  --paper: #fffdf8;
  --ink: #141414;
  --muted: #615d55;
  --line: rgba(20, 20, 20, 0.12);
  --steel: #29434a;
  --steel-dark: #162529;
  --rust: #b84b31;
  --signal: #d8a128;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(18, 19, 18, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--rust);
}

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

[data-live-layout] {
  display: flex;
  flex-direction: column;
  gap: var(--live-layout-gap, 0px);
}

.live-block {
  position: relative;
  min-width: 0;
  margin-top: var(--live-block-margin-top, 0px);
  margin-bottom: var(--live-block-margin-bottom, 0px);
}

.live-block.is-live-block-hidden {
  display: none !important;
}

.custom-live-block {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(22px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.custom-live-block--image {
  overflow: hidden;
  padding: 0;
  background: rgba(20, 20, 20, 0.08);
}

.custom-live-block--image img,
.live-block > img {
  width: var(--live-image-width, 100%);
  height: var(--live-image-height, auto);
  object-fit: cover;
}

.custom-live-block--image img {
  min-height: 260px;
}

.custom-live-block .rich-text > :first-child {
  margin-top: 0;
}

.custom-live-block .rich-text > :last-child {
  margin-bottom: 0;
}

.plugin-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.plugin-carousel a {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(20, 20, 20, 0.08);
}

.plugin-carousel img,
.plugin-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plugin-carousel span,
.plugin-slider__slide span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(20, 20, 20, 0.78);
  border-radius: var(--radius);
  font-weight: 800;
}

.plugin-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(20, 20, 20, 0.08);
}

.plugin-slider__viewport {
  overflow: hidden;
}

.plugin-slider__track {
  display: flex;
  transition: transform 0.42s ease;
  will-change: transform;
}

.plugin-slider__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 320px;
  overflow: hidden;
}

.plugin-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(-50%);
}

.plugin-slider__nav--prev {
  left: 12px;
}

.plugin-slider__nav--next {
  right: 12px;
}

.plugin-slider__dots {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.plugin-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.plugin-slider__dots button.is-active {
  background: var(--signal);
}

.plugin-spacer {
  min-height: 80px;
}

.plugin-divider {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: auto;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand span span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-admin-actions {
  display: inline-flex;
  gap: 8px;
}

.admin-login-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 6px;
  font-weight: 900;
}

.admin-login-link--icon {
  width: 36px;
  padding: 0;
}

.admin-login-link--icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-group {
  position: relative;
  display: inline-flex;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 190px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  display: grid;
}

.site-nav a {
  padding: 10px 14px;
  color: #2a2925;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: var(--steel-dark);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 156px max(24px, calc((100vw - var(--max)) / 2)) 88px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 12, 0.92) 0%, rgba(10, 12, 12, 0.72) 42%, rgba(10, 12, 12, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 12, 12, 0.84) 0%, rgba(10, 12, 12, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.eyebrow,
.section-kicker {
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  overflow-wrap: anywhere;
  hyphens: none;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3,
p,
li {
  max-width: 100%;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 small {
  display: block;
  margin-top: 10px;
  color: var(--signal);
  font-size: 0.24em;
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--signal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e9b43a;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button-ghost {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 52px;
  align-items: start;
}

.intro-text,
.media-copy p,
.about-copy p,
.contact-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-text > :last-child {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: min(940px, 100%);
  margin-bottom: 0;
}

.intro-grid > *,
.section-heading > *,
.media-band > *,
.service-card,
.craft-grid article,
.process-step,
.about-section > *,
.contact-section > *,
.legal-grid article {
  min-width: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  color: var(--steel);
  font-weight: 900;
  border-bottom: 2px solid var(--rust);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid rgba(184, 75, 49, 0.72);
  border-radius: var(--radius);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 900;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--steel-dark);
}

.media-copy {
  max-width: 640px;
}

.media-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.06;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--signal);
  border-radius: 2px;
}

.image-collage {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.image-collage img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-collage .collage-large {
  grid-row: span 2;
  min-height: 520px;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.craft-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.craft-grid img {
  width: 100%;
  height: clamp(340px, 31vw, 520px);
  object-fit: cover;
}

.craft-grid p {
  padding-right: 22px;
  padding-left: 22px;
}

.craft-grid p {
  margin: 0;
  padding-top: 24px;
  padding-bottom: 28px;
  color: var(--muted);
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--white);
  background: var(--rust);
  border-radius: 50%;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.about-image img {
  width: 100%;
  height: clamp(440px, 46vw, 640px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 96px;
}

.project-strip img {
  width: 100%;
  height: clamp(180px, 20vw, 280px);
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: 16px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 96px;
}

.contact-intro,
.contact-form,
.contact-details,
.map {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.contact-intro {
  grid-column: 1 / -1;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.86)),
    url("assets/images/industrial-servicebus.jpg") center / cover;
}

.contact-intro h2 {
  max-width: 720px;
}

.contact-intro p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(184, 75, 49, 0.72);
  box-shadow: 0 0 0 3px rgba(184, 75, 49, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) auto;
  gap: 14px;
  align-items: end;
}

.captcha input {
  max-width: 160px;
}

.form-status {
  min-height: 1.4em;
  margin-bottom: 0;
  color: var(--steel);
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--paper);
}

.contact-details strong {
  display: block;
  margin-top: 4px;
  font-size: 1.12rem;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-details a {
  color: var(--steel);
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 340px;
  background: var(--paper);
}

.legal-page {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.legal-hero {
  padding: clamp(32px, 6vw, 64px);
  color: var(--white);
  background:
    linear-gradient(rgba(20, 20, 20, 0.74), rgba(20, 20, 20, 0.88)),
    url("assets/images/turning.jpg") center / cover;
  border-radius: var(--radius);
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.legal-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-grid h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.legal-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-grid a {
  color: var(--steel);
  font-weight: 800;
}

.legal-wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
  font-weight: 900;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--steel);
  font-weight: 800;
}

.site-footer .footer-brand {
  color: var(--ink);
}

@media (max-width: 920px) {
  .site-header {
    top: 12px;
    left: 12px;
    right: auto;
    width: calc(100% - 24px);
    padding-right: 66px;
    transform: none;
  }

  .menu-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 6px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-group,
  .nav-submenu {
    position: static;
    display: grid;
  }

  .nav-submenu {
    min-width: 0;
    padding: 0 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .service-grid,
  .craft-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .media-band,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .media-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .media-copy {
    max-width: 760px;
  }

  .process-step span {
    margin-bottom: 28px;
  }
}

@media (max-width: 1100px) and (min-width: 921px) {
  .media-band {
    grid-template-columns: 1fr;
  }

  .media-copy {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(calc(100vw - 24px), 366px);
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero .eyebrow {
    max-width: 30ch;
  }

  .hero-media img {
    object-position: 56% 56%;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.6vw, 2.2rem);
    line-height: 1.1;
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .form-footer,
  .contact-buttons {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .craft-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .about-section,
  .contact-section,
  .project-strip,
  .legal-page,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: grid;
  }

  .service-card {
    min-height: auto;
  }

  .image-collage {
    grid-template-columns: 1fr;
  }

  .image-collage .collage-large,
  .image-collage img {
    min-height: 260px;
  }

  .craft-grid img {
    height: min(520px, 125vw);
  }

  .about-image img {
    height: min(620px, 125vw);
  }

  .project-strip img {
    height: min(260px, 42vw);
  }

  .project-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 72px;
  }

  .about-section {
    padding: 72px 0;
  }

  .contact-section {
    margin-bottom: 72px;
  }

  .legal-page {
    padding: 120px 0 72px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-wide {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
