/* ==========================================================================
   coachvini.de — shared stylesheet (DE + EN)
   Dark, condensed-display / body-sans system. See coachvini-brief.md §3.
   ========================================================================== */

/* ---- Self-hosted fonts -------------------------------------------------- */
/* Archivo Condensed: downloaded as a single variable file pinned to the
   condensed width axis (wdth=62.5%), full weight axis 400–800 kept so one
   file covers every weight we use. Named locally as its own family so it
   never gets confused with a non-condensed "Archivo". */
@font-face {
  font-family: 'Archivo Condensed';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 62.5%;
  font-display: swap;
  src: url('assets/fonts/archivo-condensed-variable.woff2') format('woff2');
}

/* Inter: variable file, weight axis 400–700. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/inter-variable.woff2') format('woff2');
}

/* ---- Tokens --------------------------------------------------------------- */
:root {
  --ink: #0B0A09;       /* page background — warm near-black, matte */
  --surface: #141210;   /* raised blocks, cards, placeholders */
  --surface-2: #1D1A17; /* slightly lighter raised surface, for contrast on surface */
  --paper: #F2F3F0;     /* text on dark; light-section background */
  --pitch: #00C767;     /* vivid green — the one accent */
  --gold: #FFC93C;      /* stats numbers only */
  --slice: -2.4deg;     /* the logo's own diagonal cut angle, measured by fitting a line
                            through the letter-slice gap in the client's PNG exports
                            (pixel-level regression; read -2.0° on one file, -2.8° on the
                            other — averaged). Re-derive precisely once the SVG source
                            arrives. Used sparingly, as a brand callback, not a layout tool. */

  --font-display: 'Archivo Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --content-max: 1100px;
  --edge: 1.25rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 640px) {
  :root { --edge: 2rem; }
}
@media (min-width: 1024px) {
  :root { --edge: 3rem; }
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video, picture { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

/* ---- Matte texture: page vignette + film grain ---------------------------
   Two fixed, full-viewport, pointer-events:none layers behind everything:
   1) a radial lightening centred behind the hero, darker toward the edges
   2) a very faint animated grain, so the dark feels like matte material
      instead of a flat glossy void. Grain motion stops under reduced-motion
      (the vignette has no motion to begin with). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 1100px 800px at 50% -5%,
    color-mix(in srgb, var(--ink) 78%, white) 0%,
    var(--ink) 55%,
    color-mix(in srgb, var(--ink) 92%, black) 100%
  );
}

.grain {
  position: fixed;
  inset: -10%; /* oversized so the animated shift never reveals an edge */
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  /* A real 64x64 random-noise PNG, not an inline feTurbulence filter —
     SVG turbulence's Perlin lattice aliases into visible diagonal bands
     at the frequencies fine grain needs; true per-pixel randomness has
     no lattice to alias, and at this size and opacity the 64px tiling
     is imperceptible. */
  background-image: url('/assets/img/noise.png');
  background-size: 64px 64px;
  animation: grain-shift 9s steps(8) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0%, 0%); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -4%); }
  60%  { transform: translate(-4%, -2%); }
  80%  { transform: translate(3%, 3%); }
  100% { transform: translate(0%, 0%); }
}
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--pitch);
  outline-offset: 3px;
  /* dark halo keeps the ring legible on light sections too */
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--ink) 25%, transparent);
}

/* ---- Layout helpers ----------------------------------------------------- */
.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.section {
  padding-block: clamp(3.5rem, 9vw, 7rem);
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.lede {
  max-width: 38em;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}
.section--light .lede { color: color-mix(in srgb, var(--ink) 78%, transparent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95em 1.6em;
  border-radius: 2px;
  text-decoration: none; /* buttons never underline, not even on hover */
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease);
}
.btn--primary {
  background: var(--pitch);
  /* vivid green is bright — dark ink text is what actually passes contrast here */
  color: var(--ink);
}
.btn--primary:hover { background: color-mix(in srgb, var(--pitch) 85%, white); }
.btn--primary:active { transform: scale(0.98); }

.btn--ghost {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--paper) 35%, transparent);
  color: var(--paper);
}
.btn--ghost:hover { border-color: var(--paper); }
.section--light .btn--ghost {
  border-color: color-mix(in srgb, var(--ink) 35%, transparent);
  color: var(--ink);
}

/* ---- Placeholder media blocks -------------------------------------------- */
/* Every real photo/video is swapped in later. Keep them all funnelled
   through this one class so the swap is a CSS/asset job, not a rebuild. */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    repeating-linear-gradient(
      135deg,
      var(--surface),
      var(--surface) 10px,
      var(--surface-2) 10px,
      var(--surface-2) 20px
    );
  border: 1px solid color-mix(in srgb, var(--paper) 12%, transparent);
  color: color-mix(in srgb, var(--paper) 55%, transparent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 1.5em;
  width: 100%;
}
.placeholder--16-9 { aspect-ratio: 16 / 9; }
.placeholder--4-5  { aspect-ratio: 4 / 5; }
.placeholder--1-1  { aspect-ratio: 1 / 1; }

/* ---- Real photos ----------------------------------------------------------
   What a .placeholder becomes once content.json gets a real `photo` object
   for that slot (see build.js's mediaBlock()) — same aspect ratios, same
   border treatment, so the swap doesn't shift any layout. */
.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--paper) 12%, transparent);
}
.photo--4-5 { aspect-ratio: 4 / 5; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--edge);
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 8%, transparent);
}
.logo { display: inline-flex; }
.logo img {
  height: 24px;
  width: auto;
  display: block;
}
.logo:hover img { opacity: 0.8; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lang-switch a { text-decoration: none; opacity: 0.55; }
.lang-switch a:hover { opacity: 1; }
.lang-switch [aria-current="true"] { opacity: 1; color: var(--pitch); }
.lang-switch .divider { opacity: 0.3; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  /* Text left, phone-framed video right — source order already puts
     .hero__text first, so this is the only rule needed for placement. */
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}
.hero__title {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  max-width: 12ch;
}
.hero__sub {
  margin-top: 0.9em;
  max-width: 32ch;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: color-mix(in srgb, var(--paper) 88%, transparent);
}
.hero__sports {
  margin-top: 1.4em;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}
.hero__cta { margin-top: 1.8em; }

.hero__media { display: flex; justify-content: center; }
.phone-frame {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  box-shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.65);
}
.phone-frame video,
.phone-frame .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
}
.phone-frame .placeholder {
  z-index: 1; /* sits above the <video> until it reports real data (main.js), or forever if it 404s */
}

/* ==========================================================================
   Hook ("the question")
   ========================================================================== */
.hook {
  text-align: left;
}
.hook__title {
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  max-width: 16ch;
}
.hook .lede { margin-top: 1em; }

/* ==========================================================================
   Stats — the one loud moment
   ========================================================================== */
.stats {
  background: var(--surface);
  padding-block: clamp(4rem, 12vw, 8rem);
}
.stats__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  border-top: 1px solid color-mix(in srgb, var(--paper) 15%, transparent);
  padding-top: 1.2rem;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: clamp(3.2rem, 11vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.stat__label {
  margin-top: 0.5em;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

/* ==========================================================================
   Pillars
   ========================================================================== */
.pillars__list {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pillars__list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillars__list { grid-template-columns: repeat(4, 1fr); }
}
.pillar__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
}
.pillar__copy {
  margin-top: 0.5em;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--paper) 78%, transparent);
}
.pillars__flow {
  margin-top: 3rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--pitch);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Sports
   ========================================================================== */
.sport-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .sport-grid { grid-template-columns: repeat(2, 1fr); }
}
.sport-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.sport-card .placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
}
.sport-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--ink) 85%, transparent), transparent 55%);
}
.sport-card__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 800;
}
.sport-card__verbs {
  margin-top: 0.3em;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--paper) 85%, transparent);
}
.sport-card__equipment {
  margin-top: 0.6em;
  font-size: 0.78rem;
  color: var(--pitch);
}

/* ==========================================================================
   Training contrast list (nicht nur / sondern)
   ========================================================================== */
.contrast-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem 2rem;
  padding-block: 1.3rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 12%, transparent);
}
.contrast-row:last-child { border-bottom: 1px solid color-mix(in srgb, var(--paper) 12%, transparent); }
@media (min-width: 720px) {
  .contrast-row { grid-template-columns: 1fr 1fr; align-items: baseline; }
}
.contrast-row .nicht {
  font-size: 1rem;
  text-decoration: line-through;
  text-decoration-color: color-mix(in srgb, var(--paper) 35%, transparent);
  color: color-mix(in srgb, var(--paper) 55%, transparent);
}
.contrast-row .sondern {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 700;
}

/* ==========================================================================
   Parents / Coaches
   ========================================================================== */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1.1fr 0.9fr; }
  .split--reverse { grid-template-columns: 0.9fr 1.1fr; }
  .split--reverse > :first-child { order: 2; }
}
.parents__title, .coaches__title, .about__title, .closing__title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  max-width: 16ch;
}
.parents__title { color: var(--ink); }
.parents__tagline {
  margin-top: 0.6em;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--pitch);
}

.offer-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}
.offer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-block: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 12%, transparent);
}
@media (min-width: 560px) {
  .offer {
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
  }
}
.offer__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.15rem;
}
@media (min-width: 560px) {
  .offer__title {
    min-width: 9ch;
    flex-shrink: 0; /* never let a long single-word title (e.g. "Einzeltraining") get squeezed below its own text width */
  }
}
.offer__copy {
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--paper) 78%, transparent);
}

/* ==========================================================================
   About
   ========================================================================== */
.about__credential {
  margin-top: 0.6em;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--pitch);
}
.about__copy { margin-top: 1.4em; }
.about__copy p + p { margin-top: 1em; }

/* ==========================================================================
   Closing / contact
   ========================================================================== */
.closing { text-align: left; }
.closing__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.closing__note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--paper) 50%, transparent);
  max-width: 42ch;
}
.closing__tagline {
  /* The one place the logo's own diagonal cut angle gets reused directly —
     a closing signature line, tilted exactly like the wordmark's slice. */
  display: inline-block;
  margin-top: 2.8rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.3rem, 4vw, 2rem);
  letter-spacing: 0.01em;
  color: var(--paper);
  transform: rotate(var(--slice));
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--paper) 10%, transparent);
  padding: 2.5rem var(--edge);
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--paper) 65%, transparent);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--paper); }

/* ==========================================================================
   Content video facade (hand-rolled lite-youtube-embed pattern)
   Click/keyboard-to-load only. Never loads a YouTube iframe on page load;
   swaps to youtube-nocookie.com only on interaction. The real thumbnail
   layers over the placeholder pattern and simply fails silently onto it
   until a real video ID is in place — no code change needed to swap later.
   ========================================================================== */
.lite-yt {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background:
    repeating-linear-gradient(
      135deg,
      var(--surface),
      var(--surface) 10px,
      var(--surface-2) 10px,
      var(--surface-2) 20px
    );
}
/* Photo-slot facades (sport cards, Für Eltern): same 4:5 box as every
   other photo/placeholder on the site, and — when the facade's visual is
   a real curated <picture> rather than a plain background-image thumb —
   make that photo fill the facade the same absolute way .lite-yt__thumb
   does, so it doesn't fight the play button/overlay for layout space. */
.lite-yt--4-5 { aspect-ratio: 4 / 5; }
.lite-yt .photo { position: absolute; inset: 0; }
.lite-yt__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.lite-yt__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--paper) 55%, transparent);
  color: var(--paper);
  font-size: 1.1rem;
  transition: background-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.lite-yt:hover .lite-yt__play,
.lite-yt:focus-visible .lite-yt__play {
  background: var(--pitch);
  color: var(--ink);
  transform: scale(1.06);
}
.lite-yt__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--paper) 85%, transparent);
  background: linear-gradient(to top, color-mix(in srgb, var(--ink) 85%, transparent), transparent 100%);
}
.lite-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Vertical reel strip -------------------------------------------------
   A horizontally scrolling, snap-scrolling row of 9:16 lite-yt facades.
   Sizing is the only thing that changes per breakpoint — click-to-load
   behaviour comes free from the shared .lite-yt rules/JS above. */
.reel-strip {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--edge);
  padding-bottom: 0.5rem; /* clearance from the scrollbar, where the OS shows one */
}
.reel-card {
  flex: 0 0 auto;
  width: 74%; /* mobile: one card plus a hint of the next */
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .reel-card { width: calc((100% - 1 * 1rem) / 2.3); } /* ~2 and a bit visible */
}
@media (min-width: 900px) {
  .reel-card { width: calc((100% - 3 * 1rem) / 4); } /* 4 visible */
}

/* ==========================================================================
   Cal.com booking facade — click-to-load, nothing from cal.com loads
   until the visitor asks for it.
   ========================================================================== */
.cal-embed__frame {
  margin-top: 1rem;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
}
.cal-embed__frame iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}
.cal-embed__loading {
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--paper) 65%, transparent);
}

/* ==========================================================================
   Legal pages (Impressum / Datenschutzerklärung + EN mirrors)
   ========================================================================== */
.legal-body {
  max-width: 65ch;
}
.legal-body h1 { margin-bottom: 1.2rem; }
.legal-body h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2.2rem;
}
.legal-body p {
  margin-top: 0.6rem;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}
.legal-body .legal-name {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--paper);
}
.legal-body a { text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--paper) 40%, transparent); }
.legal-body a:hover { text-decoration-color: var(--paper); }
.legal-body .tbd {
  border-left: 3px solid var(--gold);
  padding-left: 0.9em;
  color: color-mix(in srgb, var(--paper) 90%, transparent);
}
