/* ============================================
   LIIS VELSKER — liisvelsker.ee
   Valge, lihtne, elegantne
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --warm-gray: #f5f4f0;
  --text: #1a1a1a;
  --text-light: #5a5a58;
  --text-muted: #8a8a87;
  --accent: #c4a882;
  --accent-dark: #a88d6a;
  --border: #e8e6e1;
  --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.06);
  --radius: 4px;
  --max-width: 90%;
  --max-width-wide: 90%;
  --transition: 0.3s ease;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Global image scaling */
img {
  max-width: 100%;
  height: auto;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
}

strong, b {
  font-weight: 600;
  color: var(--text);
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--off-white);
}

.section--warm {
  background: var(--warm-gray);
}

/* --- Header / Navigation --- */
.site-header {
  padding: 2rem 0 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.site-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.site-logo img {
  height: 100px;
  width: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.8rem 0;
}

.site-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  border-bottom-color: var(--text);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-company {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links .icon-ig {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* --- Buttons --- */
.btn {
  border-radius: 6px;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--text);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* --- Avaleht (Home) --- */
.hero-home {
  padding: 5rem 0 3rem;
  text-align: center;
}

.hero-home__greeting {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-home__text {
  max-width: 620px;
  margin: 0 auto;
  text-align: justify;
}

.hero-home__text p {
  margin-bottom: 1rem;
}

.hero-home__portrait {
  display: block;
  max-width: 320px;
  margin: 3rem auto 1rem;
  border-radius: 2px;
}

.hero-home__cta {
  margin-top: 2rem;
  text-align: center;
}

.hero-home__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  transition: color var(--transition);
}

.hero-home__ig:hover {
  color: var(--text);
}

/* --- Landing Page (Teeme koos) --- */

/* Hero */
.hero-landing {
  text-align: center;
  padding: 5rem 0 4rem;
  position: relative;
}

.hero-landing__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.hero-landing h1 {
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.hero-landing__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.countdown__item {
  text-align: center;
}

.countdown__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}

.countdown__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Recognition / "Kas see oled sina?" */
.recognition {
  text-align: center;
}

.recognition h2 {
  margin-bottom: 2.5rem;
}

.recognition__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 560px;
  margin: 0 auto;
}

.recognition__item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

/* Liisu lugu */
.story {
  text-align: center;
}

.story h2 {
  margin-bottom: 2rem;
}

.story__content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.story__accent {
.story__cta {  margin-top: 2rem;}
  font-size: 1.6em;
.story__cta {  margin-top: 2rem;}
  color: var(--accent);
.story__cta {  margin-top: 2rem;}
  font-weight: inherit;
.story__cta {  margin-top: 2rem;}
  display: block;
.story__cta {  margin-top: 2rem;}
  line-height: 1.3;
.story__cta {  margin-top: 2rem;}
  margin-top: -0.5rem;
.story__cta {  margin-top: 2rem;}
}
.story__cta {  margin-top: 2rem;}

.story__highlight {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-top: -0.6rem;
}

.story__content p {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 400;
}

.story__image {
  max-width: 550px;
  margin: 2.5rem auto;
  display: block;
  border-radius: 2px;
}

/* Three Pillars */
.pillars {
  text-align: center;
}

.pillars h2 {
  margin-bottom: 1.5rem;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
}

.pillar__icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillar h3 {
  margin-bottom: 0.8rem;
}

.pillar p {
  font-size: 0.9rem;
}

/* What you get */
.package {
  text-align: center;
}

.package h2 {
  margin-bottom: 1rem;
}

.package__subtitle {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.package__list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.package__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.package__list li::before {
  content: "—";
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 600;
}

/* Timeline / Program */
.timeline {
  text-align: center;
}

.timeline h2 {
  margin-bottom: 1.5rem;
}

.timeline__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__week {
  padding: 1.8rem 1.2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.timeline__week:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.timeline__week-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.timeline__week h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

/* Team */
.team {
  text-align: center;
}

.team__badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.team h2 {
  margin-bottom: 1.5rem;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.team__member {
  text-align: center;
}

.team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.team__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.team__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.8rem;
}

.team__bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Pricing */
.pricing {
  text-align: center;
}

.pricing h2 {
  margin-bottom: 1rem;
}

.pricing__card {
  max-width: 440px;
  margin: 2rem auto;
  padding: 3rem 2.5rem;
  border: 2px solid var(--border);
  text-align: center;
}

.pricing__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing__period {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing__features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

/* FAQ */
.faq {
  text-align: center;
}

.faq h2 {
  margin-bottom: 1.5rem;
}

.faq__list {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--transition);
}

.faq__item.open .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 1.2rem;
  font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  margin-bottom: 1.5rem;
}

.final-cta__ps {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 2rem auto 0;
}

/* --- Kontakt --- */
.contact {
  text-align: center;
  padding: 5rem 0;
}

.contact h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact__email {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact__form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--text);
}

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

/* --- Meedia --- */
.meedia {
  text-align: center;
  padding: 5rem 0;
  min-height: 50vh;
}

.meedia h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.meedia__placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Welcome --- */
.welcome {
  text-align: center;
  padding: 5rem 0;
}

.welcome h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.welcome__message {
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.welcome__steps {
  list-style: none;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.welcome__steps li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.welcome__step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  html { font-size: 16px; }

  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 1.2rem 0 0.6rem;
  }

  .site-logo {
    margin-bottom: 0.8rem;
  }

  .site-logo img {
    height: 60px;
  }

  .site-nav {
    gap: 1.2rem;
  }

  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .story__image {
    max-width: 100%;
    width: 100%;
  }

  .hero-landing .container,
  .story .container,
  .team .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-landing h1 { font-size: 2.2rem; }

  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown__number {
    font-size: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    height: 48px;
  }

  .site-nav {
    gap: 0.8rem;
  }

  .site-nav a {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .timeline__grid {
    grid-template-columns: 1fr;
  }

  .pricing__card {
    padding: 2rem 1.5rem;
  }
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(196,168,130,0.2);
  padding: 0.75rem 1rem;
  text-align: center;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-cta__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

.sticky-cta__btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.8rem;
  margin: 0;
  white-space: nowrap;
}

/* Rhythm section (E/K/R) */
.rhythm__grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.rhythm__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  min-width: 140px;
}

.rhythm__day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.rhythm__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rhythm__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Expanded timeline */
.timeline-expanded {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: left;
}

.week-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.week-block:last-child {
  border-bottom: none;
}

.week-block__header {
  margin-bottom: 0.8rem;
}

.week-block__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.week-block__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.2rem;
}

.week-block__question {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.week-block__details {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.week-block__tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}

.week-block__tag--highlight {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 768px) {
  .rhythm__grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .rhythm__item {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 1.2rem;
  }

  .rhythm__day {
    font-size: 1.3rem;
    min-width: 30px;
    text-align: center;
  }

  .week-block__details {
  justify-content: center;
    gap: 0.4rem;
  }

  .week-block__tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
}

/* Week blocks centered */
.week-block {
  text-align: center;
}

.week-block__details {
  justify-content: center;
  justify-content: center;
}

/* Hero tagline */
.hero-landing__tagline {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

/* Hero spacer */
.hero-landing__spacer {
  border: none;
  border-top: 1px solid var(--accent);
  width: 90px;
  margin: 1.2rem auto;
}

/* Recognition two-level text */
.recognition__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.recognition__main {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
}

.recognition__sub {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-muted);
}
.recognition__item--highlight .recognition__main { color: var(--accent-dark); }
.recognition__item--highlight .recognition__sub { color: var(--accent); }
