/* ==========================================================================
   Más allá del Uniforme — sistema de diseño
   Fraunces (display, 100–900) + Work Sans (cuerpo/UI)
   El énfasis lo da el PESO tipográfico, nunca el color.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

:root {
  /* paleta */
  --bg: #0a0a0a;
  --bg-raised: #121211;
  --bg-raised-2: #171715;
  --line: #292926;
  --line-soft: #1c1c1a;
  --fg: #f4f2ec;
  --fg-muted: #a7a49a;
  --fg-faint: #706d64;
  --white: #ffffff;
  --ink: #0a0a0a;

  /* tipografía */
  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --fs-giant: clamp(3.2rem, 5vw + 2rem, 8rem);
  --fs-display: clamp(2.4rem, 3vw + 1.6rem, 4.6rem);
  --fs-h1: clamp(2.1rem, 2.4vw + 1.4rem, 3.4rem);
  --fs-h2: clamp(1.7rem, 1.6vw + 1.2rem, 2.5rem);
  --fs-h3: clamp(1.25rem, 0.8vw + 1rem, 1.6rem);
  --fs-lead: clamp(1.2rem, 0.6vw + 1rem, 1.45rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-micro: 0.78rem;

  /* ritmo */
  --gutter: clamp(1.5rem, 5vw, 3.5rem);
  --section-pad: clamp(4.5rem, 9vw, 9rem);
  --max: 1180px;
  --max-narrow: 760px;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

/* evita que el header sticky tape el destino al saltar a un ancla */
[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

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

/* foco de teclado siempre visible */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 2px;
}

::selection { background: var(--fg); color: var(--ink); }

/* --- utilidades de peso: el recurso expresivo principal --- */
.w-thin { font-weight: 200; }
.w-light { font-weight: 300; }
.w-regular { font-weight: 400; }
.w-medium { font-weight: 500; }
.w-semibold { font-weight: 600; }
.w-bold { font-weight: 700; }
.w-black { font-weight: 900; }
.i { font-style: italic; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap-narrow {
  max-width: var(--max-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--line-soft);
}

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--noline { border-top: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 1.25rem;
}

.lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--fg);
  max-width: 44ch;
}

.lead-wide { max-width: 60ch; }

.muted { color: var(--fg-muted); }

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------------- header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.brand .w-black { font-weight: 800; }

.brand--logo { display: flex; align-items: center; gap: 0.65rem; }
.brand--logo img { height: 34px; width: auto; display: block; }
.brand--logo__text { white-space: nowrap; }

@media (max-width: 560px) {
  .brand--logo { gap: 0.4rem; }
  .brand--logo img { height: 24px; }
  .brand--logo__text { font-size: 0.68rem; }
}

@media (max-width: 340px) {
  .brand--logo__text { display: none; }
}

/* ---------------- marca de cierre (home) ---------------- */
.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.brand-mark img {
  height: 44px;
  width: auto;
  opacity: 0.85;
}
.brand-mark__text {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  color: var(--fg-muted);
}
.brand-mark__text .w-black { color: var(--fg); font-weight: 800; }

.site-header .btn { padding: 0.65rem 1.35rem; font-size: var(--fs-micro); white-space: nowrap; }

@media (max-width: 560px) {
  .site-header__inner { padding-block: 0.9rem; gap: 0.75rem; }
  .brand { font-size: 0.85rem; }
  .site-header .btn { padding: 0.6rem 0.85rem; font-size: 0.72rem; }
}

/* ---------------- botones ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.01em;
  padding: 1rem 2rem;
  border-radius: 3px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--fg-muted); border-color: var(--fg-muted); }
.btn:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--fg); background: transparent; color: var(--fg); }

.btn--block { width: 100%; justify-content: center; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* ---------------- placeholders de foto ---------------- */
.photo {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  overflow: hidden;
}
.photo::after {
  /* grano sutil, listo para cuando se añada la imagen real */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--fg-faint);
}
.photo__placeholder svg { width: 30px; height: 30px; opacity: 0.6; }
.photo__placeholder p {
  font-size: var(--fs-micro);
  letter-spacing: 0.02em;
  max-width: 26ch;
  line-height: 1.5;
}

.photo--hero { aspect-ratio: 4 / 5; }
.photo--tall { aspect-ratio: 3 / 4; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo--square { aspect-ratio: 1 / 1; }

/* ---------------- home: identidad ---------------- */
.hero-identity {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 6vw, 4rem) var(--section-pad);
}

@media (min-width: 860px) {
  .hero-identity {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.hero-identity__photo { order: 2; }

.hero-identity__text { order: 1; }

@media (min-width: 860px) {
  .hero-identity__photo { order: 2; }
  .hero-identity__text { order: 1; }
}

.hero-identity h1 {
  font-size: var(--fs-display);
  margin-top: 1rem;
}

.hero-identity__role {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-h3);
  color: var(--fg-muted);
  margin-top: 0.85rem;
}

.hero-identity__desc {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 36ch;
  margin-top: 1.75rem;
}
.hero-identity__desc .w-black { color: var(--fg); font-weight: 700; }

/* ---------------- dos caminos ---------------- */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

@media (min-width: 760px) {
  .paths-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .paths-grid--three { grid-template-columns: repeat(3, 1fr); }
}

.path-card {
  background: var(--bg);
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-height: 320px;
  transition: background-color 0.2s ease;
}
.path-card:hover,
.path-card:focus-visible { background: var(--bg-raised); }

.path-card__label {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
}

.path-card__text {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 30ch;
}
.path-card__text .w-black { color: var(--fg); }

.path-card__arrow {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}
.path-card:hover .path-card__arrow,
.path-card:focus-visible .path-card__arrow { transform: translateX(6px); }

/* ---------------- hero de programa (FOCO / CENTRO) ---------------- */
.program-hero {
  padding-block: clamp(3rem, 7vw, 5.5rem) var(--section-pad);
}

.program-hero__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-giant);
  line-height: 0.92;
  margin: 0.4rem 0 1.75rem;
}

.program-hero__promise {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  max-width: 22ch;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.program-hero__promise .w-black { font-weight: 800; }

.program-hero__explain {
  font-size: var(--fs-lead);
  color: var(--fg-muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.program-hero__explain .w-black { color: var(--fg); font-weight: 700; }

/* ---------------- puntos A / B ---------------- */
.point-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 760px) {
  .point-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.point-block h2 {
  font-size: var(--fs-h2);
  margin-bottom: 2rem;
  max-width: 16ch;
}

.point-list li {
  padding-block: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-lead);
  font-weight: 300;
}
.point-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.point-list .w-black { font-weight: 800; }

.point-block--b .point-list .w-black { font-weight: 800; }

/* ---------------- qué es (stat strip) ---------------- */
.definition {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 760px) {
  .definition { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
}
.definition h2 { font-size: var(--fs-h2); max-width: 14ch; }
.definition p { font-size: var(--fs-lead); color: var(--fg-muted); max-width: 52ch; }
.definition p .w-black { color: var(--fg); font-weight: 700; }

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.75rem;
  line-height: 1;
}
.stat__label {
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---------------- recorrido / fases ---------------- */
.phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.75rem;
}
@media (min-width: 760px) {
  .phases { grid-template-columns: repeat(3, 1fr); }
}
.phase {
  background: var(--bg);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.phase__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--fg-faint);
}
.phase__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  font-family: var(--font-display);
}
.phase p { color: var(--fg-muted); font-size: var(--fs-body); }

/* ---------------- qué incluye ---------------- */
.includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 620px) {
  .includes { grid-template-columns: 1fr 1fr; }
}
.includes li {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
  font-size: var(--fs-lead);
  font-weight: 300;
}
.includes li .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--fg-faint);
  flex-shrink: 0;
}

/* ---------------- John Martin ---------------- */
.bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 780px) {
  .bio { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: center; }
}
.bio h2 { font-size: var(--fs-h2); margin-bottom: 1.5rem; max-width: 14ch; }
.bio p { font-size: var(--fs-lead); font-weight: 300; color: var(--fg-muted); margin-bottom: 1.1rem; max-width: 50ch; }
.bio p:last-child { margin-bottom: 0; }
.bio p .w-black { color: var(--fg); font-weight: 700; }
.bio__signature {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
}

/* ---------------- FAQ ---------------- */
.faq-list { max-width: var(--max-narrow); }
.faq-item {
  border-top: 1px solid var(--line-soft);
}
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .plus {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--fg);
  transition: transform 0.2s ease;
}
.faq-item summary .plus::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-item summary .plus::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.faq-item[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-item__body {
  padding-bottom: 1.75rem;
  max-width: 62ch;
  color: var(--fg-muted);
  font-size: var(--fs-body);
}
.faq-item__body .w-black { color: var(--fg); font-weight: 600; }

/* ---------------- CTA final ---------------- */
.final-cta {
  text-align: center;
  padding-block: clamp(4.5rem, 10vw, 8rem);
}
.final-cta h2 {
  font-size: var(--fs-display);
  font-weight: 900;
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.final-cta__sub {
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  color: var(--fg-muted);
}
.final-cta .btn-row { justify-content: center; }

/* ---------------- contacto ---------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 780px) {
  .contact { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
}
.contact h2 { font-size: var(--fs-h2); margin-bottom: 1.25rem; max-width: 14ch; }
.contact p { color: var(--fg-muted); max-width: 40ch; margin-bottom: 1.5rem; }
.contact-direct { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-direct a { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; border-bottom: 1px solid var(--line); padding-bottom: 0.15rem; width: fit-content; }
.contact-direct a:hover { border-color: var(--fg); }

.form-field { margin-bottom: 1.35rem; }
.form-field label {
  display: block;
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.6rem 0;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--fg-faint); }
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--fg); }

/* ---------------- footer ---------------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding-block: 3rem;
}
.footer-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.footer-nav a:hover { color: var(--fg); }

@media (max-width: 480px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------------- cuestionario (formulario.html) ---------------- */
.quiz-cover {
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(2rem, 4vw, 3rem);
}
.quiz-cover h1 { font-size: var(--fs-display); max-width: 14ch; }
.quiz-cover__sub {
  margin-top: 1.5rem;
  font-size: var(--fs-lead);
  color: var(--fg-muted);
  max-width: 46ch;
}
.quiz-cover__sub .w-black { color: var(--fg); }
.quiz-cover__note {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  color: var(--fg-faint);
  font-size: var(--fs-small);
  max-width: 46ch;
}
.quiz-cover__note .w-black { color: var(--fg-muted); font-weight: 600; }

.id-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 560px) {
  .id-fields { grid-template-columns: 1fr 1fr; }
}

.quiz-item {
  border-top: 1px solid var(--line-soft);
  padding-block: 2rem;
}
.quiz-item:last-of-type { border-bottom: 1px solid var(--line-soft); }
.quiz-item__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1rem;
  color: var(--fg-faint);
  display: block;
  margin-bottom: 0.6rem;
}
legend.quiz-item__q {
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 1.25rem;
  max-width: 52ch;
  padding: 0;
  font-family: var(--font-display);
}
.quiz-item__options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-inline: -0.5rem;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}
.quiz-option:hover { background: var(--bg-raised); }
.quiz-option input {
  appearance: none;
  -webkit-appearance: none;
  margin-top: 0.35rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  position: relative;
}
.quiz-option input::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--fg);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.quiz-option input:checked { border-color: var(--fg); }
.quiz-option input:checked::after { opacity: 1; }
.quiz-option span { color: var(--fg-muted); font-size: var(--fs-body); }
.quiz-option input:checked ~ span { color: var(--fg); }

.submit-block {
  padding-block: 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.submit-block p { color: var(--fg-faint); font-size: var(--fs-small); max-width: 46ch; }

.fallback {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.fallback__label {
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 0.75rem;
}
.fallback__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.fallback__contacts .w-black { color: var(--fg); }
