/* ============================================
   Tenore Health Solutions — Design System
   Palette: deep burgundy + gold + black, on paper white (from brand business card)
   Display: Fraunces / Body: IBM Plex Sans / Data: IBM Plex Mono
   Signature motif: flight-path waypoints (nod to founder's aviation background)
   ============================================ */

:root {
  --ink: #241012;
  --navy-900: #661424;
  --navy-800: #7a182b;
  --navy-700: #8f1d33;
  --gold: #c9a24e;
  --gold-light: #e3c374;
  --paper: #fafaf9;
  --paper-dim: #f1f0ec;
  --line: #d8dce2;
  --line-on-navy: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --success: #3f7a5c;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --max-width: 1180px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: #2c3a4d; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--line-on-navy);
  color: inherit;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--navy-900);
  color: var(--paper);
  border-color: var(--navy-900);
}
.btn-dark:hover { background: var(--navy-700); }

/* ---------- Header / Nav ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
}

.logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active { color: var(--navy-900); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 0 0;
    z-index: 40;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 32px 24px;
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 0; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  background: var(--navy-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
}

.hero .wrap { position: relative; z-index: 2; }

.hero-route {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 { color: var(--white); }
.hero .eyebrow { color: var(--gold-light); }
.hero p.lead {
  color: rgba(250, 250, 249, 0.78);
  font-size: 1.1rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-navy);
}

.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--gold);
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(250, 250, 249, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-panel {
  background: var(--navy-800);
  border: 1px solid var(--line-on-navy);
  border-radius: 3px;
  padding: 30px;
}

.hero-panel .panel-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-on-navy);
  font-size: 0.92rem;
}
.plan-row:last-child { border-bottom: none; }
.plan-row .tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-light);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sections ---------- */

section { padding: 90px 0; }
.section-dim { background: var(--paper-dim); }
.section-navy { background: var(--navy-900); color: var(--paper); }
.section-navy p { color: rgba(250,250,249,0.75); }
.section-navy h2 { color: var(--white); }

.section-head {
  max-width: 640px;
  margin-bottom: 54px;
}

/* ---------- Service / Feature Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--paper);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}

.service-card .icon-mark {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
}

.service-card .idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-card p { font-size: 0.94rem; flex-grow: 1; }
.service-card a.card-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--navy-800);
  text-decoration: none;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.service-card a.card-link:hover { color: var(--gold); }

@media (max-width: 960px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Flight-path Process (signature element) ---------- */

.route {
  position: relative;
  margin-top: 40px;
}

.route-line {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px
  );
  z-index: 0;
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.waypoint {
  display: flex;
  flex-direction: column;
}

.waypoint .node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.waypoint .coord {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  .route-line { display: none; }
  .route-steps { grid-template-columns: 1fr; gap: 42px; }
}

/* ---------- Boarding-pass style review cards ---------- */

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.boarding-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}

.boarding-main {
  flex-grow: 1;
  padding: 22px 20px;
}

.boarding-stub {
  width: 64px;
  background: var(--navy-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.boarding-stub::before {
  content: "";
  position: absolute;
  top: -1px; bottom: -1px; left: -1px;
  border-left: 2px dashed rgba(250,250,249,0.3);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.review-quote {
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.review-name {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #63707f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .review-strip { grid-template-columns: 1fr; }
}

.reviews-note {
  margin-top: 26px;
  font-size: 0.82rem;
  color: #63707f;
  font-family: var(--font-mono);
}

/* ---------- Timeline (About page) ---------- */

.timeline {
  position: relative;
  padding-left: 34px;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 46px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
}

.timeline-item .year {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy-900);
  color: var(--paper);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .btn-primary { margin-top: 10px; }

/* ---------- Contact / Booking ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item .ic {
  width: 22px; height: 22px; flex-shrink: 0; color: var(--gold);
}
.contact-info-item .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #63707f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-info-item a { text-decoration: none; color: var(--navy-800); }
.contact-info-item a:hover { color: var(--gold); }

form.contact-form { display: flex; flex-direction: column; gap: 18px; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.82rem;
  color: #63707f;
  font-family: var(--font-mono);
}

.calendly-embed {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 850px;
  max-width: 900px;
  margin: 0 auto;
}

.calendly-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 700px) {
  .calendly-embed { height: 900px; }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--navy-900);
  color: rgba(250,250,249,0.7);
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-on-navy);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { text-decoration: none; color: rgba(250,250,249,0.7); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: rgba(250,250,249,0.45);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: var(--navy-900);
  color: var(--paper);
  padding: 70px 0 60px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(250,250,249,0.75); max-width: 56ch; font-size: 1.05rem; }

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   Additions: rapport / education / lead-gen upgrade
   ============================================ */

/* ---- Hero personal intro badge ---- */
.hero-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-intro img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.hero-intro .intro-text {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(250,250,249,0.82);
  line-height: 1.5;
}
.hero-intro .intro-text strong {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  display: block;
}

/* ---- Trust badge strip ---- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(250,250,249,0.85);
  border: 1px solid var(--line-on-navy);
  padding: 8px 14px;
  border-radius: 999px;
}
.trust-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Choose-your-path cards ---- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 26px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.path-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.path-card .path-idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.path-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.path-card p { font-size: 0.9rem; flex-grow: 1; margin-bottom: 14px; }
.path-card .path-arrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--navy-800);
}
.path-card:hover .path-arrow { color: var(--gold); }

@media (max-width: 960px) {
  .path-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .path-grid { grid-template-columns: 1fr; }
}

/* ---- Plan comparison table ---- */
.plan-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
}
table.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}
table.plan-table th, table.plan-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.plan-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: var(--navy-900);
  color: var(--gold-light);
}
table.plan-table th:first-child { color: var(--gold); }
table.plan-table tr:last-child td { border-bottom: none; }
table.plan-table tr:nth-child(even) td { background: var(--paper-dim); }
table.plan-table td:first-child { font-weight: 600; color: var(--navy-800); }

/* ---- FAQ accordion ---- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 4px 22px;
  font-size: 0.94rem;
  max-width: 65ch;
}

/* ---- Segmented radio group (lead form) ---- */
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.radio-option {
  position: relative;
}
.radio-option input {
  position: absolute;
  opacity: 0;
}
.radio-option label {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.86rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio-option input:checked + label {
  border-color: var(--gold);
  background: var(--paper-dim);
  color: var(--navy-900);
  font-weight: 600;
}
.radio-option input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---- Signature line (about/story rapport) ---- */
.signature-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.signature-block img {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

/* ---- Portrait intro section (About page, Fuller-Built-style layout) ---- */
.about-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.about-portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.about-portrait .portrait-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(11, 5, 6, 0.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 2px;
  border-left: 2px solid var(--gold);
}
.about-portrait .portrait-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.about-portrait .portrait-tag span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 860px) {
  .about-intro { grid-template-columns: 1fr; }
}

.signature-block .sig-text { font-size: 0.9rem; color: #63707f; }
.signature-block .sig-text strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; }

/* ---- Shine text effect (CTA band subhead) ---- */
.shine-text {
  display: block;
  background: linear-gradient(
    100deg,
    var(--gold-light) 0%,
    var(--gold-light) 40%,
    #fff8e0 50%,
    var(--gold-light) 60%,
    var(--gold-light) 100%
  );
  background-size: 250% 100%;
  background-position: 150% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-sweep 4s ease-in-out infinite;
}

@keyframes shine-sweep {
  0% { background-position: 150% 0; }
  60% { background-position: -50% 0; }
  100% { background-position: -50% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .shine-text {
    animation: none;
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--gold-light);
  }
}
