/* ==========================================================================
   Երևանի Տ. Շևչենկոյի անվան թիվ 42 ավագ դպրոց — Website
   Modern design system
   ========================================================================== */

:root {
  --navy-950: #0b1526;
  --navy-900: #10203a;
  --navy-800: #16304f;
  --navy-700: #1f4166;
  --navy-100: #e7edf5;

  --gold-600: #b8860f;
  --gold-500: #d4a017;
  --gold-400: #e8b93a;
  --gold-300: #f3ce6a;
  --gold-100: #fdf3dc;

  --ink-900: #14202e;
  --ink-700: #3c4a5c;
  --ink-500: #66768a;
  --ink-300: #a5b2c2;

  --paper: #ffffff;
  --paper-soft: #f6f8fb;
  --paper-line: #e4e9f0;

  --success: #1f9d55;
  --danger: #c0392b;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(16, 32, 58, .06), 0 1px 3px rgba(16, 32, 58, .08);
  --shadow-md: 0 6px 16px rgba(16, 32, 58, .10), 0 2px 6px rgba(16, 32, 58, .06);
  --shadow-lg: 0 20px 45px rgba(16, 32, 58, .16), 0 6px 16px rgba(16, 32, 58, .08);

  --container: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans Armenian", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--paper-soft);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

h1, h2, h3, h4 { font-family: "Noto Sans Armenian", "Manrope", sans-serif; margin: 0 0 .5em; font-weight: 800; color: var(--navy-900); letter-spacing: -.01em; }
p { margin: 0 0 1em; color: var(--ink-700); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy-900); color: #fff;
  padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--navy-100);
  font-size: .85rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap;
}
.topbar-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-contacts a, .topbar-contacts span { color: var(--navy-100); text-decoration: none; opacity: .9; display: inline-flex; align-items: center; gap: 6px; }
.topbar-contacts a:hover { opacity: 1; text-decoration: underline; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.topbar-social a:hover { background: var(--gold-500); transform: translateY(-1px); }
.topbar-social svg { width: 15px; height: 15px; fill: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--paper-line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 16px; padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.02rem; color: var(--navy-900); font-weight: 800; }
.brand-text span { font-size: .74rem; color: var(--ink-500); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none; color: var(--ink-700); font-weight: 600; font-size: .88rem;
  padding: 10px 12px; border-radius: 10px; white-space: nowrap; transition: background .18s, color .18s;
}
.main-nav a:hover { background: var(--gold-100); color: var(--navy-900); }
.main-nav a.is-active { background: var(--navy-900); color: #fff; }
.main-nav a.ext-link::after { content: "↗"; margin-inline-start: 4px; font-size: .78em; opacity: .6; }

.nav-toggle {
  display: none; border: none; background: var(--navy-900); color: #fff; width: 44px; height: 44px;
  border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px; font-weight: 700; font-size: .92rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.btn-gold:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--navy-900); border-color: var(--paper-line); }
.btn-outline:hover { border-color: var(--navy-900); }
.btn-sm { padding: 8px 14px; font-size: .82rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 500px at 15% -10%, var(--navy-700), var(--navy-950) 60%);
  color: #fff;
  padding: 64px 0 96px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, var(--gold-300) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(232,185,58,.14);
  color: var(--gold-300); border: 1px solid rgba(232,185,58,.35);
  font-size: .78rem; font-weight: 700; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
  letter-spacing: .02em;
}
.hero h1 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.18; margin-bottom: 18px; }
.hero p.lead { color: var(--navy-100); font-size: 1.05rem; max-width: 56ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12); aspect-ratio: 4/3;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-stats { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 44px; }
.stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 18px 16px; text-align: center; backdrop-filter: blur(6px);
}
.stat-card strong { display: block; font-size: 1.5rem; color: var(--gold-300); font-weight: 800; }
.stat-card span { font-size: .78rem; color: var(--navy-100); }

/* ---------- Section shells ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-alt { background: var(--paper); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.section-head .kicker { color: var(--gold-600); font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.section-head h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 0; }
.section-head p { margin: 8px 0 0; max-width: 60ch; }

.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff; padding: 46px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .1;
  background-image: radial-gradient(circle at 2px 2px, var(--gold-300) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.page-hero .container { position: relative; }
.breadcrumb { font-size: .82rem; color: var(--navy-100); opacity: .85; margin-bottom: 10px; }
.breadcrumb a { color: var(--navy-100); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.page-hero p { color: var(--navy-100); max-width: 68ch; margin: 0; }
.page-hero-icon { width: 44px; height: 44px; margin-bottom: 14px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.25)); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 22px; }
.card-eyebrow { color: var(--gold-600); font-weight: 800; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.card h3 { font-size: 1.08rem; margin: 8px 0 8px; }
.card p { font-size: .92rem; margin-bottom: 12px; }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.card:hover .card-img img { transform: scale(1.05); }

.icon-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.icon-card .icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gold-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-card .icon img { width: 24px; height: 24px; }
.icon-card h3 { font-size: 1rem; margin: 0 0 6px; }
.icon-card p { font-size: .88rem; margin: 0; }

/* ---------- Quick links (home) ---------- */
.quicklinks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -56px; position: relative; }
.quicklink {
  background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 20px; text-decoration: none; display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--paper-line); transition: transform .2s, box-shadow .2s;
}
.quicklink:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(16,32,58,.18); }
.quicklink .icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--navy-900);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.quicklink .icon img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.quicklink strong { display: block; font-size: .92rem; color: var(--navy-900); }
.quicklink span { font-size: .76rem; color: var(--ink-500); }

/* ---------- Banner / section title bars (legacy pages) ---------- */
.title-bar {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff; border-radius: var(--radius-md); padding: 18px 24px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm);
  margin-bottom: 24px; flex-wrap: wrap; justify-content: space-between;
}
.title-bar-main { display: flex; align-items: center; gap: 14px; }
.title-bar img.icon { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.title-bar h2 { color: #fff; margin: 0; font-size: 1.15rem; }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .82rem;
  padding: 7px 14px; border-radius: 999px; background: var(--navy-100); color: var(--navy-900);
}
.pill-gold { background: var(--gold-100); color: var(--gold-600); }
.pill-success { background: #e5f6ea; color: var(--success); }

/* ---------- Announcements / accordion ---------- */
.announcement { background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-md); margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.announcement summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-weight: 700; color: var(--navy-900); gap: 12px;
}
.announcement summary::-webkit-details-marker { display: none; }
.announcement summary .chev { transition: transform .2s; color: var(--ink-500); flex-shrink: 0; }
.announcement[open] summary .chev { transform: rotate(180deg); }
.announcement .announcement-body { padding: 0 22px 22px; color: var(--ink-700); font-size: .92rem; white-space: pre-line; border-top: 1px solid var(--paper-line); padding-top: 16px; }
.announcement summary .meta { font-weight: 500; font-size: .8rem; color: var(--ink-500); }

/* ---------- Year groups (financial/eval pages) ---------- */
.year-block { background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 24px; margin-bottom: 20px; }
.year-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.doc-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.doc-tile {
  width: 128px; text-decoration: none; border: 1px solid var(--paper-line); border-radius: var(--radius-sm);
  padding: 18px 10px 12px; text-align: center; background: var(--paper-soft); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.doc-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.doc-tile img { width: 42px; height: 42px; margin: 0 auto 10px; }
.doc-tile .doc-label { font-size: .78rem; font-weight: 700; color: var(--navy-900); }
.doc-tile .doc-label b { color: var(--gold-600); }
.embed-wrap { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--paper-line); }
.embed-wrap iframe { width: 100%; display: block; border: none; }

/* ---------- Staff grid ---------- */
.staff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.staff-card { background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.staff-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.staff-card .photo { aspect-ratio: 1/1; overflow: hidden; }
.staff-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card .info { padding: 12px; text-align: center; }
.staff-card .info strong { font-size: .84rem; display: block; color: var(--navy-900); }
.staff-card .info span { font-size: .74rem; color: var(--gold-600); font-weight: 700; }
.staff-card.director { grid-column: span 1; }
.staff-card.director .info span { color: var(--navy-900); }

/* ---------- Gallery (extracts) ---------- */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--paper-line); box-shadow: var(--shadow-sm); aspect-ratio: 3/4; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.06); }

/* ---------- Partner links ---------- */
.partner-link {
  display: flex; align-items: center; gap: 16px; padding: 18px; background: var(--paper);
  border: 1px solid var(--paper-line); border-radius: var(--radius-md); text-decoration: none;
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
}
.partner-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.partner-link img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.partner-link strong { font-size: .92rem; color: var(--navy-900); }

/* ---------- Simple two-col link list (documents/lessons pages) ---------- */
.link-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.link-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-sm);
  padding: 16px 18px; text-decoration: none; font-weight: 700; color: var(--navy-900);
  box-shadow: var(--shadow-sm); transition: border-color .18s, transform .18s;
}
.link-list a:hover { border-color: var(--gold-400); transform: translateY(-2px); }

/* ---------- About / history ---------- */
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.about-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.timeline { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.timeline li { display: flex; gap: 14px; align-items: flex-start; }
.timeline .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-500); margin-top: 6px; flex-shrink: 0; }
.timeline strong { color: var(--navy-900); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; color: var(--navy-950); box-shadow: var(--shadow-lg);
}
.cta-band h3 { color: var(--navy-950); margin: 0 0 6px; font-size: 1.3rem; }
.cta-band p { color: var(--navy-950); opacity: .85; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--navy-100); padding: 56px 0 26px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand strong { color: #fff; font-size: 1.05rem; }
.site-footer p { color: var(--navy-100); opacity: .75; font-size: .88rem; }
.site-footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--navy-100); text-decoration: none; font-size: .9rem; opacity: .85; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; margin-bottom: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--gold-500); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; opacity: .65; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); border: none; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s; z-index: 90;
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.muted { color: var(--ink-500); }
.nowrap { white-space: nowrap; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .quicklinks { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; }
  .about-split { grid-template-columns: 1fr; }
  .about-split img { max-width: 480px; margin: 0 auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .link-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0; width: auto; height: auto;
    background: #fff; flex-direction: column; flex-wrap: nowrap; align-items: stretch; justify-content: flex-start;
    padding: 18px; gap: 4px; overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); transition: transform .28s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 14px 16px; font-size: 1rem; border-radius: 12px; }
  .topbar-contacts { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .quicklinks { grid-template-columns: 1fr 1fr; margin-top: 20px; }
}

@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-band { flex-direction: column; text-align: center; }
  .link-list { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .embed-wrap iframe { height: 260px !important; }
}

@media (max-width: 520px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .quicklinks { grid-template-columns: 1fr; }
  .doc-tile { width: 104px; }
  .hero { padding: 40px 0 72px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
