@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Caveat:wght@500;600;700&display=swap);
/* ============================================================
   Mint Source — self-contained theme (fonts + tokens + shared classes)
   Imported by EVERY component so code components carry their own
   variables, button styles, and fonts into Webflow (where the
   site-level globals are not guaranteed to be present).
   Contains NO bare tag selectors (body/a/*) — those are page-level
   and handled by site custom code; see README "Webflow page setup".
   ============================================================ */

:host {
  --ms-teal: #5f9e8f;
  --ms-teal-light: #7db8ab;
  --ms-teal-dark: #4a8577;
  --ms-dark: #092322;
  --ms-dark-2: #0d302e;
  --ms-dark-3: #0a2826;
  --ms-gold: #d4952a;
  --ms-gold-light: #e0a740;
  --ms-olive: #879b3e;
  --ms-burgundy: #9d3235;
  --ms-cream: #f0e4c8;
  --ms-white: #fff;
  --ms-font: "Poppins", sans-serif;
  --ms-hand: "Caveat", cursive;
  --ms-space-16: 64px;
  --ms-space-20: 80px;
  --ms-space-24: 96px;
  --ms-space-30: 120px;
  --ms-radius-md: 12px;
  --ms-radius-lg: 16px;
  --ms-radius-xl: 20px;
  --ms-radius-2xl: 24px;
  --ms-radius-pill: 999px;
  --ms-shadow-gold: 0 12px 32px rgba(212, 149, 42, 0.2);
  --ms-shadow-gold-hover: 0 16px 40px rgba(212, 149, 42, 0.35);
  --ms-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ms-dur-base: 300ms;
  --ms-dur-reveal: 900ms;
  --ms-max-wide: 1200px;
  --ms-max-narrow: 920px;
  --ms-gutter: 40px;
  --ms-gutter-mobile: 20px;
}

/* shared layout + type primitives */
.ms-container {
  max-width: var(--ms-max-wide);
  margin: 0 auto;
  padding: 0 var(--ms-gutter);
}
@media (max-width: 768px) {
  .ms-container {
    padding: 0 var(--ms-gutter-mobile);
  }
}

.pretitle {
  font-family: var(--ms-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ms-teal);
  opacity: 0.85;
  margin-bottom: 20px;
  display: block;
}
.section-heading {
  font-family: var(--ms-font);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 36px;
  }
}
.section-subtitle {
  font-family: var(--ms-font);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* shared buttons — text-decoration:none baked in (no reliance on an `a` reset) */
.btn {
  font-family: var(--ms-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: var(--ms-radius-md);
  transition: all var(--ms-dur-base) var(--ms-ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ms-gold), var(--ms-gold-light));
  color: #fff;
  box-shadow: var(--ms-shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--ms-shadow-gold-hover);
  filter: brightness(1.05);
}
.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* scroll reveal (driven by useReveal) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--ms-dur-reveal) var(--ms-ease-out),
    transform var(--ms-dur-reveal) var(--ms-ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.origin {
  padding: var(--ms-space-30) 0;
}
.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.origin__year {
  font-size: 200px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -8px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(95, 158, 143, 0.35);
}
.origin__body p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}
.origin__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .origin__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .origin__year {
    font-size: 120px;
  }
}

