:root {
  --ink: #241c17;
  --muted: #6f6258;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --rust: #a84428;
  --rust-dark: #7d2f1b;
  --sage: #66705c;
  --gold: #d3a252;
  --line: #ded2c4;
  --shadow: 0 18px 50px rgba(36, 28, 23, 0.12);
  --radius: 1.25rem;
  --max: 74rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.privacy-modal-open {
  overflow: hidden;
}

body.privacy-banner-visible {
  padding-bottom: var(--privacy-banner-height, 0);
}

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

a {
  color: var(--rust-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.eyebrow,
.button,
.site-nav a,
.topbar {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.65em;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.015em;
}

h1 {
  font-size: clamp(3.15rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.85rem);
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

p,
ul,
ol {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  border-radius: 0.4rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.topbar {
  background: var(--ink);
  color: #fff8ee;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.55rem;
}

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

.topbar a:hover {
  color: #f1c985;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(36, 28, 23, 0.12);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 5.1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  width: 10rem;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 1.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--rust);
}

.site-nav .nav-order {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  padding: 0.55rem 1rem;
}

.site-nav .nav-order:hover {
  background: var(--rust-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(74vh, 47rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero__media,
.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 13, 9, 0.15), rgba(20, 13, 9, 0.83));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 55rem;
  padding-block: clamp(5rem, 10vw, 8.25rem) clamp(3.5rem, 7vw, 6.5rem);
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 0.2em;
}

.hero__lead {
  max-width: 38rem;
  margin-bottom: 1.75rem;
  color: #fff7eb;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--rust);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f1c985;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button-row--center {
  justify-content: center;
}

.section-offset {
  margin-top: 4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 2px solid var(--rust);
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--rust-dark);
  background: var(--rust-dark);
  color: #fff;
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.button--outline {
  background: transparent;
  color: var(--rust-dark);
}

.button--outline:hover {
  color: #fff;
}

.hero .button--outline,
.page-hero .button--outline {
  border-color: #fff;
  color: #fff;
}

.hero .button--outline:hover,
.page-hero .button--outline:hover {
  background: #fff;
  color: var(--ink);
}

.section {
  padding-block: clamp(4.25rem, 8vw, 7.5rem);
}

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

.section--ink {
  background: var(--ink);
  color: #fff8ee;
}

.section--rust {
  background: var(--rust-dark);
  color: #fff8ee;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2.5rem;
}

.section-heading p {
  max-width: 39rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--ink .section-heading p,
.section--rust .section-heading p {
  color: #e8dbcc;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.split__image {
  width: 100%;
  min-height: 28rem;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split__content > :last-child {
  margin-bottom: 0;
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(36, 28, 23, 0.07);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  padding: 1.45rem;
}

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

.card__link {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-top: 2px solid var(--gold);
  padding-top: 1rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.hours-card {
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.hours-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-block: 0.55rem;
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff8ec;
  color: var(--ink);
  padding: 1rem 1.15rem;
}

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

.page-hero {
  position: relative;
  min-height: 28rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding-block: 6rem 3.5rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero p {
  max-width: 39rem;
  margin-bottom: 0;
  color: #fff7eb;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.menu-jump {
  position: sticky;
  z-index: 50;
  top: 7.2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(12px);
}

.menu-jump ul {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  margin: 0;
  padding: 0.85rem 0;
  list-style: none;
  scrollbar-width: thin;
}

.menu-jump a {
  display: block;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  text-decoration: none;
}

.menu-jump a:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.menu-section + .menu-section {
  margin-top: 4rem;
}

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

.menu-item {
  border-top: 1px solid var(--line);
  padding-block: 1rem;
}

.menu-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.5rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.legal h2 {
  margin-top: 2.5rem;
  font-size: 2rem;
}

.legal h3 {
  margin-top: 1.75rem;
  font-size: 1.35rem;
}

.legal li + li {
  margin-top: 0.45rem;
}

.legal .effective {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.legal-nav {
  position: sticky;
  top: 8.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 1.25rem;
}

.legal-nav h2 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.legal-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-nav li + li {
  margin-top: 0.45rem;
}

.legal-nav a {
  font-size: 0.92rem;
}

.legal-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.legal-overview__card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 0.9rem;
  background: var(--paper);
  padding: 1.25rem;
}

.legal-overview__card h2,
.legal-overview__card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.3rem;
}

.legal-overview__card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.policy-table-wrap {
  overflow-x: auto;
  margin-block: 1.25rem 2rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}

.policy-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 0.93rem;
}

.policy-table th,
.policy-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.privacy-choice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 10px 30px rgba(36, 28, 23, 0.06);
}

.privacy-choice-card h2,
.privacy-choice-card h3 {
  font-size: 1.65rem;
}

.privacy-choice-card p:last-child {
  margin-bottom: 0;
}

.privacy-banner {
  position: fixed;
  z-index: 900;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #18120f;
  color: #efe3d4;
  box-shadow: 0 -18px 50px rgba(24, 18, 15, 0.25);
}

.privacy-banner[hidden],
.privacy-modal[hidden] {
  display: none;
}

.privacy-banner__inner {
  width: min(calc(100% - 2rem), var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin-inline: auto;
  padding-block: 1.25rem;
}

.privacy-banner__copy {
  max-width: 49rem;
}

.privacy-banner .eyebrow {
  margin-bottom: 0.3rem;
  color: #f1c985;
}

.privacy-banner h2 {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.privacy-banner p {
  margin-bottom: 0;
}

.privacy-banner a,
.privacy-banner .privacy-text-button {
  color: #f1c985;
}

.privacy-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(10rem, 1fr));
  gap: 0.65rem;
}

.privacy-banner__actions .button {
  white-space: nowrap;
}

.privacy-banner__actions .button--outline {
  border-color: #fff;
  color: #fff;
}

.privacy-text-button,
.footer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.privacy-text-button {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 0.15rem;
  font-size: 0.9rem;
}

.legal .privacy-text-button {
  color: var(--rust-dark);
  font-size: inherit;
}

.legal .privacy-text-button:hover {
  color: var(--rust);
}

.footer-link-button {
  color: #efe3d4;
}

.footer-link-button:hover {
  color: #f1c985;
}

.privacy-modal {
  position: fixed;
  z-index: 950;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 15, 0.72);
  backdrop-filter: blur(5px);
}

.privacy-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: min(90vh, 48rem);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(1.35rem, 4vw, 2.4rem);
  box-shadow: 0 25px 80px rgba(24, 18, 15, 0.35);
}

.privacy-panel > h2 {
  padding-right: 2.2rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.privacy-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
}

.privacy-option h3 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.privacy-option p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-option__status {
  border-radius: 999px;
  background: var(--cream);
  color: var(--sage);
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-option--control {
  cursor: pointer;
}

.privacy-switch input {
  width: 1.45rem;
  height: 1.45rem;
  accent-color: var(--rust);
  cursor: pointer;
}

.privacy-switch input:disabled {
  cursor: not-allowed;
}

.privacy-switch span {
  display: none;
}

.privacy-panel__links {
  margin-block: 1.15rem;
  font-size: 0.9rem;
}

.privacy-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2,
.cta-band p {
  margin-bottom: 0.3rem;
}

.site-footer {
  background: #18120f;
  color: #efe3d4;
  padding-block: 4rem 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  width: 9rem;
  margin-bottom: 1rem;
  filter: invert(1);
}

.site-footer h2 {
  margin-bottom: 0.85rem;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

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

.site-footer a:hover {
  color: #f1c985;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1rem;
  color: #bfb0a2;
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom--compact {
  margin-top: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 5rem;
}

.error-code {
  margin: 0;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.8;
}

.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: 62rem) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__hours {
    display: none;
  }

  .header__inner {
    flex-wrap: wrap;
    gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    flex-basis: 100%;
    margin: 0;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-block: 0.65rem 1rem;
  }

  .site-nav a {
    display: block;
    padding: 0.7rem 0;
  }

  .site-nav .nav-order {
    display: flex;
    margin-top: 0.35rem;
  }

  .site-header.nav-enhanced .site-nav {
    display: none;
  }

  .site-header.nav-enhanced .site-nav.is-open {
    display: block;
  }

  .split,
  .footer-grid,
  .legal-overview {
    grid-template-columns: 1fr 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .privacy-banner__inner {
    grid-template-columns: 1fr;
  }

  .privacy-banner__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards,
  .feature-list,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-jump {
    top: 6.85rem;
  }
}

@media (max-width: 42rem) {
  .container,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand {
    width: 8.75rem;
  }

  .header__inner {
    min-height: 4.4rem;
  }

  .hero {
    min-height: 38rem;
  }

  .split,
  .cards,
  .feature-list,
  .contact-grid,
  .footer-grid,
  .menu-grid,
  .legal-overview {
    grid-template-columns: 1fr;
  }

  .privacy-banner__inner {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .privacy-banner__actions {
    grid-template-columns: 1fr;
  }

  .privacy-text-button {
    grid-column: auto;
  }

  .privacy-panel__actions {
    flex-direction: column-reverse;
  }

  .privacy-panel__actions .button {
    width: 100%;
  }

  .split__image {
    min-height: 21rem;
  }

  .split__content {
    order: -1;
  }

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

  .button-row .button {
    width: 100%;
  }

  .menu-jump {
    top: 6.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .site-footer,
  .menu-jump,
  .button-row,
  .cta-band {
    display: none !important;
  }

  .privacy-banner,
  .privacy-modal {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .page-hero {
    min-height: auto;
    background: #fff;
    color: #000;
  }

  .page-hero__media,
  .page-hero::after {
    display: none;
  }

  .page-hero__content {
    padding: 1rem 0;
  }

  .page-hero p {
    color: #000;
  }

  a {
    color: #000;
  }
}
