@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --ink:        #1A1815;
  --ink-soft:   #37322B;
  --muted:      #6E6659;
  --faint:      #9A9184;
  --paper:      #F6F3ED;
  --paper-alt:  #EFEAE0;
  --paper-form: #FFFDF9;
  --line:       #DED7C9;
  --line-alt:   #D6CDBC;
  --gold:       #A8763E;
  --gold-light: #D8B87E;
  --dark:       #1A1815;
  --darker:     #12100E;
  --dark-line:  #3A342C;
  --dark-rule:  #262220;
  --dark-text:  #B9B1A4;
  --cream:      #E7E1D6;
  --serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:       'Work Sans', Helvetica, Arial, sans-serif;
}

/* --- base ------------------------------------------------- */

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.myBody {
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; }
img { max-width: 100%; }

a { color: var(--ink); text-decoration: none; transition: color .18s ease; }
a:hover, a:focus { color: var(--gold); text-decoration: none; }


.container, .container-sm, .container-md, .container-lg, .container-xl {
    margin-top: 0;
}

/****************/
/* NO ROUND CORNERS */
/****************/

*::selection {
	color: black;
	background-color: var(--gold);
}

* {
	border-radius: 0 !important;
}

.progress-wrap.active-progress {
    border-radius: 50px !important;
}

.spinner-border {
	border-radius: 50% !important;
}


/* --- contenitori ------------------------------------------ */

.wrap,
.wrap-wide,
.wrap-nav,
.wrap-narrow,
.wrap-form { width: 100%; margin: 0 auto; padding: 0 15px; }
.wrap        { max-width: 1180px; }
.wrap-wide   { max-width: 1320px; }
.wrap-nav    { max-width: 1400px; padding: 0; }
.wrap-narrow { max-width: 980px; }
.wrap-form   { max-width: 900px; }

div.main-wrap {
    max-width: unset;
}

/* --- sezioni ---------------------------------------------- */

.section      { padding: clamp(56px, 8vw, 104px) 0; }
.section-tight{ padding: clamp(48px, 6vw, 80px) 0; }
.section-alt  { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-alt-open { background: var(--paper-alt); border-top: 1px solid var(--line); }
.section-dark { background: var(--dark); color: var(--paper); }
.section-dark h2, .section-dark h3 { color: var(--paper); }
.section-line { border-top: 1px solid var(--line); }

/* --- tipografia ------------------------------------------- */

.eyebrow {
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-mute  { color: var(--faint); }

.eyebrow-rule { display: flex; align-items: center; gap: 14px; }
.eyebrow-rule::before { content: ""; width: 42px; height: 1px; background: var(--gold); flex: none; }

.h-display { font-size: clamp(1.7rem, 2.8vw, 2.4rem); line-height: 1.18; margin: 16px 0 0; }
.h-display-lg { font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1.15; margin: 20px 0 0; }
.h-display-sm { font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.2; margin: 18px 0 0; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.68;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.body-copy { font-size: 1rem; line-height: 1.78; color: var(--muted); text-wrap: pretty; }
.body-copy-ink { color: var(--ink-soft); }
.body-copy-light { color: var(--dark-text); line-height: 1.75; }
.note { font-size: .9rem; color: var(--muted); }

.caption { font-size: 11.5px; letter-spacing: .1em; color: var(--faint); margin-top: 12px; }
.caption-dark { color: var(--muted); }

/* --- pulsanti e link -------------------------------------- */

.btn-amici,
.btn-light,
.btn-ghost {
  display: inline-block;
  padding: 17px 34px;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-amici { background: var(--ink); color: var(--paper); }
.btn-amici:hover, .btn-amici:focus { background: var(--gold); color: #fff; }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover, .btn-light:focus { background: var(--gold); color: #fff; }

.btn-ghost { border: 1px solid rgba(246,243,237,.55); color: var(--paper); background: transparent; }
.btn-ghost:hover, .btn-ghost:focus { border-color: var(--paper); background: rgba(246,243,237,.1); color: var(--paper); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}
.link-arrow i { font-size: 10px; }
.link-arrow-light { color: var(--paper); }
.link-arrow-light:hover, .link-arrow-light:focus { color: var(--gold-light); }
.link-quiet {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
}
.link-underline { border-bottom: 1px solid var(--gold); }

/* --- barra superiore -------------------------------------- */

.fixed-top {
  background: var(--dark) !important;
  color: #C9C1B4;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.fixed-top .fixed-top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 40px;
  padding: 0 15px;
}
.topbar-claim { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fixed-top .ul.menu-srv.mts { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.fixed-top a { color: #C9C1B4; }
.fixed-top a:hover { color: var(--gold-light); }
.fixed-top a.is-active { color: var(--paper); font-weight: 500; }
.topbar-sep { opacity: .4; }


nav.navbar.M1.sticky-top .contact,
nav.navbar.M1.sticky-top li.country a,
nav.navbar.M1.sticky-top .login,
nav.navbar.M1.sticky-top .edit,
nav.navbar.M1.sticky-top .search,
nav.navbar.M1.sticky-top .sideCart,
nav.navbar.M2.sticky-top .contact,
nav.navbar.M2.sticky-top li.country a,
nav.navbar.M2.sticky-top .login,
nav.navbar.M2.sticky-top .edit,
nav.navbar.M2.sticky-top .search,
nav.navbar.M2.sticky-top .sideCart,
nav.navbar.navbar-light.fixed-top .contact,
nav.navbar.navbar-light.fixed-top li.country a,
nav.navbar.navbar-light.fixed-top .login,
nav.navbar.navbar-light.fixed-top .edit,
nav.navbar.navbar-light.fixed-top .search,
nav.navbar.navbar-light.fixed-top .sideCart {
    filter: invert(1);
    color: #404040;
    font-weight: 600;
}

.fixed-top .fixed-top-container, nav.M2.sticky-top div#navbarNav {
    max-width: 1400px;
    margin: 0 auto;
}


/* --- navigazione ------------------------------------------ */

nav.M2.sticky-top {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 10px 15px;
}
nav.M2.sticky-top div#navbarNav { display: flex; align-items: center; width: 100%; }
.navbar-brand { display: flex; align-items: center; gap: 14px; margin-right: auto; padding:0}
.navbar-brand img { height: 52px !important; width: auto; }
.navbar-brand-text {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: .02em;
}
div#navbarNav .navbar-nav { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; align-items:center}
div#navbarNav .nav-link { color: var(--ink); padding: .6rem 0; }
div#navbarNav .nav-link:hover { color: var(--gold); }
div#navbarNav .nav-link.is-active { color: var(--gold); }


ul.navbar-nav.menu-left.mdl li.nav-item a.btn,
ul.navbar-nav.menu-right.mdr li.nav-item a.btn {
	  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  font-size: 11.5px;
  letter-spacing: .18em;
	    margin-left: 1rem;
}

ul.navbar-nav.menu-left.mdl li.nav-item a.btn:hover,
ul.navbar-nav.menu-right.mdr li.nav-item a.btn:hover,
ul.navbar-nav.menu-left.mdl li.nav-item a.btn:focus,
ul.navbar-nav.menu-right.mdr li.nav-item a.btn:focus { background: var(--gold); color: #fff; }
.nav-cta-gold { background: var(--gold); color: #fff; }
.nav-cta-gold:hover, .nav-cta-gold:focus { background: var(--ink); color: var(--paper); }

.burger { border: 1px solid var(--line); background: transparent; padding: 10px 12px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); }
.burger span + span { margin-top: 5px; }

@media (min-width: 992px) {
  div#navbarNav .nav-link { padding: .5rem .5rem; }
  div#navbarNav .navbar-nav > li + li { margin-left: 4px; }
}
@media (max-width: 991.98px) {
  div#navbarNav .navbar-collapse { padding: 12px 0 6px; }
  div#navbarNav .nav-link { padding: .55rem 0; }
  .nav-cta { margin-top: 10px; }
}



/* --- hero ------------------------------------------------- */

.hero { position: relative; background: var(--dark); }
.hero-img {
  display: block;
  width: 100%;
  height: clamp(460px, 78vh, 760px);
  object-fit: cover;
  opacity: .62;
}
.hero-img-page { height: clamp(300px, 52vh, 520px); }
.hero-img-short { height: clamp(280px, 46vh, 460px); opacity: .55; }
.hero-veil {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(16,14,12,.84) 0%, rgba(16,14,12,.5) 55%, rgba(16,14,12,.25) 100%);*/
}
.hero-veil-page { background: linear-gradient(90deg, rgba(16,14,12,.50) 0%, rgba(16,14,12,.20) 100%);}
.hero-veil-bottom { background: linear-gradient(180deg, rgba(16,14,12,.55) 0%, rgba(16,14,12,.15) 45%, rgba(16,14,12,.88) 100%); }
.hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: var(--paper);
}
.hero-body-bottom { align-items: flex-end; }
.hero-body-bottom .wrap { padding-bottom: clamp(34px, 5vw, 62px); }
.hero-text { max-width: 720px; }
.hero-title {
  margin: 22px 0 0;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.015em;
}
.hero-title-page {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.06;
}
.hero-lead {
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
  color: var(--cream);
  max-width: 580px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }


/* --- hero carosello (#pnl_slide) -------------------------- */

#pnl_slide { position: relative; background: var(--dark); overflow: hidden; }
#pnl_slide .carousel,
#pnl_slide .carousel-inner { position: relative; width: 100%; }

/* compatibilita markup Bootstrap 3 (.item) e Bootstrap 4 (.carousel-item) */
#pnl_slide .carousel-inner > .item { display: none; position: relative; }
#pnl_slide .carousel-inner > .item.active { display: block; }
#pnl_slide .carousel-inner > .carousel-item { position: relative; }

#pnl_slide .carousel-inner img {
  display: block;
  width: 100%;
  height: clamp(460px, 78vh, 760px);
  object-fit: cover;
  opacity: .55;
}

/* didascalia = velo scuro + contenitore del testo */
#pnl_slide .carousel-caption {
  position: absolute;
  z-index: 2;
  top: 0; right: 0; bottom: 0; left: 0;
  width: auto;
  padding: 0 max(20px, calc((100% - 1180px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: var(--paper);
  text-shadow: none;
      background: linear-gradient(90deg, rgba(16, 14, 12, .84) 0%, rgba(16, 14, 12, .5) 55%, rgba(16, 14, 12, .25) 100%);
}

#pnl_slide .carousel-caption > * { max-width: 660px; width: 100%; }
#pnl_slide .carousel-caption > *:first-child { margin-top: 0; }

#pnl_slide .carousel-caption h1,
#pnl_slide .carousel-caption h2,
#pnl_slide .carousel-caption h3 {
  font-family: var(--serif);
  color: #FFFDF8;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 18px 0 0;
  text-wrap: balance;
}
#pnl_slide .carousel-caption h1 { font-size: clamp(2.2rem, 4.6vw, 3.9rem); }
#pnl_slide .carousel-caption h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
#pnl_slide .carousel-caption h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.15; }

/* h4 / h5 / h6 = occhiello sopra il titolo */
#pnl_slide .carousel-caption h4,
#pnl_slide .carousel-caption h5,
#pnl_slide .carousel-caption h6 {
  font-family: var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 14px 0 0;
}
#pnl_slide .carousel-caption h4 { font-size: 14px; }
#pnl_slide .carousel-caption h5 { font-size: 12.5px; }
#pnl_slide .carousel-caption h6 { font-size: 11.5px; }

#pnl_slide .carousel-caption p {
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.62;
  color: #EDE7DB;
  max-width: 560px;
  text-wrap: pretty;
}

/* i link diventano bottoni */
#pnl_slide .carousel-caption a {
  display: inline-block;
  margin: 26px 12px 0 0;
      padding: 17px 34px;
  font-family: var(--sans);
  font-size: 11.5px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: #F6F3ED;
  color: var(--ink);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
#pnl_slide .carousel-caption a:hover,
#pnl_slide .carousel-caption a:focus { background: var(--gold); color: #fff; }

/* dal secondo link in poi: stile contorno */
#pnl_slide .carousel-caption a ~ a {
  background: transparent;
  border-color: rgba(246,243,237,.6);
  color: #F6F3ED;
}
#pnl_slide .carousel-caption a ~ a:hover,
#pnl_slide .carousel-caption a ~ a:focus {
  background: rgba(246,243,237,.12);
  border-color: #F6F3ED;
  color: #fff;
}

/* se i link stanno dentro un <p>, il paragrafo fa da riga bottoni */
#pnl_slide .carousel-caption p > a { margin-top: 6px; margin-bottom: 6px; }

/* indicatori */
#pnl_slide .carousel-indicators {
  z-index: 3;
  bottom: 26px;
  margin: 0;
  padding: 0;
  left: 0; right: 0;
}
#pnl_slide .carousel-indicators li {
  width: 34px;
  height: 6px;
  border: none;
  border-radius: 0;
  margin: 0 5px;
  background: rgba(246,243,237,.38);
  text-indent: -999px;
  cursor: pointer;
}
#pnl_slide .carousel-indicators li.active { background: var(--gold-light); }

/* frecce */
#pnl_slide .carousel-control-prev,
#pnl_slide .carousel-control-next,
#pnl_slide .carousel-control { z-index: 3; width: 8%; opacity: .5; }
#pnl_slide .carousel-control-prev:hover,
#pnl_slide .carousel-control-next:hover,
#pnl_slide .carousel-control:hover { opacity: 1; }

@media (max-width: 767.98px) {
  #pnl_slide .carousel-inner img { height: clamp(420px, 68vh, 560px); opacity: .5; }
  #pnl_slide .carousel-caption {
    padding: 0 22px;
    background: linear-gradient(180deg, rgba(16,14,12,.55) 0%, rgba(16,14,12,.82) 100%);
  }
  #pnl_slide .carousel-caption a {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-right: 0;
    margin-top: 12px;
    text-align: center;
  }
}


#pnl_slide h5 {
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-mute  { color: var(--faint); }

#pnl_slide h5 { display: flex; align-items: center; gap: 14px; }
#pnl_slide h5::before { content: ""; width: 42px; height: 1px; background: var(--gold); flex: none; }


/* --- pilastri numerati ------------------------------------ */

.pillar-num { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: .1em; }
.pillar-rule { height: 1px; background: var(--line-alt); margin: 14px 0 20px; }
.pillar h3 { font-size: 1.45rem; margin: 0; }
.pillar p { font-size: .95rem; line-height: 1.7; color: var(--muted); margin-top: 12px; text-wrap: pretty; }

/* --- dati / cifre ----------------------------------------- */

.stat { border-left: 1px solid var(--dark-line); padding-left: 22px; }
.stat-num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--paper); }
.stat-label {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 12px;
}

/* --- immagini --------------------------------------------- */

.img-cover { display: block; width: 100%; object-fit: cover; }
.img-feature { height: clamp(320px, 46vw, 620px); }
.img-portrait { height: clamp(280px, 34vw, 460px); }
.img-tall  { height: clamp(260px, 28vw, 420px); }
.img-panel { height: clamp(240px, 32vw, 420px); }
.img-card  { height: clamp(240px, 26vw, 360px); }
.img-thumb { height: clamp(220px, 22vw, 300px); }
.img-strip { height: 130px; }
.img-split { height: 100%; min-height: clamp(280px, 40vw, 560px); }

.video-link { display: block; position: relative; }
.video-link img { opacity: .78; }
.video-link .video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 42px;
}

/* --- agenda eventi --------------------------------------- */

.agenda-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}
.event-row { display: block; border-bottom: 1px solid var(--line); padding: 34px 0; }
.event-row:hover { background: var(--paper-alt); }
.event-meta { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.event-kind { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }
.event-row h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 0; line-height: 1.3; }
.event-row p { font-size: .95rem; line-height: 1.7; color: var(--muted); margin: 10px 0 0; text-wrap: pretty; }

/* --- formule di adesione ---------------------------------- */

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tier-num { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: .1em; }
.tier h3 { font-size: 1.6rem; margin: 18px 0 0; }
.tier p { font-size: .95rem; line-height: 1.7; color: var(--muted); margin-top: 16px; text-wrap: pretty; }
.tier .link-arrow { margin-top: 30px; align-self: flex-start; }
.tier-rule { height: 1px; background: var(--line); margin: 26px 0 20px; }

.tier-dark { background: var(--dark); color: var(--paper); border: none; position: relative; }
.tier-dark::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.tier-dark h3 { color: var(--paper); }
.tier-dark p { color: var(--dark-text); }
.tier-dark .tier-num { color: var(--gold-light); }
.tier-dark .tier-rule { background: var(--dark-line); }

.tier-list { display: flex; flex-direction: column; gap: 12px; font-size: .93rem; color: var(--ink-soft); flex: 1; }
.tier-list div { display: flex; gap: 12px; }
.tier-list i { color: var(--gold); font-size: 11px; margin-top: 5px; flex: none; }
.tier-dark .tier-list { color: var(--cream); }
.tier-dark .tier-list i { color: var(--gold-light); }

/* --- elenchi partner e soci ------------------------------- */

.list-links { display: flex; flex-direction: column; margin-top: 24px; }
.list-links a {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.list-links i { font-size: 10px; color: var(--gold); align-self: center; }

.board-row {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.board-name { font-family: var(--serif); font-size: 1.3rem; }
.board-role { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); align-self: center; }

/* --- cronologia ------------------------------------------- */

.timeline-item { border-top: 1px solid var(--line); padding: 26px 0; }
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-year { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.timeline-item p { font-size: 1rem; line-height: 1.78; color: var(--ink-soft); margin: 12px 0 0; text-wrap: pretty; }

/* --- partner in homepage ---------------------------------- */

.partner-cell { text-align: center; }
.partner-cell img { height: 74px; width: auto; opacity: .8; }
.partner-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink-soft); }
.partner-role {
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* --- newsletter ------------------------------------------- */

.newsletter-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.newsletter-input {
  flex: 1 1 280px;
  max-width: 380px;
  background: transparent;
  border: 1px solid #4A4238;
  color: var(--paper);
  padding: 15px 18px;
  font-size: 14px;
}
.newsletter-input::placeholder { color: var(--faint); }
.newsletter-form .btn-light { padding: 15px 32px; }

/* --- modulo di adesione ----------------------------------- */

.form-amici {
  background: var(--paper-form);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
}
.field-label {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--sans);
}
.field-input:focus { outline: none; border-bottom-color: var(--gold); }
textarea.field-input { resize: vertical; }
.field-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--muted);
}
.field-consent input { margin-top: 4px; }
.field-consent label { margin: 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 8px; }
.form-actions .btn-amici { padding: 16px 34px; }
.contact-block {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 24px;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.contact-label {
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}

/* --- piè di pagina ---------------------------------------- */

.footer-amici {
  background: var(--darker);
  color: var(--faint);
  padding: clamp(52px, 6vw, 78px) 0 30px;
}
.footer-amici img { height: 64px; width: auto; filter: invert(1); opacity: .85; }
.footer-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-top: 20px;
  line-height: 1.4;
}
.foot-label { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.footer-amici p { font-size: .95rem; line-height: 1.8; margin-top: 16px; }
.footer-amici a { color: var(--faint); }
.footer-amici a:hover { color: var(--gold-light); }
.foot-mail { color: var(--cream); border-bottom: 1px solid var(--dark-line); }
.foot-nav { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; font-size: .95rem; }
.foot-social { display: flex; gap: 18px; margin-top: 16px; font-size: 16px; }
.foot-bottom {
  border-top: 1px solid var(--dark-rule);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.foot-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-legal a { color: var(--muted); }

div#pnl_reviews div#google-reviews {
    display: none;
}

footer {
    margin-bottom: 0 !important;
}