/* ============================================================
   BAS2A CONSULTING — Design System
   Category: Government Performance Transformation
   Palette: Navy / Gold / White — "Category Pirates" inspired
   ============================================================ */

/* ── Reset & Root ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1F3864;
  --navy-mid:  #2E4A7A;
  --navy-dark: #0D1F3C;
  --gold:      #C9A84C;
  --gold-light:#F5E6C8;
  --gold-pale: #FFF8E7;
  --white:     #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100:  #F0F2F5;
  --gray-200:  #DDE1E8;
  --gray-400:  #8A93A4;
  --gray-600:  #4A5568;
  --gray-800:  #1A202C;
  --green:     #2E7D32;
  --red:       #C62828;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Arial', 'Helvetica Neue', Helvetica, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);

  --max-w:      1200px;
  --section-py: 80px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; color: var(--navy-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; }
p  { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 1rem; }
.lead { font-size: 1.2rem; color: var(--gray-600); max-width: 720px; }

.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }
.text-white  { color: var(--white) !important; }
.text-center { text-align: center; }
.text-bold   { font-weight: 700; }

/* ── Layout ───────────────────────────────────────────────── */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.section   { padding: var(--section-py) 0; }
.section--dark { background: var(--navy-dark); }
.section--navy { background: var(--navy); }
.section--gold-pale { background: var(--gold-pale); }
.section--gray { background: var(--gray-100); }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1   { gap: 1rem; }
.gap-2   { gap: 2rem; }

@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  background: var(--navy-dark);
  padding: 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-md);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 70px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); letter-spacing: .5px;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a { color: var(--gray-200); font-size: .95rem; font-weight: 600; letter-spacing: .3px; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold); color: var(--navy-dark) !important;
  padding: .5rem 1.2rem; border-radius: var(--radius-sm);
  font-weight: 700 !important; font-size: .9rem;
}
.nav__cta:hover { background: #b8903a; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.btn--gold    { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn--gold:hover { background: #b8903a; border-color: #b8903a; color: var(--white); }
.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy-dark); }
.btn--white   { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--gold-pale); }
.btn--navy    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover  { background: var(--navy-dark); }
.btn--lg { font-size: 1.15rem; padding: 1rem 2.5rem; }
.btn--sm { font-size: .88rem; padding: .55rem 1.2rem; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,.12) 0%, transparent 65%);
}
.hero__eyebrow {
  display: inline-block;
  background: var(--gold); color: var(--navy-dark);
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  padding: .3rem .8rem; border-radius: var(--radius-sm);
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero__title { color: var(--white); margin-bottom: 1.2rem; }
.hero__title em { color: var(--gold); font-style: normal; }
.hero__subtitle { font-size: 1.2rem; color: var(--gray-200); max-width: 640px; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stat-row {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  border-top: 1px solid rgba(201,168,76,.3); padding-top: 2rem;
  flex-wrap: wrap;
}
.hero__stat-value { font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero__stat-label { font-size: .85rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .8px; }

/* ── Section Heading ──────────────────────────────────────── */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head__eyebrow {
  display: inline-block;
  color: var(--gold); font-size: .8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .75rem;
}
.section-head__title { margin-bottom: 1rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__badge {
  background: var(--gold); color: var(--navy-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  padding: .25rem .6rem; border-radius: var(--radius-sm);
  text-transform: uppercase; display: inline-block; margin-bottom: .75rem;
}
.card__body { padding: 1.5rem; }
.card__title { font-size: 1.2rem; margin-bottom: .5rem; }
.card__text  { font-size: .95rem; color: var(--gray-600); }

/* ── Framework Cards (dark) ───────────────────────────────── */
.fw-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s;
}
.fw-card:hover { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,.15); }
.fw-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.fw-card__name { font-size: 1.15rem; color: var(--gold); font-weight: 700; margin-bottom: .4rem; }
.fw-card__full { font-size: .8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .8px; margin-bottom: .75rem; }
.fw-card__desc { font-size: .95rem; color: var(--gray-200); line-height: 1.6; }

/* ── Testimonial ──────────────────────────────────────────── */
.quote {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 2rem; margin: 2rem 0;
}
.quote__text { font-size: 1.1rem; font-style: italic; color: var(--navy-dark); margin-bottom: .75rem; }
.quote__attr { font-size: .85rem; color: var(--gray-600); font-weight: 700; }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 2px; margin: 1rem 0 1.5rem;
}
.divider--center { margin: 1rem auto 1.5rem; }

/* ── Price Card ───────────────────────────────────────────── */
.price-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.price-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.1);
  position: relative;
}
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-dark);
  font-size: .75rem; font-weight: 700; padding: .3rem 1rem;
  border-radius: 99px; text-transform: uppercase; letter-spacing: .8px;
}
.price-card__name { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.price-card__price {
  font-size: 3rem; font-weight: 700; color: var(--navy-dark);
  line-height: 1; margin: 1rem 0 .25rem;
}
.price-card__price span { font-size: 1.1rem; color: var(--gray-400); }
.price-card__desc { font-size: .9rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.price-card__features { text-align: left; list-style: none; margin-bottom: 2rem; }
.price-card__features li {
  font-size: .95rem; padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.price-card__features li::before { content: "✓  "; color: var(--green); font-weight: 700; }

/* ── Form ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--gray-800);
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-md);
}

/* ── Process Steps ────────────────────────────────────────── */
.step { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.step__num {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--gold); color: var(--navy-dark);
  font-weight: 700; font-size: 1.1rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step__title { font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.step__text  { font-size: .95rem; color: snow; }

/* ── Tag / Pill ───────────────────────────────────────────── */
.pill {
  display: inline-block;
  background: var(--gold-pale); color: var(--navy);
  font-size: .8rem; font-weight: 700; letter-spacing: .5px;
  padding: .25rem .75rem; border-radius: 99px;
}

/* ── Banner / Alert ───────────────────────────────────────── */
.banner {
  background: var(--gold); color: var(--navy-dark);
  padding: 1rem 0; text-align: center;
  font-weight: 700; font-size: .95rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--gray-400); padding: 60px 0 30px;
}
.footer__brand { font-family: var(--font-heading); font-size: 1.6rem; color: var(--white); margin-bottom: .5rem; }
.footer__brand span { color: var(--gold); }
.footer__tagline { font-size: .9rem; color: var(--gray-400); margin-bottom: 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__col h5 { color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: .5rem; }
.footer__col a  { color: var(--gray-400); font-size: .9rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem; font-size: .85rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

/* ── Week Timeline ────────────────────────────────────────── */
.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 3px; background: var(--gold-light);
}
.timeline__item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; position: relative; }
.timeline__dot {
  flex-shrink: 0; width: 56px; height: 56px;
  background: var(--gold); color: var(--navy-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; z-index: 1;
  box-shadow: 0 0 0 4px var(--gold-pale);
}
.timeline__content { padding-top: .75rem; }
.timeline__week { font-size: .78rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.timeline__title { font-size: 1.2rem; color: var(--navy-dark); font-weight: 700; margin: .2rem 0 .5rem; }
.timeline__text  { font-size: .95rem; color: var(--gray-600); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.faq-q { font-size: 1.05rem; font-weight: 700; color: var(--navy); cursor: pointer; }
.faq-a { font-size: .95rem; color: var(--gray-600); margin-top: .75rem; }

/* ── Utility ──────────────────────────────────────────────── */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.hidden { display: none; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up--delay-1 { animation-delay: .15s; }
.fade-up--delay-2 { animation-delay: .3s; }
.fade-up--delay-3 { animation-delay: .45s; }

/* ── Mobile Nav ───────────────────────────────────────────── */
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .3s; }
@media (max-width: 768px) {
  .nav__hamburger { display: block; }
  .nav__links     { display: none; position: absolute; top: 70px; left: 0; right: 0;
                    background: var(--navy-dark); flex-direction: column; padding: 1rem; gap: .5rem; }
  .nav__links.open { display: flex; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 50px; }
  .hero { padding: 60px 0 50px; }
  .hero__stat-row { gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   FRACTIONAL CLO SITE — Supplemental Components (2026)
   ============================================================ */

/* ── Audience Strip ───────────────────────────────────────── */
.audience-strip {
  background: var(--navy);
  color: var(--gray-200);
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .85rem 0;
}
.audience-strip span { color: var(--gold); }

/* ── Eyebrow (reusable, light bg) ─────────────────────────── */
.eyebrow {
  display: inline-block;
  color: var(--gold); font-size: .8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .9rem;
}

/* ── Case Study Cards ─────────────────────────────────────── */
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (max-width: 800px) { .cs-grid { grid-template-columns: 1fr; } }

.cs-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cs-card__tag {
  align-self: flex-start;
  background: var(--gold-pale); color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 99px; margin-bottom: .9rem;
}
.cs-card__agency { font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .5px; text-transform: uppercase; margin-bottom: .35rem; }
.cs-card__title { font-family: var(--font-heading); font-size: 1.25rem; color: var(--navy-dark); line-height: 1.25; margin-bottom: .75rem; }
.cs-card__text { font-size: .96rem; color: var(--gray-600); margin-bottom: 1rem; }
.cs-card__metric {
  margin-top: auto;
  border-top: 1px solid var(--gray-100); padding-top: 1rem;
  display: flex; align-items: baseline; gap: .6rem;
}
.cs-card__metric-value { font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.cs-card__metric-label { font-size: .82rem; color: var(--gray-400); }

/* ── Full Case Study Block (case-studies.html) ────────────── */
.cs-full {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  scroll-margin-top: 90px;
}
.cs-full__head { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-bottom: 1rem; }
.cs-full__num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.cs-full__title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy-dark); line-height: 1.2; flex: 1; min-width: 240px; }
.cs-full__agency { font-size: .8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 1rem; }
.cs-full__row { margin-bottom: 1rem; }
.cs-full__label { font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: .25rem; }
.cs-full__row p { font-size: .98rem; color: var(--gray-600); margin-bottom: 0; }
.cs-full__result {
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-top: 1rem;
}
.cs-full__result .cs-full__label { color: var(--navy-dark); }
.cs-full__result p { color: var(--navy-dark); font-weight: 600; }

/* ── Category Filter Chips ────────────────────────────────── */
.cs-jump { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.cs-jump a {
  background: var(--white); border: 1.5px solid var(--gray-200);
  color: var(--navy); font-size: .85rem; font-weight: 700;
  padding: .4rem 1rem; border-radius: 99px; transition: all .2s;
}
.cs-jump a:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--navy); }

/* ── Feature List (checkmarks) ────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin: 1.5rem 0; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--gray-600); font-size: 1rem; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.check-list--light li { color: var(--gray-200); }

/* ── Serve / Sector Cards ─────────────────────────────────── */
.sector-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 1.75rem; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector-card__icon { font-size: 2.2rem; margin-bottom: .75rem; }
.sector-card__title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy-dark); margin-bottom: .5rem; }
.sector-card__text { font-size: .92rem; color: var(--gray-600); }

/* ── PROVE acronym row ────────────────────────────────────── */
.prove-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 700px) { .prove-row { grid-template-columns: 1fr 1fr; } }
.prove-step { background: var(--navy); border: 1px solid rgba(201,168,76,.25); border-radius: var(--radius-md); padding: 1.1rem; }
.prove-step__letter { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); font-weight: 700; }
.prove-step__name { font-size: .85rem; font-weight: 700; color: var(--white); margin: .2rem 0; }
.prove-step__text { font-size: .8rem; color: var(--gray-400); }

/* ── About headshot frame ─────────────────────────────────── */
.about-frame {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1px solid rgba(201,168,76,.25);
}
.about-frame h4 { color: var(--gold); margin-bottom: 1rem; }
.about-frame ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.about-frame li { color: var(--gray-200); font-size: .95rem; }
.about-frame li strong { color: var(--white); display: block; font-size: 1.05rem; }
