:root {
  --color-dark: #171717;
  --color-dark-soft: #222222;
  --color-orange: #c77d3d;
  --color-orange-dark: #9e5e2d;
  --color-orange-light: #d9904c;
  --color-cream: #f7f5f2;
  --color-white: #ffffff;
  --color-text: #171717;
  --color-muted: #5d5d5d;
  --container-width: 1100px;
  --header-height: 92px;
  --radius-sm: 6px;
  --font: "Montserrat", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container-width), calc(100% - 48px));
  margin-inline: auto;
}

.anchor-target {
  height: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.85);
  padding-inline: 1rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-white);
  flex-shrink: 0;
}

.brand-mark {
  width: auto;
  height: 78px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  height: 58px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.brand-taglines {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.2;
  color: var(--color-orange);
}

.brand-tag--footer,
.brand--footer .brand-tag {
  color: rgba(255, 255, 255, 0.92);
}

.brand-divider--footer {
  background: rgba(255, 255, 255, 0.55);
}

/* Header */
.site-header {
  background: var(--color-dark);
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 92px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}

.header-cta {
  justify-self: end;
}

/* Hero */
.hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  min-height: 520px;
  background: linear-gradient(
    90deg,
    rgba(23, 23, 23, 0.88) 0%,
    rgba(23, 23, 23, 0.62) 42%,
    rgba(23, 23, 23, 0.28) 100%
  );
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 560px;
  padding: 4.5rem 0;
  color: var(--color-white);
}

.anchor-scroll {
  scroll-margin-top: var(--header-height);
}

#inicio {
  scroll-margin-top: 0;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Services */
.services {
  background: var(--color-cream);
  padding: 4.5rem 0 5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head.anchor-scroll,
#servicios,
#contacto,
#presupuesto {
  scroll-margin-top: var(--header-height);
}

.section-kicker {
  margin: 0 0 0.65rem;
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 520px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem;
  background: var(--color-white);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.1);
}

.service-row-thumb {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-row-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.service-row-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.service-row-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.service-gallery-page {
  background: var(--color-cream);
}

.service-gallery-hero {
  padding: 2.5rem 0 1.5rem;
}

.service-back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
}

.service-back:hover {
  color: var(--color-orange);
}

.service-gallery-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-gallery-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--color-muted);
  line-height: 1.6;
}

.service-gallery {
  padding: 0 0 4rem;
}

.gallery-empty {
  margin: 0 0 2rem;
  padding: 2rem;
  text-align: center;
  background: var(--color-white);
  border-radius: 12px;
  color: var(--color-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.service-gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-dark.btn-primary {
  background: var(--color-dark);
}

.btn-dark.btn-primary:hover {
  background: var(--color-dark-soft);
}

.btn-dark.btn-outline {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-dark.btn-outline:hover {
  background: rgba(23, 23, 23, 0.06);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  width: 100%;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-caption {
  margin-top: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Legacy card styles kept for reference */
.services-grid {
  display: none;
}

.service-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.1rem 1.25rem;
}

.service-card-icon {
  color: var(--color-orange);
  margin-bottom: 0.65rem;
}

.service-card-body h3 {
  margin: 0 0 0.55rem;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.service-card-body p {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--color-muted);
  flex: 1;
}

.service-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-orange);
}

.service-card-link:hover {
  color: var(--color-orange-dark);
}

.service-card.is-featured {
  background: var(--color-orange);
}

.service-card.is-featured .service-card-icon,
.service-card.is-featured .service-card-body h3,
.service-card.is-featured .service-card-body p,
.service-card.is-featured .service-card-link {
  color: var(--color-white);
}

.service-card.is-featured .service-card-body p {
  color: rgba(255, 255, 255, 0.9);
}

/* La Empresa */
.about {
  background: var(--color-white);
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.about .section-head {
  margin-bottom: 0;
}

.about h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.about-text {
  margin: 0 auto;
  max-width: 42ch;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  color: var(--color-white);
}

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

/* Contacto */
.contacto {
  background: var(--color-white);
  padding: 4rem 0;
}

.contacto-intro {
  max-width: 52ch;
  margin: 0.75rem auto 0;
  color: var(--color-muted);
  line-height: 1.65;
}

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

.contacto-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--color-cream);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contacto-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.08);
}

.contacto-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.contacto-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  word-break: break-word;
}

/* Presupuesto form */
.presupuesto {
  background: var(--color-cream);
  padding: 4rem 0 4.5rem;
}

.presupuesto-intro {
  max-width: 58ch;
  margin: 0.75rem auto 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.presupuesto-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.presupuesto-aside {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 1.25rem;
}

.presupuesto-aside h3 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.presupuesto-aside-item {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}

.presupuesto-aside-item:hover {
  color: var(--color-orange);
}

.presupuesto-tip {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.presupuesto-form {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
}

.presupuesto-form--solo {
  max-width: 820px;
  margin: 2rem auto 0;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #ddd8d2;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font: inherit;
  color: var(--color-text);
}

.form-field input:not([type="checkbox"]):not([type="radio"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(199, 125, 61, 0.35);
  border-color: var(--color-orange);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field--check {
  margin-top: 0.25rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 100%;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-muted);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin: 0.15rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--color-orange);
}

.form-check span {
  flex: 1;
}

.form-check a {
  color: var(--color-orange);
  font-weight: 600;
}

.form-error {
  font-size: 0.78rem;
  color: #b42318;
}

.form-hint {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.form-alert {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-alert--success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}

.form-alert--error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.btn-submit {
  margin-top: 1.25rem;
  min-width: 220px;
}

.footer-main {
  background: var(--color-orange);
  padding: 2.25rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand .brand-mark {
  height: 62px;
}

.footer-tagline {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 26ch;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-contact-item:hover {
  text-decoration: underline;
}

.footer-call {
  justify-self: end;
  min-width: 190px;
}

.footer-copy {
  background: var(--color-orange-dark);
  padding: 0.85rem 0;
}

.footer-copy p {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive */
@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    min-height: auto;
    padding: 1rem 0;
  }

  .main-nav {
    gap: 1rem;
    overflow-x: auto;
    justify-content: flex-start;
    width: 100%;
    max-width: min(var(--container-width), calc(100% - 48px));
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    justify-self: center;
  }

  .services-grid {
    display: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-call {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .brand-mark {
    height: 56px;
  }

  .brand-divider {
    height: 44px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    overflow: visible;
    width: 100%;
    max-width: min(var(--container-width), calc(100% - 48px));
  }

  .main-nav a {
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 0.45rem 0.25rem 0.5rem;
  }

  .hero-inner {
    padding: 3rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-list {
    max-width: none;
  }

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

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

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

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

  .lightbox {
    padding: 1rem 0.75rem 5.5rem;
  }

  .lightbox-image {
    max-height: calc(100vh - 9rem);
  }

  .lightbox-nav {
    top: auto;
    bottom: 1.15rem;
    transform: none;
    width: 46px;
    height: 46px;
    font-size: 1.75rem;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: auto;
    left: calc(50% + 12px);
  }

  .lightbox-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.35rem;
    margin: 0;
    pointer-events: none;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-btn {
    width: 100%;
  }

  .footer-brand .brand-mark {
    height: 50px;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 1rem;
  background: rgba(23, 23, 23, 0.96);
  color: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  width: min(var(--container-width), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.cookie-banner a {
  color: var(--color-orange-light);
}

.cookie-banner-btn {
  flex-shrink: 0;
}

.cookie-banner .cookie-banner-btn.btn-primary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}

.cookie-banner .cookie-banner-btn.btn-primary:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.legal-page {
  background: var(--color-cream);
  padding: 2.5rem 0 4rem;
}

.legal-content {
  max-width: 760px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
}

.legal-back:hover {
  color: var(--color-orange);
}

.legal-content h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
}

.legal-updated {
  margin: 0 0 2rem;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.legal-content section {
  margin-bottom: 1.75rem;
}

.legal-content h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: var(--color-muted);
  line-height: 1.65;
}

.legal-content ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--color-orange);
}

.footer-legal {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}
