@import url("../css2");

:root {
  --ink: #00476b;
  --ink-soft: #315a70;
  --bordeaux: #6e120d;
  --bordeaux-dark: #4d0805;
  --teal: #6e120d;
  --gold: #b99d60;
  --paper: #ffffff;
  --surface: #e9e7e7;
  --line: #dbd7d7;
  --warm: #e9e7e7;
  --shadow: 0 20px 44px rgba(0, 71, 107, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(110, 18, 13, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 150px;
  align-items: center;
  min-height: 96px;
  padding: 8px 32px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(0, 71, 107, 0.18);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand {
  justify-self: center;
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 340px;
  max-width: min(46vw, 340px);
  max-height: 76px;
  height: auto;
  object-fit: contain;
}

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--bordeaux);
  border-radius: 0;
  background: var(--bordeaux);
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.button:hover {
  background: var(--bordeaux-dark);
  border-color: var(--bordeaux-dark);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--bordeaux);
}

.button.secondary:hover {
  color: #fff;
  background: var(--bordeaux);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 71, 107, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.menu-open .menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 70;
  width: min(420px, 88vw);
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: transform 220ms ease;
  overflow-y: auto;
}

body.menu-open .side-menu {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.side-menu-header img {
  width: 260px;
  max-height: 92px;
  object-fit: contain;
}

.menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.menu-nav {
  display: grid;
  gap: 6px;
  padding: 26px 0;
}

.menu-nav a {
  display: block;
  padding: 12px 10px;
  border-radius: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
}

.menu-nav a:hover,
.menu-nav a.is-active {
  background: var(--surface);
  color: var(--teal);
}

.menu-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 64dvh;
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(93, 13, 9, 0.76), rgba(93, 13, 9, 0.34));
}

.hero-inner,
.page-hero-inner {
  position: relative;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}

.hero h2 {
  max-width: 800px;
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

.hero p,
.page-hero p {
  max-width: 800px;
  margin: 0 0 26px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.94);
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: end;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .kicker,
.page-hero .kicker {
  color: #fff;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.visual-band {
  background: #fff;
}

.visual-band-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.visual-grid figure {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.visual-grid figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.visual-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: rgba(110, 18, 13, 0.9);
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 840px;
}

h1,
h2,
h3 {
  color: var(--bordeaux);
  line-height: 1.25;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--ink-soft);
  font-size: 1rem;
}

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

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

.service-card,
.team-card,
.info-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 71, 107, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
}

.service-card-content,
.info-card,
.quote-card {
  padding: 24px;
}

.service-card h3,
.team-card h3,
.info-card h3 {
  color: var(--bordeaux);
}

.home-services {
  padding-top: 68px;
}

.home-services .service-card {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  overflow: visible;
}

.home-services .service-card:hover {
  color: var(--ink);
}

.home-services .service-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface);
}

.image-label-frame {
  position: relative;
  overflow: hidden;
}

.service-image-wrap::before,
.image-label-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(110, 18, 13, 0.2);
  pointer-events: none;
}

.service-image-wrap img,
.image-label-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

.private-clients-label .service-image-label {
  background: var(--bordeaux);
  color: #fff;
}

.financial-planning-label .service-image-label,
.sponsoring-label .service-image-label {
  background: var(--bordeaux);
  color: #fff;
}

img[src="hand.jpg"] {
  object-position: center center;
}

img[src="well.jpg"] {
  object-position: center center;
}

.home-services .service-card-content {
  padding: 22px 18px 0;
}

.home-services .service-card-content p {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.handshake-panel {
  display: grid;
  place-items: center;
  min-height: 255px;
  background: #f8f4f0;
}

.handshake-panel img {
  width: min(260px, 82%);
}

.feature-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.callout {
  border-left: 5px solid var(--bordeaux);
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 71, 107, 0.06);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.page-actions a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.page-actions a::after {
  content: " >";
  color: var(--teal);
}

.strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.strip-list li {
  padding: 8px 13px;
  border: 1px solid rgba(0, 71, 107, 0.18);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.live-list {
  margin: 20px 0 0;
  padding-left: 24px;
}

.live-list li {
  margin: 0 0 12px;
}

.audience-band {
  overflow: hidden;
}

.audience-band h2 {
  margin-bottom: 24px;
}

.audience-marquee,
.audience-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 0;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 400;
}

.audience-marquee span,
.audience-flow li {
  display: inline-block;
}

.audience-marquee .arrow {
  margin: 0 18px;
  color: var(--teal);
}

.audience-flow li {
  display: inline-flex;
  align-items: center;
}

.audience-flow li:not(:last-child)::after {
  content: ">";
  margin: 0 18px;
  color: var(--teal);
  font-weight: 300;
}

.editorial-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.editorial-split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.editorial-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.editorial-copy {
  max-width: 720px;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.section-rule {
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.image-led {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-row h3 {
  margin-top: 0;
  color: var(--bordeaux);
  font-size: 30px;
  font-weight: 400;
}

.service-row img {
  width: 100%;
  min-height: 230px;
  object-fit: cover;
}

.testimonial-list {
  display: grid;
}

.testimonial-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 46px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.testimonial-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.testimonial-row blockquote {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 300;
}

.testimonial-row cite {
  display: block;
  margin-top: 22px;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bordeaux);
}

.team-intro {
  position: relative;
  overflow: hidden;
}

.team-intro::after {
  content: "";
  position: absolute;
  right: 10%;
  top: auto;
  bottom: 42px;
  width: 300px;
  height: 150px;
  background: url("../logomainbanner.png") center / contain no-repeat;
  opacity: 0.075;
  pointer-events: none;
}

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

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 30px;
}

.team-mark {
  width: 78px;
  height: 106px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.team-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-card .role {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 700;
}

.team-card .expertise {
  margin: 0;
  color: var(--ink-soft);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1.3;
}

.quote-card cite {
  display: block;
  margin-top: 22px;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.testimonial-feature {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 56px 0;
}

.testimonial-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  background:
    linear-gradient(rgba(0, 71, 107, 0.18), rgba(0, 71, 107, 0.18)),
    url("../man.png") center / cover no-repeat;
  filter: grayscale(1) sepia(0.18) hue-rotate(165deg) saturate(1.15);
}

.testimonial-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 48%);
  margin-right: 5%;
  padding: 44px 46px;
  background: var(--bordeaux);
  color: #fff;
}

.testimonial-panel blockquote {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
}

.testimonial-panel cite {
  display: block;
  margin-top: 30px;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

.contact-block {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: start;
}

.contact-media {
  display: grid;
  gap: 30px;
}

.map-panel {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.map-panel iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

.address-card {
  padding: 0 0 0 28px;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.address-card h3 {
  color: var(--bordeaux);
}

.address-card a {
  color: var(--teal);
}

.simple-form {
  display: grid;
  gap: 14px;
}

.simple-form label {
  display: grid;
  gap: 6px;
  font-weight: 400;
}

.simple-form input,
.simple-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.simple-form textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 54px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer::before {
  content: none;
}

.site-footer a {
  color: #fff;
}

.footer-hero {
  display: none;
}

.site-footer .container {
  width: min(1860px, calc(100% - 28px));
}

.footer-brand-large h2 {
  max-width: 760px;
  margin: 22px 0 18px;
  color: #fff;
  font-size: 42px;
  line-height: 1.18;
}

.footer-brand-large p {
  max-width: 760px;
  font-size: 20px;
}

.footer-office-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-office-card h3,
.footer-columns h3 {
  color: #fff;
}

.footer-columns {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) 0.85fr 0.85fr 0.78fr 1fr;
  gap: 52px;
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand-mark {
  padding-top: 2px;
}

.footer-logo {
  width: 600px;
  max-width: min(100%, 600px);
  height: auto;
  margin-bottom: 4px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  filter: none;
}

.footer-brand-mark .footer-logo {
  width: 380px;
  max-width: 100%;
  margin: 0;
}

.cookie-consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 24, 36, 0.54);
}

.cookie-consent {
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 24, 36, 0.28);
}

.cookie-consent h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.cookie-consent p {
  color: var(--ink-soft);
  font-size: 18px;
}

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

.cookie-actions button {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--ink);
  color: #fff;
}

.cookie-refuse {
  background: #fff;
  color: var(--ink);
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a,
.site-footer p {
  font-size: 18px;
  line-height: 1.5;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.72);
}

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 78px;
    padding: 8px 16px;
  }

  .brand {
    justify-self: end;
  }

  .brand img {
    max-width: min(68vw, 280px);
    max-height: 62px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 58dvh;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .section {
    padding: 56px 0;
  }

  .grid-2,
  .grid-3,
  .editorial-split,
  .service-row,
  .testimonial-row,
  .visual-grid,
  .team-grid,
  .contact-block,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .visual-grid figure,
  .visual-grid img {
    min-height: 280px;
    aspect-ratio: auto;
  }

  .footer-brand-large h2 {
    font-size: 32px;
  }

  .footer-logo {
    width: 420px;
    padding: 0;
  }

  .footer-brand-mark .footer-logo {
    width: min(100%, 390px);
  }

  .site-footer {
    padding-top: 64px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .audience-marquee {
    font-size: 32px;
  }

  .audience-flow {
    font-size: 32px;
  }

  .editorial-image {
    min-height: 280px;
  }

  .image-led {
    min-height: 320px;
  }

  .map-panel {
    min-height: 300px;
  }

  .map-panel iframe {
    height: 300px;
  }

  .address-card {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .team-intro::after {
    display: none;
  }

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

  .team-mark {
    width: 72px;
    height: 98px;
  }

  .testimonial-feature {
    min-height: 0;
    display: block;
    padding: 0;
  }

  .testimonial-feature::before {
    position: relative;
    display: block;
    width: 100%;
    height: 330px;
  }

  .testimonial-panel {
    width: 100%;
    margin: 0;
    padding: 34px 30px;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-inner,
  .page-hero-inner {
    width: min(100% - 28px, 1280px);
  }

  .side-menu {
    padding: 22px;
  }

  .side-menu-header img {
    width: 210px;
    max-height: 74px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .cookie-consent {
    padding: 24px;
  }

  .cookie-actions {
    display: grid;
  }

  .audience-flow {
    display: grid;
    gap: 0;
    font-size: 28px;
  }

  .audience-flow li {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 71, 107, 0.14);
  }

  .audience-flow li:not(:last-child)::after {
    content: "";
    margin: 0;
  }
}
