/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════════════════════════ */
:root {
  /* Palette */
  --navy: #1B2B4B;
  --navy-light: #253D6A;
  --cream: #FDF8F0;
  --cream-dark: #F5EEE2;
  --amber: #E8A020;
  --amber-dark: #C8861A;
  --coral: #F4856A;
  --text: #2A2A2A;
  --text-muted: #5E6A7A;
  --white: #FFFFFF;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(27, 43, 75, 0.10);
  --shadow-card-hover: 0 12px 40px rgba(27, 43, 75, 0.18);
  --shadow-sm: 0 2px 8px rgba(27, 43, 75, 0.08);

  /* Transitions */
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --header-h: 72px;
}

/* ══════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ── Scroll-reveal ─────────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: none;
}

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

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition),
    box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--amber);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--amber-dark);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Section anatomy ───────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 52ch;
}

.section-header {
  margin-bottom: var(--space-lg);
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  font-size: 1.2rem;
  color: var(--amber);
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Primary nav */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--cream)
}

.primary-nav a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}

.primary-nav a:hover {
  background: var(--cream-dark);
}

.primary-nav a.nav-cta {
  margin-left: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.45rem 1.1rem;
}

.primary-nav a.nav-cta:hover {
  background: var(--navy-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding-block: var(--space-2xl) calc(var(--space-2xl) + 2rem);
}

/* Decorative background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blob--1 {
  width: 600px;
  height: 600px;
  background: var(--amber);
  top: -200px;
  right: -100px;
}

.hero-blob--2 {
  width: 400px;
  height: 400px;
  background: var(--coral);
  bottom: -150px;
  left: -80px;
}

.hero-stars {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.2;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Hero layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-body {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Book stack illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.book-stack {
  position: relative;
  width: 220px;
  height: 280px;
}

.stacked-book {
  position: absolute;
  border-radius: 4px 10px 10px 4px;
  box-shadow: var(--shadow-card-hover);
}

.stacked-book--back {
  width: 180px;
  height: 240px;
  background: linear-gradient(135deg, #7D3C98, #4A235A);
  bottom: 0;
  left: 20px;
  transform: rotate(-8deg);
}

.stacked-book--mid {
  width: 185px;
  height: 250px;
  background: linear-gradient(135deg, #27AE60, #1A6B3C);
  bottom: 8px;
  left: 14px;
  transform: rotate(-3deg);
}

.stacked-book--front {
  width: 190px;
  height: 260px;
  background: linear-gradient(135deg, var(--amber), #C8861A);
  bottom: 16px;
  left: 8px;
  transform: rotate(2deg);
  display: flex;
  align-items: center;
}

.stacked-book__spine {
  display: block;
  width: 16px;
  height: 80%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px 0 0 2px;
  margin-left: 4px;
}

/* ══════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding-block: 1.5rem;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--cream-dark);
}

/* ══════════════════════════════════════════════════════════════
   BOOKS SECTION
   ══════════════════════════════════════════════════════════════ */
.books-section {
  padding-block: var(--space-2xl);
  background: var(--cream);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition);
}

.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

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

/* Book grid */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

/* ── Book Card ──────────────────────────────────────────────── */
.book-card {
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  animation: fadeUp 0.45s ease both;
}

.book-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.book-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.book-card__cover-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
}

.book-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.book-card:hover .book-card__cover {
  transform: scale(1.04);
}

/* Overlay */
.book-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 43, 75, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.book-card:hover .book-card__overlay {
  opacity: 1;
}

.book-card__cta {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  background: var(--amber);
  color: var(--navy);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
}

/* Badge */
.book-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* Card info */
.book-card__info {
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.book-card__category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
}

.book-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 0.15rem;
}

.book-card__age {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.book-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: var(--space-xl);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════
   AUTHOR SECTION
   ══════════════════════════════════════════════════════════════ */
.author-section {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.author-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: start;
  gap: var(--space-xl);
}

/* Photo */
.author-photo-wrap {
  position: relative;
}

.author-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.author-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--cream-dark);
  min-height: 400px;
}

.author-photo-deco {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  font-size: 3rem;
  color: var(--amber);
  user-select: none;
}

/* Content */
.author-bio {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.author-bio em {
  color: var(--navy);
  font-style: italic;
}

.author-facts {
  margin-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.author-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.fact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding-block: var(--space-2xl);
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 4px solid var(--amber);
}

.testimonial-card p {
  font-size: 1.0125rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.testimonial-card p::before {
  content: "\201C";
  color: var(--amber);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.stars {
  color: var(--amber);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════════ */
.newsletter-section {
  padding-block: var(--space-xl);
  background: var(--navy);
  color: var(--white);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.newsletter-section .section-eyebrow {
  color: var(--amber);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.newsletter-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  outline: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 2px var(--amber);
}

.newsletter-fine {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #111C30;
  color: rgba(255, 255, 255, 0.65);
  padding-top: var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.875rem;
  max-width: 28ch;
  line-height: 1.55;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--navy);
}

.footer-bottom {
  padding-block: 1rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .author-inner {
    grid-template-columns: 1fr;
  }

  .author-photo-frame {
    max-width: 380px;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    padding: 1.5rem;
    flex-direction: column;
    z-index: 99;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .primary-nav a {
    display: block;
    padding: 0.9rem 0.5rem;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--cream-dark);
    width: 100%;
  }

  .primary-nav a.nav-cta {
    margin: 1.25rem 0 0;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .stats-inner {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .book-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .author-photo {
    min-height: 280px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .author-actions {
    flex-direction: column;
  }
}