/* ==========================================================================
   Recurse Manifesto — Bharath, Candidate for Club Head
   Design system: dead-design-language (see SKILL.md)

   Every color, type size and radius below comes from that spec.
   Nothing here is invented. If a value is needed that is not a token,
   the correct fix is to use the nearest existing token instead.

   Contents
   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Typography
   5.  Header & navigation
   6.  Hero
   7.  Content components (lists, panels, statements, tags)
   8.  Promises
   9.  Buttons & links
   10. Footer
   11. Motion (single fade-up)
   12. Responsive
   13. Print
   ========================================================================== */

/* ==========================================================================
   1. Tokens — SKILL.md §1, §2, §3
   ========================================================================== */

:root {
  /* Canvas & surfaces (warm neutrals) */
  --cream:            #FAEBD7;
  --surface-1:        #F0DCBF;
  --surface-2:        #E4CBA8;

  /* Text (warm near-blacks/browns — never pure black) */
  --ink:              #1E1A14;
  --ink-2:            #4A4033;
  --ink-muted:        #6B5D4A;
  --ink-faint:        #9A8D78; /* decorative only — never carries text */

  /* Primary accent — terracotta. The signature color. */
  --accent:           #7C4B3A;
  --accent-tint:      #F5E6DF;
  --accent-on-tint:   #5A2E20;
  --cream-on-accent:  #FBEEDB;

  /* Secondary accent — pine. Used sparingly. */
  --pine:             #6E8B7F;
  --pine-strong:      #3F4D46;
  --pine-tint:        #E1E9E5;
  --pine-on-tint:     #2C3934;

  --hairline:         rgba(30, 26, 20, 0.12);
  --hairline-strong:  rgba(30, 26, 20, 0.20);

  /* Typefaces — two typefaces, two jobs */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale (1.25 modular ratio) */
  --fs-hero:    61px;
  --fs-display: 39px;
  --fs-heading: 25px;
  --fs-title:   20px;
  --fs-body:    16px;
  --fs-meta:    14px;
  --fs-caption: 13px;

  /* Radius scale — exactly three values */
  --r-control: 10px;
  --r-card:    16px;
  --r-pill:    100px;

  /* Reading measure — single column, content-focused (SKILL.md §9) */
  --measure: 640px;

  /* Vertical rhythm. Sections breathe; silence is part of the aesthetic. */
  --space-section: 60px;
  --space-block:   28px;

  /* Horizontal breathing room. Steps down on narrow screens. */
  --gutter: 24px;

  /* Height of the sticky header, and the offset anchor jumps must clear.
     These are kept in sync per breakpoint so a linked section never lands
     underneath the header. */
  --header-h: 62px;
  --anchor-offset: 82px;

  /* Hero opens with a touch more air than a normal section, but the header's
     own border already provides separation — this should never read as a
     gap. Reduced further on short viewports. */
  --space-hero-top: 56px;
}

/* Dark theme overrides */
[data-theme="dark"] {
  /* Canvas & surfaces (warm deep neutrals) */
  --cream:            #141210;
  --surface-1:        #211D19;
  --surface-2:        #2B2621;

  /* Text (warm near-whites/sands) */
  --ink:              #F7EFE5;
  --ink-2:            #D8CCC0;
  --ink-muted:        #A89A89;
  --ink-faint:        #665A4B;

  /* Primary accent — warm vibrant terracotta for dark background */
  --accent:           #E07A5F;
  --accent-tint:      #33211B;
  --accent-on-tint:   #F5C2B4;
  --cream-on-accent:  #141210;

  /* Secondary accent — pine */
  --pine:             #89AAA0;
  --pine-strong:      #6B8A80;
  --pine-tint:        #1E2C26;
  --pine-on-tint:     #B8D4CB;

  --hairline:         rgba(247, 239, 229, 0.12);
  --hairline-strong:  rgba(247, 239, 229, 0.22);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cream:            #141210;
    --surface-1:        #211D19;
    --surface-2:        #2B2621;

    --ink:              #F7EFE5;
    --ink-2:            #D8CCC0;
    --ink-muted:        #A89A89;
    --ink-faint:        #665A4B;

    --accent:           #E07A5F;
    --accent-tint:      #33211B;
    --accent-on-tint:   #F5C2B4;
    --cream-on-accent:  #141210;

    --pine:             #89AAA0;
    --pine-strong:      #6B8A80;
    --pine-tint:        #1E2C26;
    --pine-on-tint:     #B8D4CB;

    --hairline:         rgba(247, 239, 229, 0.12);
    --hairline-strong:  rgba(247, 239, 229, 0.22);
  }
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* Anchors land below the sticky header rather than under it. Driven by a
     token so it can never drift out of sync with the header's real height. */
  scroll-padding-top: var(--anchor-offset);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Guards against a long unbroken string forcing a horizontal scrollbar. */
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  /* Generous leading — this page is meant to be read slowly. */
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .3s ease, color .3s ease;
}

.site-header,
.panel,
.tag-list li,
.btn,
.list li::before,
.rule,
.site-nav a,
.scroll-cue__track,
.theme-toggle {
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

/* Visible focus for every interactive element. Never removed. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-control);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 20;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--cream-on-accent);
  font-size: var(--fs-caption);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: top .18s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

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

.section {
  padding-block: var(--space-section);
}

/* A hairline divider between sections. Depth comes from borders, not shadow. */
.rule {
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--hairline);
}

/* ==========================================================================
   4. Typography
   ========================================================================== */

/* Cormorant carries feeling: headlines and titles only. */
.hero__title,
.display,
.section__title,
.promise__title,
.statement,
.hero__pitch,
.sub {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero__title {
  margin: 0 0 var(--space-block);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.08;
}

.display {
  margin: 0;
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.15;
}

.section__title {
  margin: 0 0 var(--space-block);
  font-size: var(--fs-heading);
  font-weight: 400;
  line-height: 1.3;
}

/* Sub-headings inside a long section. Same token as card titles. */
.sub {
  margin: 40px 0 12px;
  font-size: var(--fs-title);
  font-weight: 400;
  line-height: 1.35;
}

/* The single boldest typographic move: one italic accent word per headline. */
.hero__title em,
.section__title em,
.display em,
.statement em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* DM Sans carries structure: body copy, labels, UI. */
p {
  margin: 0 0 var(--space-block);
  max-width: 62ch;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--ink-muted);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

.lede {
  font-size: var(--fs-body);
  color: var(--ink-2);
}

/* A pulled-out sentence. Larger, quieter, sits alone. */
.statement {
  margin-block: 44px;
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.25;
  max-width: 34ch;
}

/* Secondary aside — a caveat or a closing line. */
.note {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 1.5px solid var(--hairline-strong);
  color: var(--ink-muted);
  font-size: var(--fs-meta);
  line-height: 1.7;
}

.note strong {
  color: var(--ink-2);
  font-weight: 500;
}

/* ==========================================================================
   5. Header & navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 960px;
  min-height: var(--header-h);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Comfortable touch height without changing the visual weight. */
  min-height: 44px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* The signature mark. Used once, here, and nowhere else. */
.seal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  /* Flex + min-height gives a 44px touch target while the underline still
     sits tight under the text. */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-muted);
  font-size: var(--fs-caption);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
  background-color: var(--accent-tint);
  transform: scale(1.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}

.theme-toggle__icon {
  pointer-events: none;
}

.theme-toggle__icon--sun {
  display: none;
}

.theme-toggle__icon--moon {
  display: block;
}

[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon--sun {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__icon--moon {
    display: none;
  }
  :root:not([data-theme="light"]) .theme-toggle__icon--sun {
    display: block;
  }
}

/* ==========================================================================
   6. Hero
   ========================================================================== */

.section--hero {
  padding-block: var(--space-hero-top, 116px) var(--space-section);
}

.hero__pitch {
  margin: 0 0 var(--space-block);
  font-size: var(--fs-heading);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.4;
  max-width: 40ch;
}

/* A quiet nudge that there is more below — the one exception to "no
   scroll animation", since it's a static affordance, not a scroll effect.
   Reuses the hairline/dot language already on the page. */
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .18s ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--accent);
}

.scroll-cue__track {
  position: relative;
  width: 1.5px;
  height: 26px;
  background: var(--hairline-strong);
  overflow: hidden;
}

.scroll-cue__dot {
  position: absolute;
  left: 50%;
  top: -6px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: currentColor;
  animation: scroll-cue-fall 1.9s ease-in-out infinite;
}

@keyframes scroll-cue-fall {
  0%   { top: -6px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 26px; opacity: 0; }
}

/* Three facts, plainly stated. Not a stats bar — no counters, no numbers. */
.fact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px 24px;
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

.fact dt {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact dd {
  margin: 0;
  color: var(--ink);
  font-size: var(--fs-meta);
  font-weight: 400;
  line-height: 1.5;
}

/* ==========================================================================
   7. Content components
   ========================================================================== */

.list {
  margin: 0 0 var(--space-block);
  padding: 0;
  list-style: none;
  max-width: 62ch;
}

.list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.list li:last-child {
  margin-bottom: 0;
}

/* A hairline dash, not a bullet, and not the signature circle. */
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 10px;
  height: 0;
  border-top: 1.5px solid var(--ink-faint);
}

.list--tight li {
  margin-bottom: 6px;
  font-size: var(--fs-meta);
}

/* Short items read better in two columns. */
.list--split {
  columns: 2;
  column-gap: 32px;
}

.list--split li {
  break-inside: avoid;
}

/* A quiet raised block — surface-1, hairline border, no shadow. */
.panel {
  margin-top: 8px;
  padding: 28px;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
}

.panel__text {
  margin: 0;
  color: var(--ink-2);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 var(--space-block);
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 16px;
  background: var(--accent-tint);
  color: var(--accent-on-tint);
  border-radius: var(--r-pill);
  font-size: var(--fs-caption);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   8. Promises
   ========================================================================== */

.section--promises-intro {
  padding-bottom: 24px;
}

/* Each promise is a long-form <article>, not a card. It gets the full
   measure and the full section rhythm. */
.promise {
  padding-block: var(--space-section);
}

.promise__index {
  margin: 0 0 14px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promise__title {
  margin: 0 0 20px;
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.15;
}

/* The one-sentence summary of a promise, set apart from the argument. */
.promise__goal {
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 1.5px solid var(--accent);
  color: var(--ink);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.65;
  max-width: 52ch;
}

/* ==========================================================================
   10. Buttons & links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .18s ease, background .18s ease, color .18s ease;
}

/* Primary — one commit action on this page: share an idea. */
.btn-primary {
  background: var(--accent);
  color: var(--cream-on-accent);
  border: 1.5px solid var(--accent);
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream-on-accent);
}

.cta-row {
  margin: 4px 0 0;
}

.link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--hairline-strong);
  padding-bottom: 1px;
  transition: border-color .18s ease;
}

.link:hover {
  border-bottom-color: var(--accent);
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

.site-footer {
  padding-block: 44px 60px;
  border-top: 1px solid var(--hairline);
}

.site-footer__text,
.site-footer__meta {
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--fs-caption);
  line-height: 1.6;
}

.site-footer__meta {
  margin-top: 6px;
}

/* ==========================================================================
   12. Motion — a single fade-up. Nothing else. (SKILL.md §9)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(12px);
}

.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* Small stagger down the hero, so it settles rather than snaps. */
.reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal[data-reveal-delay="3"] { transition-delay: .24s; }
.reveal[data-reveal-delay="4"] { transition-delay: .32s; }
.reveal[data-reveal-delay="5"] { transition-delay: .4s; }

/* If JS never runs, content must still be visible. */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ==========================================================================
   13. Responsive

   The type scale steps down through the same 1.25-ratio tokens; no new
   sizes are introduced and no component changes its visual treatment.
   Breakpoints are placed where the *content* breaks, not at device names.

     <= 1024px  tablet — nav collapses to a scroll strip
     <=  860px  narrow tablet / large phone — scale down one step
     <=  600px  phone — tighter gutters, single-column lists
     <=  400px  small phone — smallest comfortable step
     <=  340px  very narrow (Galaxy Fold)
     short viewports — landscape phones, reclaim vertical space
   ========================================================================== */

/* ---- Tablet: the nav no longer fits beside the wordmark ---------------- */
@media (max-width: 1024px) {
  .site-header__inner {
    max-width: 100%;
  }
}

/* ---- Narrow tablet / large phone --------------------------------------- */
@media (max-width: 860px) {
  :root {
    --fs-hero:       39px;
    --fs-display:    25px;
    --fs-heading:    20px;
    --space-section: 52px;
    --space-hero-top: 40px;
    --header-h:      58px;
    --anchor-offset: 118px; /* header wraps to two rows here */
  }

  /* Wordmark and theme toggle on top row, nav as a horizontal scroll strip beneath it.
     A hamburger would be overkill for five in-page anchors. */
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 16px;
    padding-block: 6px;
    min-height: 0;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .theme-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    /* Bleed the strip to the screen edges so it reads as scrollable. */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav__list {
    gap: 22px;
  }

  .site-nav a {
    min-height: 40px;
  }

  .statement {
    margin-block: 36px;
    max-width: 30ch;
  }
}

/* ---- Phone ------------------------------------------------------------- */
@media (max-width: 600px) {
  :root {
    --gutter:        20px;
    --space-section: 48px;
    --space-block:   24px;
  }

  /* Two columns of short items become cramped below this width. */
  .list--split {
    columns: 1;
  }

  .statement {
    max-width: none;
  }

  .panel {
    padding: 24px 20px;
  }

  /* Facts stack rather than squeezing three columns into 360px. */
  .fact-list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
    padding-top: 28px;
  }

  /* Full-width tap target for the one primary action on the page. */
  .btn {
    justify-content: center;
    width: 100%;
  }

}

/* ---- Small phone ------------------------------------------------------- */
@media (max-width: 400px) {
  :root {
    /* Hero drops to the next real token in the scale rather than an
       in-between size. 39px overflows two lines at this width. */
    --fs-hero:    25px;
    --fs-display: 25px;
  }

  .timeline__item {
    padding-left: 18px;
  }

  .note,
  .promise__goal {
    padding-left: 16px;
  }
}

/* ---- Very narrow (Galaxy Fold, 280px) ---------------------------------- */
@media (max-width: 340px) {
  :root {
    --gutter: 16px;
    /* Already at 25px from the 400px step — the only remaining lever is
       tightening the frame, not shrinking type further. */
  }

  .site-nav__list {
    gap: 18px;
  }

  /* At this width the uppercase tracking pushes eyebrows onto three lines. */
  .eyebrow {
    letter-spacing: 0.08em;
  }
}

/* ---- Short viewports: landscape phones --------------------------------- */
@media (max-height: 480px) and (orientation: landscape) {
  :root {
    --space-hero-top: 28px;
    --space-section:  40px;
  }

  /* A sticky header eats too much of a 390px-tall screen. */
  .site-header {
    position: static;
  }

  :root {
    --anchor-offset: 16px;
  }
}

/* ---- Wide screens: the measure holds, the frame gets more air ---------- */
@media (min-width: 1600px) {
  :root {
    --space-section:  72px;
    --space-hero-top: 72px;
  }
}

/* ==========================================================================
   14. Print — the manifesto should survive being printed
   ========================================================================== */

@media print {
  .site-header,
  .skip-link {
    display: none;
  }

  /* Cream still prints as warm paper; pure white is not in the system. */
  body {
    background: var(--cream);
    color: var(--ink);
  }

  .section {
    padding-block: 24px;
    break-inside: avoid;
  }

  /* Cormorant 300 degrades in print — step every display weight up. */
  .hero__title,
  .display,
  .promise__title,
  .statement {
    font-weight: 400;
  }

  .link {
    border-bottom: none;
    text-decoration: underline;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
