:root {
  color-scheme: light;
  --ink: #15313c;
  --muted: #58707a;
  --line: #d9e6e8;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --soft-blue: #e9f3f5;
  --teal: #087e86;
  --teal-deep: #055d66;
  --mint: #d6f2ea;
  --gold: #c59a4d;
  --shadow: 0 18px 50px rgba(14, 53, 62, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

.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: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 230, 232, 0.6);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header[data-elevated="true"] {
  box-shadow: 0 12px 34px rgba(21, 49, 60, 0.12);
  padding-block: 8px;
}

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

.brand-mark {
  display: grid;
  width: 330px;
  height: 86px;
  place-items: center;
  padding: 2px 10px 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 230, 232, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(8, 126, 134, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-3px);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  line-height: 1;
  font-size: 1.02rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  color: #254954;
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: center;
  padding: 118px clamp(18px, 5vw, 72px) 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 248, 247, 0.98) 0%, rgba(244, 248, 247, 0.9) 36%, rgba(244, 248, 247, 0.42) 68%, rgba(244, 248, 247, 0.12) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.05));
}

.hero-content {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #375963;
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 32px rgba(8, 126, 134, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-deep);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.hero-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 42px 0 0;
}

.hero-schedule div {
  position: relative;
  padding: 18px 18px 18px 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 230, 232, 0.76);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(21, 49, 60, 0.08);
}

.hero-schedule div::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.hero-schedule dt {
  margin-bottom: 8px;
  color: var(--teal-deep);
  font-size: 1rem;
  font-weight: 900;
}

.hero-schedule dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.section {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-grid,
.services-grid,
.values-grid,
.steps {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.intro-band {
  background: var(--paper);
  padding-top: 48px;
}

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

.signal-card {
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--teal-deep);
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--mint);
  border-radius: 8px;
}

.pulse {
  animation: pulse 2.8s ease-in-out infinite;
}

.signal-card p,
.service-card p,
.step p,
.section-heading p,
.appointment-copy p,
.why-panel p,
.content-narrow p {
  color: var(--muted);
  margin: 14px 0 0;
}

.about {
  background: linear-gradient(180deg, var(--soft-blue), var(--soft));
}

.content-narrow {
  width: min(860px, 100%);
  margin-inline: auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.values-grid span {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 12px;
  color: #244b55;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 230, 232, 0.86);
  border-radius: var(--radius);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

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

@media (min-width: 981px) {
  .services-grid .service-card:nth-last-child(2) {
    grid-column: 2;
  }

  .services-grid .service-card:last-child {
    grid-column: 3;
  }
}

.service-card {
  position: relative;
  min-height: 232px;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(21, 49, 60, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.service-card:hover {
  border-color: rgba(8, 126, 134, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.prices {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.price-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(21, 49, 60, 0.06);
}

.price-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.price-head strong {
  min-width: 92px;
  padding: 10px 12px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background: var(--teal);
  border-radius: 8px;
}

.price-card h4 {
  margin: 20px 0 8px;
  color: var(--teal-deep);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.compact-price {
  display: grid;
  align-content: center;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding-inline: 0;
}

.why-panel {
  position: sticky;
  top: 96px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px 18px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 900;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--teal-deep);
  color: #fff;
}

.appointment .eyebrow,
.appointment-copy p {
  color: #c9f1ee;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a {
  width: fit-content;
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.date-picker {
  position: relative;
}

.date-picker-trigger {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid #cddfe2;
  border-radius: 8px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.date-picker-trigger:focus-visible {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 126, 134, 0.14);
  outline: none;
}

.calendar-popover {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  width: min(330px, calc(100vw - 48px));
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calendar-popover[hidden] {
  display: none;
}

.calendar-header {
  min-height: 38px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  text-align: center;
}

.calendar-nav {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.45rem;
  cursor: pointer;
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calendar-weekdays {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.calendar-day,
.calendar-spacer {
  aspect-ratio: 1;
  min-width: 0;
}

.calendar-day {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}

.calendar-day:not(:disabled):hover,
.calendar-day:not(:disabled):focus-visible {
  color: var(--teal-deep);
  background: var(--mint);
  border-color: var(--teal);
  outline: none;
}

.calendar-day.is-today {
  border-color: var(--gold);
}

.calendar-day.is-selected {
  color: #fff;
  background: var(--teal-deep);
}

.calendar-day:disabled {
  color: #aab5b8;
  background: #f2f4f4;
  cursor: not-allowed;
  opacity: 0.62;
}

.calendar-day.is-weekend:disabled {
  text-decoration: line-through;
}

.form-row.invalid .date-picker-trigger {
  border-color: #b73535;
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-preference {
  min-width: 0;
  padding: 0;
  border: 0;
}

.contact-preference legend {
  margin-bottom: 8px;
  color: #294c56;
  font-size: 0.93rem;
  font-weight: 800;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-options label {
  position: relative;
  cursor: pointer;
}

.contact-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-options span {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid #cddfe2;
  border-radius: 8px;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-options input:checked + span {
  color: var(--teal-deep);
  background: var(--mint);
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.contact-options input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(8, 126, 134, 0.14);
}

label {
  color: #294c56;
  font-weight: 800;
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid #cddfe2;
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 126, 134, 0.14);
}

.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea {
  border-color: #b73535;
}

.error-message {
  min-height: 18px;
  color: #b73535;
  font-size: 0.82rem;
}

.char-count {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-deep);
  font-weight: 800;
}

.contact {
  background: var(--soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  width: min(var(--max), 100%);
  margin-inline: auto;
  align-items: stretch;
}

.contact-card {
  padding: clamp(26px, 5vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(21, 49, 60, 0.06);
}

.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.location-photo figcaption {
  padding: 13px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  background: #fff;
}

address {
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
}

address a {
  color: var(--teal-deep);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-button {
  gap: 10px;
}

.social-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-button {
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.18);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1fb458;
}

.maps-button {
  color: #fff;
  background: #0f766e;
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.18);
}

.maps-button:hover,
.maps-button:focus-visible {
  background: #115e59;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: #d9f2ef;
  background: #12323a;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(8, 126, 134, 0.22);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(8, 126, 134, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .section-grid,
  .services-grid,
  .values-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why,
  .appointment,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .why-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 226px;
    height: 60px;
    padding: 2px 8px 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(244, 248, 247, 0.98), rgba(244, 248, 247, 0.86) 58%, rgba(244, 248, 247, 0.72));
  }

  h1 {
    max-width: 12ch;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-schedule,
  .section-grid,
  .services-grid,
  .values-grid,
  .price-grid,
  .appointment-form,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .price-head {
    grid-template-columns: 1fr;
  }

  .price-head strong {
    width: fit-content;
  }

  .hero-schedule div {
    padding: 14px;
  }

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

  .step span {
    grid-row: auto;
  }
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}

.legal-links a {
  color: inherit;
}

.consent a {
  color: var(--teal-deep);
  font-weight: 700;
}

.legal-page {
  background: #f4f8f7;
}

.legal-header {
  min-height: 108px;
  padding: 10px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-document {
  width: min(900px, calc(100% - 32px));
  margin: 48px auto;
  padding: clamp(24px, 5vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: none;
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.legal-document section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.legal-document p,
.legal-document address {
  max-width: 76ch;
  line-height: 1.75;
}

.legal-updated {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 680px) {
  .legal-header {
    min-height: 82px;
    padding: 8px 14px;
  }

  .legal-back {
    width: auto;
    padding-inline: 14px;
  }

  .legal-document {
    width: min(100% - 20px, 900px);
    margin: 20px auto;
    padding: 22px 18px;
  }

  .legal-links {
    justify-content: center;
  }
}
