:root {
  --cream: #f5f1e9;
  --cream-2: #e9e2d8;
  --red: #c43128;
  --red-dark: #90251f;
  --red-soft: #efd0cc;
  --ink: #1f2022;
  --muted: #68635d;
  --white: #ffffff;
  --border: rgba(31, 32, 34, 0.14);
  --shadow: 0 18px 50px rgba(43, 34, 27, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
section[id] { scroll-margin-top: 96px; }

:focus-visible {
  outline: 3px solid rgba(196, 49, 40, .28);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section-cream {
  background: var(--cream-2);
  box-shadow: inset 0 1px 0 rgba(31,32,34,.08), inset 0 -1px 0 rgba(31,32,34,.08);
}

.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;
}
.hidden { display: none; }
.skip-link {
  position: fixed;
  left: 16px; top: -80px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,241,233,.96);
  border-bottom: 2px solid rgba(196,49,40,.18);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  text-decoration: none;
  min-width: max-content;
}
.brand-name {
  display: block;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1;
}
.brand-name strong { color: var(--red); }
.brand-tagline {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--red-dark);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--red); }
.header-call {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-left: 1px solid var(--border);
  padding-left: 26px;
  font-size: 12px;
  color: var(--muted);
}
.header-call strong { color: var(--red); font-size: 17px; }
.menu-button { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  overflow: hidden;
  background-color: #d8e7f3;
  background-image: url("/assets/hero-clouds.webp");
  background-position: center 48%;
  background-size: cover;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(245,241,233,.98) 0%, rgba(245,241,233,.92) 34%, rgba(245,241,233,.52) 50%, rgba(245,241,233,.08) 68%, rgba(245,241,233,0) 82%),
    linear-gradient(180deg, rgba(245,241,233,.18), rgba(245,241,233,0) 55%, rgba(31,32,34,.08));
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  align-items: center;
  padding: 82px 0 72px;
}
.hero-copy {
  width: min(58%, 720px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(62px, 6.8vw, 104px);
  font-weight: 850;
  text-wrap: balance;
}
.hero h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}
.hero-lead {
  margin: 32px 0 0;
  max-width: 520px;
  font-size: 20px;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border-color: var(--ink); background: rgba(255,255,255,.22); }
.button-secondary:hover { color: var(--white); background: var(--ink); }
.button-full { width: 100%; }

.hero-services {
  position: relative;
  z-index: 3;
  background: rgba(245,241,233,.96);
  border-top: 1px solid rgba(31,32,34,.14);
  border-bottom: 1px solid rgba(31,32,34,.12);
  backdrop-filter: blur(10px);
}
.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-service-grid a {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px 18px;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(31,32,34,.18);
}
.hero-service-grid a:first-child {
  border-left: 1px solid rgba(31,32,34,.18);
}
.hero-service-grid a:hover,
.hero-service-grid a:focus-visible {
  color: var(--red-dark);
  background: rgba(255,255,255,.45);
}
.hero-service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(196,49,40,.2);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.hero-service-icon svg,
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-service-grid a:hover .hero-service-icon,
.hero-service-grid a:focus-visible .hero-service-icon {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}
.hero-service-grid strong {
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading { max-width: 760px; }
.section-heading h2,
.contact h2 {
  font-size: clamp(38px, 4.5vw, 62px);
}
.section-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(43,34,27,.12);
  isolation: isolate;
}
.service-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-content {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 20px 22px;
  background: var(--ink);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}
.service-content strong {
  display: block;
  color: var(--white);
  font-size: 23px;
  line-height: 1.05;
}
.service-content small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.25;
}
.project-heading { max-width: 850px; }
.project-series { margin-top: 52px; }
.project-series-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.project-series-header h3 {
  margin: 4px 0 0;
  font-size: clamp(24px, 3vw, 34px);
}
.project-series-header > span {
  flex: 0 0 auto;
  padding: 8px 13px;
  color: var(--red);
  border: 1px solid rgba(151, 35, 25, .38);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  font-size: 14px;
  font-weight: 800;
}
.project-label {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
}
.project-step {
  position: relative;
  display: grid;
  grid-template-areas:
    "photo"
    "copy";
  grid-template-rows: auto auto;
  min-width: 0;
}
.step-number {
  position: relative;
  z-index: 3;
  grid-area: photo;
  align-self: end;
  justify-self: start;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  margin: 0 0 -19px 12px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--cream);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  padding: 0;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.project-photo {
  grid-area: photo;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #d8d1c7;
  border-radius: 7px;
}
.project-photo picture,
.project-photo img {
  display: block;
  width: 100%;
  height: 100%;
}
.project-photo img {
  object-fit: cover;
  object-position: center;
}
.project-copy {
  grid-area: copy;
  min-width: 0;
  padding: 29px 4px 0;
  background: transparent;
}
.project-copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: .025em;
}
.project-copy p { margin: 0; color: var(--muted); font-size: 15px; }
.project-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 2px solid var(--red);
  border-radius: 20px;
  background: rgba(255,255,255,.32);
}
.project-summary div {
  display: flex;
  flex-direction: column;
}
.project-summary strong { color: var(--red); font-size: 20px; }
.project-summary span { color: var(--muted); }
.text-link { color: var(--red); font-weight: 800; text-decoration: none; }

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: start;
}
.approach-list { margin: 0; padding: 0; list-style: none; }
.approach-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.approach-list li:last-child { border-bottom: 1px solid var(--border); }
.approach-list > li > span {
  color: var(--red);
  font-size: 17px;
  font-weight: 800;
}
.approach-list h3 { margin: 0 0 5px; font-size: 23px; }
.approach-list p { margin: 0; color: var(--muted); }

.contact { color: var(--white); background: var(--ink); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: 70px;
  align-items: start;
}
.contact .eyebrow { color: #f29a92; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 19px; }
.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.contact-options a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
}
.contact-options span { color: rgba(255,255,255,.65); }
.contact-options strong { color: #f29a92; overflow-wrap: anywhere; }

.contact-form {
  padding: 32px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(196,49,40,.42);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #c9c1b7;
  border-radius: 12px;
  padding: 13px 14px;
  background: var(--white);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(196,49,40,.18);
  border-color: var(--red);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.consent {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.consent input { margin-top: 4px; }
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.form-note a { color: var(--red); }

.site-footer {
  color: var(--white);
  background: #151517;
  padding: 64px 0 30px;
  border-top: 5px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
}
.footer-brand p { color: rgba(255,255,255,.6); }
.site-footer h2 { margin: 0 0 14px; font-size: 16px; color: #f29a92; }
.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-link-button {
  display: block;
  margin: 8px 0;
  padding: 0;
  color: rgba(255,255,255,.78);
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.site-footer a:hover,
.site-footer a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
.mobile-actions { display: none; }

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(31,32,34,.16);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}
.cookie-banner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.cookie-banner-copy a {
  color: var(--red);
  font-weight: 800;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
}
.cookie-button {
  min-height: 44px;
  padding: 10px 15px;
  border: 2px solid var(--red);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.cookie-button-primary {
  color: var(--white);
  background: var(--red);
}
.cookie-button-secondary {
  color: var(--red);
  background: var(--white);
}
.cookie-button:hover { transform: translateY(-1px); }
.cookie-button:focus-visible,
.footer-link-button:focus-visible {
  outline: 3px solid rgba(196,49,40,.35);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .header-call { display: none; }
  .menu-button {
    display: grid;
    gap: 5px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
  }
  .menu-button span:not(.sr-only) {
    display: block;
    width: 26px; height: 2px;
    background: var(--ink);
  }
  .main-nav {
    position: absolute;
    inset: 84px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 30px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
  }
  .main-nav.is-open { display: flex; }

  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 720px;
    background-position: 58% center;
  }
  .hero-copy { width: min(66%, 680px); }
  .hero-service-grid a {
    min-height: 96px;
    flex-direction: column;
    gap: 8px;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { gap: 44px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 64px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 74px; }
  .brand-name { font-size: 20px; }
  .brand-tagline { font-size: 8px; }
  .main-nav { inset: 74px 0 auto; }

  .hero {
    min-height: 820px;
    background-position: 66% center;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(245,241,233,.99) 0%, rgba(245,241,233,.96) 40%, rgba(245,241,233,.58) 63%, rgba(245,241,233,.12) 79%, rgba(245,241,233,.04) 100%);
  }
  .hero-inner {
    align-items: flex-start;
    padding: 48px 0 250px;
  }
  .hero-copy { width: 100%; }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(48px, 14vw, 67px);
  }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-service-grid a {
    min-height: 88px;
    border-top: 1px solid rgba(31,32,34,.12);
  }
  .hero-service-grid a:nth-child(odd) {
    border-left: 1px solid rgba(31,32,34,.18);
  }
  .hero-service-grid a:nth-child(-n+2) {
    border-top: 0;
  }
  .hero-service-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .hero-service-icon svg { width: 20px; height: 20px; }
  .hero-service-grid strong { font-size: 12px; }

  .service-grid,
  .project-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .project-series-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .service-content {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 20px 18px;
  }
  .service-icon { width: 42px; height: 42px; font-size: 21px; }
  .service-content strong { font-size: 21px; }
  .project-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .approach-grid { gap: 35px; }
  .contact-form { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -8px 25px rgba(0,0,0,.18);
  }
  .mobile-actions a {
    padding: 16px 10px;
    color: var(--white);
    background: var(--red);
    text-align: center;
    text-decoration: none;
    font-weight: 800;
  }
  .mobile-actions a + a { background: #247a42; }

  .cookie-banner {
    inset: auto 14px 76px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100% - 28px);
    padding: 18px;
  }
  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-button { width: 100%; }
}

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