/* Nelu brand: Base.pdf + style guide
   Black #0A0A0A, Neutral #F7F6F3, Lime #7ECE22, Emerald #046149
   Headings: Space Grotesk (TT Firs Neue substitute), Body: Inter */

:root {
  --black: #0a0a0a;
  --neutral: #f7f6f3;
  --lime: #7ece22;
  --emerald: #046149;
  --emerald-bright: #0a7c66;
  --muted: rgba(247, 246, 243, 0.55);
  --muted-dark: rgba(10, 10, 10, 0.65);
  --tint: #eef1ea;
  --radius: 12px;
  --radius-sm: 8px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-head: "Space Grotesk", var(--font-body);
  --shadow-glow: 0 0 40px rgba(126, 206, 34, 0.35);
  --shadow-glow-soft: 0 0 80px rgba(126, 206, 34, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--neutral);
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--lime);
  color: var(--black);
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 0.5rem;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header — light bar so black wordmark (nelu.png) stays legible */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(247, 246, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.site-header__inner {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo__img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 600px) {
  .logo__img {
    height: 32px;
    max-width: 140px;
  }
}

.logo--footer .logo__img {
  height: 30px;
  max-width: 130px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}

.site-nav__list a {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 0.2s, color 0.2s;
}

.site-nav__list a:hover {
  opacity: 1;
  color: var(--emerald);
}

.site-nav__cta {
  margin-left: 0.5rem;
}

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

  .site-nav {
    position: fixed;
    inset: 64px 0 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: rgba(247, 246, 243, 0.98);
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

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

  .site-nav__list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-nav__list a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.05rem;
  }

  .site-nav__cta {
    margin: 1rem 0 0;
    text-align: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--lime) 0%, #6bb81a 100%);
  color: var(--black);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 48px rgba(126, 206, 34, 0.45);
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  color: var(--neutral);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    var(--emerald-bright) 0%,
    var(--emerald) 35%,
    var(--black) 100%
  );
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(126, 206, 34, 0.18), transparent 55%);
  pointer-events: none;
}

.hero > *:not(.hero__bg):not(.hero__watermark) {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__watermark {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(5rem, 22vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(247, 246, 243, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.hero__eyebrow strong {
  color: var(--lime);
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero__accent {
  font-style: italic;
  font-weight: 600;
  color: rgba(126, 206, 34, 0.92);
  text-shadow: 0 0 30px rgba(126, 206, 34, 0.35);
}

.hero__lede {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  opacity: 0.92;
  line-height: 1.65;
}

/* Marquee */
.marquee {
  background: var(--neutral);
  border-block: 1px solid rgba(10, 10, 10, 0.06);
  padding: 0.85rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-inline: 1.5rem;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.marquee__icon {
  color: var(--emerald);
  font-size: 0.55rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section--dark {
  background: var(--black);
  color: var(--neutral);
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.section__lede {
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.section__lede--center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.muted {
  opacity: 0.75;
  font-size: 0.95rem;
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(4, 97, 73, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}

/* Split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.12);
}

.media-card--glow {
  box-shadow:
    var(--shadow-glow-soft),
    0 24px 60px rgba(10, 10, 10, 0.15);
  border: 1px solid rgba(126, 206, 34, 0.25);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(126, 206, 34, 0.6);
}

.legal-note {
  font-size: 0.8rem;
  color: var(--muted-dark);
  max-width: 800px;
  margin-top: 2.5rem;
  line-height: 1.5;
}

.section--dark .legal-note {
  color: var(--muted);
}

/* Info cards */
.cards-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  position: relative;
  background: var(--neutral);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(10, 10, 10, 0.06);
  overflow: hidden;
}

.info-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-dark);
}

.info-card__glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 206, 34, 0.35) 0%, transparent 70%);
  top: -40px;
  right: -30px;
  pointer-events: none;
}

/* Steps */
.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.steps__item {
  background: rgba(247, 246, 243, 0.04);
  border: 1px solid rgba(126, 206, 34, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.steps__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.steps__item h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.steps__item p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  margin: 0;
  background: var(--neutral);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 8px 30px rgba(10, 10, 10, 0.04);
}

.quote-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-style: italic;
}

.quote-card footer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
}

.fine-print {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.65;
  margin-top: 1.5rem;
}

/* Pricing */
.pricing-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pricing-card {
  width: min(420px, 100%);
  background: var(--neutral);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(4, 97, 73, 0.2);
  box-shadow:
    var(--shadow-glow-soft),
    0 20px 50px rgba(10, 10, 10, 0.08);
  text-align: center;
}

.pricing-card__ribbon {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
}

.pricing-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.pricing-card__sub {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted-dark);
}

.pricing-card__price {
  margin-bottom: 0.35rem;
}

.pricing-card__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.pricing-card__amount {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--emerald);
}

.pricing-card__period {
  font-size: 1.25rem;
  font-weight: 600;
}

.pricing-card__refill {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.pricing-card__list {
  text-align: left;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  padding-top: 1.25rem;
}

.pricing-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}

.pricing-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

.pricing-card__guarantee {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

/* CTA band + FAQ */
.cta-band__inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.cta-band__copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.cta-band__copy p {
  margin: 0 0 0.75rem;
  opacity: 0.88;
}

.cta-band__note {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 1.5rem !important;
}

.faq-preview {
  background: rgba(247, 246, 243, 0.04);
  border: 1px solid rgba(126, 206, 34, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.faq-preview__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.faq-preview__intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

.faq-preview__link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lime);
}

.faq-preview__link:hover {
  text-decoration: underline;
}

.faq-item {
  border-bottom: 1px solid rgba(247, 246, 243, 0.08);
  padding: 0.5rem 0;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Standalone FAQ page (orikhealth.com/faq structure, Nelu branding) */
.faq-hero {
  text-align: center;
  padding: 5.5rem 1.25rem 2.25rem;
  background: var(--tint);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.faq-hero__inner {
  max-width: 40rem;
  margin-inline: auto;
}

.faq-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--black);
}

.faq-hero__lede {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted-dark);
  max-width: 30rem;
  margin-inline: auto;
}

.faq-page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.faq-category {
  margin-bottom: 2.75rem;
}

.faq-category:last-of-type {
  margin-bottom: 2rem;
}

.faq-category__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--emerald);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item--card {
  background: var(--neutral);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-sm);
  padding: 0;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10, 10, 10, 0.04);
}

.faq-item--card summary {
  padding: 1rem 1.15rem;
  color: var(--black);
  font-size: 0.92rem;
}

.faq-item--card summary:hover {
  background: rgba(4, 97, 73, 0.04);
}

.faq-item--card p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted-dark);
  opacity: 1;
}

.faq-cta {
  text-align: center;
  padding: 2.25rem 1.5rem;
  margin-top: 0.5rem;
  background: var(--tint);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.faq-cta__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--black);
}

.faq-cta__lede {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted-dark);
}

.faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(10, 10, 10, 0.2);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(10, 10, 10, 0.04);
  transform: none;
  box-shadow: none;
  border-color: var(--emerald);
  color: var(--emerald);
}

/* Contact page */
.contact-page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.contact-grid {
  max-width: 28rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--neutral);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 8px 28px rgba(10, 10, 10, 0.06);
}

.contact-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--emerald);
}

.contact-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-dark);
}

.contact-card__btn {
  width: 100%;
  text-align: center;
}

.contact-card__note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted-dark);
  opacity: 0.9;
}

.contact-aside {
  background: var(--tint);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.65rem;
}

.contact-aside__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--black);
}

.contact-aside__text {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted-dark);
  line-height: 1.5;
}

.contact-aside__link {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: #050505;
  color: var(--neutral);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(126, 206, 34, 0.12);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 280px;
}

.site-footer__states {
  font-size: 0.85rem !important;
}

.link-accent {
  color: var(--lime);
  font-weight: 600;
}

.link-accent:hover {
  text-decoration: underline;
}

.site-footer__heading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--lime);
}

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

.site-footer__links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.site-footer__links a:hover {
  opacity: 1;
  color: var(--lime);
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 246, 243, 0.08);
  font-size: 0.8rem;
  opacity: 0.65;
}

.legal-note--footer {
  margin-top: 1rem !important;
  max-width: none;
}

/* Legal / policy pages */
.legal-body {
  background: var(--tint);
}

.legal-main {
  padding: 5.5rem 0 4rem;
}

.legal-page {
  max-width: 52rem;
  background: var(--neutral);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
}

.legal-page--terms {
  max-width: 56rem;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--muted-dark);
  margin: 0 0 1.75rem;
}

.legal-page h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--emerald);
}

.legal-page h2:first-of-type,
.legal-page h1 + h2 {
  margin-top: 1.5rem;
}

.legal-page h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin: 1.5rem 0 0.65rem;
}

.legal-page p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--black);
}

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

.legal-contact-block {
  margin: 0.5rem 0 1rem;
  line-height: 1.65;
}

.legal-contact-block a {
  color: var(--emerald);
  font-weight: 600;
}

.legal-contact-block a:hover {
  text-decoration: underline;
}
