@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --primary: #365B52;
  --primary-dark: #2A4840;
  --secondary: #829B81;
  --accent: #C7A869;
  --accent-light: #DCC28F;
  --accent2: #7C6354;
  --bg: #EEF4EF;
  --bg-alt: #E2EAE4;
  --text: #28302E;
  --text-muted: #5A6660;
  --white: #FFFFFF;
  --border: rgba(54,91,82,0.12);
  --shadow-sm: 0 2px 12px rgba(40,48,46,0.06);
  --shadow-md: 0 8px 32px rgba(40,48,46,0.10);
  --shadow-lg: 0 24px 64px rgba(40,48,46,0.12);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font: 'IBM Plex Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --transition: 0.36s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(238,244,239,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav--dark {
  background: transparent;
}

.nav--dark.nav--scrolled {
  background: rgba(54,91,82,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--primary);
  line-height: 1.1;
}

.nav__logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav--dark .nav__logo-text,
.nav--dark .nav__logo-text span { color: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after { right: 0; }

.nav__link:hover,
.nav__link.active { color: var(--primary); }

.nav--dark .nav__link { color: rgba(255,255,255,0.82); }
.nav--dark .nav__link:hover,
.nav--dark .nav__link.active { color: var(--white); }

.nav__cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(199,168,105,0.38);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1100;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: left center;
}

.nav--dark .nav__burger span { background: var(--white); }

.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1050;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 100px 48px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.nav__mobile-link:hover { color: var(--accent); }

.nav__mobile-cta {
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--primary-dark);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199,168,105,0.40);
}

.btn--outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--ghost {
  color: var(--primary);
  background: transparent;
  padding: 0;
  letter-spacing: 0.04em;
  position: relative;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.btn--ghost:hover::after { transform: scaleX(1); }
.btn--ghost:hover { color: var(--primary-dark); }

.btn__arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* ─── SECTION UTILITIES ─── */
.section { padding: 120px 0; overflow-x: hidden; }
.section--sm { padding: 80px 0; }
.section--lg { padding: 160px 0; }
.section--dark { background: var(--primary); color: var(--white); }
.section--alt { background: var(--bg-alt); }
.section--primary { background: var(--primary); }

.section__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section__label--light { color: var(--accent-light); }
.section__label--light::before { background: var(--accent-light); }

.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
}

.section__title--light { color: var(--white); }

.section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--secondary);
}

.section__title--light em { color: var(--accent-light); }

.section__subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 600px;
}

.section__subtitle--light { color: rgba(255,255,255,0.72); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #4A7268 50%, var(--secondary) 100%);
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.06);
  transition: transform 12s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(54,91,82,0.92) 0%, rgba(54,91,82,0.60) 60%, rgba(130,155,129,0.40) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-light);
}

.hero__description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}

.hero__scroll-text {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* ─── MARQUEE ─── */
.marquee-section {
  overflow: hidden;
  max-width: 100vw;
  padding: 28px 0;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}

.marquee-track--fwd {
  animation: marqueeForward 28s linear infinite;
}

.marquee-track--rev {
  animation: marqueeReverse 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding: 0 48px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.marquee-item strong {
  color: var(--accent);
  font-weight: 500;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.marquee-section--light {
  background: var(--bg-alt);
  border-color: var(--border);
}

.marquee-section--light .marquee-item {
  color: var(--text-muted);
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199,168,105,0.30);
}

.card__body { padding: 36px; }

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(54,91,82,0.08);
  margin-bottom: 24px;
}

.card__icon svg { color: var(--primary); }

.card__label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 14px;
}

.card__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }

/* ─── STATS ─── */
.stat-block { text-align: left; }

.stat-block__number {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-block__number--light { color: var(--accent-light); }

.stat-block__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-block__label--light { color: rgba(255,255,255,0.65); }

/* ─── DIVIDERS ─── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

.divider--accent { background: linear-gradient(to right, var(--accent), transparent); width: 120px; height: 2px; }

/* ─── IMAGE BLOCKS ─── */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1);
}

.img-frame:hover img { transform: scale(1.04); }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-toggle:hover { color: var(--primary); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent);
}

.faq-icon svg { width: 12px; height: 12px; stroke: var(--text); }
.faq-item.open .faq-icon svg { stroke: var(--white); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.4,0,0.2,1), padding var(--transition);
}

.faq-item.open .faq-body { max-height: 400px; }

.faq-body-inner {
  padding-bottom: 24px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-item__year {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 8px;
}

.timeline-item__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.timeline-item__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
}

.testimonial__quote {
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── FORM ─── */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(54,91,82,0.10);
}

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

/* ─── FOOTER ─── */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__brand-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.footer__brand-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--accent-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer__contact-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer__legal-link:hover { color: rgba(255,255,255,0.65); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── TAG / BADGE ─── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: rgba(54,91,82,0.08);
  color: var(--primary);
  border: 1px solid rgba(54,91,82,0.14);
}

.tag--accent { background: rgba(199,168,105,0.12); color: var(--accent2); border-color: rgba(199,168,105,0.24); }

/* ─── LEGAL PAGE ─── */
.legal-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #4A7268 100%);
  padding: 160px 0 80px;
  color: var(--white);
}

.legal-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.legal-hero__date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

.legal-content {
  padding: 80px 0 120px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 48px 0 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.legal-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.legal-content ul, .legal-content ol {
  margin: 16px 0 20px 20px;
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

@keyframes marqueeForward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ─── PARALLAX (desktop only) ─── */
@media (min-width: 1025px) and (hover: hover) {
  .parallax-el { transition: transform 0.1s linear; will-change: transform; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container, .container--narrow, .container--wide { padding: 0 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container, .container--narrow, .container--wide { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section--lg { padding: 100px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .nav__mobile-link { font-size: 1.6rem; }
}
