
/* =========================
   AUTO SLIDER (marquee loop) - BIG SIZE + NO WHITE SPACE
   ========================= */
   
/* HERO titles: Cinzel, no letter spacing, line-height 1.4 */
.hero__title,
.hero__subtitle{
  font-family: "Cinzel", serif;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none; /* se li vuoi come testo normale */
}

/* =====================================================
   HERO – REPLICA SITO (NO MENU)
   ===================================================== */

.hero--website{
  padding: 48px 0 42px;
}

.hero__layout{
  display: grid;
  grid-template-columns: 120px 1fr;
  
  column-gap: 40px;
}

/* Logo */
.hero__logo img{
  height: 130px;
  width: auto;
  margin-top: 0;
  align-self: flex-start;
}

/* Centro */
.hero__center{
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__kicker,
.hero__note{
  font-family: "Brandon Grotesque", system-ui, sans-serif !important;
  font-size: 12px !important;      /* stesso corpo per entrambi */
  line-height: 1.4 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}

/* se vuoi il "WE WORK..." leggermente più chiaro come nel sito */
.hero__note{
  opacity: .6;
  margin-top: 14px;
}


/* WEDDINGS INSPIRATION */
.hero__brand{
  font-family: "Cinzel", serif;
  font-size: 26px;
  font-weight: 400 !important;
  -webkit-text-stroke: 0;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 6px;
}

/* DESTINATION WEDDING PLANNING IN ITALY */
.hero__headline{
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 14px;
}

/* AN EXPERIENCE TO FEEL... */
.hero__tagline{
  font-family: "Brandon Grotesque", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* testo corsivo centrale */
.hero__intro{
  font-family: "Didot", serif;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* WE WORK WITH A LIMITED NUMBER... */
.hero__note{
  font-family: "Brandon Grotesque", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

/* MOBILE */
@media (max-width: 768px){
  .hero__layout{
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .hero__logo{
    text-align: center;
  }

  .hero__logo img{
    height: 90px;
  }

  .hero__brand{
    font-size: 20px;
  }

  .hero__headline{
    font-size: 15px;
  }
}


/* CTA main button: Cinzel + underline, like website */
.btn--primary{
  background: #111;
  color: #fff;
  border: 0;
  font-family: "Cinzel", serif;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* optional: hover più elegante */
.btn--primary:hover{
  opacity: .92;
}


/* Se vuoi mantenerli uppercase come ora, lascia uppercase */
.hero__title,
.hero__subtitle{
  text-transform: uppercase;
}

.hero__kicker,
.hero__note{
  font-family: "Brandon Grotesque", system-ui, sans-serif;
  letter-spacing: 0;      /* consigliato per Brandon */
  line-height: 1.4;
  text-transform: uppercase; /* se vuoi mantenerlo come ora */
}


.slider{
  margin-top: 22px;

  /* ✅ elimina spazio bianco “sotto” dovuto a padding/margini esterni */
  margin-bottom: 0;
  padding-bottom: 0;

  position: relative;
  overflow: hidden;

  /* mascherina morbida ai lati */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.slider__track{
  display: flex;
  gap: 18px;                 /* un po' più respiro */
  width: max-content;

  /* un pelo più lento perché le card sono più grandi */
  animation: slider-move 34s linear infinite;

  /* ✅ evita “baseline gap” e micro-spazi strani */
  align-items: center;
}

.slider__item{
  flex: 0 0 auto;

  /* ✅ LARGHEZZA FISSA = niente “andamento” */
  width: 340px;
  height: 240px;

  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  background: #eee;
}


.slider__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;            /* ✅ elimina lo “spazio bianco” sotto l'immagine */
}

/* ✅ Se vuoi che lo slider “tocchi” la sezione sotto senza aria */
.section #intro .slider,
#intro .slider{
  margin-bottom: -6px;       /* micro-trucco per chiudere l’ultimo gap */
}

/* Pausa su hover (desktop) */
@media (hover:hover){
  .slider:hover .slider__track{
    animation-play-state: paused;
  }
}

/* Animazione: scorre di “mezza track” (perché abbiamo duplicato) */
@keyframes slider-move{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 980px){
  .slider__item{
    width: min(320px, 86px);
    height: 220px;
  }
}

@media (max-width: 600px){
  .slider__item{
    width: min(280px, 88px);
    height: 200px;
  }
}

/* Se l'utente preferisce meno movimento */
@media (prefers-reduced-motion: reduce){
  .slider__track{ animation: none; }
}




/* =========================
   SELF-HOSTED FONTS
   Folder structure:
   /assets/fonts/brandon/
   /assets/fonts/cinzel/
   /assets/fonts/didot/
   ========================= */

/* ---------- DIDOT (TTF) ---------- */
@font-face{
  font-family: "Didot";
  src: url("./assets/fonts/didot/DidotLTPro-Roman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Didot";
  src: url("./assets/fonts/didot/DidotLTPro-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face{
  font-family: "Didot";
  src: url("./assets/fonts/didot/DidotLTPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* (Opzionale) Didot Bold Italic */
@font-face{
  font-family: "Didot";
  src: url("./assets/fonts/didot/DidotLTPro-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- CINZEL (OTF) ---------- */
@font-face{
  font-family: "Cinzel";
  src: url("./assets/fonts/cinzel/Cinzel-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Cinzel";
  src: url("./assets/fonts/cinzel/Cinzel-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Cinzel";
  src: url("./assets/fonts/cinzel/Cinzel-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- BRANDON GROTESQUE (OTF) ---------- */
@font-face{
  font-family: "Brandon Grotesque";
  src: url("./assets/fonts/brandon/Brandon-Grotesque-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Brandon Grotesque";
  src: url("./assets/fonts/brandon/Brandon-Grotesque-Regular-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face{
  font-family: "Brandon Grotesque";
  src: url("./assets/fonts/brandon/Brandon-Grotesque-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Brandon Grotesque";
  src: url("./assets/fonts/brandon/Brandon-Grotesque-Medium-italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face{
  font-family: "Brandon Grotesque";
  src: url("./assets/fonts/brandon/Brandon-Grotesque-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Brandon Grotesque";
  src: url("./assets/fonts/brandon/Brandon-Grotesque-Bold-Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


/* =========================
   BASE
   ========================= */

:root{
  --bg: #ffffff;
  --text: #2b2b2b;
  --muted: rgba(43,43,43,.72);
  --muted2: rgba(43,43,43,.58);
  --line: rgba(43,43,43,.16);
  --card: #fbfaf9;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --accent: #f0b38c; /* tono pesca */
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: "Brandon Grotesque", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{  display:block; }
a{ color: inherit; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================
   HERO / HEADER
   ========================= */

.hero{
  position: relative;
  padding: 22px 0 28px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.98) 55%, rgba(255,255,255,1) 100%),
    radial-gradient(1200px 260px at 50% 0%, rgba(0,0,0,.05) 0%, rgba(0,0,0,0) 65%);
  pointer-events:none;
}

.hero__inner{ position: relative; }

.hero__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 18px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand img{
  height: 68px;
  width:auto;
}

.hero__copy{
  text-align:center;
  padding: 10px 0 0;
}

.hero__title{
  margin: 0 0 10px;
  font-family: "Didot", Georgia, serif;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 24px;
}

.hero__subtitle{
  margin: 0 0 18px;
  font-family: "Didot", Georgia, serif;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 16px;
  color: rgba(43,43,43,.88);
}

.hero__kicker{
  margin: 0 0 14px;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted2);
}

.hero__intro{
  margin: 0 auto 12px;
  max-width: 860px;
  font-family: "Didot", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(43,43,43,.82);
  line-height: 1.75;
}

.hero__note{
  margin: 10px auto 0;
  max-width: 980px;
  font-family: "Cinzel", "Brandon Grotesque", serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgb(43 43 43 / 82%);
}

.hero__ctaRow{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary{
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn--dark{
  background: #111;
  color: #fff;
  border: 0;
}

.btn--ghost{
  background: transparent;
  border-color: rgba(17,17,17,.2);
  color: rgba(43,43,43,.85);
}

.btn--ghost:hover{
  border-color: rgba(17,17,17,.35);
}

/* =========================
   SECTIONS
   ========================= */

.section{
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.section:first-of-type{
  border-top: 0;
}

.grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.grid--intro{
  grid-template-columns: 1.05fr .95fr;
}

h2{
  margin: 0 0 14px;
  font-family: "Didot", Georgia, serif;
  font-weight: 400;
  letter-spacing: .04em;
  font-size: 30px;
  line-height: 1.2;
  font-family: "Cinzel", serif;
}

p{
  margin: 0 0 14px;
  color: rgb(43 43 43 / 63%);
  font-size: 16px;
}

.lead{
  font-size: 18px;
  color: rgba(43,43,43,.84);
  max-width: 78ch;
}

.eyebrow{
  margin: 0 0 8px;
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--muted2);
}

.subeyebrow{
  margin: 0 0 18px;
  font-family: "Didot", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(43,43,43,.82);
}

.bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(43,43,43,.86);
}
.bullets li{
  margin: 6px 0;
}

/* Image cards */
.imageCard{
  border-radius: var(--radius);
  overflow:hidden;
  background:#e9e9e9;
  box-shadow: var(--shadow);
}
.imageCard img{
  width:100%;
  height: 480px;
  object-fit: cover;
}
.imageCard--tall img{
  height: 520px;
}

/* Photo strip (scroll) */
.photoStrip{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  overflow:auto;
  padding: 8px 2px;
  scroll-snap-type: x mandatory;
}
.photoStrip__item{
  flex: 0 0 auto;
  width: min(240px, 70px);
  height: 160px;
  border-radius: 16px;
  overflow:hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  background:#eee;
}
.photoStrip__item img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* =========================
   FORM
   ========================= */

.formHeader{
  margin-bottom: 18px;
}

.formCard{
  background: var(--card);
  border: 1px solid rgba(43,43,43,.16);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.formCard__intro{
  margin-bottom: 14px;
}
.formCard__title{
  margin: 0 0 6px;
  font-family: "Didot", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(43,43,43,.86);
}
.formCard__subtitle{
  margin: 0;
  color: rgba(43,43,43,.68);
  font-size: 14px;
}

label{
  display:block;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(43,43,43,.78);
}

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(43,43,43,.18);
  background:#fff;
  color: var(--text);
  font-size: 15px;
  outline: none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(43,43,43,.42);
  box-shadow: 0 0 0 4px rgba(43,43,43,.08);
}

textarea{
  min-height: 120px;
  resize: vertical;
}

.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.formGrid .full{
  grid-column: 1 / -1;
}

.formActions{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.microcopy{
  margin: 0;
  font-size: 13px;
  color: rgba(43,43,43,.62);
}

.confirmation{
  display:none;
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(43,43,43,.18);
  color: rgba(43,43,43,.86);
}

/* =========================
   FOOTER
   ========================= */

.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__brand img{
  height: 34px;
  width:auto;
  opacity: .92;
}

.footer__link{
  text-decoration:none;
  color: rgba(43,43,43,.7);
  font-size: 14px;
}

.footer__link:hover{
  color: rgba(43,43,43,.9);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px){
  .hero__top{
    flex-direction: column;
    align-items: center;
  }
  .grid, .grid--intro{
    grid-template-columns: 1fr;
  }
  .imageCard img{
    height: 340px;
  }
  .imageCard--tall img{
    height: 420px;
  }
}

@media (max-width: 720px){
  .formGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .slider__item{
    width: 300px;
    height: 210px;
  }
}

@media (max-width: 600px){
  .slider__item{
    width: 260px;
    height: 190px;
  }
}

.slider{
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}

/* =====================================================
   SWIPER (Weddings Inspiration)
   ===================================================== */

.wiSwiper{
  margin-top: 22px;
  width: 100%;
  overflow: hidden;
}

.wiSwiper .swiper-slide{
  border-radius: 18px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.wiSwiper img{
  width: 100%;
  height: 240px;      /* desktop */
  object-fit: cover;
  display: block;
}

/* frecce eleganti */
.wiSwiper .swiper-button-prev,
.wiSwiper .swiper-button-next{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.wiSwiper .swiper-button-prev::after,
.wiSwiper .swiper-button-next::after{
  font-size: 14px;
  color: rgba(0,0,0,.75);
}

/* dots */
.wiSwiper .swiper-pagination-bullet{
  opacity: .35;
}
.wiSwiper .swiper-pagination-bullet-active{
  opacity: .9;
}

/* mobile */
@media (max-width: 768px){
  .wiSwiper img{
    height: 200px;
  }

  /* su mobile frecce più discrete */
  .wiSwiper .swiper-button-prev,
  .wiSwiper .swiper-button-next{
    width: 36px;
    height: 36px;
  }
}

/* =====================================================
   SWIPER (nuovo slider)
   ===================================================== */

.wiSwiper{
  margin-top: 22px;
  width: 100%;
  overflow: hidden;
}

.wiSwiper .swiper-slide{
  border-radius: 18px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.wiSwiper img{
  width: 100%;
  height: 240px;      /* desktop */
  object-fit: cover;
  display: block;
}

/* frecce eleganti */
.wiSwiper .swiper-button-prev,
.wiSwiper .swiper-button-next{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.wiSwiper .swiper-button-prev::after,
.wiSwiper .swiper-button-next::after{
  font-size: 14px;
  color: rgba(0,0,0,.75);
}

/* dots */
.wiSwiper .swiper-pagination-bullet{
  opacity: .35;
}
.wiSwiper .swiper-pagination-bullet-active{
  opacity: .9;
}

/* mobile */
@media (max-width: 768px){
  .wiSwiper img{
    height: 200px;
  }
  .wiSwiper .swiper-button-prev,
  .wiSwiper .swiper-button-next{
    width: 36px;
    height: 36px;
  }
}

.wiSwiper img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #eee; /* fallback mentre carica */
}

/* =====================================================
   FULL WIDTH IFRAME SLIDER
   ===================================================== */

.iframe-slider--full{
  margin-top: 28px;
  width: 100%;
}

.iframe-slider--full iframe{
  width: 100%;
  height: 600px;      /* desktop */
  border: none;
  display: block;
}

/* mobile */
@media (max-width: 768px){
  .iframe-slider--full iframe{
    height: 200px;
  }
}


/* =====================================================
   HERO: FONT IDENTICI + LOGO PIÙ GRANDE
   ===================================================== */

/* Titoli principali: CINZEL (letter spacing 0, line-height 1.4) */
.hero__brand,
.hero__headline{
  font-family: "Cinzel", serif !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

/* AN EXPERIENCE + WE WORK: BRANDON GROTESQUE */
.hero__kicker,
.hero__note{
  font-family: "Brandon Grotesque", system-ui, sans-serif !important;
  letter-spacing: .12em; /* se sul sito è più “aperto”, altrimenti metti 0 */
  line-height: 1.4 !important;
  text-transform: uppercase;
}

/* Riga in corsivo: DIDOT */
.hero__intro{
  font-family: "Didot", Georgia, serif !important;
  font-style: italic;
}

/* Logo più grande (desktop) */
.hero__logo img{
  height: 125px;        /* ✅ aumenta qui */
  width: auto;
  display: block;
}



/* Mobile: logo più grande ma controllato */
@media (max-width: 768px){
  .hero__logo img{
    height: 115px;
    margin: 0 auto;
  }
}

/* =====================================================
   SEZIONI 2-COLONNE: centra verticalmente i testi
   (testo a sinistra, foto a destra)
   ===================================================== */

/* la tua .grid è usata in queste sezioni */
.section .grid{
  align-items: center;   /* ✅ centra verticalmente */
}

/* migliora spaziatura: evita “testo troppo attaccato sopra” */
.section .grid > div:first-child{
  padding-right: 10px;
}

/* se hai titoli molto grandi, riduce il margine top implicito */
.section .grid h2{
  margin-top: 0;
}

/* =====================================================
   Sezioni con foto a destra: testo centrato rispetto alla foto
   ===================================================== */

.grid--centerText{
  align-items: stretch; /* importante: le colonne devono avere stessa altezza */
}

.grid--centerText .text-col{
  display: flex;
  flex-direction: column;
  justify-content: center; /* ✅ centra verticalmente rispetto alla colonna immagine */
}

/* opzionale: rende l'immagine più "stabile" e quindi il centraggio più coerente */
.grid--centerText .imageCard img{
  height: 520px;        /* come le altre imageCard desktop, cambia se serve */
  object-fit: cover;
}

/* mobile: torna normale */
@media (max-width: 900px){
  .grid--centerText .text-col{
    display: block;
  }

  .grid--centerText .imageCard img{
    height: 450px;
  }
}

/* CTA hero come sito: testo Cinzel, sottolineato, NO bottone */
.hero__ctaLink{
  display: inline-block;
  margin-top: 18px;
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #111111bf;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.hero__ctaLink:hover{
  opacity: .85;
}

/* =====================================================
   FORM CTA – come link (Cinzel, sottolineato, no bottone)
   ===================================================== */

.btn--link{
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  font-family: "Cinzel", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: uppercase;

  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;

  cursor: pointer;
}

/* hover elegante */
.btn--link:hover{
  opacity: .85;
}

/* rimuove eventuali focus ring brutti */
.btn--link:focus{
  outline: none;
}






