/*
 * Brand design tokens — pulled from the Olympus Web Reskin Figma file
 * (https://www.figma.com/design/AoPcHMU1ihVxIL4ynhXlmZ/Olympus-Web-Reskin).
 * Every other stylesheet in this plugin should reference these custom
 * properties rather than hardcoding colors/fonts.
 *
 * PP Fragment is registered via @font-face in olympus-derm.php (absolute
 * plugin URLs) so the files still load when Perfmatters inlines this CSS.
 */
:root {
  /* --- Color --- */
  --od-color-black: #000000;       /* primary text / dark sections */
  --od-color-dark-bg: #1a1a18;     /* deep near-black figure backgrounds */
  --od-color-card-bg: #141412;     /* values-card background */
  --od-color-cream: #f3f1e9;       /* light section background */
  --od-color-cream-alt: #f3efe9;   /* alt cream, hero headline text */
  --od-color-accent: #e0e6b8;      /* sage/olive — button fills, accents */
  --od-color-sage: #b7c7c4;        /* muted sage-green, footer background */
  --od-color-blue-gray: #bbcad9;   /* light blue-gray accent / highlight */
  --od-color-olive: #6f7a52;       /* olive eyebrow (About leadership) */

  /* Semantic aliases */
  --od-color-primary: var(--od-color-black);
  --od-color-bg: #ffffff;          /* both Figma frames sit on white */
  --od-color-text: var(--od-color-black);
  --od-color-muted: var(--od-color-sage);

  /* --- Type ---
   * PP Fragment Glare Extra Light = large display headlines (self-hosted)
   * Figtree (Medium) = body copy
   * Outfit (Bold/SemiBold) = buttons, eyebrow labels, footer col titles
   * Termina (Medium) = footer link lists
   * Roboto = footer legal row
   * Termina is still unpaid — Outfit stands in until licensed files land.
   */
  --od-font-display: "PP Fragment", Georgia, serif;
  --od-font-body: "Figtree", Arial, sans-serif;
  --od-font-label: "Outfit", Arial, sans-serif;
  --od-font-label-alt: "Termina", "Outfit", Arial, sans-serif;

  /* --- Spacing --- */
  --od-space-xs: 8px;
  --od-space-sm: 16px;
  --od-space-md: 24px;
  --od-space-lg: 40px;
  --od-space-xl: 64px;

  /* Standard horizontal page gutter (Figma content starts at x=66) */
  --od-gutter: 66px;
}

body.od-site {
  margin: 0;
  color: var(--od-color-text);
  font-family: var(--od-font-body);
  font-weight: 500;
  background: var(--od-color-bg);
}

body.od-site h1,
body.od-site h2,
body.od-site h3 {
  font-family: var(--od-font-display);
  font-weight: 300; /* Glare Extra Light */
}

/* ---------------- Buttons (Figma "Rectangle 64" pills) ---------------- */
.od-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--od-color-accent);
  color: var(--od-color-black);
  font-family: var(--od-font-label);
  font-weight: 700;
  font-size: 12px;
  line-height: 2; /* 24px — pill height 48px */
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
}

.od-cta-arrow {
  display: inline-block;
  margin-left: 8px;
  line-height: 0;
  vertical-align: middle;
}

.od-cta-arrow svg {
  display: block;
  width: 8px;
  height: 9px;
}

.od-btn:hover {
  background: #BBCAD9;
  text-decoration: none;
}

/* Outlined-on-light (network "Learn More") */
.od-btn--outline {
  background: transparent;
  border-color: var(--od-color-black);
  color: var(--od-color-black);
  letter-spacing: 2.16px;
}

/* Outlined-on-dark (About "See If Olympus Is the Right Fit") */
.od-btn--ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
  letter-spacing: 2.16px;
}

.od-btn--ghost:hover{
  color: #000000;
  border-color: #000000;
}

/* ---------------- Text links ---------------- */
.od-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--od-font-label);
  font-weight: 700;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--od-color-black);
  text-decoration: none;
}

.od-link--light {
  color: #fff;
}

/* Full-width rule under the label (Figma "Vector 9") */
.od-link--underline {
  border-bottom: 7px solid #BBCAD9;
  padding-bottom: 6px;
}

/* ---------------- Eyebrow labels ---------------- */
.od-eyebrow {
  font-family: var(--od-font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.4px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--od-color-black);
  margin: 0 0 var(--od-space-sm);
}

.od-eyebrow--accent {
  color: var(--od-color-accent);
}

.od-eyebrow--olive {
  color: var(--od-color-olive);
}

.od-media__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: rgba(243, 241, 233, 0.6);
  border: 1px dashed rgba(11, 11, 10, 0.3);
  box-sizing: border-box;
}

.ct-inner-content{
  margin-top: 0 !important
}
