@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&amp;family=Manrope:wght@400;500;600;700;800&amp;display=swap");

:root {
  --color-ink: #1f261d;
  --color-ink-soft: #3f4a39;
  --color-muted: #697466;
  --color-bg: #faf6ed;
  --color-paper: #fffcf5;
  --color-paper-deep: #efe5d5;
  --color-sage: #8fa081;
  --color-sage-dark: #58694d;
  --color-sage-deep: #293126;
  --color-clay: #c86c4a;
  --color-clay-dark: #9a4b34;
  --color-peach: #f0d5c5;
  --color-moss-wash: #e2e8d7;
  --color-border: #d7c7ae;
  --color-white: #fffdf7;
  --container-max: 1440px;
  --container-px: 48px;
  --section-py: 96px;
  --radius-card: 4px;
  --radius-button: 2px;
  --shadow-paper: 0 24px 70px rgba(31, 38, 29, .1);
  --shadow-lift: 0 34px 90px rgba(31, 38, 29, .16);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(88, 105, 77, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 105, 77, .035) 1px, transparent 1px),
    var(--color-bg);
  background-size: 32px 32px;
  color: var(--color-ink);
  font-family: Manrope, "Segoe UI", Verdana, sans-serif;
  line-height: 1.72;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  color: inherit;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: normal;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7.6vw, 7.6rem);
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.18rem, 1.5vw, 1.62rem);
}

p {
  color: var(--color-ink-soft);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 246, 237, .92);
  border-bottom: 1px solid rgba(215, 199, 174, .78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand strong {
  display: block;
  color: var(--color-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38rem;
  font-style: normal;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-mark rect {
  fill: var(--color-sage-deep);
  rx: 2px;
}

.brand-mark path {
  fill: none;
  stroke: var(--color-clay);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--color-clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-link:hover::after, .nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--color-clay-dark);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid var(--color-sage-deep);
  border-radius: var(--radius-button);
  background: var(--color-sage-deep);
  color: var(--color-white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--color-clay-dark);
  border-color: var(--color-clay-dark);
}

.menu-btn {
  display: none;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(215, 199, 174, .72);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(143, 160, 129, .2), transparent 34%),
    linear-gradient(90deg, rgba(255, 252, 245, .94), rgba(240, 213, 197, .18));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 740px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 84px;
}

.hero-copy {
  max-width: 880px;
}

.hero-copy p {
  max-width: 760px;
  margin-top: 26px;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 44px -22px auto 36px;
  height: 78%;
  border: 1px solid rgba(88, 105, 77, .24);
  transform: rotate(2.5deg);
}

.hero .hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid var(--color-paper);
  border-radius: 0;
  box-shadow: var(--shadow-lift);
  filter: saturate(.9) contrast(1.02);
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: 28px;
  width: min(285px, calc(100vw - 44px));
  padding: 24px;
  border: 1px solid rgba(31, 38, 29, .08);
  border-top: 5px solid var(--color-clay);
  border-radius: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  box-shadow: var(--shadow-paper);
}

.floating-note strong, .floating-note span {
  display: block;
  font-style: normal;
}

.floating-note strong {
  color: var(--color-ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-note span {
  margin-top: 10px;
  color: var(--color-ink-soft);
  font-size: .92rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--color-clay-dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-sage-deep);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-clay-dark);
}

.btn-ghost {
  border-color: rgba(31, 38, 29, .22);
  background: rgba(255, 252, 245, .48);
  color: var(--color-ink);
}

.btn-ghost:hover {
  background: var(--color-paper-deep);
}

.notice {
  max-width: 780px;
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 5px solid var(--color-clay);
  background: rgba(240, 213, 197, .42);
  color: var(--color-ink);
  font-size: .92rem;
  line-height: 1.75;
}

.notice strong {
  color: var(--color-ink);
}

.section {
  padding: var(--section-py) 0;
}

.section-head {
  max-width: 920px;
  margin-bottom: 52px;
}

.section-head p, .page-hero p, .legal-copy p {
  margin-top: 18px;
  color: var(--color-ink-soft);
}

.strip {
  background: rgba(226, 232, 215, .62);
  border-top: 1px solid rgba(88, 105, 77, .14);
  border-bottom: 1px solid rgba(88, 105, 77, .14);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(31, 38, 29, .12);
  background: var(--color-paper);
  box-shadow: var(--shadow-paper);
}

.steps article {
  min-height: 260px;
  padding: 34px 28px;
  border-right: 1px solid rgba(31, 38, 29, .12);
  transition: background .2s ease;
}

.steps article:hover {
  background: var(--color-moss-wash);
}

.steps article:last-child {
  border-right: 0;
}

.steps span, .timeline span {
  display: block;
  margin-bottom: 24px;
  color: rgba(200, 108, 74, .55);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: .86;
}

.steps h3, .timeline h3 {
  color: var(--color-ink);
}

.steps p, .timeline p {
  margin-top: 14px;
  color: var(--color-ink-soft);
  font-size: .92rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-cards article, .pillars article, .faq-item, .contact-card, .memo {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(31, 38, 29, .1);
  border-radius: var(--radius-card);
  background: var(--color-paper);
  box-shadow: var(--shadow-paper);
}

.service-cards article {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-cards article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.service-cards article::before, .pillars article::before, .faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-clay));
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(143, 160, 129, .18);
  color: var(--color-sage-deep);
}

.service-cards p {
  margin-top: 14px;
  color: var(--color-ink-soft);
}

.service-cards a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-clay-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.split {
  background: var(--color-paper);
  border-top: 1px solid rgba(215, 199, 174, .72);
  border-bottom: 1px solid rgba(215, 199, 174, .72);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.section-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 10px solid var(--color-paper);
  border-radius: 0;
  box-shadow: var(--shadow-lift);
  filter: saturate(.92) contrast(1.02);
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  list-style: none;
}

.check-list li, .scope li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-ink-soft);
}

.check-list .icon, .scope .icon {
  color: var(--color-clay-dark);
}

.highlight {
  background:
    radial-gradient(circle at 90% 12%, rgba(200, 108, 74, .18), transparent 32%),
    var(--color-sage-deep);
  color: var(--color-white);
}

.highlight h2, .highlight h3, .highlight .eyebrow {
  color: var(--color-white);
}

.highlight p {
  color: rgba(255, 252, 245, .76);
}

.highlight .btn-primary {
  background: var(--color-paper);
  color: var(--color-sage-deep);
}

.highlight .memo {
  border: 0;
  border-top: 7px solid var(--color-clay);
  background: var(--color-paper);
  color: var(--color-ink);
}

.highlight .memo p, .highlight .memo h3 {
  color: var(--color-ink);
}

.faq-mini, .faq-list {
  display: grid;
  gap: 14px;
}

.faq-mini details {
  border: 1px solid rgba(31, 38, 29, .12);
  background: var(--color-paper);
}

.faq-mini summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 20px 24px;
  color: var(--color-ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-mini summary::after {
  content: "+";
  color: var(--color-clay-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-mini details[open] summary::after {
  content: "-";
}

.faq-mini p {
  padding: 0 24px 24px;
  color: var(--color-ink-soft);
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--color-sage-deep);
  color: var(--color-white);
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 72px;
  background: var(--color-clay);
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-white);
}

.cta p {
  max-width: 760px;
  margin: 22px auto 32px;
  color: rgba(255, 252, 245, .72);
}

.cta .btn-primary {
  background: var(--color-paper);
  color: var(--color-sage-deep);
}

.page-hero {
  padding: 104px 0 86px;
  background:
    radial-gradient(circle at 86% 18%, rgba(143, 160, 129, .18), transparent 30%),
    linear-gradient(90deg, rgba(255, 252, 245, .98), rgba(239, 229, 213, .56));
  border-bottom: 1px solid rgba(215, 199, 174, .72);
}

.page-hero .container > p, .page-hero p {
  max-width: 940px;
}

.about-hero, .contact-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(143, 160, 129, .2), transparent 30%),
    linear-gradient(90deg, rgba(255, 252, 245, .98), rgba(240, 213, 197, .22));
  color: var(--color-ink);
}

.about-hero p:not(.notice), .contact-hero p:not(.notice) {
  color: var(--color-ink-soft);
}

.about-hero .notice, .contact-hero .notice {
  background: rgba(240, 213, 197, .42);
  color: var(--color-ink);
}

.page-hero .hero-image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid var(--color-paper);
  border-radius: 0;
  box-shadow: var(--shadow-lift);
  filter: saturate(.92) contrast(1.02);
}

.service-stack {
  display: grid;
  gap: 34px;
}

.service-row {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(31, 38, 29, .11);
  background: var(--color-paper);
  box-shadow: var(--shadow-paper);
}

.service-row:nth-child(even) {
  grid-template-columns: 1.08fr .92fr;
}

.service-row:nth-child(even) > div:first-child {
  order: 2;
}

.scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}

.scope > div {
  padding: 18px;
  background: rgba(226, 232, 215, .42);
}

.scope h3 {
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scope ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  list-style: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(31, 38, 29, .11);
  background: var(--color-paper);
}

.timeline article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid rgba(31, 38, 29, .11);
}

.timeline article:last-child {
  border-right: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillars .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--color-sage-dark);
}

.pillars p {
  margin-top: 14px;
}

.faq-list {
  grid-template-columns: repeat(2, 1fr);
}

.faq-item {
  min-height: 190px;
}

.faq-item p {
  margin-top: 14px;
  color: var(--color-ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid rgba(31, 38, 29, .1);
  background: var(--color-paper);
  box-shadow: var(--shadow-paper);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--color-ink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field span {
  color: var(--color-muted);
  font-weight: 700;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(31, 38, 29, .13);
  border-radius: 0;
  background: rgba(239, 229, 213, .42);
  color: var(--color-ink);
  font: inherit;
}

.field textarea {
  min-height: 154px;
  resize: vertical;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-clay);
  outline: 3px solid rgba(200, 108, 74, .18);
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-disclaimer {
  padding: 16px;
  border-left: 4px solid var(--color-clay);
  background: rgba(240, 213, 197, .36);
  color: var(--color-ink-soft);
  font-size: .84rem;
}

.form-disclaimer a {
  color: var(--color-clay-dark);
  font-weight: 900;
}

.form-status {
  display: none;
  padding: 12px;
  border-radius: 0;
}

.form-status.is-success {
  display: block;
  background: #e8f4df;
  color: #274320;
}

.form-status.is-error {
  display: block;
  background: #ffe8e0;
  color: #7b2e1d;
}

.contact-card p {
  margin-top: 12px;
}

.legal-copy .container {
  max-width: 920px;
}

.legal-copy p {
  margin-bottom: 20px;
}

.site-footer {
  padding: 72px 0 30px;
  background: var(--color-paper);
  border-top: 1px solid rgba(31, 38, 29, .12);
  color: var(--color-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .95fr .75fr;
  gap: 42px;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: var(--color-ink-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-clay-dark);
}

.site-footer p {
  margin: 12px 0;
  color: var(--color-muted);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--color-ink);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 38, 29, .08);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  z-index: 100;
  width: min(420px, calc(100vw - 48px));
  padding: 0;
  background: transparent;
  color: var(--color-white);
  transform: translateY(calc(100% + 32px));
  transition: transform .35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  padding: 22px;
  display: grid;
  gap: 16px;
  border-top: 4px solid var(--color-clay);
  background: var(--color-sage-deep);
  box-shadow: var(--shadow-lift);
}

.cookie-banner p {
  color: rgba(255, 252, 245, .78);
  font-size: .82rem;
}

.cookie-banner a {
  color: var(--color-peach);
  font-weight: 800;
}

.cookie-banner__inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-cookie {
  padding: 10px 13px;
  border: 1px solid rgba(255, 252, 245, .24);
  border-radius: 0;
  background: transparent;
  color: var(--color-white);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-cookie--primary {
  border-color: var(--color-peach);
  background: var(--color-peach);
  color: var(--color-ink);
}

@media (max-width: 1100px) {
  :root {
    --container-px: 28px;
  }

  .site-nav, .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 82px;
    right: 22px;
    left: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--color-border);
    background: var(--color-paper);
    box-shadow: var(--shadow-paper);
  }

  .menu-btn {
    margin-left: auto;
    min-height: 44px;
    width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 38, 29, .18);
    background: var(--color-paper);
    color: var(--color-ink);
  }

  .menu-btn span {
    display: none;
  }

  .hero-grid, .split-grid, .service-row, .service-row:nth-child(even), .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-media {
    min-height: auto;
  }

  .service-row:nth-child(even) > div:first-child {
    order: 0;
  }

  .steps, .service-cards, .timeline, .pillars, .faq-list, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --container-px: 18px;
    --section-py: 64px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand small {
    display: none;
  }

  .hero-grid {
    gap: 42px;
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .floating-note {
    right: 14px;
    bottom: -22px;
    width: calc(100% - 28px);
  }

  .hero-media {
    padding-bottom: 42px;
  }

  .steps, .service-cards, .timeline, .pillars, .faq-list, .footer-grid, .scope {
    grid-template-columns: 1fr;
  }

  .steps article, .timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 38, 29, .12);
  }

  .steps article:last-child, .timeline article:last-child {
    border-bottom: 0;
  }

  .service-row, .lead-form {
    padding: 20px;
  }

  .page-hero {
    padding: 68px 0 58px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }
}
