:root {
  color-scheme: only light;
  --ink: #15241f;
  --muted: #6a6358;
  --green-950: #061f19;
  --green-900: #092b22;
  --green-800: #0b4032;
  --sage: #71846f;
  --cream: #fff9eb;
  --paper: #fffdf7;
  --gold: #e7c978;
  --gold-dark: #b99242;
  --line: rgba(21, 36, 31, 0.13);
  --line-light: rgba(255, 249, 235, 0.18);
  --shadow: 0 24px 70px rgba(6, 31, 25, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--green-950);
  padding: 10px 14px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-nowrap {
  white-space: nowrap;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px clamp(18px, 4vw, 56px);
  background: var(--green-950);
  color: rgba(255, 249, 235, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: 16px clamp(18px, 4vw, 56px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(6, 31, 25, 0.13);
}

.brand img {
  display: block;
  width: clamp(210px, 22vw, 320px);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 38px);
  font-weight: 800;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-dark);
}

.mobile-nav-call,
.nav-toggle,
.mobile-action-bar {
  display: none;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--green-950);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(231, 201, 120, 0.38);
  outline-offset: 2px;
}

.nav-toggle-bars {
  display: grid;
  gap: 5px;
  width: 22px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--green-900);
  color: var(--cream);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  color: var(--cream);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 25, 0.94), rgba(6, 31, 25, 0.62) 44%, rgba(6, 31, 25, 0.1)),
    linear-gradient(0deg, rgba(6, 31, 25, 0.58), transparent 42%);
}

.hero-inner {
  position: relative;
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 118px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0 90px;
}

.hero.page-hero,
.hero.page-hero .hero-inner {
  min-height: min(660px, 76svh);
}

.hero.page-hero .hero-inner {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 72px);
}

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

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

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

.hero h1 {
  width: min(820px, 100%);
  margin-top: 26px;
  font-size: clamp(4rem, 9vw, 8.6rem);
  text-wrap: balance;
}

.hero h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  width: min(680px, 100%);
  margin-top: 28px;
  color: rgba(255, 249, 235, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-action-row {
  display: flex;
  width: min(1040px, 100%);
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  margin-top: 32px;
}

.hero-actions {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--cream);
  color: var(--green-950);
}

.button-ghost {
  border-color: rgba(255, 249, 235, 0.34);
  color: var(--cream);
  background: rgba(6, 31, 25, 0.28);
}

.button-dark {
  background: var(--green-900);
  color: var(--cream);
}

.button:hover {
  border-color: var(--gold);
}

.hero-note {
  flex: 0 0 min(400px, 38vw);
  padding: 24px;
  background: rgba(6, 31, 25, 0.72);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(8px);
}

.hero-note span,
.contact-card span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
}

.hero-rating strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}

.rating-score {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.hero-note small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 249, 235, 0.72);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.intro-copy h2,
.favorites h2,
.menu-head h2,
.contact h2 {
  margin-top: 14px;
  color: var(--green-950);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.section-dark h2 {
  color: var(--cream);
}

.intro-copy p,
.menu-head p,
.contact p,
.favorites p {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.13rem);
}

.section-dark p {
  color: rgba(255, 249, 235, 0.74);
}

.intro-copy .lead {
  color: var(--ink);
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--gold-dark);
  font-weight: 900;
}

.section-dark .text-link {
  margin-top: 0;
  color: var(--gold);
}

.intro-media {
  position: relative;
}

.intro-media::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(185, 146, 66, 0.36);
  content: "";
}

.intro-media img {
  position: relative;
  width: 100%;
  height: min(680px, 72vh);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 6vw, 80px);
  background: var(--line);
}

.feature-row article {
  min-height: 190px;
  padding: 26px;
  background: var(--cream);
}

.feature-row h3,
.favorite-cards h3,
.menu-category h3 {
  margin-top: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.feature-row h3 {
  margin-top: 0;
}

.feature-row p {
  margin-top: 12px;
  color: var(--muted);
}

.section-dark {
  background: var(--green-950);
  color: var(--cream);
}

.favorites-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
}

.favorites-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.favorite-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line-light);
}

.favorite-cards article {
  min-height: 290px;
  padding: 28px;
  background: rgba(255, 249, 235, 0.07);
}

.favorite-cards small {
  display: block;
  margin-top: 0;
  color: rgba(255, 249, 235, 0.58);
  font-weight: 900;
  text-transform: uppercase;
}

.favorite-cards h3 {
  margin-top: 10px;
}

.favorite-cards p {
  margin-top: 14px;
}

.favorite-cards strong {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 1.1rem;
}

.steps-cards article {
  min-height: 0;
}

.steps-cards small {
  color: var(--gold);
}

.menu-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.menu-tools {
  margin-top: 34px;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

[data-menu-search] {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
}

[data-menu-search]:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(231, 201, 120, 0.25);
}

.category-filter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.category-filter button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--cream);
  color: var(--green-950);
  cursor: pointer;
  font-weight: 900;
}

.category-filter button.is-active,
.category-filter button:hover,
.category-filter button:focus-visible {
  background: var(--green-900);
  color: var(--cream);
}

.menu-list {
  margin-top: 34px;
}

.menu-category {
  padding: clamp(26px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.menu-category[hidden],
.menu-item[hidden] {
  display: none;
}

.menu-category header {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.menu-category header > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold);
  font-weight: 900;
}

.menu-category h3 {
  margin-top: 0;
  color: var(--green-950);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.menu-category header p {
  margin-top: 6px;
  color: var(--muted);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 132px;
  padding: 20px;
  background: #fff;
}

.menu-item > span {
  color: var(--gold-dark);
  font-weight: 900;
}

.menu-item h4 {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.1;
}

.menu-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-item strong {
  color: var(--green-900);
  white-space: nowrap;
}

.no-results {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--cream);
  color: var(--muted);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(520px, 1fr);
  gap: clamp(96px, 8vw, 160px);
  align-items: start;
}

.contact h2 {
  max-width: 6.2em;
  font-size: clamp(3rem, 3.35vw, 4.25rem);
  text-wrap: balance;
}

.contact-card {
  display: grid;
  gap: 1px;
  background: var(--line-light);
}

.contact-card div {
  padding: 24px;
  background: rgba(255, 249, 235, 0.08);
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.contact-directions-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(231, 201, 120, 0.9);
  border-radius: var(--radius);
  padding: 12px 16px;
  background: var(--gold);
  color: var(--green-950);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact-directions-button:hover,
.contact-directions-button:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--green-950);
  transform: translateY(-2px);
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card .contact-directions-button:hover,
.contact-card .contact-directions-button:focus-visible {
  color: var(--green-950);
}

.site-footer {
  padding: 34px 0;
  background: var(--green-950);
  color: var(--cream);
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid img {
  display: block;
  width: min(320px, 68vw);
  height: auto;
}

.footer-grid p {
  color: rgba(255, 249, 235, 0.7);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-grid a {
  color: var(--gold);
  font-weight: 900;
}

.mobile-action-bar svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  width: min(900px, 100%);
  margin-top: 14px;
  color: var(--green-950);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

.legal-hero p {
  width: min(760px, 100%);
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.legal-content {
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.legal-note,
.legal-card {
  border: 1px solid var(--line);
  background: #fff;
}

.legal-note {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.legal-note h2,
.legal-section h2 {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.legal-note p,
.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-note p,
.legal-section p,
.legal-section ul {
  margin-top: 14px;
}

.legal-card {
  display: grid;
}

.legal-section {
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section ul {
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: 8px;
}

.placeholder {
  color: var(--gold-dark);
  font-weight: 900;
}

.legal-address {
  margin-top: 16px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 980px) {
  body.has-mobile-actions {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 16px;
  }

  .brand img {
    width: clamp(178px, 52vw, 230px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-header.is-menu-open .nav-toggle-bars span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle-bars span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    gap: 0;
    margin: 0 -16px -12px;
    padding: 10px 16px 18px;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(6, 31, 25, 0.1);
  }

  .site-header.is-menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-call {
    display: block;
    color: var(--gold-dark);
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-action-row {
    width: min(760px, 100%);
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions {
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: min(100%, 520px);
  }

  .hero-note {
    flex-basis: auto;
    width: min(400px, 100%);
  }

  .intro-grid,
  .favorites-grid,
  .menu-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .favorite-cards,
  .menu-items {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 48px 0 42px;
  }

  .legal-hero h1 {
    width: min(760px, 100%);
    font-size: clamp(2.7rem, 7.6vw, 4.6rem);
    overflow-wrap: break-word;
    hyphens: manual;
  }

  .legal-content {
    padding: 44px 0 64px;
  }

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

  .legal-note {
    position: static;
  }

  .legal-note,
  .legal-card {
    width: 100%;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--green-900);
    box-shadow: 0 -14px 38px rgba(6, 31, 25, 0.2);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 950;
  }

  .mobile-action-bar a:first-child {
    background: var(--cream);
    color: var(--green-950);
  }

  .mobile-action-bar a:last-child {
    background: var(--green-900);
    color: var(--cream);
  }
}

@media (max-width: 1300px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact h2 {
    max-width: 10em;
  }

  .contact-card {
    width: min(760px, 100%);
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    gap: 4px;
    padding-inline: 16px;
    font-size: 0.78rem;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: clamp(168px, 54vw, 204px);
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-inner {
    padding: 56px 0 34px;
  }

  .hero-note {
    display: block;
    padding: 18px;
  }

  .hero-action-row {
    width: 100%;
    gap: 16px;
  }

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

  .rating-score {
    font-size: 1.9rem;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12.4vw, 4rem);
    overflow-wrap: normal;
  }

  .hero h1 .text-nowrap {
    white-space: nowrap;
  }

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

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 16px;
    font-size: 1rem;
  }

  .intro-copy h2,
  .favorites h2,
  .menu-head h2,
  .contact h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .intro-media::before {
    inset: -10px 10px 10px -10px;
  }

  .intro-media img {
    height: 430px;
  }

  .menu-category header {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .menu-item strong {
    grid-column: 2;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .legal-note {
    position: static;
  }

  .legal-hero {
    padding: 38px 0 32px;
  }

  .legal-hero h1 {
    margin-top: 10px;
    font-size: clamp(2.15rem, 10vw, 3.05rem);
    line-height: 1.02;
  }

  .legal-hero p {
    margin-top: 14px;
    font-size: 1rem;
  }

  .legal-content {
    padding: 28px 0 48px;
  }

  .legal-note {
    padding: 20px;
  }

  .legal-section {
    padding: 20px;
  }

  .legal-note h2,
  .legal-section h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    overflow-wrap: anywhere;
  }

  .legal-note p,
  .legal-section p,
  .legal-section li,
  .legal-address,
  .placeholder {
    overflow-wrap: anywhere;
  }
}
