/* ============================================================
   GIUSSANI GUITARS — Custom Theme
   Colori esatti da giussani-guitars.com (Elementor CSS vars)
   Font: Existence-Light.ttf (originale) + Roboto Slab + Roboto Flex
   ============================================================ */

/* Attributo hidden — garantisce display:none anche quando CSS imposta display esplicito */
[hidden] { display: none !important; }

/* === FONT FACE (originale) === */
@font-face {
  font-family: 'existence';
  src: url('/fonts/Existence-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* === VARIABILI ESATTE DAL SITO ORIGINALE === */
:root {
  /* Colori esatti da --e-global-color-* del sito */
  --c-dark:        #161616;
  --c-medium:      #54595F;
  --c-text:        #7A7A7A;
  --c-accent:      #0E0E0E;
  --c-white:       #FDFDFD;
  --c-off-white:   #FBFBFB;
  --c-gray-light:  #F0F0F0;
  --c-charcoal:    #2A2A2A;
  --c-form-bg:     #E2E2E2;
  --c-orange:      #FFBC7D;
  --c-error:       #C0392B;

  /* Font families esatte */
  --font-display:  'existence', Georgia, 'Times New Roman', serif;
  --font-slab:     'Roboto Slab', Georgia, serif;
  --font-body:     'Roboto Flex', 'Roboto', system-ui, sans-serif;
  --font-accent:   'Trebuchet MS', system-ui, sans-serif;

  /* Layout */
  --nav-height:    120px;
  --container:     1140px;
  --section-pad:   64px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-dark);
  background: var(--c-white);
  overflow-x: hidden;
}
img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   HEADER / NAV
   Esatto: bg #FDFDFD, border-radius 0 0 100px 100px,
           box-shadow 0 0 10px rgba(0,0,0,0.17),
           link color #7A7A7A → hover #0E0E0E
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--c-white);
  border-radius: 0 0 100px 100px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.17);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

/* Header rimpicciolito dopo scroll */
.site-header.is-scrolled {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled .nav-inner {
  height: calc(var(--nav-height) - 16px);
  transition: height 0.3s ease;
}
.site-header.is-scrolled .logo-img {
  height: 62px;
  transition: height 0.3s ease;
}
.site-header.is-scrolled .logo-scritta {
  height: 10px;
  transition: height 0.3s ease;
}
.nav-inner    { transition: height 0.3s ease; }
.logo-img     { transition: height 0.3s ease; }
.logo-scritta { transition: height 0.3s ease; }

/* Nav a 3 colonne: MENU-SX | LOGO centrato | MENU-DX */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-height);
  padding: 0 48px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
}

.logo-img {
  height: clamp(64px, 7.5vw, 92px);
  width: auto;
}

.logo-scritta {
  height: clamp(10px, 1vw, 13px);
  width: auto;
  margin-top: -5px;
}

/* Menu sinistro (flush right verso il logo) */
.nav-menu--left {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

/* Menu destro (flush left verso il logo) */
.nav-menu--right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

/* Compatibilità vecchio .nav-menu (non usato ma per sicurezza) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Overlay mobile — nascosto di default */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  z-index: 999;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-mobile__link {
  font-family: var(--font-body);
  font-size: 22px;
  color: rgba(253,253,253,0.85);
  letter-spacing: 1px;
  transition: color 0.25s var(--ease);
}
.nav-mobile__link:hover { color: var(--c-white); }
.nav-mobile__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(253,253,253,0.6);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s;
}
.nav-mobile__close:hover { color: var(--c-white); }

/* Toggle lingua IT / EN */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav-lang__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border: 1px solid var(--c-text);
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-lang__link:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.nav-lang__active {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-dark);
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border: 1px solid var(--c-dark);
  border-radius: 3px;
  cursor: default;
}

/* Toggle lingua nel menu mobile */
.nav-mobile__lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(253,253,253,0.15);
  margin-top: 16px;
}
.nav-mobile__lang a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: rgba(253,253,253,0.6);
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid rgba(253,253,253,0.4);
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-mobile__lang a:hover {
  color: var(--c-white);
  border-color: var(--c-white);
}
.nav-mobile__lang-active {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid var(--c-white);
  border-radius: 3px;
}

/* Link esatti: #7A7A7A → hover #0E0E0E */
.nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-text);
  position: relative;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.nav-link::before,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  height: 1px;
  background: var(--c-accent);
  width: 0;
  transition: width 0.3s var(--ease);
}
.nav-link::before { left: 50%; }
.nav-link::after  { right: 50%; }
.nav-link:hover   { color: var(--c-accent); }
.nav-link:hover::before,
.nav-link:hover::after { width: 50%; }

.nav-link--active { color: var(--c-accent); }
.nav-link--active::before,
.nav-link--active::after { width: 50%; }

/* Hamburger mobile */
.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   bg: immagine fullscreen + overlay rgba(22,22,22,0.5)
   testo: font 'existence', 45px, italic, #FDFDFD, text-shadow
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero--home     { /* background-image via inline style from og_image frontmatter */ }
.hero--chisiamo { background-position: center 25%; }
.hero--chitarre { background-position: center top; }
.hero--lab      { }
.hero--contatti { }

/* Hero su pagine interne: parte sotto la nav fissa */
.hero--inner {
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.50);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  animation: fadeUp 1s var(--ease) both;
}

.hero__eyebrow-top {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(253,253,253,0.65);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(253,253,253,0.80);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,253,253,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.hero__scroll:hover { color: rgba(253,253,253,0.9); }
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
@keyframes scrollLine {
  0%   { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(0.3); transform-origin: top; }
  51%  { transform: scaleY(0.3); transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; }
}

/* font 'existence' esatto come originale: italic, 45px */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 45px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--c-white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero__btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-white);
  border: 2px solid rgba(253,253,253,0.7);
  border-radius: 10px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), border-radius 0.4s var(--ease);
}
.hero__btn:hover {
  background: rgba(253,253,253,0.15);
  border-color: var(--c-white);
  border-radius: 60px 10px 10px 0;
}

/* ============================================================
   SECTIONS BASE
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section--white   { background: var(--c-white); position: relative; z-index: 1; }
.section--offwhite { background: var(--c-off-white); position: relative; z-index: 1; }
.section--gray    { background: var(--c-gray-light); position: relative; z-index: 1; }
.section--dark    { background: var(--c-charcoal); color: var(--c-white); position: relative; z-index: 1; }
.section--black   { background: var(--c-dark); color: var(--c-white); position: relative; z-index: 1; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 12px; }

.section-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--c-orange);
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}
.section-label--light { color: rgba(253,253,253,0.5); }
.section-label--light::before { background: rgba(255,188,125,0.6); }
.section-label--title { font-size: 22px; letter-spacing: 4px; margin-bottom: 12px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--c-dark);
  margin-bottom: 16px;
}
.section-title--light { color: var(--c-white); }

.section-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--c-medium);
  line-height: 1.75;
}
.section-intro--light { color: rgba(253,253,253,0.8); }

/* ============================================================
   BUTTONS — hover: border-radius 60px 10px 10px 0px (originale)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-radius 0.4s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.btn:hover { border-radius: 60px 10px 10px 0px; }

.btn--dark {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.btn--dark:hover { background: var(--c-charcoal); border-color: var(--c-charcoal); }

.btn--outline-dark {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--outline-dark:hover { background: var(--c-accent); color: var(--c-white); }

.btn--light {
  background: var(--c-white);
  color: var(--c-accent);
  border-color: var(--c-white);
}
.btn--light:hover { background: var(--c-gray-light); border-color: var(--c-gray-light); }

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(253,253,253,0.6);
}
.btn--outline-light:hover { background: rgba(253,253,253,0.1); border-color: var(--c-white); }

.btn--sm { padding: 10px 24px; font-size: 12px; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HOMEPAGE: SEZIONE INTRO (dopo hero, sfondo bianco)
   ============================================================ */
.intro-section {
  padding: var(--section-pad) 0;
  background: var(--c-white);
  text-align: center;
}

.intro-section__text {
  max-width: 760px;
  margin: 0 auto 40px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-dark);
}

/* ============================================================
   CARD CHITARRE (sezione dark #2A2A2A con card bianche bordate)
   3 card orizzontali, bg bianco, bordo, border-radius 7px
   ============================================================ */
.cards-section {
  padding: var(--section-pad) 0;
  background: var(--c-charcoal);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guitar-card {
  background: var(--c-white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.guitar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.guitar-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.guitar-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.guitar-card:hover .guitar-card__img { transform: scale(1.05); }

.guitar-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.guitar-card:hover .guitar-card__overlay { opacity: 1; }

.guitar-card__body {
  padding: 24px;
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.guitar-card__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 8px;
}
.guitar-card__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  font-style: italic;
  white-space: nowrap;
  color: var(--c-dark);
  margin-bottom: 12px;
}
.guitar-card__desc {
  font-size: 15px;
  color: var(--c-medium);
  line-height: 1.65;
  margin-bottom: 20px;
}
.guitar-card__link {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 2px;
  transition: gap 0.25s var(--ease);
}
.guitar-card__link:hover { gap: 10px; }

/* ============================================================
   CHI SIAMO PAGE SECTIONS
   ============================================================ */
.chisiamo-intro {
  padding: var(--section-pad) 0;
  background: var(--c-white);
  text-align: center;
}

.chisiamo-intro__subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-dark);
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.chisiamo-intro__tagline {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text);
}

/* Bio sections: layout 2 colonne, alternato */
.bio-section {
  padding: var(--section-pad) 0;
}

.bio-section--gray { background: var(--c-gray-light); }
.bio-section--white { background: var(--c-white); }

.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bio-layout--reverse { }
.bio-layout--reverse .bio-image { order: -1; }

.bio-image {
  display: flex;
  justify-content: center;
}

.bio-portrait {
  width: 300px;
  height: 300px;
  border-radius: 200px; /* cerchio come originale */
  object-fit: cover;
  object-position: center top;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.29);
}

.bio-text { display: flex; flex-direction: column; gap: 18px; }

.bio-year {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text);
}

.bio-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--c-dark);
  line-height: 1.2;
}

.bio-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--c-medium);
  border-left: 3px solid var(--c-text);
  padding-left: 20px;
  line-height: 1.55;
}

.bio-body {
  font-size: 16px;
  color: var(--c-medium);
  line-height: 1.75;
}

/* ============================================================
   GALLERY — Laboratorio
   bg #F0F0F0, grid, overlay on hover
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--c-dark);
}
.gallery-item--tall   { grid-row: span 2; }
.gallery-item--wide   { grid-column: span 2; }
.gallery-item--h      { aspect-ratio: 16/9; }
.gallery-item:not(.gallery-item--tall) { aspect-ratio: 4/3; }
.gallery-item--tall   { aspect-ratio: auto; min-height: 400px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-white);
}

/* ============================================================
   TESTIMONIALS (sfondo bianco come originale)
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--c-gray-light);
  position: relative;
  z-index: 1;
}

.testi-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.testi-slide { display: none; }
.testi-slide.is-active { display: block; animation: fadeUp 0.5s var(--ease); }

.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.65;
  text-align: center;
  margin-bottom: 36px;
}

.testi-author {
  text-align: center;
}
.testi-name {
  font-family: var(--font-slab);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.testi-role {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text);
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-dark);
  background: transparent;
  color: var(--c-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-radius 0.3s var(--ease);
}
.testi-btn:hover {
  background: var(--c-dark);
  color: var(--c-white);
}

.testi-dots { display: flex; gap: 10px; align-items: center; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(22,22,22,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.dot--active {
  background: var(--c-dark);
  transform: scale(1.35);
}

/* ============================================================
   CONTACT FORM
   bg #E2E2E2 per i campi (esatto originale)
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--c-gray-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-medium);
}

/* Esatto originale: bg #E2E2E2 per i campi */
.form-input {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-dark);
  background: var(--c-form-bg);
  border: none;
  border-radius: 4px;
  outline: none;
  transition: box-shadow 0.25s var(--ease);
  appearance: none;
}
.form-input:focus { box-shadow: 0 0 0 2px rgba(22,22,22,0.2); }
.form-input::placeholder { color: var(--c-text); }
.form-input--error { box-shadow: 0 0 0 2px rgba(192,57,43,0.4) !important; }

.form-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-error);
  display: none;
  margin-top: -2px;
}
.form-error.is-visible { display: block; }

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

/* Submit button — "Invia" */
.form-submit {
  padding: 15px 40px;
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: border-radius 0.4s var(--ease), background 0.3s var(--ease);
}
.form-submit:hover { border-radius: 60px 10px 10px 0; background: var(--c-charcoal); }

.form-send-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-error);
  margin-top: 10px;
}
.form-send-error a { color: inherit; text-decoration: underline; }

.form-note {
  font-size: 13px;
  color: var(--c-text);
}

/* Contact info panel */
.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-info__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--c-dark);
  margin-bottom: 4px;
}

.contact-info__list { display: flex; flex-direction: column; gap: 16px; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--c-medium);
  line-height: 1.6;
}
.contact-info__icon { font-size: 20px; flex-shrink: 0; }
.contact-info__item a {
  color: var(--c-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-info__item a:hover { color: var(--c-dark); }

/* Social links */
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(22,22,22,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-medium);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    border-radius 0.3s var(--ease);
}
.social-icon:hover {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
  border-radius: 40% 50% 50% 10%;
}

/* Map */
.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 340px;
}

/* ============================================================
   LABORATORIO: citazione Michelangelo
   ============================================================ */
.lab-michelangelo {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.lab-michelangelo__text {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-medium);
  line-height: 1.7;
  margin-bottom: 14px;
}
.lab-michelangelo__author {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-text);
}

/* ============================================================
   PAGINA INTERNO: hero mini per pagine interne
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: var(--nav-height);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,0.52);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--c-white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* ============================================================
   ANIMAZIONI
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Nav responsive — nessun hamburger, menu sempre visibile */
@media (max-width: 1200px) {
  .nav-inner { padding: 0 20px; }
  .nav-menu--left,
  .nav-menu--right { gap: 16px; }
  .nav-link { font-size: 15px; letter-spacing: 1.5px; }
  .nav-logo { padding: 0 12px; }
  .site-header { border-radius: 0 0 72px 72px; }
}
@media (max-width: 900px) {
  .nav-inner { padding: 0 12px; }
  .nav-menu--left,
  .nav-menu--right { gap: 10px; }
  .nav-link { font-size: 13px; letter-spacing: 1px; }
  .nav-logo { padding: 0 8px; }
  .site-header { border-radius: 0 0 52px 52px; }
}
@media (max-width: 640px) {
  .nav-link { font-size: 11px; letter-spacing: 0.5px; }
  .nav-menu--left,
  .nav-menu--right { gap: 6px; }
  .site-header { border-radius: 0 0 36px 36px; }
}

@media (max-width: 1024px) {
  .bio-layout { grid-template-columns: 1fr; gap: 40px; }
  .bio-layout--reverse .bio-image { order: 0; }
  .bio-portrait { width: 240px; height: 240px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .guitar-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 40px; }
  .container { padding: 0 24px; }
  .nav-toggle { display: none; }
  .footer-info-row { margin: 0 16px 16px; }
  .hero__title { font-size: clamp(26px, 8vw, 38px); }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .guitar-card:last-child { grid-column: auto; max-width: 100%; margin: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: auto; }
  .gallery-item--wide { grid-column: span 2; }
  .form-row-2 { grid-template-columns: 1fr; }
  .page-hero { height: 45vh; margin-top: var(--nav-height); }
}

/* ============================================================
   HERO — fix touch device (iOS / Android)
   background-attachment:fixed non funziona sui browser mobile:
   l'immagine appare ingrandita e ritagliata. Si passa a scroll.
   (hover:none) OR (pointer:coarse) per coprire tutti i modelli.
   ============================================================ */
@media (hover: none), (pointer: coarse) {
  .hero {
    background-attachment: scroll;
    height: 100vh;
    height: 100dvh; /* dynamic: esclude barra browser, riempie tutto lo schermo */
    min-height: 260px;
  }
  .hero--inner {
    /* Su mobile la nav è fixed: il hero parte dall'alto come sulla home,
       la nav si sovrappone sopra. Si usa 100dvh pieno senza sottrarre nav. */
    margin-top: 0;
    height: 100vh;
    height: 100dvh;
    min-height: 200px;
  }

  /* Focal point orizzontale per immagini landscape in viewport portrait.
     Su mobile il background scala in altezza → solo X conta.
     home: i due volti sono al centro-destra → 55% sposta di poco a dx
     chisiamo: soggetto leggermente a sinistra → 40%
     lab: scena centrata → center
     contatti: scena centrata → center */
  .hero--home     { background-position: 68% center; }
  .hero--chisiamo { background-position: 40% center; }
  .hero--lab      { background-position: center center; }
  .hero--contatti { background-position: center center; }
  /* chitarre: IMG_6708 è portrait (533×800), scale per larghezza → Y conta */
  .hero--chitarre { background-position: center 25%; }
}

/* ≤560px: 2 righe — logo orizzontale sopra, menu completo sotto */
@media (max-width: 560px) {
  :root { --nav-height: 84px; }

  /* Passa da grid a flex per gestire le 2 righe */
  .nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: auto;
    padding: 2px 12px 2px;
    gap: 0 12px;
  }

  /* Riga 1: logo (icona a sx, scritta a dx) — prende tutta la larghezza */
  .nav-logo {
    flex: 0 0 100%;
    order: -1;           /* sale sopra i menu nel flusso flex */
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    margin-bottom: -14px;
  }
  .logo-img { height: 30px; }
  .logo-scritta { height: 12px; margin-top: 0; }

  /* Riga 2: tutti gli item in una riga centrata */
  .nav-menu--left,
  .nav-menu--right {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
    margin: 0;
    padding: 0;
    justify-content: center;
  }
  .nav-link { font-size: 9px; letter-spacing: 0; line-height: 1; }

  /* Toggle lingua: escluso dal flusso flex, posizionato in alto a destra */
  .nav-lang {
    position: absolute;
    top: 6px;
    right: 10px;
    margin-left: 0;
    gap: 3px;
  }
  .nav-lang__link,
  .nav-lang__active {
    font-size: 10px;
    padding: 1px 4px;
  }

  .site-header { border-radius: 0 0 18px 18px; }
  .site-header.is-scrolled .nav-inner { height: auto; }
  .site-header.is-scrolled .logo-img  { height: 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: auto; }
  .contact-map iframe { height: 260px; }
}

/* ============================================================
   HERO: eyebrow text per pagine interne
   ============================================================ */
.hero__eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(253,253,253,0.65);
  margin-bottom: 16px;
}
.page-hero__eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(253,253,253,0.65);
  margin-bottom: 12px;
}

/* ============================================================
   FOOTER CONTACT SECTION — social + form + info + mappa
   ============================================================ */
.footer-contact-section {
  background: var(--c-white);
  padding: 40px 0 0;
}

/* Social row */
.footer-social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(22,22,22,0.2);
  color: var(--c-medium);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social-icon:hover {
  border-color: var(--c-dark);
  color: var(--c-dark);
}

/* ── Bottone "Lascia una recensione su Google" ── */
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text);
  text-decoration: none;
  border: 1px solid rgba(22,22,22,0.25);
  padding: 10px 24px;
  border-radius: 4px;
  transition: border-color 0.25s, color 0.25s, border-radius 0.25s;
}
.btn-google-review:hover {
  border-color: var(--c-orange);
  color: var(--c-dark);
  border-radius: 60px 10px 10px 0px;
}
.btn-google-review__star {
  color: var(--c-orange);
  font-size: 13px;
  line-height: 1;
}

/* Centrato nella sezione testimonials */
.testi-google-cta {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 8px;
}

/* Centrato nel footer, prima del footer scuro */
.footer-google-review-wrap {
  text-align: center;
  padding: 32px 0 40px;
}

/* Wrapper social + form — stesso padding del wrapper icone/mappa */
.footer-top-wrap {
  padding: 0 40px 64px;
}

/* Form occupa tutta la larghezza del wrapper */
.footer-form-wrap {
  width: 100%;
}

/* Info row scuro: Chiama | Scrivi | Dove siamo */
/* Sfondo nero full-bleed — copre mappa e riquadro icone */
.footer-info-map-wrap {
  position: relative;
  background: var(--c-dark);
  padding: 40px 0 0;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}

.footer-info-row {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--c-charcoal);
  border-radius: 16px;
  position: relative;
  z-index: 2;
  margin: 0 40px 16px;
}
.footer-info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.footer-info-item:last-child { border-right: none; }

.footer-info-item__icon {
  color: rgba(253,253,253,0.55);
  margin-bottom: 8px;
}
.footer-info-item__label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(253,253,253,0.45);
  margin-bottom: 6px;
}
.footer-info-item__value {
  font-size: 13px;
  color: rgba(253,253,253,0.8);
  line-height: 1.5;
  text-decoration: none;
}
.footer-info-item__value:hover { color: var(--c-white); }

/* Mappa full-bleed sul fondo nero */
.footer-map-full {
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer-map-full iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}

/* Site footer — logo + legal, connesso al nero della mappa */
.site-footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 36px;
  margin: 0;
  text-align: center;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-footer__logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 8px;
}
.site-footer__logo { width: 100%; height: auto; }
.site-footer__brand {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(253,253,253,0.5);
}
.site-footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__legal a {
  font-size: 12px;
  color: rgba(253,253,253,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__legal a:hover { color: var(--c-white); }
.site-footer__copy {
  font-size: 12px;
  color: rgba(253,253,253,0.3);
}

@media (max-width: 700px) {
  .footer-info-row { flex-direction: column; }
  .footer-info-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-info-item:last-child { border-bottom: none; }
  .footer-info-item__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-info-item__label {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 2px;
  }
  .footer-info-item__value {
    grid-column: 2;
    grid-row: 2;
  }
  .footer-map-full iframe { height: 180px; }
}

@media (max-width: 900px) {
  .footer-contact-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   SEZIONE FILOSOFIA (Home)
   ============================================================ */
.filosof-section { background: var(--c-white); }

.filosof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.filosof-image .filosof-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 6px 6px 20px rgba(0,0,0,0.12);
}
.filosof-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.filosof-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filosof-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-medium);
  border-left: 3px solid var(--c-text);
  padding-left: 20px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.filosof-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.filosof-value {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--c-medium);
  line-height: 1.65;
}
.filosof-value__icon {
  color: var(--c-dark);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}
.filosof-value strong {
  display: block;
  color: var(--c-dark);
  font-family: var(--font-slab);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.filosof-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .filosof-layout { grid-template-columns: 1fr; gap: 40px; }
  .filosof-image img { height: 320px; }
}

/* ============================================================
   TIMELINE (Chi siamo)
   ============================================================ */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* linea orizzontale continua sopra tutti gli item */
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(253,253,253,0.2);
}

.timeline-item {
  padding: 32px 24px 28px;
  position: relative;
  border-right: 1px solid rgba(253,253,253,0.08);
}
.timeline-item:last-child { border-right: none; }

/* dot arancione sul segmento di linea */
.timeline-item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-orange);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 16px;
}

.timeline-content h3 {
  font-family: var(--font-slab);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.timeline-content p {
  font-size: 14px;
  color: rgba(253,253,253,0.6);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .timeline-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-grid::before { display: none; }
  .timeline-item { border-right: none; border-top: 1px solid rgba(253,253,253,0.2); }
  .timeline-item::before { top: -5px; }
}

/* ============================================================
   FIRMA (Chi siamo — Due percorsi, un'unica firma)
   ============================================================ */
.firma-section {
  max-width: 900px;
}

.firma-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  color: var(--c-text);
  margin-bottom: 40px;
}

/* Riga con i due loghi storici affiancati al testo */
.firma-loghi-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  margin-bottom: 0;
}

.firma-figura {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex-shrink: 0;
}

.firma-logo-storico {
  max-height: 90px;
  width: auto;
  max-width: 220px;
}

.firma-anno {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--c-gray-mid);
  letter-spacing: 0.05em;
}

/* SVG convergenza */
.firma-convergenza {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 8px auto 32px;
  overflow: visible;
}

/* Paragrafo di testo */
.firma-body {
  font-family: var(--font-slab);
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 28px;
}

/* Logo Giussani Guitars centrato */
.firma-figura--centrale {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px auto 28px;
  width: fit-content;
}

.firma-logo-attuale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.firma-icona {
  height: 80px;
  width: auto;
}

.firma-scritta {
  height: 13px;
  width: auto;
  margin-top: -4px;
}

/* Ultimo paragrafo centrato sotto il logo */
.firma-body--centrata {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .firma-loghi-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .firma-figura { flex-direction: row; align-items: center; gap: 16px; }
  .firma-logo-storico { max-height: 60px; }
}

/* ============================================================
   VALORI GRID (Chi siamo)
   ============================================================ */
.valori-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.valore-card {
  padding: 32px 24px;
  background: var(--c-gray-light);
  border-radius: 6px;
  text-align: center;
}

.valore-icon {
  display: block;
  color: var(--c-dark);
  font-size: 14px;
  margin-bottom: 16px;
}

.valore-card h3 {
  font-family: var(--font-slab);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 10px;
}

.valore-card p {
  font-size: 14px;
  color: var(--c-medium);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .valori-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .valori-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CATEGORIE CHITARRE (Le chitarre)
   ============================================================ */
.chitarre-categorie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cat-card {
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.cat-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover .cat-card__img { transform: scale(1.04); }

.cat-card__body {
  padding: 28px;
}
.cat-card__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 8px;
}
.cat-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: var(--c-dark);
  margin-bottom: 12px;
}
.cat-card__desc {
  font-size: 15px;
  color: var(--c-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cat-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cat-card__features li {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--c-text);
  padding-left: 14px;
  position: relative;
}
.cat-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-orange);
  font-size: 10px;
}

@media (max-width: 900px) {
  .chitarre-categorie { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   MODELLI CHITARRE (Le chitarre — nuovo layout)
   ============================================================ */

/* Descrizione a tutta larghezza */
.modello-desc--full {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.85;
  margin-bottom: 48px;
}

/* ============================================================
   Mini navigazione interna — Le Chitarre
   ============================================================ */
.modelli-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.modelli-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 4px;
  padding: 10px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.modelli-nav__link {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-medium);
  padding: 4px 8px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.modelli-nav__link:hover { color: var(--c-dark); background: var(--c-off-white); }
.modelli-nav__link.is-active { color: var(--c-orange); background: var(--c-off-white); }
.modelli-nav__sep {
  color: var(--c-light);
  font-size: 14px;
  user-select: none;
}
/* offset nav per tutti gli anchor della pagina Le Chitarre */
.modello-section,
.modello-placeholder,
.altri-strumenti-header { scroll-margin-top: var(--nav-height); }

.modello-placeholder__text {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--c-medium);
  font-style: italic;
  text-align: center;
  padding: 20px 0 8px;
}

/* ── Separatore "Altri strumenti e servizi" ── */
.altri-strumenti-header {
  padding: 56px 0;
}
.altri-strumenti-header .section-header--centered {
  text-align: center;
}
.altri-strumenti-header .section-label--light {
  color: var(--c-white);
}
.altri-strumenti-header .section-label--light::before {
  background: var(--c-orange);
}
.altri-strumenti-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(253,253,253,0.65);
  line-height: 1.7;
  margin: 8px auto 0;
  max-width: 520px;
}

/* Split: foto grande a sinistra, specifiche a destra */
.modello-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 36px;
}

.modello-split__photo {
  min-height: 300px;
}

.modello-split__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

.modello-split__specs {
  display: flex;
  flex-direction: column;
}

.modello-specs__heading {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-medium);
  margin-bottom: 12px;
  margin-top: 0;
}

.modello-specs__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-top: 1px solid var(--c-light);
}

.modello-specs__list li {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--c-text);
  padding: 6px 0 6px 14px;
  border-bottom: 1px solid var(--c-light);
  line-height: 1.5;
  position: relative;
}

.modello-specs__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--c-orange);
  font-size: 10px;
}

.modello-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.modello-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.modello-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--c-text);
  margin: 0;
}


/* Galleria orizzontale scorrevole */
.modello-strip-wrap {
  overflow: hidden;
  margin-top: 8px;
}

.modello-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* nasconde la scrollbar visivamente ma mantiene la funzionalità */
  scrollbar-width: thin;
  scrollbar-color: var(--c-orange) transparent;
}

.modello-strip::-webkit-scrollbar {
  height: 4px;
}

.modello-strip::-webkit-scrollbar-track {
  background: transparent;
}

.modello-strip::-webkit-scrollbar-thumb {
  background: var(--c-orange);
  border-radius: 2px;
}

.modello-strip__item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
}

.modello-strip__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.modello-strip__item:hover img,
.modello-strip__item:focus-visible img {
  transform: scale(1.04);
}

.modello-strip__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.modello-strip__item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 2px solid var(--c-orange);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.modello-strip__item:hover::before,
.modello-strip__item:hover::after,
.modello-strip__item:focus-visible::before,
.modello-strip__item:focus-visible::after { opacity: 1; }

.modello-strip__item:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
}

/* Mantieni compatibilità con .modello-desc usato altrove */
.modello-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.85;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .modello-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .modello-strip__item { flex: 0 0 220px; }
}

@media (max-width: 560px) {
  .modello-strip__item { flex: 0 0 180px; }
  .modello-strip__item img { height: 160px; }
}

/* ============================================================
   SEZIONE LE CHITARRE — usata anche in homepage
   Uniforma section--light → section--gray
   ============================================================ */
.section--light { background: var(--c-white); }

/* Correzione: hero home non ha margin-top (è sopra la nav) */
.hero { margin-top: 0; }

/* Pagine interne: page-hero ha margin-top uguale all'altezza nav */
.page-hero { margin-top: var(--nav-height); }

/* ============================================================
   HOME — sezioni specifiche
   ============================================================ */

/* Homepage: sfondo grigio medio così gli angoli stondati del chi-siamo mostrano un colore neutro */
.page-home {
  background: #4a4a4a;
}

/* Effetto tendina — prima sezione dopo hero (home e pagine interne) */
.section--curtain {
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  margin-top: -48px;
  position: relative;
  z-index: 1;
}

/* Utilità padding */
.section--no-pb { padding-bottom: 0 !important; }

/* Intro contatti — sezione compatta */
.section--contatti-intro {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Intro testo chiaro su sezioni scure */
.section-intro--light { color: rgba(253,253,253,0.75); }

/* CTA block centrato (es. "Hai un'esigenza specifica?") */
.page-cta { text-align: center; }
.page-cta .section-intro { margin-top: 16px; margin-bottom: 32px; }

/* ============================================================
   CHITARRA SINGOLA — scheda dettaglio
   ============================================================ */

/* Hero scheda chitarra */
.chitarra-hero {
  margin-top: 0;
  background: var(--c-dark);
  color: var(--c-white);
  padding: calc(var(--nav-height) + 72px) 0 72px;
}

.chitarra-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* Titolo: ━━ Nome Anno  |  Modello  |  [Stato] */
.chitarra-hero__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  row-gap: 10px;
  margin: 0;
  text-align: center;
  font-size: 0; /* annulla size ereditato da h1, ogni span ha il suo */
}
.chitarra-hero__headline::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-orange);
  flex-shrink: 0;
}

.chitarra-hero__nome,
.chitarra-hero__modello {
  font-family: var(--font-accent);
  font-size: clamp(11px, 1.4vw, 15px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-white);
}

/* Separatore verticale sottile */
.chitarra-hero__sep {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(253,253,253,0.25);
  flex-shrink: 0;
}

/* Badge stato su sfondo scuro: bordo arancione per tutti gli stati */
.chitarra-hero__badge {
  border: 1px solid var(--c-orange) !important;
  color: var(--c-orange) !important;
  background: transparent !important;
  font-size: 10px;
  letter-spacing: 2px;
}

/* Su schermi stretti: nasconde i separatori verticali, ogni parte su riga */
@media (max-width: 600px) {
  .chitarra-hero__inner { padding: 0 24px; }
  .chitarra-hero__sep { display: none; }
  .chitarra-hero__headline {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .chitarra-hero__headline::before { display: none; }
}

/* Galleria principale */
.chitarra-gallery-section { padding-bottom: 0; }

.chitarra-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Stage: contenitore foto principale */
.chitarra-gallery__stage {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--c-dark);
  cursor: pointer;
}
.chitarra-gallery__stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.chitarra-gallery__stage::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 2px solid var(--c-orange);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.chitarra-gallery__stage:hover::before,
.chitarra-gallery__stage:hover::after { opacity: 1; }
.chitarra-gallery__stage.is-zoom-max { cursor: zoom-out; }
.chitarra-gallery__stage.is-zoomed::before,
.chitarra-gallery__stage.is-zoomed::after { opacity: 0; }

.zoom-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(22,22,22,0.72);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}

.chitarra-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, opacity 0.15s ease;
  transform-origin: center center;
  will-change: transform;
}


/* Thumbnails */
.chitarra-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-orange) transparent;
}

.chitarra-gallery__thumb {
  flex: 0 0 110px;
  height: 74px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  transition: border-color 0.2s;
}

.chitarra-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.chitarra-gallery__thumb:hover img { transform: scale(1.08); }
.chitarra-gallery__thumb.is-active  { border-color: var(--c-orange); }
.chitarra-gallery__thumb:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 2px; }

/* Span invisibili per lightbox — fuori dal flusso visivo, raggiungibili via .click() */
.chitarra-gallery__lb-items {
  position: absolute;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
}

/* Specifiche + Form — layout due colonne */
.chitarra-dettaglio__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Descrizione a tutta larghezza sopra la griglia */
.chitarra-specs__desc {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  margin: 0 0 28px;
}

/* Label con trattino arancione — stesso stile section-label */
.chitarra-specs__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 8px;
}
.chitarra-specs__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--c-orange);
  flex-shrink: 0;
}

.chitarra-specs__block { margin-bottom: 20px; }
.chitarra-specs__block:last-child { margin-bottom: 0; }

.chitarra-specs__condizioni {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.75;
  margin: 0;
}

/* Colonna destra: prezzo + form */
.chitarra-cta {}

.chitarra-cta__price-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: var(--c-dark);
  border-left: 3px solid var(--c-orange);
  margin-bottom: 40px;
}

.chitarra-cta__price-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(253,253,253,0.5);
}

.chitarra-cta__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.1;
}

.chitarra-cta__price-note {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(253,253,253,0.6);
  margin: 6px 0 0;
}

/* Info chitarra precompilata nel form */
.chitarra-form__chitarra-info {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-medium);
  padding: 10px 14px;
  background: var(--c-gray-light);
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Torna alla lista */
.chitarra-back { padding: 24px 0; }

.chitarra-back__link {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-medium);
  text-decoration: none;
  transition: color 0.2s;
}

.chitarra-back__link:hover { color: var(--c-dark); }

@media (max-width: 1024px) {
  .chitarra-dettaglio__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .chitarra-hero__inner { padding: 0 20px; }
  .chitarra-gallery__stage { height: 320px; }
  .chitarra-gallery__thumb { flex: 0 0 80px; height: 56px; }
}

/* ============================================================
   CHITARRE DISPONIBILI — griglia card
   ============================================================ */
.chitarre-disponibili-grid-section { padding-top: 48px; }
.dispon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.dispon-card {
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.dispon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.dispon-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--c-light);
}
.dispon-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
  display: block;
}
.dispon-card:hover .dispon-card__img { transform: scale(1.04); }

.dispon-card__body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Titolo card: riga grande nome+anno / riga piccola liutaio */
.dispon-card__title-block { margin-bottom: 16px; }

.dispon-card__nome {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--c-dark);
  margin: 0 0 4px;
  line-height: 1.2;
}

.dispon-card__liutaio {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-medium);
  margin: 0;
}

/* Prezzo + stato sulla stessa riga */
.dispon-card__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.dispon-card__price-sep {
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(22,22,22,0.2);
  flex-shrink: 0;
}
.dispon-badge {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}
.dispon-badge--modello {
  background: var(--c-light);
  color: var(--c-dark);
}
.dispon-badge--nuovo {
  background: rgba(255,188,125,0.15);
  color: #8a5a00;
  border: 1px solid var(--c-orange);
}
.dispon-badge--usato {
  background: var(--c-light);
  color: var(--c-medium);
  border: 1px solid #ddd;
}

.dispon-card__desc {
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: var(--c-medium);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.dispon-card__price {
  font-family: var(--font-accent);
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--c-dark);
}

@media (max-width: 1024px) {
  .dispon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dispon-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* Note disponibilità chitarre */
.dispon-note {
  text-align: center;
  margin-top: 48px;
  padding: 40px 32px;
  background: var(--c-white);
  border-radius: 12px;
}
.dispon-note__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}
.dispon-note__body {
  color: var(--c-medium);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* Nota "sezione in allestimento" sotto la griglia */
.dispon-grid__nota {
  text-align: center;
  margin-top: 32px;
  padding-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--c-medium);
  font-style: italic;
}

/* CTA + newsletter — chitarre disponibili */
.dispon-cta-section { padding: 20px 0 40px; }

.dispon-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  background: var(--c-white);
  border-radius: 16px;
  padding: 40px 48px;
  box-sizing: border-box;
}

.dispon-cta__text {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-text);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

.dispon-cta__row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.dispon-cta__or {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--c-medium);
}

/* Form newsletter inline */
.newsletter-form { display: flex; }
.newsletter-form__row { display: flex; }

.newsletter-form__input {
  width: 200px;
  padding: 0 16px;
  height: 46px;
  font-family: var(--font-serif);
  font-size: 14px;
  background: var(--c-white);
  border: 1px solid var(--c-dark);
  border-right: none;
  color: var(--c-text);
  outline: none;
  border-radius: 4px 0 0 4px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.newsletter-form__input::placeholder { color: var(--c-medium); }
.newsletter-form__input:focus { border-color: var(--c-orange); }

.newsletter-form__btn {
  height: 46px;
  padding: 0 20px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--c-dark);
  color: var(--c-white);
  border: 1px solid var(--c-dark);
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background 0.2s, border-radius 0.3s;
  white-space: nowrap;
  box-sizing: border-box;
}

.newsletter-form__btn:hover {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  border-radius: 0 60px 10px 0;
}

/* Allinea altezza bottone Contattaci con campo email */
.dispon-cta__row .btn {
  height: 46px;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  border-color: var(--c-dark);
}

@media (max-width: 640px) {
  .dispon-cta { padding: 28px 24px; }
  .dispon-cta__row { flex-direction: column; gap: 12px; }
  .dispon-cta__or { display: none; }
  .newsletter-form__input { width: 160px; }
}

/* Galleria — testo conclusivo */
.gallery-outro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gallery-outro__quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}
.gallery-outro__body {
  color: var(--c-medium);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Chi siamo — solo angoli superiori (effetto tendina sul hero) */
.home-chisiamo {
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  margin-top: -48px;
  position: relative;
  z-index: 1;
}

.home-chisiamo__inner,
.home-usate__inner,
.home-partner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
/* In flex il gap si somma al margin: azzeriamo il margin del label */
.home-chisiamo__inner .section-label--title,
.home-usate__inner .section-label--title,
.home-partner__inner .section-label--title {
  margin-bottom: 0;
}
.home-chisiamo__inner--wide .home-chisiamo__text {
  max-width: 900px;
}
.home-chisiamo__title {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 4px;
}
.home-chisiamo__text {
  font-size: 16px;
  color: var(--c-medium);
  line-height: 1.75;
  max-width: 640px;
}
.home-usate__text {
  font-size: 16px;
  color: var(--c-medium);
  line-height: 1.7;
}
.home-usate__inner {
  background: var(--c-gray-light);
  border-radius: 16px;
  padding: 48px 64px;
  width: 100%;
}
@media (max-width: 768px) {
  .home-usate__inner { padding: 36px 28px; }
}
.home-partner {
  padding: 36px 0;
}
.home-partner__logo {
  max-height: 48px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.home-partner__logo:hover { opacity: 1; }

/* Mini galleria home — 4 foto in griglia */
.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.home-gallery__item {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3/4;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.home-gallery__item.is-visible {
  transform: scale(1);
  opacity: 1;
}
.home-gallery__item:nth-child(2) { transition-delay: 0.1s; }
.home-gallery__item:nth-child(3) { transition-delay: 0.2s; }
.home-gallery__item:nth-child(4) { transition-delay: 0.3s; }
.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.home-gallery__item:hover img { transform: scale(1.05); }
.home-gallery__cta { text-align: center; }

@media (max-width: 700px) {
  .home-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SEZIONE LE CHITARRE — sfondo nero, testi invertiti
   ============================================================ */
#le-chitarre { padding-bottom: 0; }
.home-usate   { padding-top: 20px; padding-bottom: 0; }

.le-chitarre-cta { padding: 20px 0 64px; }
.le-chitarre-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.le-chitarre-cta__text {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--c-medium);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

#le-chitarre .section-eyebrow,
#le-chitarre .section-title,
#le-chitarre .section-desc {
  color: var(--c-white);
}
#le-chitarre .section-divider {
  background: rgba(253,253,253,0.25);
}

/* ============================================================
   Gallery uniform grid
   ============================================================ */
.gallery-uniform {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.gallery-uniform__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--c-dark);
  outline: none;
}
.gallery-uniform__item:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
}
.gallery-uniform__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-uniform__item:hover img,
.gallery-uniform__item:focus-visible img {
  transform: scale(1.05);
}
.gallery-uniform__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.gallery-uniform__item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 2px solid var(--c-orange);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-uniform__item:hover::before,
.gallery-uniform__item:hover::after,
.gallery-uniform__item:focus-visible::before,
.gallery-uniform__item:focus-visible::after { opacity: 1; }

/* ============================================================
   Masonry grid (Pinterest style)
   ============================================================ */
.masonry-grid {
  columns: 3;
  column-gap: 8px;
  margin-top: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  cursor: pointer;
  overflow: hidden;
  display: block;
  position: relative;
  background: var(--c-dark);
  outline: none;
}
.masonry-item:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img,
.masonry-item:focus-visible img {
  transform: scale(1.04);
}
.masonry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.masonry-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 2px solid var(--c-orange);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.masonry-item:hover::before,
.masonry-item:hover::after,
.masonry-item:focus-visible::before,
.masonry-item:focus-visible::after { opacity: 1; }

/* Lightbox trigger on guitar cards */
.guitar-card__img-wrap[data-lightbox-group] {
  cursor: zoom-in;
}

/* ============================================================
   Lightbox
   ============================================================ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lb.is-open {
  opacity: 1;
  pointer-events: all;
}
.lb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.96);
  cursor: zoom-out;
}
.lb__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 1100px);
  max-height: 80vh;
  overflow: hidden;
}
.lb__img {
  max-width: min(92vw, 1100px);
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  transition: opacity 0.18s ease, transform 0.25s ease;
  cursor: zoom-in;
  transform-origin: center center;
}
.lb__img--loading { opacity: 0; }
.lb--zoomed .lb__img {
  cursor: zoom-in;
  transition: opacity 0.18s ease;
}
.lb__zoom-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
.lb__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: var(--c-white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 10px 14px;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.lb__close:hover { opacity: 1; color: var(--c-orange); }
.lb__prev,
.lb__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: var(--c-white);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  padding: 16px 20px;
  opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
}
.lb__prev { left: 16px; }
.lb__next { right: 16px; }
.lb__prev:hover,
.lb__next:hover { opacity: 1; color: var(--c-orange); }
.lb__footer {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 14px;
  padding: 0 60px;
}
.lb__caption {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(253, 253, 253, 0.55);
  margin: 0 0 5px;
}
.lb__counter {
  display: block;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-orange);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-uniform { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid    { columns: 2; }
}
@media (max-width: 560px) {
  .gallery-uniform { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid    { columns: 2; }
  .lb__prev        { left: 4px;  padding: 12px 10px; font-size: 26px; }
  .lb__next        { right: 4px; padding: 12px 10px; font-size: 26px; }
  .lb__close       { top: 12px; right: 12px; }
  .lb__footer      { padding: 0 40px; }
}

/* ============================================================
   FORM — messaggi di conferma invio
   ============================================================ */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 8px;
}
.form-success__icon {
  font-size: 40px;
  color: var(--c-orange);
  margin-bottom: 8px;
}
.form-success__title {
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-dark);
}
.form-success__body {
  font-size: 15px;
  color: var(--c-medium);
  line-height: 1.7;
  max-width: 380px;
}

/* Newsletter success/error — inline nella CTA row */
.newsletter-success {
  font-size: 14px;
  color: var(--c-orange);
  font-family: var(--font-accent);
  letter-spacing: 1px;
  padding: 10px 0;
}
.newsletter-error {
  font-size: 13px;
  color: var(--c-error);
  font-family: var(--font-body);
  margin-top: 6px;
}

/* ============================================================
   COOKIE CONSENT — override stile tema
   ============================================================ */
.cc-window {
  font-family: 'Trebuchet MS', Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  border-radius: 16px 16px 0 0 !important;
  padding: 20px 40px !important;
  gap: 32px !important;
  align-items: center !important;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25) !important;
}
.cc-message {
  font-size: 14px !important;
  line-height: 1.65 !important;
  max-width: 820px !important;
}
.cc-compliance {
  display: flex !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}
.cc-btn {
  font-family: 'Trebuchet MS', Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  padding: 10px 22px !important;
  min-width: 100px !important;
  white-space: nowrap !important;
  border: 1px solid transparent !important;
  transition: opacity 0.2s ease !important;
}
.cc-btn:hover { opacity: 0.85 !important; }
.cc-allow {
  background: var(--c-orange) !important;
  color: #161616 !important;
  border-color: var(--c-orange) !important;
}
.cc-deny {
  background: transparent !important;
  color: #FDFDFD !important;
  border-color: rgba(253,253,253,0.35) !important;
}
.cc-deny:hover { border-color: #FDFDFD !important; }
.cc-link,
.cc-link:visited {
  color: var(--c-orange) !important;
  text-decoration: underline !important;
  opacity: 0.9 !important;
}
.cc-link:hover { opacity: 1 !important; }
/* Nasconde il link vuoto auto-generato dalla libreria */
.cc-window .cc-link:not([href]) { display: none !important; }

@media (max-width: 768px) {
  .cc-window {
    flex-direction: column !important;
    padding: 20px 24px !important;
    gap: 16px !important;
    border-radius: 12px 12px 0 0 !important;
    align-items: flex-start !important;
  }
  .cc-compliance {
    width: 100% !important;
    justify-content: flex-end !important;
  }
}

/* ============================================================
   PAGINE LEGALI (privacy policy / cookie policy)
   ============================================================ */
.legal-section {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
}
.legal-title {
  font-family: var(--font-accent);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-dark);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-dark);
}
.legal-content {
  max-width: 780px;
  color: var(--c-medium);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
}
.legal-content--iframe {
  max-width: 100%;
  padding-bottom: 0;
}
.legal-content h2 {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-dark);
  margin: 36px 0 12px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content a { color: var(--c-dark); text-decoration: underline; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }

/* Toggle del submenu: nascosto in portrait/desktop */
.modelli-nav__toggle { display: none; }

/* ============================================================
   LANDSCAPE MOBILE — touch phone in landscape
   Rilevato con (orientation: landscape) + (hover: none) + max-width
   per coprire tutti i modelli (Motorola, Samsung, ecc.)
   Header compatto; submenu Le Chitarre collassabile via toggle
   ============================================================ */
@media (orientation: landscape) and (hover: none) and (max-width: 960px) {
  :root { --nav-height: 64px; }

  /* Logo più piccolo */
  .logo-img     { height: 38px; }
  .logo-scritta { height: 8px; margin-top: -3px; }
  .nav-inner    { padding: 0 24px; height: var(--nav-height); }

  /* Stato scrolled: ancora più compatto */
  .site-header.is-scrolled .logo-img  { height: 28px; }
  .site-header.is-scrolled .nav-inner { height: calc(var(--nav-height) - 8px); }

  /* Page hero proporzionato */
  .page-hero { height: 40vh; }

  /* --- Submenu collassabile --- */

  /* Toggle: barra compatta sempre visibile (sezione corrente + ▾) */
  .modelli-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 7px 16px;
    border: none;
    background: none;
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-medium);
    cursor: pointer;
    transition: color 0.2s;
  }
  .modelli-nav__toggle:hover { color: var(--c-dark); }
  .modelli-nav__toggle-arrow {
    display: inline-block;
    transition: transform 0.2s var(--ease);
    font-size: 10px;
  }
  .modelli-nav.is-open .modelli-nav__toggle-arrow {
    transform: rotate(180deg);
  }

  /* Links: collassati di default, espansi con .is-open */
  .modelli-nav__inner {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.25s var(--ease), padding 0.2s var(--ease);
  }
  .modelli-nav.is-open .modelli-nav__inner {
    max-height: 80px;
    padding-top: 2px;
    padding-bottom: 8px;
  }
}
