@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;
  }
}

.vids {
  padding: var(--ms-space-24) 0;
}
.vids__head {
  text-align: center;
  margin-bottom: 60px;
}
/* ===== carousel (slider, like the homepage) ===== */
.vids__carousel {
  position: relative;
  padding: 0 64px;
}
.vids__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
}
.vids__track {
  display: flex;
  gap: 28px;
  transition: transform 500ms var(--ms-ease-out);
  will-change: transform;
}
.vids__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(9, 35, 34, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(95, 158, 143, 0.3);
  color: var(--ms-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  transition: all var(--ms-dur-base) var(--ms-ease-out);
}
.vids__arrow:hover {
  background: var(--ms-teal);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.vids__arrow--left {
  left: 8px;
}
.vids__arrow--right {
  right: 8px;
}
.vids__arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vids__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.vids__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ms-teal);
  opacity: 0.25;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--ms-dur-base) var(--ms-ease-out);
}
.vids__dot.is-active {
  opacity: 1;
  width: 28px;
}
.vcard {
  flex: 0 0 calc((100% - 56px) / 3);
  background: var(--ms-dark-2);
  border: 1px solid rgba(95, 158, 143, 0.12);
  border-radius: var(--ms-radius-xl);
  overflow: hidden;
  transition: transform var(--ms-dur-base) var(--ms-ease-out),
    border-color var(--ms-dur-base) var(--ms-ease-out);
}
.vcard:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 158, 143, 0.3);
}
.vcard__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--ms-dark-3), var(--ms-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.vcard__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}
.vcard__play {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ms-dur-base) var(--ms-ease-out);
  border: none;
  padding: 0;
  cursor: pointer;
}
.vcard:hover .vcard__play {
  transform: scale(1.08);
}
.vcard__play::after {
  content: "";
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--ms-dark);
  margin-left: 4px;
}
.vcard__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(9, 35, 34, 0.7);
  border: 1px solid rgba(95, 158, 143, 0.3);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  transition: background var(--ms-dur-base) var(--ms-ease-out);
}
.vcard__close:hover {
  background: var(--ms-teal);
}
.vcard__body {
  padding: 24px 26px 28px;
}
.vcard__quote {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}
.vcard__who {
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-teal);
}
.vcard__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}
@media (max-width: 860px) {
  .vids__carousel {
    padding: 0 8px;
  }
  .vids .vcard {
    flex: 0 0 100%;
  }
  .vids__arrow {
    display: none;
  }
  .vids__mask {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

