:root {
  --bg: #f5f2ec;
  --ink: #070707;
  --muted: #5d5a55;
  --paper: #fffdfa;
  --red: #b31b26;
  --blue: #0e3d78;
  --steel: #d8d2c8;
  --line: rgba(7, 7, 7, .14);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(179, 27, 38, .08), transparent 18%, transparent 82%, rgba(14, 61, 120, .08)),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 74px);
  background: rgba(245, 242, 236, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.brand img {
  width: 58px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 38px;
  align-items: center;
  padding: 72px 0 46px;
}

.branded-hero {
  border-bottom: 5px solid var(--ink);
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-size: clamp(46px, 7.4vw, 88px);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  max-width: 690px;
  color: var(--muted);
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: white;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 12px;
  white-space: nowrap;
}

.logo-stage {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(179,27,38,.16) 0 14px, rgba(255,255,255,.7) 14px 28px, rgba(14,61,120,.16) 28px 42px, rgba(255,255,255,.7) 42px 56px),
    var(--paper);
  border: 5px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  overflow: hidden;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(7,7,7,.16);
}

.logo-stage img {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  height: auto;
  mix-blend-mode: multiply;
}

.service-band, .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 30px 0 68px;
}

.service-band article, .service-list article, .service-link, .contact-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 26px;
  box-shadow: 8px 8px 0 var(--steel);
}

.service-link {
  display: grid;
  align-content: start;
  min-height: 190px;
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--ink);
  outline: 0;
}

.service-link span {
  align-self: end;
  margin-top: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-band span {
  color: var(--red);
  font-weight: 950;
  letter-spacing: .14em;
}

.service-band p, .service-list p, .contact-card p {
  color: var(--muted);
}

.split-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 76px;
  padding: 34px;
  background: var(--ink);
  color: white;
  border-left: 12px solid var(--red);
  border-right: 12px solid var(--blue);
}

.split-panel p {
  color: rgba(255,255,255,.76);
}

.light {
  background: white;
  color: var(--ink);
  border-color: white;
}

.page {
  padding: 74px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-layout > section:first-child {
  position: sticky;
  top: 104px;
}

.contact-form-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 28px;
  box-shadow: 8px 8px 0 var(--steel);
}

.map-embed {
  display: block;
  width: 100%;
  height: 250px;
  margin: 18px 0 16px;
  border: 2px solid var(--ink);
  background: white;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 2px solid var(--ink);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.booking-steps span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 12px;
}

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

.contact-details {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  color: var(--ink);
  font-weight: 850;
}

.contact-details span {
  color: var(--muted);
  font-weight: 750;
}

.compact-contact-form {
  margin-top: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--muted);
  border-top: 4px solid var(--ink);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand img {
  width: 48px;
  height: 38px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 26px 0;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.footer-proof > * {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.footer-proof strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.footer-proof span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.footer-proof a {
  place-items: center;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-bottom {
  padding-top: 4px;
  font-size: 15px;
}

.footer-bottom a {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero, .service-band, .service-list, .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout > section:first-child {
    position: static;
  }

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

  .logo-stage {
    min-height: 280px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .split-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-proof {
    grid-template-columns: 1fr;
  }

  .footer-proof > * {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
