/* ═══════════════════════════════════════════════════════
   EmiFotoOttica — style.css v2
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold:       #C8922A;
  --gold-light: #DDB96A;
  --gold-dark:  #8B6010;
  --navy:       #1C2333;
  --navy-light: #2D3748;
  --cream:      #FAF7F2;
  --bg:         #FAF7F2;
  --card:       #F4F0E8;
  --border:     #DDD5C0;
  --text:       #1C2333;
  --muted:      #6B7280;
  --font-h:     'Playfair Display', serif;
  --font-b:     'DM Sans', sans-serif;
  --r:          8px;
  --sh:         0 4px 24px rgba(28,35,51,.10);
  --sh-lg:      0 12px 48px rgba(28,35,51,.18);
  --t:          .3s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-b);background:var(--bg);color:var(--text);line-height:1.6;min-height:100vh;display:flex;flex-direction:column}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ── Layout ── */
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}

/* ── Utilities ── */
.text-gold{color:var(--gold)}
.text-gold-gradient{background:linear-gradient(135deg,var(--gold),var(--gold-light));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.btn-gold{display:inline-flex;align-items:center;gap:.5rem;background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy);font-family:var(--font-b);font-weight:600;font-size:.9rem;padding:.75rem 2rem;border-radius:var(--r);border:none;cursor:pointer;transition:opacity var(--t)}
.btn-gold:hover{opacity:.88}
.btn-outline{display:inline-flex;align-items:center;gap:.5rem;border:1.5px solid rgba(255,255,255,.35);color:#fff;font-family:var(--font-b);font-weight:500;font-size:.9rem;padding:.75rem 2rem;border-radius:var(--r);background:transparent;cursor:pointer;transition:border-color var(--t),color var(--t)}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.btn-secondary{display:inline-flex;align-items:center;gap:.5rem;border:1.5px solid var(--border);color:var(--text);font-family:var(--font-b);font-weight:500;font-size:.9rem;padding:.7rem 1.8rem;border-radius:var(--r);background:transparent;cursor:pointer;transition:border-color var(--t),color var(--t)}
.btn-secondary:hover{border-color:var(--gold);color:var(--gold)}
.tag{display:inline-block;background:rgba(28,35,51,.07);color:var(--text);font-size:.75rem;padding:.3rem .8rem;border-radius:999px;font-weight:500}

/* ── Animations ── */
@keyframes fadeInUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.fade-in-up{opacity:0;animation:fadeInUp .7s ease forwards}
.fade-in-up.d1{animation-delay:.15s}.fade-in-up.d2{animation-delay:.30s}.fade-in-up.d3{animation-delay:.45s}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ══════════════ NAVBAR ══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  max-width: 100%;
  height: 130px;
  margin: 0 auto;
  position: relative;
}

.navbar__logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 0.3rem;
}

.navbar__links a {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1c2333;
  transition: color var(--t);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1c2333;
  border-radius: 2px;
  transition: var(--t);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile a {
  padding: 0.9rem 1.5rem;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--t);
}

.navbar__mobile a:hover,
.navbar__mobile a.active {
  color: var(--gold);
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }
}

/* ══════════════ FOOTER ══════════════ */
footer{background:var(--navy);color:#fff;margin-top:auto}
.footer__inner{display:grid;grid-template-columns:repeat(3,1fr);gap:3rem;padding:4rem 1.5rem;max-width:1200px;margin:0 auto}
.footer__logo img{height:72px;width:auto;object-fit:contain;margin-bottom:1rem}
.footer__desc{color:rgba(255,255,255,.45);font-size:.875rem;line-height:1.75}
.footer__title{font-family:var(--font-h);font-size:1.05rem;color:var(--gold);margin-bottom:1rem}
.footer__links{display:flex;flex-direction:column;gap:.6rem}
.footer__links a{color:rgba(255,255,255,.45);font-size:.875rem;transition:color var(--t)}
.footer__links a:hover{color:var(--gold-light)}
.footer__contacts{display:flex;flex-direction:column;gap:.8rem}
.footer__ci{display:flex;align-items:center;gap:.6rem;color:rgba(255,255,255,.5);font-size:.875rem}
.footer__ci svg{flex-shrink:0;color:var(--gold-light)}
.footer__ci a{color:rgba(255,255,255,.5);transition:color var(--t)}
.footer__ci a:hover{color:var(--gold-light)}
.footer__bottom{border-top:1px solid rgba(255,255,255,.07);padding:1.1rem 1.5rem;text-align:center;color:rgba(255,255,255,.28);font-size:.78rem;max-width:1200px;margin:0 auto}

/* ══════════════ HERO ══════════════ */
.hero{position:relative;overflow:hidden}
.hero img.hero__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(to right,#1c2333e0,rgba(28,35,51,.35))}
.hero__content{position:relative;z-index:2;display:flex;align-items:center;height:100%}
.hero__eyebrow{font-family:var(--font-b);font-size:.78rem;font-weight:500;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem}
.hero__title{font-family:var(--font-h);font-size:clamp(2.4rem,6vw,4.5rem);font-weight:700;color:#fff;line-height:1.12;margin-bottom:1.2rem}
.hero__sub{color:rgba(255,255,255,.65);font-size:1.05rem;max-width:520px;margin-bottom:2rem;line-height:1.7}

/* ══════════════ SECTIONS ══════════════ */
.section-title{font-family:var(--font-h);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:700;color:var(--text);text-align:center;margin-bottom:1rem}
.section-sub{color:var(--muted);text-align:center;max-width:500px;margin:0 auto 3.5rem;font-size:.95rem;line-height:1.7}

/* ══════════════ CARDS ══════════════ */
.card{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:2rem;transition:border-color var(--t),box-shadow var(--t)}
.card:hover{border-color:rgba(200,146,42,.4);box-shadow:var(--sh)}
.card__icon{width:52px;height:52px;border-radius:var(--r);background:linear-gradient(135deg,var(--gold),var(--gold-light));display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;transition:transform var(--t)}
.card:hover .card__icon{transform:scale(1.08)}
.card__icon svg{color:var(--navy)}
.card__title{font-family:var(--font-h);font-size:1.2rem;font-weight:600;color:var(--text);margin-bottom:.6rem}
.card__desc{color:var(--muted);font-size:.9rem;line-height:1.65}

/* Brand card */
.brand-card{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:2rem;transition:border-color var(--t),box-shadow var(--t),transform var(--t);display:flex;flex-direction:column;gap:1rem}
.brand-card:hover{border-color:rgba(200,146,42,.5);box-shadow:var(--sh-lg);transform:translateY(-3px)}
.brand-card__logo-area{display:flex;justify-content:space-between;align-items:flex-start}
.brand-card__name{font-family:var(--font-h);font-size:2rem;font-weight:700}
.brand-card__desc{color:var(--muted);font-size:.9rem;line-height:1.65;flex:1}
.brand-card__tags{display:flex;flex-wrap:wrap;gap:.4rem}
.brand-card__cta{display:inline-flex;align-items:center;gap:.4rem;font-weight:600;font-size:.875rem;color:var(--gold);transition:gap var(--t);margin-top:.3rem}
.brand-card__cta:hover{gap:.7rem}

/* Info card */
.info-card{display:flex;gap:1rem;padding:1.5rem;background:var(--card);border:1px solid var(--border);border-radius:var(--r);transition:border-color var(--t)}
.info-card:hover{border-color:rgba(200,146,42,.3)}
.info-card__icon{flex-shrink:0;width:48px;height:48px;border-radius:var(--r);background:linear-gradient(135deg,var(--gold),var(--gold-light));display:flex;align-items:center;justify-content:center}
.info-card__icon svg{color:var(--navy)}
.info-card__title{font-family:var(--font-h);font-size:1rem;font-weight:600;margin-bottom:.3rem}
.info-card__line{color:var(--muted);font-size:.875rem;line-height:1.6}
.info-card__line a{color:var(--muted);transition:color var(--t)}
.info-card__line a:hover{color:var(--gold)}

/* Image card */
.img-card{position:relative;border-radius:10px;overflow:hidden}
.img-card img{width:100%;height:400px;object-fit:cover;transition:transform .7s ease}
.img-card:hover img{transform:scale(1.05)}
.img-card__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(28,35,51,.82),transparent 60%)}
.img-card__content{position:absolute;bottom:0;left:0;right:0;padding:2rem}
.img-card__title{font-family:var(--font-h);font-size:1.8rem;font-weight:700;color:#fff;margin-bottom:.5rem}
.img-card__desc{color:rgba(255,255,255,.65);font-size:.9rem;margin-bottom:.9rem}
.img-card__link{display:inline-flex;align-items:center;gap:.4rem;color:var(--gold);font-weight:600;font-size:.9rem;transition:gap var(--t)}
.img-card__link:hover{gap:.8rem}

/* Stat block */
.stat-block{text-align:center;padding:2rem 1rem}
.stat-block__num{font-family:var(--font-h);font-size:3rem;font-weight:700;color:var(--gold);line-height:1}
.stat-block__label{color:rgba(255,255,255,.6);font-size:.9rem;margin-top:.4rem}

/* ══════════════ BRANDS STRIP ══════════════ */
.brands-strip{background:var(--navy);padding:1.3rem 1.5rem;overflow:hidden}
.brands-strip__inner{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem 3rem;max-width:1200px;margin:0 auto}
.brands-strip span{font-family:var(--font-h);font-size:1.2rem;color:rgba(255,255,255,.25);letter-spacing:.1em;transition:color var(--t);cursor:default}
.brands-strip span:hover{color:rgba(255,255,255,.5)}

/* ══════════════ MISSION / CHI SIAMO ══════════════ */
.mission-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;padding:5rem 0}
.mission-img{position:relative;border-radius:12px;overflow:hidden}
.mission-img img{width:100%;height:480px;object-fit:cover}
.mission-img::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(200,146,42,.15),transparent);z-index:1;border-radius:12px}
.mission-badge{position:absolute;bottom:2rem;left:2rem;z-index:2;background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy);padding:1rem 1.5rem;border-radius:var(--r);font-weight:700;font-size:.95rem;line-height:1.3}
.mission-content .eyebrow{font-family:var(--font-b);font-size:.78rem;font-weight:600;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}
.mission-content h2{font-family:var(--font-h);font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:700;line-height:1.2;margin-bottom:1.5rem}
.mission-content p{color:var(--muted);line-height:1.8;margin-bottom:1rem;font-size:.97rem}
.mission-values{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:2rem}
.mission-val{display:flex;align-items:flex-start;gap:.75rem}
.mission-val__icon{flex-shrink:0;width:36px;height:36px;border-radius:6px;background:linear-gradient(135deg,var(--gold),var(--gold-light));display:flex;align-items:center;justify-content:center;margin-top:2px}
.mission-val__icon svg{color:var(--navy)}
.mission-val__title{font-weight:600;font-size:.9rem;margin-bottom:.2rem}
.mission-val__desc{color:var(--muted);font-size:.82rem;line-height:1.5}

/* ══════════════ PROCESS STEPS ══════════════ */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;position:relative}
.steps::before{content:'';position:absolute;top:28px;left:10%;right:10%;height:1px;background:linear-gradient(to right,var(--gold),var(--gold-light),var(--gold));opacity:.4}
.step{text-align:center}
.step__num{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy);font-family:var(--font-h);font-size:1.3rem;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;position:relative;z-index:1}
.step__title{font-family:var(--font-h);font-size:1rem;font-weight:700;margin-bottom:.4rem}
.step__desc{color:var(--muted);font-size:.82rem;line-height:1.6}

/* ══════════════ TESTIMONIAL ══════════════ */
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.testimonial{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:1.8rem;position:relative}
.testimonial__stars{color:var(--gold);font-size:1rem;margin-bottom:.75rem;letter-spacing:2px}
.testimonial__text{color:var(--muted);font-size:.88rem;line-height:1.7;margin-bottom:1.2rem;font-style:italic}
.testimonial__author{font-weight:600;font-size:.875rem}
.testimonial__quote{position:absolute;top:1rem;right:1.2rem;font-family:var(--font-h);font-size:3.5rem;color:var(--gold);opacity:.12;line-height:1}

/* ══════════════ BRAND PAGE ══════════════ */
.brand-hero{background:var(--navy);padding:7rem 1.5rem 3.5rem}
.brand-hero__badge{display:inline-block;background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy);font-size:.75rem;font-weight:700;padding:.3rem .9rem;border-radius:999px;letter-spacing:.08em;margin-bottom:1.2rem}
.brand-hero__name{font-family:var(--font-h);font-size:clamp(3rem,7vw,5rem);font-weight:700;color:#fff;line-height:1;margin-bottom:1rem}
.brand-hero__desc{color:rgba(255,255,255,.6);max-width:540px;line-height:1.8;font-size:1rem}
.brand-hero__meta{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.brand-meta-pill{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:.4rem 1.1rem;font-size:.8rem;color:rgba(255,255,255,.65)}

.model-card{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:1.8rem;transition:border-color var(--t),box-shadow var(--t),transform var(--t)}
.model-card:hover{border-color:rgba(200,146,42,.5);box-shadow:var(--sh);transform:translateY(-2px)}
.model-card__shape{width:100%;height:90px;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;opacity:.7}
.model-card__name{font-family:var(--font-h);font-size:1.15rem;font-weight:700;margin-bottom:.4rem}
.model-card__sub{color:var(--muted);font-size:.82rem;line-height:1.6}

.spec-table{width:100%;border-collapse:collapse;font-size:.9rem}
.spec-table tr{border-bottom:1px solid var(--border)}
.spec-table tr:last-child{border:none}
.spec-table td{padding:.75rem 1rem}
.spec-table td:first-child{font-weight:600;color:var(--text);width:40%}
.spec-table td:last-child{color:var(--muted)}

/* ══════════════ CTA DARK ══════════════ */
.cta-dark{background:var(--navy);padding:4rem 1.5rem;text-align:center}
.cta-dark h3{font-family:var(--font-h);font-size:clamp(1.5rem,3vw,2.2rem);font-weight:700;color:#fff;margin-bottom:.8rem}
.cta-dark p{color:rgba(255,255,255,.5);max-width:480px;margin:0 auto 1.8rem;line-height:1.7}

/* ══════════════ FORM ══════════════ */
.form-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1rem}
.form-group label{font-size:.85rem;color:var(--muted);font-weight:500}
.form-group input,.form-group textarea{padding:.7rem 1rem;border:1.5px solid var(--border);border-radius:var(--r);background:var(--bg);color:var(--text);font-family:var(--font-b);font-size:.9rem;transition:border-color var(--t),box-shadow var(--t);outline:none}
.form-group input:focus,.form-group textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(200,146,42,.12)}
.form-group textarea{resize:none}

/* ══════════════ TRY-ON ══════════════ */
.tryon-section{display:none;background:var(--card);border-bottom:1px solid var(--border);padding:3rem 1.5rem}
.tryon-section.open{display:block}
.tryon-container{max-width:900px;margin:0 auto}
.tryon-title{font-family:var(--font-h);font-size:1.6rem;font-weight:700;text-align:center;margin-bottom:.5rem}
.tryon-sub{text-align:center;color:var(--muted);font-size:.875rem;margin-bottom:1rem}
.tryon-status{display:flex;justify-content:center;gap:.75rem;flex-wrap:wrap;margin-bottom:1.25rem}
.status-badge{font-size:.75rem;padding:.3rem .9rem;border-radius:999px;font-weight:500}
.status-badge.green{background:#dcfce7;color:#166534}
.status-badge.yellow{background:#fef9c3;color:#854d0e}
.status-badge.gray{background:#f3f4f6;color:#374151}
.status-badge.blue{background:#dbeafe;color:#1e40af}
.glasses-selector{display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem;margin-bottom:1.5rem}
.glasses-btn{font-family:var(--font-b);font-size:.82rem;padding:.5rem 1.1rem;border-radius:999px;border:1.5px solid var(--border);background:var(--bg);color:var(--text);cursor:pointer;transition:border-color var(--t),background var(--t),color var(--t)}
.glasses-btn.active{background:var(--gold);border-color:var(--gold);color:var(--navy);font-weight:600}
.camera-wrap{position:relative;max-width:600px;margin:0 auto;background:var(--bg);border-radius:10px;border:1px solid var(--border);overflow:hidden;aspect-ratio:4/3}
.camera-placeholder{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;color:var(--muted)}
.camera-placeholder svg{color:rgba(200,146,42,.35)}
#tryon-canvas{width:100%;height:100%;display:none;object-fit:cover}
#tryon-video{display:none}
.tryon-controls{display:flex;justify-content:center;gap:1rem;margin-top:1rem;flex-wrap:wrap}
.btn-camera{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-b);font-size:.875rem;font-weight:600;padding:.65rem 1.5rem;border-radius:var(--r);border:none;cursor:pointer;transition:opacity var(--t)}
.btn-camera.start{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--navy)}
.btn-camera.stop{background:#ef4444;color:#fff}
.btn-camera.next{background:rgba(28,35,51,.08);color:var(--text)}
.btn-camera:hover{opacity:.85}

/* ══════════════ PDF DOWNLOAD ══════════════ */
.pdf-cta{background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:12px;padding:2.5rem;display:flex;align-items:center;gap:2rem;border:1px solid rgba(255,255,255,.08)}
.pdf-cta__icon{flex-shrink:0;width:72px;height:72px;border-radius:12px;background:linear-gradient(135deg,var(--gold),var(--gold-light));display:flex;align-items:center;justify-content:center}
.pdf-cta__icon svg{color:var(--navy)}
.pdf-cta__title{font-family:var(--font-h);font-size:1.4rem;font-weight:700;color:#fff;margin-bottom:.4rem}
.pdf-cta__desc{color:rgba(255,255,255,.55);font-size:.88rem;line-height:1.6;margin-bottom:1.1rem}

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:1024px){
  .mission-grid{grid-template-columns:1fr;gap:2.5rem}
  .mission-img{order:-1}
  .mission-img img{height:320px}
  .steps{grid-template-columns:repeat(2,1fr)}.steps::before{display:none}
  .brand-hero__name{font-size:3.5rem}
}
@media(max-width:900px){
  .navbar__links{display:none}
  .navbar__burger{display:flex}
  .navbar__inner{padding:0.5rem 1rem;min-height:100px}
  .navbar__logo img{height:38px}
  .footer__inner{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .testimonial-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .navbar__inner{padding:0.4rem 0.8rem;min-height:100px}
  .navbar__logo img{height:32px}
  .footer{width:100%;box-sizing:border-box}
  .footer__inner{grid-template-columns:1fr;width:100%;box-sizing:border-box}
  .footer__bottom{width:100%;box-sizing:border-box}
  .footer__logo{display:none}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .hero__title{font-size:2.2rem}
  .img-card img{height:260px}
  .pdf-cta{flex-direction:column;text-align:center}
  .mission-values{grid-template-columns:1fr}
}