:root {
  --ink: #111820;
  --ink-soft: #24323d;
  --paper: #f5f5f1;
  --white: #ffffff;
  --line: #d9dde0;
  --muted: #65727c;
  --burgundy: #742d36;
  --burgundy-dark: #541f27;
  --gold: #b58745;
  --moss: #425346;
  --shadow: 0 24px 80px rgba(17, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover,
a:focus-visible {
  color: var(--burgundy);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--white);
  color: var(--ink);
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(245, 245, 241, 0.94);
  border-bottom: 1px solid rgba(17, 24, 32, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--burgundy);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 4px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  font-size: 0.92rem;
}

.header-call {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}

.mobile-header-actions {
  display: none;
}

.mobile-call,
.mobile-menu summary {
  min-height: 2.75rem;
  border: 1px solid rgba(17, 24, 32, 0.24);
  border-radius: 6px;
}

.mobile-call {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  color: var(--white);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.mobile-call svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu {
  position: static;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.75rem;
  background: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-icon {
  display: grid;
  gap: 0.2rem;
  width: 1rem;
}

.mobile-menu-icon span {
  display: block;
  height: 2px;
  background: currentColor;
}

.mobile-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.85rem 0.95rem 1rem;
  background: rgba(245, 245, 241, 0.98);
  border-top: 1px solid rgba(17, 24, 32, 0.1);
  border-bottom: 1px solid rgba(17, 24, 32, 0.14);
  box-shadow: 0 18px 34px rgba(17, 24, 32, 0.14);
}

.mobile-menu[open] .mobile-menu-panel {
  display: grid;
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.72rem 0.82rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.mobile-menu-phone {
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 0.7rem;
  color: var(--white);
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}

.mobile-menu-phone span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.mobile-menu-phone strong {
  font-size: 0.96rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(6rem, 12vh, 9rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 8vh, 5rem);
  background: var(--ink);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.86) 0%, rgba(17, 24, 32, 0.58) 48%, rgba(17, 24, 32, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 24, 32, 0.82) 0%, rgba(17, 24, 32, 0) 42%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.legal-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.hero-copy {
  max-width: 620px;
  margin: 1.4rem 0 0;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1.05rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  white-space: normal;
}

.button-primary {
  background: var(--burgundy);
  color: var(--white);
}

.button-secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.button:hover,
.button:focus-visible {
  background: var(--burgundy-dark);
  color: var(--white);
  border-color: var(--burgundy-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  margin: 2.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-facts div {
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 5rem);
}

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

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-muted {
  background: #e6eaec;
}

.section-contact {
  background: var(--moss);
  color: var(--white);
}

.section-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.two-column > *,
.download-layout > *,
.download-groups > section {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.section-label {
  margin-bottom: 1.2rem;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.85;
}

.section-dark .section-label,
.section-contact .section-label {
  color: var(--gold);
}

.section h2,
.legal-page h1 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

.section p,
.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.section-dark p,
.section-contact p,
.section-dark .practice-card p,
.section-contact .contact-card span,
.section-contact .hours-card dd,
.section-contact .hours-card dt {
  color: rgba(255, 255, 255, 0.78);
}

.lead {
  margin-top: 1.3rem;
  font-size: 1.14rem;
}

.quote-band {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 2px solid var(--burgundy);
  border-bottom: 1px solid var(--line);
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-main,
.image-overlap,
.image-panel img,
.feature-row img,
.download-intro img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-main {
  height: 460px;
}

.image-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 280px;
  border: 8px solid var(--paper);
  object-position: center 22%;
}

.section-heading {
  width: min(840px, 100%);
  margin-bottom: 2.4rem;
}

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

.profile-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.profile-feature h3 {
  margin: 0;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.profile-feature p:not(.section-kicker) {
  max-width: 620px;
}

.profile-feature img {
  justify-self: end;
  width: min(100%, 340px);
  height: 320px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 6px;
}

.practice-card,
.notice-panel,
.contact-card,
.hours-card,
.download-groups section {
  border-radius: 8px;
}

.practice-card {
  display: block;
  min-height: 220px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.practice-card span,
.notary-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.practice-card:hover,
.practice-card:focus-visible,
.notary-card:hover,
.notary-card:focus-visible {
  color: inherit;
  border-color: rgba(181, 135, 69, 0.75);
  transform: translateY(-2px);
}

.practice-card h3,
.notary-list h3,
.download-groups h3,
.hours-card h3,
.notice-panel h3 {
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.notice-panel {
  margin-top: 1rem;
  padding: 1.4rem;
  background: var(--white);
  color: var(--ink);
}

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

.image-panel img {
  height: 580px;
}

.notary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.6rem;
  margin: 2rem 0;
}

.notary-list article,
.notary-card {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--burgundy);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.section-contact .text-link,
.section-dark .text-link {
  color: var(--gold);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.feature-row img {
  height: 360px;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.download-intro img {
  height: 360px;
}

.download-intro p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.download-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.download-groups section {
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.download-groups a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  border-top: 1px solid var(--line);
}

.download-groups span {
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr) minmax(260px, 0.65fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-grid .section-label {
  grid-column: 1 / -1;
}

.contact-card,
.hours-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-card {
  font-style: normal;
  display: grid;
  gap: 0.45rem;
}

.hours-card dl {
  display: grid;
  gap: 1rem;
  margin: 0 0 1rem;
}

.hours-card dt {
  font-weight: 700;
}

.hours-card dd {
  margin: 0.15rem 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--white);
}

.site-footer div {
  display: grid;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-cookie {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-cookie:hover,
.footer-cookie:focus-visible {
  color: var(--gold);
}

.cookie-consent {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  display: none;
  width: min(1180px, calc(100vw - 2rem));
  transform: translateX(-50%);
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.15fr) auto;
  gap: 1.1rem;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(17, 24, 32, 0.98);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-consent__copy {
  min-width: 0;
}

.cookie-consent__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.cookie-consent p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-consent__choices {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  min-width: 0;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.cookie-option input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--burgundy);
}

.cookie-option > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cookie-option strong,
.cookie-option small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.cookie-option small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.cookie-consent__actions {
  display: grid;
  gap: 0.55rem;
  min-width: 190px;
}

.cookie-consent__minimal {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.cookie-consent__minimal:hover,
.cookie-consent__minimal:focus-visible {
  color: var(--gold);
}

.legal-page {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--paper);
}

.subpage-hero {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  color: var(--white);
}

.subpage-shell {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--gold);
}

.subpage-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
}

.subpage-hero p {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.detail-page {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  background: var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.detail-copy {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.detail-card {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-card h2,
.detail-card h3,
.topic-nav h2 {
  margin: 0 0 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.16;
}

.detail-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.detail-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.detail-card li + li {
  margin-top: 0.35rem;
}

.topic-nav {
  position: sticky;
  top: 6.5rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topic-nav a {
  display: block;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.topic-nav a:first-of-type {
  border-top: 0;
}

.legal-shell {
  width: min(880px, 100%);
  margin: 0 auto;
  padding-top: 2rem;
}

.legal-shell section {
  margin-top: 2.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.legal-shell h2 {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
}

.legal-shell a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .two-column,
  .two-column.reverse,
  .feature-row,
  .download-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .practice-grid,
  .download-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-feature {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .topic-nav {
    position: static;
  }

  .profile-feature img {
    justify-self: start;
    width: min(100%, 340px);
    height: 320px;
  }

  .image-stack {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.95rem;
  }

  .header-call {
    display: none;
  }

  .brand {
    min-width: 0;
    gap: 0.6rem;
  }

  .brand-mark {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong {
    max-width: 11.5rem;
    font-size: 0.98rem;
    white-space: normal;
  }

  .brand small {
    display: block;
    font-size: 0.7rem;
  }

  .main-nav {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0.45rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-content {
    width: min(350px, calc(100vw - 2.5rem));
    max-width: min(350px, calc(100vw - 2.5rem));
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-copy,
  .hero-actions,
  .hero-facts {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-facts,
  .practice-grid,
  .notary-list,
  .download-groups {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-feature {
    padding: 0.9rem;
  }

  .profile-feature img {
    width: min(100%, 300px);
    height: 280px;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .image-stack {
    min-height: auto;
  }

  .image-main,
  .image-panel img,
  .feature-row img,
  .download-intro img {
    height: 300px;
  }

  .image-overlap {
    position: relative;
    width: 78%;
    height: 230px;
    margin: -4rem 0 0 auto;
    object-position: center 18%;
  }

  .site-footer {
    flex-direction: column;
  }

  .cookie-consent__inner {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 2rem);
    overflow: auto;
  }

  .cookie-consent__actions {
    min-width: 0;
  }
}
