/* LCS Brutalist — Space Grotesk (SIL OFL 1.1, free commercial) */
:root {
  --black: #020202;
  --cream: #ebe0d3;
  --gray: #4d4d4f;
  --font: "Space Grotesk", system-ui, sans-serif;
  --nav-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--black);
  color: var(--cream);
  line-height: 1.45;
  overflow-x: hidden;
}

a { color: inherit; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

.stripe-bg {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}
.stripe { height: 100%; }
.stripe--dark { background: var(--black); }
.stripe--cream { background: var(--cream); }
.stripe--gray { background: var(--gray); }

#main { position: relative; z-index: 1; padding-bottom: calc(var(--nav-h) + 0.5rem); }
.page-home #main { padding-bottom: 0; }

.section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  scroll-margin-top: 0;
  padding: 3rem clamp(1.25rem, 4vw, 4rem);
}
.section--hero { background: var(--black); color: var(--cream); }
.section--cream { background: var(--cream); color: var(--black); }
.section--gray { background: var(--gray); color: var(--cream); }
.section--dark { background: var(--black); color: var(--cream); }

.section__inner { width: min(1100px, 100%); }
.section__geo {
  position: absolute;
  right: 5%;
  bottom: 15%;
  width: clamp(80px, 15vw, 180px);
  opacity: 0.12;
  color: var(--cream);
  transform: rotate(0deg);
  transition: transform 1.2s var(--ease);
}
.section--hero.in-view .section__geo { transform: rotate(12deg) translateY(-20px); }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 1.5rem 0 0.5rem;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  padding-bottom: 0.25rem;
}
.display {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 1rem;
  max-width: 14ch;
}
.lead { font-size: clamp(1rem, 2vw, 1.25rem); max-width: 42ch; margin-bottom: 2rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.section--hero .btn--outline {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 2rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.section-sub { margin: -1rem 0 2rem; opacity: 0.85; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: var(--black);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.section--cream .btn,
.section--gray .btn { background: var(--cream); color: var(--black); }
.btn--outline {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 2px currentColor;
}

.service-grid { list-style: none; padding: 0; margin: 0; }
.service-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: end;
  padding: 0;
  border-bottom: 2px solid currentColor;
}

.service-item__link {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: end;
  padding: 1.25rem 0;
  color: inherit;
  text-decoration: none;
  grid-column: 1 / -1;
}

.service-item__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.service-index { font-weight: 700; font-size: 1.1rem; }
.service-label { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; }
.service-line { grid-column: 1 / -1; height: 4px; background: currentColor; width: 0; transition: width 0.8s var(--ease); }
.service-item.in-view .service-line { width: 100%; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tag-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream);
  font-weight: 500;
}

.material-list { list-style: none; padding: 0; margin: 0; }
.material-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  border-bottom: 1px solid rgba(235, 224, 211, 0.35);
}
.mat-bar {
  width: 28px;
  height: 28px;
  background: var(--cream);
  flex-shrink: 0;
}

.process-list { list-style: none; padding: 0; margin: 0; counter-reset: proc; }
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 2px solid var(--black);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
}
.process-num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  min-width: 2ch;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.work-item {
  padding: 0;
  border-bottom: 1px solid rgba(235, 224, 211, 0.25);
  border-right: 1px solid rgba(235, 224, 211, 0.15);
}
.work-link {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.work-link:hover h3 { text-decoration: underline; }
.work-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1rem;
  background: var(--gray);
}
.work-thumb--placeholder {
  background: linear-gradient(90deg, var(--black) 33%, var(--gray) 33% 66%, var(--cream) 66%);
  opacity: 0.35;
}
.work-item h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.work-item p { margin: 0; opacity: 0.8; font-size: 0.95rem; }
.work-cat {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: underline;
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }

.address { font-style: normal; font-size: 1.1rem; line-height: 1.8; }
.social { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social a { text-decoration: underline; font-weight: 700; }

.map-wrap {
  margin-top: 2rem;
  max-width: 640px;
}
.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.1);
}
.map-directions {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* Product detail */
.product-page { background: var(--gray); color: var(--cream); min-height: 100vh; min-height: 100dvh; padding-bottom: var(--page-bottom, var(--nav-h)); }
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 2px solid var(--black);
}
.product-detail { padding: 2rem clamp(1.25rem, 4vw, 4rem); max-width: 800px; }
.product-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--black);
  display: inline-block;
  margin-bottom: 1rem;
}
.product-detail h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 1.5rem; text-decoration: underline; text-underline-offset: 8px; }
.product-figure img { width: 100%; max-height: 480px; object-fit: cover; margin-bottom: 1.5rem; }
.product-placeholder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 200px;
  margin-bottom: 1.5rem;
}
.product-placeholder span:nth-child(1) { background: var(--black); }
.product-placeholder span:nth-child(2) { background: var(--cream); box-shadow: inset 0 0 0 2px var(--black); }
.product-placeholder span:nth-child(3) { background: var(--gray); }
.product-excerpt { font-size: 1.15rem; margin-bottom: 1rem; }
.product-body p { margin: 1rem 0; }
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.wa-fab {
  position: fixed;
  left: 1rem;
  bottom: calc(var(--nav-h) + max(1rem, env(safe-area-inset-bottom, 0px)));
  z-index: 190;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--black);
}
/* wa-fab hover in brutal-breathe.css */

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--nav-h) + 0.25rem);
  z-index: 110;
  padding: 0 1rem;
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta:not([hidden]) { display: block; }
}
.mobile-cta__btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  background: var(--black);
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--gray);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(var(--nav-h) + 4.5rem);
  z-index: 105;
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--cream);
  color: var(--black);
  border-bottom: 3px solid var(--black);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0 0 0.75rem; font-size: 0.85rem; }
.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cookie-banner__actions a { font-weight: 600; }
.cookie-banner__actions button {
  margin-left: auto;
  padding: 0.5rem 1rem;
  background: var(--black);
  color: var(--cream);
  border: 0;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(2, 2, 2, 0.92);
  display: grid;
  place-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream);
  color: var(--black);
  border: 0;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: 700;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.testimonial-list { list-style: none; padding: 0; margin: 0; }
.testimonial-item {
  padding: 1.5rem 0;
  border-bottom: 2px solid rgba(235, 224, 211, 0.3);
}
.testimonial-item blockquote {
  margin: 0 0 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 500;
  max-width: 40ch;
}
.testimonial-item cite {
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: underline;
}

.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid rgba(235, 224, 211, 0.35);
  padding: 0.25rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0 0 1rem;
  opacity: 0.9;
  max-width: 60ch;
}

.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 4rem) 1rem;
  background: var(--black);
  color: var(--cream);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1rem; }
.footer-legal a { text-decoration: underline; font-weight: 700; }
.footer-cash, .footer-copy { margin: 0.35rem 0; font-size: 0.9rem; opacity: 0.85; }

.bottom-nav {
  display: none !important;
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.5rem 0.65rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.bottom-nav a:hover,
.bottom-nav a:focus-visible { border-bottom-color: var(--black); }
.bottom-nav .lang {
  margin-left: 0.25rem;
  background: var(--black);
  color: var(--cream);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Modal / Wizard */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 2, 2, 0.75);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal__panel {
  background: var(--cream);
  color: var(--black);
  width: min(520px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: 0;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--black);
}
.wizard-step label { display: block; margin: 1rem 0 0.35rem; font-weight: 700; }
.wizard-step input,
.wizard-step select,
.wizard-step textarea {
  width: 100%;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 2px solid var(--gray);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
}
.wizard-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.radio-row { display: flex; gap: 1.5rem; margin: 0.5rem 0; }
.form-msg { font-weight: 700; margin-top: 1rem; }

/* Chatbot */
.chatbot {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--nav-h) + 1.5rem);
  width: min(360px, calc(100% - 2rem));
  z-index: 150;
  background: var(--cream);
  color: var(--black);
  display: flex;
  flex-direction: column;
  max-height: 420px;
}
.chatbot[hidden] { display: none; }
.chatbot__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-bottom: 2px solid var(--black);
}
.chatbot__header button { background: none; border: 0; font-size: 1.5rem; cursor: pointer; }
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 200px;
}
.chat-msg {
  max-width: 90%;
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
}
.chat-msg--bot { background: var(--black); color: var(--cream); align-self: flex-start; }
.chat-msg--user { align-self: flex-end; text-decoration: underline; font-weight: 600; }
.chatbot__input {
  display: flex;
  border-top: 2px solid var(--black);
}
.chatbot__input input {
  flex: 1;
  border: 0;
  padding: 0.75rem;
  font-family: inherit;
  background: transparent;
}
.chatbot__input button {
  border: 0;
  background: var(--black);
  color: var(--cream);
  padding: 0 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* Hero split + slider */
.section--hero-split {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
}
@media (min-width: 900px) {
  .section--hero-split {
    grid-template-columns: 1.1fr 1fr;
  }
}
.hero-slider {
  position: relative;
  min-height: 42vh;
  background: var(--black);
}
@media (min-width: 900px) {
  .hero-slider { min-height: 100%; }
}
.hero-content {
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Carousel */
.carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.carousel__viewport--work {
  max-width: 900px;
  margin: 0 auto;
}
.carousel__track {
  display: flex;
  transition: transform 0.65s var(--ease);
}
.carousel__slide {
  flex: 0 0 100%;
  position: relative;
  min-width: 100%;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 42vh;
}
@media (min-width: 900px) {
  .carousel__slide img { min-height: 100%; }
}
.carousel__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(2, 2, 2, 0.85));
  color: var(--cream);
}
.carousel__title { display: block; font-weight: 700; font-size: 1.25rem; }
.carousel__sub { display: block; font-size: 0.85rem; opacity: 0.85; margin-top: 0.25rem; }
/* Legacy side arrows only — unified bar uses .carousel__nav--ctrl */
.carousel__nav:not(.carousel__nav--ctrl) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  background: var(--cream);
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.22s ease, color 0.22s ease;
}
.carousel__nav:not(.carousel__nav--ctrl).carousel__prev { left: 0.75rem; }
.carousel__nav:not(.carousel__nav--ctrl).carousel__next { right: 0.75rem; }
.carousel__dots:not(.carousel__controls .carousel__dots) {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}
.carousel__dots:not(.carousel__controls .carousel__dots) button {
  width: 28px;
  height: 4px;
  border: 0;
  padding: 0;
  background: rgba(235, 224, 211, 0.35);
  cursor: pointer;
}
.carousel__dots:not(.carousel__controls .carousel__dots) button.is-active { background: var(--cream); }

.work-carousel { position: relative; margin-top: 1rem; }
.carousel__slide--work img { min-height: 320px; max-height: 420px; }
.work-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.work-slide-text {
  padding: 1.25rem 0 0;
  border-top: 2px solid rgba(235, 224, 211, 0.25);
}

/* Brutalist map — see kinetic.css for full-bleed band */
.lcs-map-frame {
  position: relative;
  overflow: hidden;
}
.lcs-map-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 500;
  pointer-events: none;
}
.lcs-map-stripe span:nth-child(1) { background: var(--black); }
.lcs-map-stripe span:nth-child(2) { background: var(--cream); }
.lcs-map-stripe span:nth-child(3) { background: var(--gray); }
.lcs-map {
  width: 100%;
  background: var(--black);
  z-index: 1;
}
.lcs-map .leaflet-tile-pane {
  filter: grayscale(1) contrast(1.08) brightness(0.95);
}
.lcs-map .leaflet-container {
  background: var(--cream);
  font-family: var(--font);
}
.lcs-marker-wrap { background: transparent; border: 0; }
.lcs-marker {
  display: grid;
  grid-template-columns: 4px 4px 4px;
  gap: 2px;
  height: 36px;
  align-items: end;
  filter: drop-shadow(0 2px 0 var(--black));
}
.lcs-marker span { display: block; }
.lcs-marker span:nth-child(1) { height: 28px; background: var(--black); }
.lcs-marker span:nth-child(2) { height: 36px; background: var(--cream); }
.lcs-marker span:nth-child(3) { height: 22px; background: var(--gray); }
.section--gray .btn--outline {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}

/* Chat launcher FAB */
.chat-launcher {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--nav-h) + max(1rem, env(safe-area-inset-bottom, 0px)));
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.chatbot {
  right: 1rem;
  bottom: calc(var(--nav-h) + 4.5rem);
  border-bottom: 3px solid var(--black);
  box-shadow: 0 8px 0 rgba(2, 2, 2, 0.25);
}
.chatbot__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.chatbot__brand > .ti {
  font-size: 1.15rem;
}
.chatbot__stripe {
  width: 18px;
  height: 12px;
  background: linear-gradient(90deg, var(--black) 33%, var(--cream) 33% 66%, var(--gray) 66%);
}
.chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(2, 2, 2, 0.1);
}
.chat-quick__btn {
  font-size: 0.8rem;
}
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0.65rem;
  align-self: flex-start;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--gray);
  animation: chat-pulse 0.9s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Legal */
.legal-page { background: var(--cream); color: var(--black); min-height: 100vh; padding-bottom: var(--nav-h); }
.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 2px solid var(--black);
}
.legal-content { padding: 2rem clamp(1.25rem, 4vw, 4rem); max-width: 720px; }
.legal-content h1 { font-size: 2rem; text-decoration: underline; text-underline-offset: 6px; }
.legal-body p { margin: 1rem 0; }

@media (min-width: 768px) {
  .bottom-nav a { font-size: 0.82rem; padding: 0.55rem 0.85rem; }
  .modal { align-items: center; }
}
