/* =============================================
   @font-face — polices hébergées localement
   ============================================= */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/playfair-display/playfair-display-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/hanken-grotesk/hanken-grotesk-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/hanken-grotesk/hanken-grotesk-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/hanken-grotesk/hanken-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/hanken-grotesk/hanken-grotesk-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/hanken-grotesk/hanken-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-600.woff2') format('woff2');
}

/* =============================================
   Variables CSS
   ============================================= */
:root {
  /* Palette */
  --couleur-hero:      #1f2336;
  --couleur-foncee:    #1f2235;
  --couleur-moyenne:   #313552;
  --couleur-filtre:    #2c304a;
  --couleur-or:        #ffc576;
  --couleur-or-pale:   rgba(255, 197, 118, 0.25);
  --couleur-blanc:     #ffffff;
  --couleur-blanc-60:  rgba(255, 255, 255, 0.65);

  /* Typographie */
  --font-titre:   'Playfair Display', serif;
  --font-corps:   'Hanken Grotesk', sans-serif;
  --font-label:   'Open Sans', sans-serif;

  /* Espacements */
  --section-padding: 120px;
  --container-max:   1200px;
  --container-px:    clamp(1rem, 4vw, 5rem);

  /* Transitions */
  --transition: 0.3s ease;
}

/* =============================================
   Réinitialisation & base
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--couleur-foncee);
  color: var(--couleur-blanc);
  font-family: var(--font-corps);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--couleur-or);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

/* Focus visible accessible */
:focus-visible {
  outline: 2px solid var(--couleur-or);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =============================================
   Lien d'évitement (skip link)
   ============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--couleur-or);
  color: var(--couleur-foncee);
  font-family: var(--font-label);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s;
}

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

/* =============================================
   Navigation
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(31, 34, 54, 0.95);
  backdrop-filter: blur(8px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--container-px);
}

/* #1 — Logo plus gros */
.nav-logo {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--couleur-blanc);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo:hover {
  opacity: 1;
  color: var(--couleur-or);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

/* #4 — Hover nav : texte doré + barre sous le lien */
.nav-menu a {
  position: relative;
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--couleur-blanc);
  text-decoration: none;
  padding-bottom: 10px;
  transition: color 250ms ease-out;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--couleur-or);
  opacity: 0;
  transition: opacity 250ms ease-out;
}

.nav-menu a:hover,
.nav-menu a.actif {
  color: var(--couleur-or);
  opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a.actif::after {
  opacity: 1;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--couleur-blanc);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   Utilitaires sections
   ============================================= */
.section {
  padding: var(--section-padding) 0;
}

.section--dark {
  background-color: var(--couleur-foncee);
}

.section--medium {
  background-color: var(--couleur-moyenne);
}

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

.section-label {
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--couleur-or);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-titre);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--couleur-blanc);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.accent {
  color: var(--couleur-or);
  font-weight: 600;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--couleur-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-family: var(--font-corps);
  font-size: clamp(1.25rem, 2.5vw, 2.5rem);
  font-weight: 500;
  color: var(--couleur-or);
  margin-bottom: 1rem;
}

.hero-name {
  font-family: var(--font-titre);
  font-size: clamp(3.5rem, 9vw, 5.625rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--couleur-blanc);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-corps);
  font-size: clamp(1rem, 2vw, 1.875rem);
  font-weight: 500;
  color: var(--couleur-blanc);
}

/* =============================================
   À propos
   ============================================= */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.apropos-corps {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.apropos-corps p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--couleur-blanc);
}

.apropos-corps a {
  color: var(--couleur-or);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.portrait-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* =============================================
   Compétences
   ============================================= */
.section-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--couleur-blanc);
  max-width: 500px;
  margin-bottom: 3rem;
}

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

.competence-card {
  border: 1px solid var(--couleur-or-pale);
  padding: 2.5rem 1.875rem;
  transition: border-color var(--transition);
  cursor: default;
}

.competence-card:hover {
  border-color: var(--couleur-or);
}

/* #8 — Icônes Phosphor */
.card-icon {
  margin-bottom: 1rem;
  height: 3rem;
  display: flex;
  align-items: center;
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
  fill: var(--couleur-or);
}

.card-titre {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--couleur-blanc);
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.competence-card:hover .card-titre {
  color: var(--couleur-or);
}

.card-texte {
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 300;
  color: var(--couleur-blanc);
  line-height: 1.65;
}

/* =============================================
   Parcours
   ============================================= */
.parcours-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  margin-top: 1rem;
}

/* Colonne gauche : Expériences */
.parcours-col-exp {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
}

.parcours-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--couleur-moyenne);
  padding: 1.75rem;
}

/* Icônes Phosphor dans les cards parcours */
.parcours-icone {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: var(--couleur-foncee);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.parcours-icone svg {
  width: 1.875rem;
  height: 1.875rem;
  fill: var(--couleur-or);
}

.parcours-date {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 400;
  color: var(--couleur-or);
  margin-bottom: 0.4rem;
}

.parcours-poste {
  font-family: var(--font-titre);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--couleur-blanc);
  line-height: 1.2;
}

/* Colonne droite : Formations (statique) */
.parcours-col-form {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

/* Ligne verticale */
.parcours-col-form::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--couleur-or-pale);
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -2.25rem;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--couleur-or);
  border-radius: 50%;
}

.timeline-session {
  font-family: var(--font-label);
  font-size: 0.875rem;
  color: var(--couleur-or);
  margin-bottom: 0.2rem;
}

.timeline-lieu {
  font-family: var(--font-label);
  font-size: 0.875rem;
  color: var(--couleur-blanc-60);
  margin-bottom: 0.4rem;
}

.timeline-titre {
  font-family: var(--font-titre);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--couleur-blanc);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-family: var(--font-corps);
  font-size: 0.9375rem;
  color: var(--couleur-blanc-60);
  line-height: 1.6;
}

/* =============================================
   Réalisations (#3 — images seules, grille collée)
   ============================================= */
.filtres {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-bottom: 3rem;
}

.filtre {
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--couleur-blanc);
  background-color: var(--couleur-filtre);
  border: none;
  padding: 0.9375rem 1.875rem;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.filtre:hover,
.filtre--actif {
  background-color: var(--couleur-or);
  color: var(--couleur-foncee);
}

.projets-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.projet-card {
  overflow: hidden;
}

.projet-card.masque {
  display: none;
}

.projet-lien {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}

.projet-lien img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 400ms ease-out;
}

.projet-lien:hover img {
  transform: scale(1.20);
}

.projet-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(to top, rgba(31, 34, 53, 0.90) 0%, rgba(31, 34, 53, 0.45) 45%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.projet-card__categorie {
  font-family: var(--font-label);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--couleur-or);
  transform: translateY(8px);
  transition: transform 0.4s ease;
  margin-bottom: 0.25rem;
  display: block;
}

.projet-card__titre {
  font-family: var(--font-titre);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--couleur-blanc);
  line-height: 1.25;
  transform: translateY(8px);
  transition: transform 0.4s ease 0.05s;
  display: block;
}

.projet-lien:hover .projet-card__overlay {
  opacity: 1;
}

.projet-lien:hover .projet-card__categorie,
.projet-lien:hover .projet-card__titre {
  transform: translateY(0);
}

/* Écrans tactiles : overlay toujours visible (pas de survol possible) */
@media (hover: none) {
  .projet-card__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(31, 34, 53, 0.80) 0%, rgba(31, 34, 53, 0.35) 45%, transparent 100%);
  }
  .projet-card__categorie,
  .projet-card__titre {
    transform: translateY(0);
  }
}

/* =============================================
   Contact (#6 — bordures dorées, textarea calée)
   ============================================= */
.contact-form {
  margin-top: 2rem;
}

.contact-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  /* align-items: stretch par défaut = les deux colonnes font la même hauteur */
}

.contact-col-gauche {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-col-droite {
  display: flex;
  flex-direction: column;
}

.champ {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Le champ message remplit toute la hauteur de la colonne droite */
.champ--message {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.champ--message textarea {
  flex: 1;
  min-height: 0;
  resize: none;
}

.champ label {
  font-family: var(--font-corps);
  font-size: 0.9375rem;
  color: var(--couleur-blanc);
}

.champ input,
.champ textarea {
  background-color: var(--couleur-moyenne);
  border: 1px solid var(--couleur-or);
  border-radius: 4px;
  color: var(--couleur-blanc);
  font-family: var(--font-corps);
  font-size: 1rem;
  padding: 1rem 1.125rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.champ input:focus,
.champ textarea:focus {
  border-color: var(--couleur-or);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(255, 197, 118, 0.15);
}

.btn-envoyer {
  width: 100%;
  margin-top: 1.5rem;
  background-color: transparent;
  border: 1px solid var(--couleur-or);
  border-radius: 4px;
  color: var(--couleur-blanc);
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.125rem;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn-envoyer:hover {
  background-color: var(--couleur-or);
  border-color: var(--couleur-or);
  color: var(--couleur-foncee);
}

/* Honeypot — invisible pour les humains, piège pour les bots */
.champ-cache {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Notification succès / erreur après soumission du formulaire */
.contact-notif {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-corps);
  font-size: 0.9375rem;
  line-height: 1.6;
  border-left: 3px solid;
}

.contact-notif--succes {
  background-color: rgba(255, 197, 118, 0.1);
  border-color: var(--couleur-or);
  color: var(--couleur-blanc);
}

.contact-notif--erreur {
  background-color: rgba(224, 82, 82, 0.12);
  border-color: #e05252;
  color: var(--couleur-blanc);
}

.contact-notif--erreur a {
  color: var(--couleur-or);
}

/* Bouton désactivé pendant l'envoi AJAX */
.btn-envoyer:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Bloc de confirmation AJAX (remplace le formulaire au succès) */
.contact-confirmation {
  text-align: center;
  padding: 3rem 1.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-confirmation--visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-confirmation__icone {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--couleur-or);
  margin: 0 auto 1.25rem;
  display: block;
}

.contact-confirmation__titre {
  font-family: var(--font-titre);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--couleur-blanc);
  margin-bottom: 0.75rem;
}

.contact-confirmation__texte {
  font-family: var(--font-corps);
  font-size: 1rem;
  color: var(--couleur-blanc-60);
  line-height: 1.7;
}

/* =============================================
   Footer (#7 — ligne dorée, padding généreux)
   ============================================= */
.site-footer {
  background-color: var(--couleur-foncee);
  border-top: 1px solid rgba(255, 197, 118, 0.2);
  text-align: center;
  padding: 2.5rem var(--container-px);
  font-family: var(--font-corps);
  font-size: 0.9rem;
  color: var(--couleur-blanc-60);
}

.site-footer strong {
  color: var(--couleur-blanc);
  font-weight: 700;
}

.site-footer a {
  color: var(--couleur-blanc-60);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--couleur-or);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}

/* =============================================
   Bouton "Remonter en haut"
   ============================================= */
.btn-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--couleur-or);
  color: var(--couleur-foncee);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
  pointer-events: none;
}

.btn-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-top:hover {
  background-color: var(--couleur-blanc);
}

/* =============================================
   Animations au scroll (IntersectionObserver)
   ============================================= */
.section-label,
.section-title,
.section-intro,
.apropos-corps,
.apropos-portrait,
.competence-card,
.parcours-item,
.timeline-item,
.projet-card,
.contact-form {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anime {
  opacity: 1;
  transform: translateY(0);
}

/* Transitions filtres réalisations */
.projet-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.projet-card.sortant {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.projet-card.entrant {
  opacity: 0;
  transform: scale(0.95);
  transition: none;
}

/* =============================================
   Responsive — tablette (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .apropos-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .apropos-portrait {
    max-width: 400px;
    margin: 0 auto;
  }

  .competences-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .parcours-grille {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .parcours-col-exp,
  .parcours-col-form {
    grid-template-rows: repeat(3, auto);
  }

  .projets-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grille {
    gap: 1.25rem;
  }
}

/* =============================================
   Responsive — mobile (≤ 767px)
   ============================================= */
@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
  }

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--couleur-foncee);
    border-top: 1px solid var(--couleur-or-pale);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-menu.ouverte {
    max-height: 400px;
  }

  .nav-menu li a {
    display: block;
    padding: 1rem var(--container-px);
    border-bottom: 1px solid var(--couleur-or-pale);
  }

  /* La barre active est désactivée sur mobile (pas lisible) */
  .nav-menu a::after {
    display: none;
  }

  /* Compétences */
  .competences-grille {
    grid-template-columns: 1fr;
  }

  /* Parcours */
  .parcours-poste {
    font-size: 1.375rem;
  }

  /* Réalisations */
  .projets-grille {
    grid-template-columns: 1fr;
  }

  .filtres {
    flex-wrap: wrap;
  }

  .filtre {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  /* Contact */
  .contact-grille {
    grid-template-columns: 1fr;
  }

  .champ--message textarea {
    min-height: 200px;
    resize: vertical;
  }
}
