@charset "utf-8";
/*
Theme Name: Viaggi
Author: Ohayo
Author URI: https://www.ohayo.it
Description: Tema proprietario per sito viaggi Ohayo
Version: 1.0

Uso:
  Imposta la classe stagione sul <body> per attivare la palette:
  
  <body class="primavera">  â†’ Tema Sakura (rosa, petali, delicato)
  <body class="estate">     â†’ Tema Kansai (azzurro acqua, rosso torii)
  <body class="autunno">    â†’ Tema foliage (acero rosso, ambra)
  <body class="inverno">    â†’ Tema neve (blu ghiaccio, bianco, freddo)
  
  Tutte le classi HTML rimangono invariate.
  Il cambio di palette avviene solo tramite CSS custom properties.


*/
@charset "UTF-8";

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
	
  --ink:        #1C1B18;
  --paper:      #F3EDE3;
  --paper-dark: #E8E0D2;
  --primary:    #B83C2B;    /* rosso torii */
  --secondary:  #5B8EA6;    /* azzurro acqua */
  --accent:     #C4993A;    /* oro */
  --muted:      #7A7060;
  --charcoal:   #2A2018;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Zen Kaku Gothic New', sans-serif;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Link base ──────────────────────────────────────────────── */
a, a:visited {
  color: var(--primary);
  text-decoration: none;
  transition:
    color        0.2s ease,
    border-color 0.2s ease,
    opacity      0.2s ease;
}

/* ── Hover ──────────────────────────────────────────────────── */
a:hover {
  color: var(--primary);
  opacity: 0.85;
}


/* ── Focus: accessibilita' da tastiera ───────────────────────── */
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ── Link dentro il testo editoriale ────────────────────────────
   Nei paragrafi di contenuto (manifesto, FAQ, descrizioni)
   il link ha anche il bordo basso visibile di default,
   per essere riconoscibile senza hover.
────────────────────────────────────────────────────────────────── */
p a,
li a,
.faq-answer a,
.manifesto-body a,
.manifesto_corpo a,
.custom-manifesto-body a,
.tg-intro-body a,
.tg-faq-a a,
.st-map-body a {
  border-bottom-color: rgba(158, 43, 26, 0.3);   /* primary a 30% */
}

p a:hover,
li a:hover,
.faq-answer a:hover,
.manifesto-body a:hover,
.manifesto_corpo a:hover,
.custom-manifesto-body a:hover,
.tg-intro-body a:hover,
.tg-faq-a a:hover,
.st-map-body a:hover {
  border-bottom-color: var(--primary);
  opacity: 1;
}

/* ── Adattamento palette stagionale ─────────────────────────────
   Le variabili --primary e --muted cambiano gia' con la classe
   stagionale sul <main>. I link si adattano automaticamente.

   Autunno:  primary = #9E2B1A  (rosso acero)
   Primavera: primary = #D67C8C (rosa sakura)
   Estate:    primary = #B83C2B (rosso torii)
   Inverno:   primary = #4A7A9E (blu ghiaccio)
────────────────────────────────────────────────────────────────── */

/* ── Reset per elementi che gestiscono i propri link ────────────
   Bottoni, nav, card, badge: annullano il border-bottom
   ereditato per non interferire con il loro stile.
────────────────────────────────────────────────────────────────── */
.nav-links a,
.nav-mobile-links a,
.nav-cta,
.nav-mobile-cta,
.home-tour-card-link,
.home-tour-card-link:visited,
.home-tour-card-link:hover,
.htc-arrivo__notify,
.tg-btn,
.tg-tour-cta,
.tg-map-filter,
.custom-hero-btn,
.custom-cta-btn-large,
.footer-menu a,
.footer-contact-list a,
.footer-legal-menu a,
.home-hero-btn,
.home-custom-btn,
.home-final-btn,
.callout-cta,
.placeholder-cta,
.btn-primary,
.btn-secondary,
.final-btn-main,
.final-btn-talk,
.sticky-btn,
.sticky-chat,
.ohayo-top {
  border-bottom: none;
  text-decoration: none;
}

/* Anche i visited su card e bottoni non cambiano colore */
.home-tour-card-link:visited,
.home-hero-btn:visited,
.home-custom-btn:visited,
.tg-btn:visited,
.callout-cta:visited,
.placeholder-cta:visited {
  color: inherit;
}


.primavera {
  --ink:        #2B1F1D;
  --paper:      #FBF7F4;
  --paper-dark: #F5EDE8;
  --primary:    #D67C8C;    /* rosa sakura principale */
  --secondary:  #9FB8A3;    /* verde tenero primavera */
  --accent:     #E89BAA;    /* rosa piÃ¹ chiaro per accenti */
  --muted:      #8B7D7A;
  --charcoal:   #3A2C28;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Zen Kaku Gothic New', sans-serif;
}
.estate {
  --ink:        #1C1B18;
  --paper:      #F3EDE3;
  --paper-dark: #E8E0D2;
  --primary:    #B83C2B;    /* rosso torii */
  --secondary:  #5B8EA6;    /* azzurro acqua */
  --accent:     #C4993A;    /* oro */
  --muted:      #7A7060;
  --charcoal:   #2A2018;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Zen Kaku Gothic New', sans-serif;
}
.autunno {
  --ink:        #18140F;
  --paper:      #F5EEE3;
  --paper-dark: #EBE1D2;
  --primary:    #9E2B1A;    /* rosso acero */
  --secondary:  #C47B2A;    /* ambra dorata */
  --accent:     #3D4F35;    /* verde cedro scuro */
  --muted:      #6B5E4E;
  --charcoal:   #2A2018;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Zen Kaku Gothic New', sans-serif;
}

.inverno {
  --ink:        #1A1D26;
  --paper:      #F0F4F8;
  --paper-dark: #E4EAF0;
  --primary:    #4A7A9E;    /* blu ghiaccio profondo */
  --secondary:  #8BA8C0;    /* azzurro neve */
  --accent:     #B8C9D9;    /* argento-ghiaccio */
  --muted:      #6B7A8C;
  --charcoal:   #1F2633;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Zen Kaku Gothic New', sans-serif;
}


.site-nav {
  position: relative;
  background: rgba(243, 237, 227, 0.95);
  border-bottom: 1px solid rgba(28, 27, 24, 0.1);
	    padding: 8px 48px;
}
 nav { background: rgba(243, 237, 227, 0.92); }

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.nav-logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-logo-wrapper:hover {
  opacity: 0.85;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Desktop Menu */
.nav-menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
  display: block;
  padding: 8px 4px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 12px 28px;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  border: 1px solid var(--primary);
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white !important;
}

/* Current menu item */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--primary);
}

.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
  transform: scaleX(1);
}

/* Mobile Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 102;
}

.nav-toggle-icon {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu Overlay */
.nav-mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 101;
  overflow-y: auto;
height: calc(100vh - 80px);
}

.primavera .nav-mobile-menu { background: #FBF7F4; }
.estate .nav-mobile-menu { background: #F3EDE3; }
.autunno .nav-mobile-menu { background: #F5EEE3; }
.inverno .nav-mobile-menu { background: #F0F4F8; }

.nav-mobile-menu.active {
  transform: translateX(0);
}

.nav-mobile-inner {
  padding: 48px 32px;
}

.nav-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-links li {
  margin: 0;
  border-bottom: 1px solid var(--paper-dark);
}

.nav-mobile-links a {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 20px 0;
  transition: color 0.2s;
}

.nav-mobile-links a:hover {
  color: var(--primary);
}

.nav-mobile-links .nav-mobile-cta {
  background: var(--primary);
  color: white;
  padding: 18px 28px;
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  border-radius: 0;
}

.nav-mobile-links .current-menu-item > a,
.nav-mobile-links .current_page_item > a {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
  .nav-container {
    padding: 0 32px;
    height: 80px;
  }
  
  .nav-logo-img {
    height: 60px;
  }
  
  .nav-menu-wrapper {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-mobile-menu {
    top: 80px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 24px;
    height: 72px;
  }
  
  .nav-logo-img {
    height: 52px;
  }
  
  .nav-mobile-menu {
    top: 72px;
  }
  
  .nav-mobile-inner {
    padding: 32px 24px;
  }
  
  .nav-mobile-links a {
    font-size: 22px;
    padding: 16px 0;
  }
}


/*       
   HERO
          */

.hero {
  margin-top: 0px;
  height: calc(100vh - 80px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

main.primavera .hero-grid {
  grid-template-columns: 3fr 1fr;
}

.hero-main {
  grid-row: 1 / 3;
  background: var(--ink);
  overflow: hidden;
}

.hero-main img,
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-main:hover img {
  transform: scale(1.04);
}

.hero-thumb {
  overflow: hidden;
  background: var(--ink);
}

.hero-thumb img {
  filter: brightness(0.85);
}

main.inverno .hero-thumb img {
  filter: brightness(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 27, 24, 0.82) 0%,
    rgba(28, 27, 24, 0.1) 45%,
    transparent 100%
  );
}

main.primavera .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(43, 31, 29, 0.78) 0%,
    rgba(43, 31, 29, 0.08) 48%,
    transparent 100%
  );
}

main.autunno .hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(156, 43, 26, 0.15) 0%, transparent 60%);
}

main.inverno .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(26, 29, 38, 0.85) 0%,
    rgba(26, 29, 38, 0.12) 42%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 64px 56px;
  width: 100%;
}

.hero-season,
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}

main.primavera .hero-season::before {
  content: "\1F338";
  font-size: 13px;
}

main.estate .hero-season::before {
  content: "\1F30A";
  font-size: 13px;
}

main.autunno .hero-season::before {
  content: "\1F341";
  font-size: 13px;
}

main.inverno .hero-season::before {
  content: "\2744";
  font-size: 13px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: white;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

main.autunno .hero-title {
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  opacity: 0.7;
}

main.primavera .hero-title em {
  color: #F5C8D0;
}

main.estate .hero-title em {
  color: var(--paper);
}

main.autunno .hero-title em {
  color: var(--secondary);
}

main.inverno .hero-title em {
  color: var(--accent);
}

.hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 36px;
}

main.inverno .hero-subtitle {
  color: rgba(255, 255, 255, 0.68);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-family: var(--sans);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.07);
	font-weight: 600;
}

main.inverno .pill {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.pill-accent,
.pill-maple {
  border-color: var(--primary);
  background: var(--primary);
}

.pill-water,
.pill-amber {
  border-color: var(--secondary);
  color: var(--secondary);
}

main.inverno .pill-water {
  color: white;
  background: var(--secondary);
}

.pill strong {
  font-weight: 400;
}


/*       
   STICKY BAR
          */

.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
}

.sticky-price {
  font-family: var(--serif);
  font-size: 26px;
  color: white;
  font-weight: 300;
}

.sticky-price .promo,
.sticky-price .note {
  font-size: 13px;
  font-family: var(--sans);
  color: var(--secondary);
  margin-left: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media screen and (max-width:899px) {
	.sticky-price .note {
	display: block;
}
	.stickybuttons {
		display: none!important;
	}
}


main.primavera .sticky-price .promo {
  color: #E89BAA;
}

main.autunno .sticky-price .note {
  color: var(--secondary);
}

main.inverno .sticky-price .promo {
  color: var(--accent);
}

.sticky-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.sticky-btn:hover {
  background: var(--secondary);
}

main.inverno .sticky-btn:hover {
  background: var(--charcoal);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.sticky-chat {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: 12px;
  transition: all 0.2s;
}

.sticky-chat:hover {
  border-color: white;
  color: white;
}

main.inverno .sticky-chat {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
}


/*       
   INFO BAR
          */

.info-bar {
  background: var(--charcoal);
  padding: 0;
}

.info-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.info-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

main.inverno .info-item {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.info-item:last-child {
  border-right: none;
}

.info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}

.info-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
}

.info-value strong {
  font-weight: 600;
  color: var(--secondary);
}

main.primavera .info-value strong {
  color: #E89BAA;
}

main.inverno .info-value strong {
  color: var(--accent);
}


/*       
   LAYOUT E SEZIONI
          */

.section {
  padding: 96px 0;
}

.section-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--primary);
  margin: 24px 0;
}


/*       
   MANIFESTO
          */

.manifesto {
  background: var(--paper);
}

.manifesto-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  display: block;
}

main.primavera .manifesto-label {
  color: var(--primary);
}

.manifesto-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 32px;
}

.manifesto-title em {
  font-style: italic;
  color: var(--muted);
}

.manifesto-body {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  color: #3a3730;
  max-width: 680px;
}

main.primavera .manifesto-body {
  color: #3d3230;
}

main.inverno .manifesto-body {
  color: #2e3542;
}

.manifesto-body p + p {
  margin-top: 20px;
}

.manifesto-callout {
  margin-top: 48px;
  padding: 32px 40px;
  border-left: 3px solid var(--primary);
  background: var(--paper-dark);
}

.manifesto-callout p {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
}


/*       
   SECTION HEADERS
          */

.section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
}

.section-header .section-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--paper-dark);
  line-height: 1;
  letter-spacing: -0.04em;
}


/*       
   DIVIDER DECORATIVO STAGIONALE
          */

.season-stripe,
.water-line {
  height: 3px;
  opacity: 0.4;
}

main.primavera .season-stripe,
main.primavera .water-line {
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
}

main.estate .season-stripe,
main.estate .water-line {
  background: linear-gradient(to right, var(--secondary), var(--accent), var(--secondary));
}

main.autunno .season-stripe,
main.autunno .water-line {
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent), var(--secondary), var(--primary));
}

main.inverno .season-stripe,
main.inverno .water-line {
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent), var(--secondary), var(--primary));
}


/*       
   ITINERARIO â€” TIMELINE
          */

.itinerario {
  background: var(--paper);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 108px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--paper-dark);
}

.day-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 0 40px;
  position: relative;
}

.day-item + .day-item {
  border-top: 1px solid var(--paper-dark);
}

.day-date {
  padding: 32px 0;
  text-align: right;
  position: relative;
}

.day-date::after {
  content: '';
  position: absolute;
  right: -44px;
  top: 40px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--muted);
  z-index: 1;
}

.day-item.highlight .day-date::after {
  border-color: var(--primary);
  background: var(--primary);
}

.day-item.amber-day .day-date::after {
  border-color: var(--secondary);
  background: var(--secondary);
}

.day-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
}

.day-date-label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}

.day-content {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.day-place {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
  display: block;
}

main.primavera .day-place {
  color: var(--primary);
}

.day-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.day-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
}

.day-why {
  margin-top: 12px;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--primary);
  opacity: 0.85;
}

.day-thumb {
  width: 300px;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.92);
}

main.inverno .day-thumb {
  filter: brightness(1.02);
}

.day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.day-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--paper-dark);
  padding: 3px 10px;
}

.day-tag-maple,
.day-tag-accent {
  border-color: var(--primary);
  color: var(--primary);
}


/*       
   SPOTLIGHT â€” SEZIONI SPECIALI
          */

.spotlight {
  margin: 0;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.spotlight-mino,
.spotlight-kinosaki {
  background: var(--charcoal);
}

main.inverno .spotlight-mino,
main.inverno .spotlight-kinosaki {
  background: #1A1F2B;
}

.spotlight::before {
  position: absolute;
  font-family: var(--serif);
  font-size: 320px;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
}

.spotlight-mino::before {
  content: attr(data-kanji);
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.spotlight-kinosaki::before {
  content: attr(data-kanji);
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.spotlight-label {
  display: inline-block;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
}

main.primavera .spotlight-label {
  border-color: var(--primary);
  color: var(--primary);
}

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

.spotlight-text h3 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.spotlight-text h3 em {
  font-style: italic;
  color: var(--secondary);
}

main.primavera .spotlight-text h3 em {
  color: var(--primary);
}

main.inverno .spotlight-text h3 em {
  color: var(--accent);
}

.spotlight-text p {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.spotlight-text p + p {
  margin-top: 16px;
}

.spotlight-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 360px;
}

.spotlight-img-grid div {
  overflow: hidden;
}

.spotlight-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
  filter: brightness(0.85);
}

main.inverno .spotlight-img-grid img {
  filter: brightness(0.92);
}

.spotlight-img-grid div:hover img {
  transform: scale(1.06);
}

.spotlight-img-grid div:first-child {
  grid-row: 1 / 3;
}

.spotlight-detail {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.spotlight-detail p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.spotlight-detail strong {
  color: var(--secondary);
  font-weight: 400;
}

main.primavera .spotlight-detail strong {
  color: var(--primary);
}

/* Kinosaki-specific */
.kinosaki-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.kinosaki-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.kinosaki-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.kinosaki-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.kinosaki-stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
  display: block;
}

.kinosaki-ryokan-card {
  background: rgba(158, 43, 26, 0.12);
  border: 1px solid rgba(158, 43, 26, 0.3);
  padding: 28px;
  margin-top: 24px;
}

main.primavera .kinosaki-ryokan-card {
  background: rgba(214, 124, 140, 0.12);
  border: 1px solid rgba(214, 124, 140, 0.3);
}

main.inverno .kinosaki-ryokan-card {
  background: rgba(74, 122, 158, 0.12);
  border: 1px solid rgba(74, 122, 158, 0.3);
}

.kinosaki-ryokan-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.kinosaki-ryokan-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}

.kinosaki-ryokan-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-style: italic;
}

/*       
   SPOTLIGHT LAYOUT: APPROFONDIMENTO (collapsible long-form content)
   
   SOSTITUISCI la sezione precedente con questa versione
          */

.spotlight-approfondimento {
  background: var(--charcoal);
  padding: 0;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

/* Kanji watermark su sfondo scuro */
.spotlight-approfondimento[data-kanji]::before {
  content: attr(data-kanji);
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 280px;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.approfondimento-container.is-expanded .spotlight-approfondimento[data-kanji]::before {
  opacity: 0.8;
  top: 30%;
}

/* 
   Header (sempre visibile) â€” Sfondo scuro
    */

.approfondimento-header {
  padding: 40px 48px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.approfondimento-container:hover .approfondimento-header {
  border-color: var(--primary);
  background: rgba(42, 32, 24, 0.8);
}

.approfondimento-container.is-expanded .approfondimento-header {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Label come negli altri spotlight */
.approfondimento-header .spotlight-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 400;
}

.approfondimento-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
}

.approfondimento-title em {
  font-style: italic;
  color: var(--primary);
}

.approfondimento-preview {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0 0 24px 0;
}

/* 
   Toggle button â€” Stile spotlight
    */

.approfondimento-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.approfondimento-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: white;
}

.approfondimento-toggle[aria-expanded="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.approfondimento-toggle .toggle-text-close {
  display: none;
}

.approfondimento-toggle[aria-expanded="true"] .toggle-text-open {
  display: none;
}

.approfondimento-toggle[aria-expanded="true"] .toggle-text-close {
  display: inline;
}

.toggle-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.approfondimento-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

/* 
   Content espandibile â€” Sfondo scuro
    */

.approfondimento-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  position: relative;
  z-index: 1;
}

.approfondimento-content.expanded {
  max-height: 3000px;
  border-color: var(--primary);
}

.approfondimento-inner {
  padding: 48px;
  padding-top: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.approfondimento-content.expanded .approfondimento-inner {
  opacity: 1;
  transform: translateY(0);
}

/* 
   Grid content (testo + immagine) â€” Testi chiari
    */

.approfondimento-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 56px;
  align-items: start;
}

.approfondimento-text {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.approfondimento-text p {
  margin-bottom: 22px;
}

.approfondimento-text p:last-child {
  margin-bottom: 0;
}

.approfondimento-text em {
  font-style: italic;
  color: var(--secondary);
}

.approfondimento-text strong {
  font-weight: 400;
  color: white;
}

/* Spotlight detail box (riutilizza stile mino) */
.approfondimento-text .spotlight-detail {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--primary);
}

.approfondimento-text .spotlight-detail p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.approfondimento-text .spotlight-detail strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

/* Tags (riutilizza stile itinerario) */
.approfondimento-text .day-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* 
   Immagine laterale â€” Filtri per sfondo scuro
    */

.approfondimento-image {
  position: sticky;
  top: 120px;
}

.approfondimento-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.approfondimento-image:hover img {
  filter: brightness(1) contrast(1);
  border-color: var(--primary);
}

.approfondimento-caption {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* 
   Separator line sopra e sotto
    */

.spotlight-approfondimento::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    var(--secondary),
    var(--primary),
    transparent
  );
  opacity: 0.3;
}

/* 
   Responsive
    */

@media (max-width: 968px) {
  .spotlight-approfondimento[data-kanji]::before {
    font-size: 200px;
    right: 20px;
  }
  
  .approfondimento-header {
    padding: 32px 32px;
  }
  
  .approfondimento-title {
    font-size: 30px;
  }
  
  .approfondimento-preview {
    font-size: 17px;
  }
  
  .approfondimento-inner {
    padding: 40px 32px 32px;
  }
  
  .approfondimento-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .approfondimento-image {
    position: static;
    order: -1;
  }
  
  .approfondimento-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .spotlight-approfondimento[data-kanji]::before {
    font-size: 140px;
    right: 10px;
  }
  
  .approfondimento-header {
    padding: 28px 24px;
  }
  
  .approfondimento-title {
    font-size: 26px;
  }
  
  .approfondimento-preview {
    font-size: 16px;
  }
  
  .approfondimento-toggle {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  
  .approfondimento-inner {
    padding: 32px 24px 24px;
  }
  
  .approfondimento-text {
    font-size: 17px;
  }
  
  .approfondimento-text .spotlight-detail {
    padding: 20px 20px;
  }
}






/*       
   PHOTO BREAK
          */

.photo-break {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 3px;
  height: 400px;
  overflow: hidden;
}

main.primavera .photo-break {
  grid-template-columns: 1.6fr 1fr 1fr;
  height: 420px;
}

.photo-break div {
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.photo-break div:hover img {
  transform: scale(1.05);
}


/*       
   INCLUSO / ESCLUSO
          */

.incluso {
  background: var(--charcoal);
}

main.inverno .incluso {
  background: #1A1F2B;
}

.incluso .section-header h2 {
  color: white;
}

.incluso-philosophy {
  font-family: 'Crimson Pro', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.incluso-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.incluso-col-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.incluso-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.incluso-col-title.include {
  color: var(--accent);
}

main.primavera .incluso-col-title.include {
  color: var(--secondary);
}

main.estate .incluso-col-title.include {
  color: #4A6741;
}

.incluso-col-title.exclude {
  color: var(--muted);
}

.incluso-list {
  list-style: none;
}

.incluso-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.5;
}

.incluso-list li::before {
content: "\2714";  
  flex-shrink: 0;
  font-size: 11px;
  color: var(--accent);
}

main.primavera .incluso-list li::before {
  color: var(--secondary);
}

main.estate .incluso-list li::before {
  color: #4A6741;
}

.incluso-list.ex li::before {
  color: var(--muted);
}


/*       
   ALLOGGI
          */

.alloggi {
  background: var(--paper-dark);
}

.alloggi .section-header h2 {
  color: var(--ink);
}

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

.alloggio {
  background: var(--paper);
  overflow: hidden;
}

.alloggio-img {
  height: 200px;
  overflow: hidden;
}

.alloggio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}

.alloggio:hover .alloggio-img img {
  transform: scale(1.06);
}

.alloggio-info {
  padding: 24px;
}

.alloggio-type {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
  display: block;
}

main.primavera .alloggio-type {
  color: var(--primary);
}

.alloggio-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}

.alloggio-nights {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.alloggio-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}


/*       
   CHI VIAGGIA
          */

.chi-viaggia {
  background: var(--paper);
}

.chi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.chi-text h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.chi-text p {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.8;
  color: #3a3020;
}

main.primavera .chi-text p {
  color: #3d3230;
}

main.inverno .chi-text p {
  color: #2e3542;
}

.chi-text p + p {
  margin-top: 16px;
}

.chi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.chi-stat {
  background: var(--paper-dark);
  padding: 24px;
}

.chi-stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.chi-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-card {
  background: var(--charcoal);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

main.inverno .team-card {
  background: #1A1F2B;
}

.team-card::before {
  position: absolute;
  right: -10px;
  top: -10px;
  font-family: var(--serif);
  font-size: 180px;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.team-card.chiara::before {
  content: attr(data-kanji);
}

.team-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

main.primavera .team-tag {
  color: var(--primary);
}

main.inverno .team-tag {
  color: var(--accent);
}

.team-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}

.team-bio {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.team-years {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.team-years strong {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
}

.team-years span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}


/*       
   PREZZO E DATE
          */

.prezzo {
  background: var(--paper-dark);
}

.prezzo .section-header h2 {
  color: var(--ink);
}

.prezzo-card {
  background: var(--charcoal);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

main.inverno .prezzo-card {
  background: #1A1F2B;
}

.prezzo-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

.prezzo-amount {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: white;
  line-height: 1;
}

.prezzo-amount sup {
  font-size: 28px;
  vertical-align: top;
  margin-top: 12px;
}

.prezzo-promo {
  margin-top: 16px;
  background: var(--primary);
  display: inline-block;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}

.prezzo-details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 24px;
}

.prezzo-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.prezzo-detail-item .label {
  color: var(--muted);
}

.prezzo-detail-item .value {
  color: rgba(255, 255, 255, 0.82);
}

.date-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  margin-bottom: 16px;
}

.date-range {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}

.date-details {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.posti-bar {
  background: rgba(255, 255, 255, 0.06);
  height: 4px;
  margin-bottom: 8px;
}

.posti-fill {
  height: 100%;
  background: var(--primary);
  width: 45%;
}

.posti-label {
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 0.06em;
}

main.primavera .posti-label {
  color: var(--primary);
}

main.inverno .posti-label {
  color: var(--accent);
}

.cta-group {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-primary {
  flex: 1;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--secondary);
}

main.inverno .btn-primary:hover {
  background: var(--charcoal);
  box-shadow: inset 0 0 0 2px var(--primary);
}

.btn-secondary {
  flex: 1;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}


/*       
   FAQ
          */

.faq {
  background: var(--paper);
}

.faq .section-header h2 {
  color: var(--ink);
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-top: 1px solid var(--paper-dark);
  cursor: pointer;
}

.faq-question {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  line-height: 1.3;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 24px;
  max-width: 640px;
}


/*       
   CTA FINALE
          */

.final-cta {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

main.inverno .final-cta {
  background: #1A1F2B;
}

.final-cta::before {
  content: attr(data-kanji);
  position: absolute;
  font-family: var(--serif);
  font-size: 500px;
  color: rgba(255, 255, 255, 0.02);
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

main.primavera .final-cta::before {
  content: "\1F338";
  font-size: 480px;
}

main.estate .final-cta::before {
  content: "\1F30A";
}

main.autunno .final-cta::before {
   content: "\1F342";
}

main.inverno .final-cta::before {
  content: "\2744";
}

.final-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--secondary);
}

main.primavera .final-cta h2 em {
  color: var(--primary);
}

main.inverno .final-cta h2 em {
  color: var(--accent);
}

.final-cta .tagline,
.final-cta p {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.6;
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.final-btn-main {
  background: var(--primary);
  color: white;
  border: none;
  padding: 18px 44px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.final-btn-main:hover {
  background: var(--secondary);
}

main.inverno .final-btn-main:hover {
  background: var(--charcoal);
  box-shadow: inset 0 0 0 2px var(--primary);
}

.final-btn-talk {
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.final-btn-talk:hover {
  border-color: white;
  color: white;
}

.final-email {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.final-email a {
  color: var(--secondary);
  text-decoration: none;
}

main.primavera .final-email a {
  color: var(--primary);
}

main.inverno .final-email a {
  color: var(--accent);
}



/*       
   ANIMAZIONI
          */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-season,
.hero-tag {
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-title {
  animation: fadeUp 0.8s ease 0.25s both;
}

.hero-subtitle {
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-pills {
  animation: fadeUp 0.8s ease 0.55s both;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/*       
   RESPONSIVE   MOBILE
          */

@media (max-width: 768px) {
  nav {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 500px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .hero-main {
    grid-row: 1;
  }

  .hero-thumb {
    display: none;
  }

  .hero-content {
    padding: 0 24px 40px;
  }

  .sticky-bar {
    flex-direction: column;
    gap: 12px;
    padding: 0px 6px;
  }

  .sticky-price {
    font-size: 20px;
  }

  .info-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-narrow,
  .section-wide {
    padding: 0 24px;
  }

  .timeline::before {
    left: 28px;
  }

  .day-item {
    grid-template-columns: 28px 1fr;
    gap: 0 20px;
  }

  .day-date::after {
    right: -24px;
  }

  .day-thumb {
    display: none;
  }

  .day-content {
    grid-template-columns: 1fr;
  }

  .spotlight-layout,
  .kinosaki-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .photo-break {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-break div {
    height: 200px;
  }

  .incluso-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alloggi-grid {
    grid-template-columns: 1fr;
  }

  .chi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prezzo-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .cta-group,
  .final-btns {
    flex-direction: column;
  }
}
/*       
   GALLERIA MASONRY
          */

.tour-gallery {
  padding: 0;
  margin: 0;
  background: var(--paper);
  overflow: hidden;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 3px;
  padding: 0;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(0.92);
}

body.inverno .gallery-item img {
  filter: brightness(1.0);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.0);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: white;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Su mobile mostra sempre le caption se presenti */
@media (max-width: 768px) {
  .gallery-caption {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    font-size: 11px;
    padding: 10px 12px;
  }
  
  .gallery-masonry {
    column-count: 2;
    column-gap: 2px;
  }
  
  .gallery-item {
    margin-bottom: 2px;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    column-count: 1;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .gallery-masonry {
    column-count: 3;
  }
}


/*       
   LIGHTBOX
          */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption-display {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}

.lightbox-counter {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  border-radius: 50%;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev svg,
.lightbox-next svg {
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev {
    left: 16px;
  }
  
  .lightbox-next {
    right: 16px;
  }
  
  .lightbox-img {
    max-height: 80vh;
  }
  
  .lightbox-caption-display {
    font-size: 13px;
    margin-top: 16px;
    padding: 0 16px;
  }
}

.day-item.highlight {
  position: relative;
}

.day-item.highlight::before {
  content: 'SPECIAL';
  position: absolute;
  top: 50%;
  left: -20px;
  background: var(--primary);
  color: white;
  padding: 4px 24px 4px 20px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  z-index: 2;
}
@media screen and (max-width:600px) {
	.day-item.highlight::before {
  content: "\2605";

}

}

/* Mantieni pallino colorato */
.day-item.highlight .day-dot::before {
  background: var(--primary);
}



/* 
   HERO CUSTOM
    */

.custom-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
}

.custom-hero-kanji {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 520px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.custom-hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.custom-hero-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
  border: 1px solid var(--secondary);
  padding: 6px 16px;
}

.custom-hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.custom-hero-title em {
  font-style: italic;
  color: var(--secondary);
  display: block;
  margin-top: 8px;
}

.custom-hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 48px;
}

.custom-hero-btn {
  display: inline-block;
  background: var(--primary);
  color: white!important;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
}

.custom-hero-btn:hover {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

/* 
   LAYOUT BASE
    */

.custom-section {
  padding: 96px 0;
  background: var(--paper);
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.custom-container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

.custom-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.custom-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 32px;
}

.custom-section-title em {
  font-style: italic;
  color: var(--muted);
}

.custom-section-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 72px;
}

.custom-section-num {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 300;
  color: var(--paper-dark);
  line-height: 1;
  letter-spacing: -0.04em;
}

.custom-divider {
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent), var(--secondary), var(--primary));
  opacity: 0.3;
}

.centerd {
    margin: auto;
}

/* 
   MANIFESTO
    */

.custom-manifesto {
  background: var(--paper);
}

.custom-manifesto-body {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  color: #3a3730;
  max-width: 720px;
}

.custom-manifesto-body p {
  margin-bottom: 20px;
}

.custom-manifesto-body em {
  font-style: italic;
  color: var(--primary);
}

.custom-callout {
  margin-top: 48px;
  padding: 32px 40px;
  border-left: 3px solid var(--primary);
  background: var(--paper-dark);
}

.custom-callout p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* 
   PROCESSO â€” TIMELINE
    */

.custom-processo {
  background: var(--paper-dark);
}

.custom-timeline {
  position: relative;
  max-width: 800px;
}

.custom-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: 0.2;
}

.custom-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.custom-step:last-child {
  margin-bottom: 0;
}

.custom-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.custom-step-content {
  padding-top: 4px;
}

.custom-step-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.custom-step-title span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
}

.custom-step-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* 
   DELIVERABLES â€” COSA RICEVI
    */

.custom-deliverables {
  background: var(--paper);
}

.custom-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
}

.custom-deliverable-card {
  background: white;
  padding: 40px 32px;
  border: 1px solid var(--paper-dark);
  transition: all 0.3s ease;
}

.custom-deliverable-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(158, 43, 26, 0.08);
}

.custom-deliverable-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.custom-deliverable-icon img {
	width: 60px;
}
.custom-deliverable-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.custom-deliverable-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* 
   TARGET â€” PER CHI Ãˆ
    */

.custom-target {
  background: var(--charcoal);
}

.custom-target .custom-section-title {
  color: white;
}

.custom-target .custom-section-num {
  color: rgba(255, 255, 255, 0.05);
}

.custom-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
}

.custom-target-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.custom-target-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--secondary);
}

.custom-target-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: white;
  margin-bottom: 14px;
  line-height: 1.3;
}

.custom-target-card p {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.custom-target-card em {
  font-style: italic;
  color: var(--secondary);
}

/* 
   NOT â€” COSA NON Ãˆ
    */

.custom-not {
  background: var(--paper);
}

.custom-not-list {
  max-width: 720px;
  margin: 0 auto;
}

.custom-not-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--paper-dark);
}

.custom-not-item:last-child {
  border-bottom: none;
}

.custom-not-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(158, 43, 26, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
}

.custom-not-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.custom-not-item p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* 
   PRICING â€” INVESTIMENTO
    */

.custom-pricing {
  background: var(--paper-dark);
}

.custom-pricing-card {
  background: white;
  padding: 56px 48px;
  border: 2px solid var(--primary);
  max-width: 600px;
  margin: 0 auto;
}

.custom-pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 16px;
}

.custom-pricing-euro {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--primary);
  margin-right: 8px;
  margin-top: 12px;
}

.custom-pricing-number {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
}

.custom-pricing-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--paper-dark);
}

.custom-pricing-includes {
  margin-bottom: 32px;
}

.custom-pricing-include-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.custom-pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-pricing-includes li {
  padding: 10px 0;
  border-bottom: 1px solid var(--paper-dark);
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-pricing-includes li::before {
  content: '✓';
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.custom-pricing-details {
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--paper-dark);
}

.custom-pricing-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.custom-pricing-detail-row span:first-child {
  color: var(--muted);
}

.custom-pricing-detail-row span:last-child {
  color: var(--ink);
  font-weight: 400;
}

.custom-pricing-note {
  background: var(--paper-dark);
  padding: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.custom-pricing-note strong {
  color: var(--ink);
  font-weight: 400;
}

/* 
   FAQ
    */

.custom-faq {
  background: var(--paper);
}

/* Usa le classi FAQ giÃ  esistenti nel CSS principale */

/* 
   CTA FINALE
    */

.custom-cta-final {
  background: var(--charcoal);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.custom-cta-kanji {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 500px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.custom-cta-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 300;
  color: white;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 28px;
}

.custom-cta-title em {
  font-style: italic;
  color: var(--secondary);
  display: block;
  margin-top: 8px;
}

.custom-cta-text {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.custom-cta-btn-large {
  display: inline-block;
  background: var(--primary);
  color: white!important;
  padding: 20px 48px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  margin: 0 auto;
  display: block;
  text-align: center;
  max-width: 400px;
}

.custom-cta-btn-large:hover {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.custom-cta-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.custom-cta-footer a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.custom-cta-footer a:hover {
  color: white;
}


@media (max-width: 968px) {
  .custom-hero {
    margin-top: 80px;
    min-height: 70vh;
    padding: 80px 32px;
  }
  
  .custom-hero-kanji {
    font-size: 320px;
    right: -50px;
  }
  
  .custom-section {
    padding: 64px 0;
  }
  
  .custom-container,
  .custom-container-narrow {
    padding: 0 32px;
  }
  
  .custom-section-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .custom-section-num {
    font-size: 64px;
  }
  
  .custom-timeline::before {
    left: 18px;
  }
  
  .custom-step {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .custom-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .custom-deliverables-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-target-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-not-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .custom-not-icon {
    margin-bottom: 8px;
  }
  
  .custom-pricing-card {
    padding: 40px 24px;
  }
  
  .custom-pricing-number {
    font-size: 64px;
  }
  
  .custom-cta-final {
    padding: 80px 24px;
  }
  
  .custom-cta-kanji {
    font-size: 280px;
  }
}

@media (max-width: 480px) {
  .custom-hero {
    margin-top: 72px;
    padding: 60px 24px;
  }
  
  .custom-hero-title {
    font-size: 36px;
  }
  
  .custom-hero-subtitle {
    font-size: 18px;
  }
  
  .custom-container,
  .custom-container-narrow {
    padding: 0 24px;
  }
  
  .custom-section-title {
    font-size: 28px;
  }
  
  .custom-manifesto-body {
    font-size: 18px;
  }
  
  .custom-step-title {
    font-size: 22px;
  }
  
  .custom-step-desc {
    font-size: 15px;
  }
}



/* 
   HERO CONTATTI
   */

.contact-hero {
  padding: 120px 48px 96px;
  background: var(--paper);
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.contact-hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.callout-contact {
    background: var(--charcoal);
    color: var(--paper);
	padding: 60px 10px;}

.callout-contact .title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
	text-align: center;
}
.callout-contact .subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--paper-dark);
  line-height: 1.9;
}


.callout-contact .container {
	margin:0px auto;
}
.callout-contact .container ul {
  max-width: 600px;
  margin: 0 auto;
}
.callout-contact ul li {
 
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; /* Blue */
}
 
.wpcf7 form.init .wpcf7-response-output {
    display: none;
}
 
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
}
 
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
}
 
.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
}
 
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
}

/* 
   MAIN CONTACT GRID
  */

.contact-main {
  background: var(--paper-dark);
  padding: 96px 0;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-section-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* 
   FORM STYLING
   */

.contact-form-wrapper {
  background: white;
  padding: 48px;
  border: 1px solid rgba(42, 32, 24, 0.1);
}

.contact-form {
  /* Form container */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper-dark);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232A2018' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-checkbox {
  margin-top: 32px;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-transform: none;
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.6;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.contact-form-btn:hover:not(:disabled) {
  background: var(--ink);
}

.contact-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/* 
   INFO SIDEBAR
    */

.contact-info-wrapper {
  position: sticky;
  top: 120px;
}

.contact-info-block {
  background: white;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(42, 32, 24, 0.1);
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 400;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  margin-bottom: 28px;
  align-items: start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  font-size: 24px;
  line-height: 1;
}

.contact-info-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.contact-info-value:hover {
  color: var(--primary);
}

.contact-info-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* About block */
.contact-about {
  background: var(--paper-dark);
  border: none;
}

.contact-about-text {
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-about-text:last-child {
  margin-bottom: 0;
}

.contact-about-text strong {
  color: var(--ink);
  font-weight: 400;
}

/* Address */
.contact-address {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.contact-address strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

/* Social */
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--paper-dark);
  transition: all 0.2s;
}

.contact-social-link:hover {
  color: var(--primary);
  padding-left: 8px;
}

.contact-social-link::before {
  content: "\2192";
  color: var(--primary);
  font-size: 16px;
}

/* 
   FAQ CONTATTI
    */

.contact-faq-section {
  background: var(--paper);
  padding: 96px 0;
}

.contact-container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Usa le classi FAQ giÃ  esistenti */

/* 
   MESSAGGIO FINALE
    */

.contact-final-message {
  background: var(--charcoal);
  padding: 80px 48px;
}

.contact-final-text {
  font-family: 'Crimson Pro', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-final-text strong {
  color: white;
  font-weight: 400;
  font-style: normal;
}

/* 
   RESPONSIVE â€” MOBILE
    */

@media (max-width: 968px) {
  .contact-hero {
    margin-top: 80px;
    padding: 80px 32px 64px;
  }
  
  .contact-hero-title {
    font-size: 56px;
  }
  
  .contact-hero-subtitle {
    font-size: 18px;
  }
  
  .contact-main {
    padding: 64px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }
  
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-info-wrapper {
    position: static;
  }
  
  .contact-container-narrow {
    padding: 0 32px;
  }
  
  .contact-final-message {
    padding: 64px 32px;
  }
  
  .contact-final-text {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    margin-top: 72px;
    padding: 60px 24px 48px;
  }
  
  .contact-hero-title {
    font-size: 42px;
  }
  
  .contact-hero-subtitle {
    font-size: 17px;
  }
  
  .contact-grid {
    padding: 0 24px;
  }
  
  .contact-form-wrapper {
    padding: 24px 20px;
  }
  
  .contact-info-block {
    padding: 24px 20px;
  }
  
  .contact-section-title {
    font-size: 28px;
  }
  
  .contact-container-narrow {
    padding: 0 24px;
  }
  
  .contact-final-message {
    padding: 48px 24px;
  }
  
  .contact-final-text {
    font-size: 17px;
  }
}

/*                      
   FORM VALIDATION STATES
     */

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #d63638;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #4A6741;
}

/* Success/Error messages */
.form-message {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-left: 3px solid;
  font-size: 14px;
  line-height: 1.6;
}

.form-message.success {
  background: rgba(74, 103, 65, 0.08);
  border-color: #4A6741;
  color: #2d4025;
}

.form-message.error {
  background: rgba(214, 54, 56, 0.08);
  border-color: #d63638;
  color: #8a1f20;
}






/*                        
   Footer Container
     */

.site-footer {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* Divisore superiore con gradient */
.footer-divider {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    var(--secondary),
    var(--accent),
    var(--secondary),
    var(--primary),
    transparent
  );
  opacity: 0.4;
}

/*                        
   Footer Main Section
     */

.footer-main {
  padding: 80px 0 56px;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 64px;
  position: relative;
  z-index: 2;
}

/*                        
   Footer Brand Column
     */

.footer-brand {
  position: relative;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-text {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

.footer-logo-text .accent {
  color: var(--primary);
}

.footer-tagline {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 360px;
}

/* Kanji decorativo */
.footer-kanji {
  position: absolute;
  right: -40px;
  bottom: -20px;
  font-family: var(--serif);
  font-size: 180px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

/*                        
   Footer Titles
     */

.footer-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  margin-top: 0;
}

/*                        
   Footer Navigation
     */

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin: 0 0 12px 0;
}

.footer-menu a {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  position: relative;
}

.footer-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-menu a:hover {
  color: white;
}

.footer-menu a:hover::after {
  width: 100%;
}

/*                        
   Footer Contact
     */

.footer-contact-list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

.footer-contact-list li {
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 16px;
  opacity: 0.4;
  flex-shrink: 0;
}

.footer-contact-list a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {

  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.03);
}

/*                        
   Footer Newsletter
     */

.footer-newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.newsletter-input-wrapper {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s;
}

.newsletter-input-wrapper:focus-within {
  border-color: var(--primary);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  color: white;
  font-family: var(--sans);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-submit {
  background: var(--primary);
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.newsletter-submit:hover {
  background: var(--ink);
}

/*                        
   Footer Bottom
     */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
	display: flex;
	width: 100%;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin: 0;
}

.footer-copyright strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* Legal Menu */
.footer-legal-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-legal-menu li {
  margin: 0;
}

.footer-legal-menu a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-legal-menu a:hover {
  color: var(--primary);
}

/*                        
   Responsive â€” Tablet
     */

@media (max-width: 968px) {
  .footer-main {
    padding: 64px 0 48px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-kanji {
    font-size: 140px;
    right: -20px;
  }
  
  .footer-newsletter {
    grid-column: 1 / -1;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/*                        
   Responsive â€” Mobile
     */

@media (max-width: 480px) {
  .footer-main {
    padding: 48px 0 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  
  .footer-brand {
    grid-column: 1;
  }
  
  .footer-logo-text {
    font-size: 26px;
  }
  
  .footer-logo-img {
    height: 48px;
  }
  
  .footer-tagline {
    font-size: 15px;
  }
  
  .footer-kanji {
    font-size: 100px;
    right: -10px;
    bottom: -10px;
  }
  
  .footer-newsletter {
    grid-column: 1;
  }
  
  .newsletter-input-wrapper {
    flex-direction: column;
  }
  
  .newsletter-submit {
    width: 100%;
    padding: 14px;
  }
  
  .footer-bottom {
    padding: 24px 0;
  }
  
  .footer-copyright {
    font-size: 11px;
  }
  
  .footer-legal-menu {
    flex-direction: column;
    gap: 12px;
  }
}

/*    Base     */
.ohayo-top {
  /* posizionamento */
  position: fixed;
  bottom: 40px;
  right: 36px;
  z-index: 999;

  /* layout interno verticale */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  /* dimensioni */
  width: 36px;
  padding: 14px 0 12px;

  /* aspetto */
  background: var(--paper, #F5EEE3);
  border: 1px solid rgba(24, 20, 15, 0.14);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;

  /* transizioni */
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity     0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform   0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background  0.22s ease,
    border-color 0.22s ease,
    box-shadow  0.22s ease;
}

/* Visibile dopo lo scroll */
.ohayo-top.ohayo-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hover */
.ohayo-top:hover {
  background:    var(--primary, #9E2B1A);
  border-color:  var(--primary, #9E2B1A);
  box-shadow:    0 6px 24px rgba(158, 43, 26, 0.22);
}
.ohayo-top:hover .ohayo-top__line,
.ohayo-top:hover .ohayo-top__arrow,
.ohayo-top:hover .ohayo-top__kanji,
.ohayo-top:hover .ohayo-top__label {
  color:  #fff;
  stroke: #fff;
}
.ohayo-top:hover .ohayo-top__line {
  background: rgba(255, 255, 255, 0.4);
}
.ohayo-top:hover .ohayo-top__kanji {
  opacity: 0.55;
}

/* Focus accessibilitÃ  */
.ohayo-top:focus-visible {
  outline: 2px solid var(--primary, #9E2B1A);
  outline-offset: 3px;
}

/*    Elementi interni                                            */

/* Linea verticale in cima */
.ohayo-top__line {
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(24, 20, 15, 0.2);
  transition: background 0.22s ease, transform 0.3s ease;
  transform-origin: bottom center;
}
.ohayo-top:hover .ohayo-top__line {
  transform: scaleY(1.15);
}

/* Freccia SVG */
.ohayo-top__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink, #18140F);
  transition: color 0.22s ease, transform 0.3s ease;
}
.ohayo-top:hover .ohayo-top__arrow {
  transform: translateY(-2px);
}

/* Kanji ä¸Š */
.ohayo-top__kanji {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--muted, #6B5E4E);
  line-height: 1;
  opacity: 0.45;
  transition: color 0.22s ease, opacity 0.22s ease;
}

/* Label "su" */
.ohayo-top__label {
  font-family: var(--sans, 'Zen Kaku Gothic New', sans-serif);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted, #6B5E4E);
  transition: color 0.22s ease;
}

/*    Varianti palette stagionale                               
   Il body porta la classe .autunno / .estate / .primavera / .inverno
   Il componente si adatta automaticamente tramite le var(--*) giÃ  definite.
   Nessuna regola aggiuntiva necessaria â€” eredita tutto dal tema.
              */

/*    Indicatore di progress scroll (opzionale, linea animata)    */
.ohayo-top__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary, #9E2B1A);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/*    Responsive*/
@media (max-width: 768px) {
  .ohayo-top {
    bottom: 24px;
    right: 20px;
    width: 32px;
    padding: 12px 0 10px;
  }
  .ohayo-top__line   { height: 16px; }
  .ohayo-top__kanji  { font-size: 13px; }
  .ohayo-top__label  { display: none; }   /* nasconde "su" su mobile â€” resta il kanji */
}

@media (max-width: 480px) {
  .ohayo-top {
    bottom: 16px;
    right: 16px;
  }
}

/*    Riduzione movimento (accessibilitÃ )                          */
@media (prefers-reduced-motion: reduce) {
  .ohayo-top,
  .ohayo-top__line,
  .ohayo-top__arrow {

    transition: opacity 0.2s ease;
  }
  .ohayo-top:hover .ohayo-top__line,
  .ohayo-top:hover .ohayo-top__arrow {
    transform: none;
  }
}




/*                        
   Newsletter Success/Error Messages
     */

.newsletter-message {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}

.newsletter-message.success {
  background: rgba(74, 103, 65, 0.15);
  border-left: 2px solid #4A6741;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-message.error {
  background: rgba(214, 54, 56, 0.15);
  border-left: 2px solid #d63638;
  color: rgba(255, 255, 255, 0.8);
}


/*                        
   HERO HOMEPAGE
     */

.home-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 100px 48px;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1410 100%);
  opacity: 1;
}

.home-hero-kanji {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  font-family: var(--serif);
  font-size: 600px;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
}

.home-hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.home-hero-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 28px;
  border: 1px solid var(--secondary);
  padding: 6px 18px;
}

.home-hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.home-hero-title em {
  font-style: italic;
  color: var(--secondary);
}

.home-hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 48px;
}

.home-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero-btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.home-hero-btn.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.home-hero-btn.primary:hover {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.home-hero-btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.home-hero-btn.secondary:hover {
  border-color: white;
  color: white;
}

/*                        
   LAYOUT BASE HOMEPAGE
     */

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.home-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.home-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 400;
}

.home-section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 32px;
}

.home-section-title em {
  font-style: italic;
  color: var(--muted);
}

.home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.home-view-all {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.home-view-all:hover {
  color: var(--ink);
}

.home-divider {
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent), var(--secondary), var(--primary));
  opacity: 0.25;
}

/*                        
   MANIFESTO
     */

.home-manifesto {
  background: var(--paper);
  padding: 96px 0;
}

.home-manifesto-text {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  color: #3a3730;
  max-width: 800px;
}

.home-manifesto-text p {
  margin-bottom: 24px;
}

.home-manifesto-text p:last-child {
  margin-bottom: 0;
}

.home-manifesto-text strong {
  font-weight: 400;
  color: var(--ink);
}

/*                        
   TOUR CARDS
     */

.home-tours {
  background: var(--paper-dark);
  padding: 96px 0;
}

.home-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-tour-card {
  background: white;
  overflow: hidden;
  border: 1px solid rgba(42, 32, 24, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.home-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 32, 24, 0.12);
  border-color: var(--primary);
}

.home-tour-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.home-tour-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
}

.home-tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
  filter: brightness(0.92);
}

.home-tour-card:hover .home-tour-card-image img {
  transform: scale(1.06);
  filter: brightness(1);
}

.home-tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.home-tour-badge.urgent {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.home-tour-card-content {
  padding: 28px;
}

.home-tour-card-season {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-tour-card-season .emoji {
  font-size: 14px;
}

.home-tour-card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 20px;
  min-height: 68px;
}
.home-tour-card-tagline
 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 20px;
  min-height: 68px;
}

.home-tour-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--paper-dark);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-value {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
}

.home-tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
}

.tour-places {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Placeholder card */
.home-tour-card.placeholder {
  border: 2px dashed rgba(42, 32, 24, 0.15);
  background: var(--paper);
}

.home-tour-card.placeholder:hover {
  transform: none;
  box-shadow: none;
}

.home-tour-card-placeholder-content {
  padding: 48px 32px;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.4;
}

.home-tour-card-placeholder-content h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.3;
}

.home-tour-card-placeholder-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.placeholder-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  transition: all 0.2s;
}

.placeholder-cta:hover {
  background: var(--primary);
  color: white;
}

/*                        
   ITINERARI SU MISURA
     */

.home-custom {
  background: var(--paper);
  padding: 0;
}

.home-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}

.home-custom-image {
  min-height: 600px;
  background: var(--charcoal);
}

.home-custom-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-custom-text {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}

.home-custom-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.home-custom-features li {
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  line-height: 1.6;
}

.home-custom-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: 2px solid var(--primary);
}

.home-custom-btn:hover {
  background: transparent;
  color: var(--primary);
}

.home-custom-price {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/*                        
   CALLOUT SPECIALI
     */

.home-callouts {
  background: var(--paper-dark);
  padding: 96px 0;
}

.home-callouts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-callout-card {
  background: white;
  padding: 48px 40px;
  border: 1px solid rgba(42, 32, 24, 0.1);
  transition: all 0.3s ease;
}

.home-callout-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(42, 32, 24, 0.08);
}

.callout-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.callout-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.callout-text {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}

.callout-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid var(--primary);
  transition: all 0.2s;
}

.callout-cta:hover {
  background: var(--primary);
  color: white!important;
}

/*                        
   B2B COLLABORAZIONI
     */

.home-b2b {
  background: var(--charcoal);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.home-b2b::before {
  content: 'æ—…';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 500px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
}

.home-b2b-content {
  position: relative;
  z-index: 2;
}

.home-b2b-text {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.home-b2b-text strong {
  color: white;
  font-weight: 400;
}

.home-b2b-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.b2b-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.b2b-feature strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 4px;
  font-weight: 400;
}

.home-b2b-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 18px 40px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.home-b2b-btn:hover {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

/*                        
   CTA FINALE
     */

.home-final-cta {
  background: var(--paper);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.home-final-kanji {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 450px;
  color: var(--paper-dark);
  line-height: 1;
  pointer-events: none;
  opacity: 0.5;
}

.home-final-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 300;
  color: var(--ink);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.home-final-title em {
  font-style: italic;
  color: var(--muted);
}

.home-final-text {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.home-final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.home-final-btn {
  display: inline-block;
  padding: 20px 48px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.home-final-btn.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.home-final-btn.primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.home-final-btn.secondary {
  background: transparent;
  border-color: var(--muted);
  color: var(--ink);
}

.home-final-btn.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/*                        
   RESPONSIVE â€” MOBILE
     */

@media (max-width: 968px) {
  .home-hero {
    margin-top: 80px;
    min-height: 75vh;
    padding: 80px 32px;
  }
  
  .home-hero-kanji {
    font-size: 400px;
    right: -80px;
  }
  
  .home-hero-title {
    font-size: 52px;
  }
  
  .home-hero-subtitle {
    font-size: 19px;
  }
  
  .home-container,
  .home-container-narrow {
    padding: 0 32px;
  }
  
  .home-manifesto,
  .home-tours,
  .home-callouts,
  .home-b2b {
    padding: 64px 0;
  }
  
  .home-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .home-tours-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .home-custom-grid {
    grid-template-columns: 1fr;
  }
  
  .home-custom-image {
    min-height: 400px;
  }
  
  .home-custom-content {
    padding: 56px 32px;
  }
  
  .home-callouts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .home-b2b-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .home-final-cta {
    padding: 80px 32px;
  }
  
  .home-final-kanji {
    font-size: 280px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    margin-top: 72px;
    padding: 60px 24px;
  }
  
  .home-hero-title {
    font-size: 40px;
  }
  
  .home-hero-subtitle {
    font-size: 17px;
  }
  
  .home-hero-ctas {
    flex-direction: column;
  }
  
  .home-hero-btn {
    width: 100%;
    text-align: center;
  }
  
  .home-container,
  .home-container-narrow {
    padding: 0 24px;
  }
  
  .home-manifesto-text {
    font-size: 18px;
  }
  
  .home-custom-content {
    padding: 48px 24px;
  }
  
  .home-callout-card {
    padding: 32px 24px;
  }
  
  .home-b2b-features {
    grid-template-columns: 1fr;
  }
  
  .home-final-cta {
    padding: 64px 24px;
  }
  
  .home-final-title {
    font-size: 36px;
  }
  
  .home-final-text {
    font-size: 17px;
  }
  
  .home-final-btn {
    width: 100%;
    text-align: center;
  }
}
/* Hero kanji - æ—… (viaggio) */
.hero-kanji::after {
  content: "\65C5";
}

/* Spotlight kanji watermarks */
.spotlight-mino[data-kanji="æ°´"]::before,
.spotlight-kinosaki[data-kanji="æ°´"]::before,
.spotlight-approfondimento[data-kanji="æ°´"]::before {
  content: "\6C34"; /* æ°´ acqua */
}

.spotlight-mino[data-kanji="æ—…"]::before,
.spotlight-kinosaki[data-kanji="æ—…"]::before,
.spotlight-approfondimento[data-kanji="æ—…"]::before {
  content: "\65C5"; /* æ—… viaggio */
}

.spotlight-mino[data-kanji="æ¸©"]::before,
.spotlight-kinosaki[data-kanji="æ¸©"]::before,
.spotlight-approfondimento[data-kanji="æ¸©"]::before {
  content: "\6E29"; /* æ¸© onsen */
}

.spotlight-mino[data-kanji="å®"]::before,
.spotlight-kinosaki[data-kanji="å®"]::before,
.spotlight-approfondimento[data-kanji="å®"]::before {
  content: "\5B9D"; /* å® tesoro */
}

/* Footer kanji - æ—… */
.footer-kanji {
  font-family: var(--serif);
  /* ... resto stile ... */
}

.footer-kanji::before {
  content: "\65C5";
}

/* Homepage kanji */
.home-hero-kanji {
  font-family: var(--serif);
}

.home-hero-kanji::before {
  content: "\65C5"; /* æ—… viaggio */
}

.home-final-kanji::before {
  content: "\59CB"; /* å§‹ inizio */
}

/* Itinerari kanji */
.custom-hero-kanji::before,
.custom-cta-kanji::before {
  content: "\65C5"; /* æ—… viaggio */
}

/* B2B kanji */
.home-b2b::before {
  content: "\65C5"; /* æ—… viaggio */
}
.hero-kanji::after,
.footer-kanji::before,
.spotlight-mino::before {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}



/*       
   PAGINA ARCHIVIO TOUR  Tour Guidati
   
          */


/*                        
   Containers
     */

.tour-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.tour-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.tour-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 400;
}

.tour-section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 32px;
}

.tour-section-title em {
  font-style: italic;
  color: var(--primary);
}

.tour-section-header {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tour-divider {
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent), var(--secondary), var(--primary));
  opacity: 0.25;
}

/*                        
   HERO
     */

.tour-archive-hero {
  background: var(--charcoal);
  padding: 120px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tour-hero-kanji {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 520px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.tour-hero-kanji::before {
  content: "\65C5"; /* æ—… viaggio */
}

.tour-archive-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tour-hero-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
  border: 1px solid var(--secondary);
  padding: 6px 18px;
}

.tour-hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.tour-hero-title em {
  font-style: italic;
  color: var(--primary);
}

.tour-hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/*                        
   MANIFESTO
     */

.tour-manifesto {
  background: var(--paper);
  padding: 96px 0;
}

.manifesto-text {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 300;
  color: #3a3730;
  margin-bottom: 56px;
}

.manifesto-text p {
  margin-bottom: 24px;
}

.manifesto-text strong {
  font-weight: 400;
  color: var(--ink);
}

.manifesto-text em {
  font-style: italic;
  color: var(--primary);
}

.manifesto-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-item {
  background: white;
  padding: 32px 28px;
  border: 1px solid rgba(42, 32, 24, 0.08);
}

.value-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.value-item p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/*                        
   TOUR GRID
     */

.tour-upcoming {
  background: var(--paper-dark);
  padding: 96px 0;
}

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

.archive-tour-card {
  background: white;
  border: 1px solid rgba(42, 32, 24, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.archive-tour-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(42, 32, 24, 0.12);
  transform: translateY(-4px);
}

.archive-tour-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.archive-tour-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.archive-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.archive-tour-card:hover .archive-tour-image img {
  transform: scale(1.05);
}

.archive-tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

.archive-tour-badge.urgent {
  background: #d63638;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.archive-tour-content {
  padding: 28px 24px 24px;
}

.archive-tour-season {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.archive-tour-season .emoji {
  font-size: 16px;
}

.archive-tour-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.archive-tour-card:hover .archive-tour-title {
  color: var(--primary);
}

.archive-tour-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.archive-tour-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42, 32, 24, 0.08);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.meta-label {
  color: var(--muted);
  font-weight: 300;
}

.meta-value {
  color: var(--ink);
  font-weight: 400;
}

.archive-tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-old {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
}

.tour-places {
  font-size: 13px;
  color: var(--muted);
}

.places-number {
  font-weight: 600;
  color: var(--ink);
}

.archive-tour-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
  padding: 12px 0;
  border: 1px solid var(--primary);
  transition: all 0.2s;
}

.archive-tour-card:hover .archive-tour-cta {
  background: var(--primary);
  color: white;
}

/* No tours message */
.no-tours-message {
  text-align: center;
  padding: 80px 40px;
  grid-column: 1 / -1;
}

.no-tours-message h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}

.no-tours-message p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}

.no-tours-cta {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.no-tours-cta:hover {
  background: var(--ink);
}

/*                        
   COSA  INCLUSO
     */

.tour-included {
  background: var(--paper);
  padding: 96px 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.included-card {
  background: white;
  padding: 32px 28px;
  border: 1px solid rgba(42, 32, 24, 0.08);
}

.included-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.included-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.included-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.not-included {
  background: rgba(42, 32, 24, 0.03);
  padding: 32px;
  border-left: 3px solid var(--primary);
}

.not-included h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.not-included p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/*                        
   GUIDA
     */

.tour-guide {
  background: var(--paper-dark);
  padding: 96px 0;
}

.guide-profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}

.guide-image {
  position: relative;
}
.guide-image  img {
  width: 100%;
 aspect-ratio: 3/4;
  object-fit: cover;
}
.guide-image > div,
.guide-image > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid rgba(42, 32, 24, 0.1);
}

.guide-bio {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #3a3730;
  margin-bottom: 32px;
}

.guide-bio p {
  margin-bottom: 20px;
}

.guide-bio strong {
  font-weight: 400;
  color: var(--ink);
}

.guide-bio em {
  font-style: italic;
  color: var(--primary);
}

.guide-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.credential-item {
  padding: 16px 20px;
  background: white;
  border: 1px solid rgba(42, 32, 24, 0.08);
  font-size: 13px;
  line-height: 1.6;
}

.credential-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/*                        
   PERCHÃ‰ GRUPPO
     */

.tour-why-group {
  background: var(--paper);
  padding: 96px 0;
}

.why-group-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  background: white;
  padding: 32px 36px;
  border-left: 4px solid var(--primary);
}

.why-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/*                        
   FAQ
             */

.tour-faq {
  background: var(--paper-dark);
  padding: 96px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(42, 32, 24, 0.08);
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 24px 28px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-icon {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 28px 28px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/*                    
   TOUR PASSATI
                       */

.tour-past {
  background: var(--paper);
  padding: 96px 0;
}

.past-header {
  margin-bottom: 48px;
}

.past-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

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

.past-tour-item {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 24px;
  border: 1px solid rgba(42, 32, 24, 0.06);
}

.past-tour-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  opacity: 0.7;
}

.past-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.past-season {
  font-style: italic;
}

/*                    
   CTA FINALE
                       */

.tour-final-cta {
  background: var(--charcoal);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tour-final-cta::before {
  content: "\59CB"; /* å§‹ inizio */
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 420px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
}

.tour-final-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.tour-final-title em {
  font-style: italic;
  color: var(--primary);
}

.tour-final-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.tour-final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.tour-final-btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.tour-final-btn.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.tour-final-btn.primary:hover {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.tour-final-btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.tour-final-btn.secondary:hover {
  border-color: white;
  color: white;
}

/*                    
   RESPONSIVE
*/

@media (max-width: 968px) {
  .tour-container,
  .tour-container-narrow {
    padding: 0 32px;
  }
  
  .tour-archive-hero {
    padding: 96px 32px 64px;
  }
  
  .tour-hero-kanji {
    font-size: 320px;
  }
  
  .manifesto-values {
    grid-template-columns: 1fr;
  }
  
  .tour-grid {
    grid-template-columns: 1fr;
  }
  
  .included-grid {
    grid-template-columns: 1fr;
  }
  
  .guide-profile {
    grid-template-columns: 1fr;
  }
  
  .guide-credentials {
    grid-template-columns: 1fr;
  }
  
  .past-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tour-container,
  .tour-container-narrow {
    padding: 0 24px;
  }
  
  .tour-archive-hero {
    padding: 72px 24px 56px;
  }
  
  .tour-hero-kanji {
    font-size: 220px;
  }
  
  .tour-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tour-final-cta {
    padding: 72px 24px;
  }
  
  .tour-final-btns {
    flex-direction: column;
  }
  
  .tour-final-btn {
    width: 100%;
    text-align: center;
  }
}


/*
 * ═══════════════════════════════════════════════════════════════
 *  CARD "IN ARRIVO" — Stile
 *  
 *  Da incollare in style.css subito dopo il blocco:
 *  ".home-tour-card.placeholder:hover { ... }"  (circa riga 5186)
 *
 *  Oppure alla fine del file prima del blocco dei kanji.
 * ═══════════════════════════════════════════════════════════════
 */


/* ── Base card ───────────────────────────────────────────────── */
.home-tour-card--in-arrivo {
  background: var(--charcoal);
  border-color: transparent;
  cursor: default;     /* niente pointer — non è cliccabile */
  overflow: hidden;
  position: relative;
}

/* Al hover non si solleva e non cambia bordo */
.home-tour-card--in-arrivo:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* Leggero alone al hover — dà vita senza suggerire click */
.home-tour-card--in-arrivo:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  transition: background 0.3s ease;
}


/* ── Immagine: desaturata, schiacciata, velata ───────────────── */
.htc-arrivo__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.htc-arrivo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.55) contrast(1.05);
  transform: scale(1.04);   /* leggermente ingrandita — senso di attesa */
  transition: filter 0.6s ease, transform 0.6s ease;
}

.home-tour-card--in-arrivo:hover .htc-arrivo__image img {
  filter: grayscale(30%) brightness(0.6) contrast(1.05);
  transform: scale(1.06);
}

/* Overlay scuro con texture grain leggera */
.htc-arrivo__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(24, 20, 15, 0.1)  0%,
      rgba(24, 20, 15, 0.55) 60%,
      rgba(24, 20, 15, 0.85) 100%
    );
  z-index: 1;
}


/* ── Kanji watermark 待 ───────────────────────────────────────── */
.htc-arrivo__kanji-watermark {
  position: absolute;
  bottom: -16px;
  right: -8px;
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  z-index: 2;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s ease;
}

.home-tour-card--in-arrivo:hover .htc-arrivo__kanji-watermark {
  color: rgba(255, 255, 255, 0.11);
}


/* ── Badge "In arrivo" ──────────────────────────────────────────
   Più evocativo del normale badge rosso:
   sfondo scuro con bordo ambra, dot pulsante.
────────────────────────────────────────────────────────────────── */
.htc-arrivo__badge {
  position: absolute;
  top: 16px;
  left: 16px;            /* a sinistra — si distingue dal badge normale */
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 20, 15, 0.75);
  border: 1px solid var(--secondary, #C47B2A);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 6px 14px 6px 10px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary, #C47B2A);
}

/* Dot pulsante ambra */
.htc-arrivo__badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary, #C47B2A);
  flex-shrink: 0;
  animation: htc-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes htc-dot-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.4; transform: scale(0.65); }
}


/* ── Contenuto della card ────────────────────────────────────── */
.htc-arrivo__content {
  background: var(--charcoal);
  padding: 28px;
}

/* Stagione: stessa struttura, colore più tenue */
.htc-arrivo__content .home-tour-card-season {
  color: rgba(245, 238, 227, 0.4);
}

/* Titolo su fondo scuro */
.htc-arrivo__content .home-tour-card-title {
  color: var(--paper, #F5EEE3);
}

/* Tagline */
.htc-arrivo__tagline {
  color: rgba(245, 238, 227, 0.55) !important;
}

/* Meta (date/durata): testo chiaro su scuro */
.htc-arrivo__content .home-tour-card-meta {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.htc-arrivo__content .meta-label {
  color: rgba(245, 238, 227, 0.35);
}

.htc-arrivo__content .meta-value {
  color: rgba(245, 238, 227, 0.75);
}

/* Valore "da definire" — corsivo, più dimesso */
.htc-arrivo__tbd {
  font-style: italic;
  color: rgba(245, 238, 227, 0.3);
  font-size: 14px;
}

/* ── Footer: teaser + CTA ──────────────────────────────────────
────────────────────────────────────────────────────────────────── */
.htc-arrivo__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.htc-arrivo__teaser {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(245, 238, 227, 0.45);
  line-height: 1.5;
  margin: 0;
}

/* CTA "Avvisami" — link testuale sottile, colore ambra */
.htc-arrivo__notify {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--secondary, #C47B2A);
  border-bottom: 1px solid rgba(196, 123, 42, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.htc-arrivo__notify:hover {
  color: var(--paper, #F5EEE3);
  border-color: rgba(245, 238, 227, 0.35);
}


/* ── Adattamento palette stagionale ────────────────────────────
   Le variabili CSS del tema cambiano con .autunno/.estate/ecc.
   sul <main>. Il charcoal è già definito in ogni stagione,
   quindi la card si adatta automaticamente.
   Qui solo eventuali override se necessario.
────────────────────────────────────────────────────────────────── */

/* Su primavera il charcoal è leggermente più caldo — nessuna modifica necessaria */
/* Su inverno il charcoal tende al blu — nessuna modifica necessaria */


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {

  .htc-arrivo__image {
    height: 240px;
  }

  .htc-arrivo__kanji-watermark {
    font-size: 80px;
    bottom: -10px;
  }

  .htc-arrivo__content {
    padding: 22px 20px;
  }

  .htc-arrivo__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {

  .htc-arrivo__image {
    height: 200px;
  }

  .htc-arrivo__badge {
    font-size: 9px;
    padding: 5px 10px 5px 8px;
  }

  .htc-arrivo__footer {
    flex-direction: column;
  }
}



/*-- ══════════════════════════════════════════
     STILI SEZIONE MAPPA PERCORSO
══════════════════════════════════════════ -->

/* ── Sezione contenitore */
.st-map-section {
  padding-bottom: 0;       /* la mappa tocca il bordo inferiore */
  overflow: hidden;
}

/* ── Header: testo + pillole affiancati */
.st-map-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

/* ── Titolo — riutilizza le variabili già presenti nel tema */
.st-map-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 20px;
}
.st-map-title em {
  font-style: italic;
  color: var(--primary);
}

.st-map-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 480px;
}

/* ── Pillole tappe ─────────────────────────────────── */
.st-map-pills-wrapper {
  padding-top: 8px;     /* allinea visivamente al testo */
}
.st-map-pills {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.st-map-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-dark, #EBE1D2);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.st-map-pill:first-child { border-top: 1px solid var(--paper-dark, #EBE1D2); }
.st-map-pill:hover { background: rgba(0,0,0,0.02); }
.st-map-pill.st-pill--active { background: transparent; }

/* numero */
.st-pill-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.18s;
}
.st-map-pill--principale .st-pill-num { background: var(--primary);    color: #fff; }
.st-map-pill--tappa       .st-pill-num { background: var(--secondary);   color: #fff; }
.st-map-pill--notturna    .st-pill-num { background: var(--charcoal);    color: rgba(255,255,255,0.8); }

.st-map-pill.st-pill--active .st-pill-num {
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

/* nome */
.st-pill-nome {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  flex: 1;
  letter-spacing: 0.01em;
}
.st-map-pill--notturna .st-pill-nome { color: var(--muted); }

/* kanji */
.st-pill-kanji {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--muted);
  opacity: 0.5;
  line-height: 1;
}

/* badge tipo (opzionale, appare al hover) */
.st-map-pill::after {
  content: attr(data-tipo);
}

/* ── Canvas mappa ──────────────────────────────────── */
.st-map-canvas-wrap {
  position: relative;
  width: 100%;
}
.st-map-canvas {
  width: 100%;
  height: 520px;
  display: block;
  background: var(--paper-dark, #EBE1D2);
}
.st-map-attribution-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 5px 12px;
  font-family: var(--sans);
  font-size: 10px;
  color: rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.75);
  text-align: right;
  pointer-events: none;
}
.st-map-attribution-bar a {
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  pointer-events: auto;
}

/* ── Override UI Leaflet */
.leaflet-container         { font-family: var(--sans) !important; }
.leaflet-bar               { border-radius: 0 !important; box-shadow: none !important; border: 1px solid #ccc !important; }
.leaflet-bar a             { border-radius: 0 !important; color: var(--ink) !important; }
.leaflet-bar a:hover       { background: var(--paper) !important; }
.leaflet-control-attribution { display: none; } /* usiamo la nostra barra */

/* ── Popup percorso */
.st-popup .leaflet-popup-content-wrapper {
  background: var(--charcoal, #2A2018);
  color: var(--paper, #F5EEE3);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 0;
  min-width: 200px;
}
.st-popup .leaflet-popup-tip { background: var(--charcoal, #2A2018); }
.st-popup .leaflet-popup-content { margin: 0; }
.st-popup-body   { padding: 18px 22px; }
.st-popup-num    {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--secondary, #C47B2A);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.st-popup-nome   {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--paper, #F5EEE3);
  line-height: 1.15;
  margin-bottom: 2px;
}
.st-popup-kanji  {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(245,238,227,0.35);
  margin-bottom: 10px;
}
.st-popup-nota   {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(245,238,227,0.55);
  line-height: 1.6;
  font-style: italic;
}
.st-popup-foot   {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 22px 12px;
}
.st-popup-tipo   {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  display: inline-block;
}
.st-popup-tipo--principale { background: rgba(158,43,26,0.35); color: #E87060; }
.st-popup-tipo--tappa       { background: rgba(196,123,42,0.25); color: #D4944A; }
.st-popup-tipo--notturna    { background: rgba(255,255,255,0.07); color: rgba(245,238,227,0.45); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .st-map-intro { grid-template-columns: 1fr; gap: 32px; }
  .st-map-pills { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .st-map-pill  {
    border: 1px solid var(--paper-dark, #EBE1D2);
    border-bottom: 1px solid var(--paper-dark, #EBE1D2);
    padding: 8px 14px;
    border-radius: 0;
    flex-direction: row;
  }
  .st-map-pill:first-child { border-top: 1px solid var(--paper-dark, #EBE1D2); }
  .st-pill-kanji { display: none; }
}
@media (max-width: 640px) {
  .st-map-canvas { height: 360px; }
}
@media (max-width: 420px) {
  .st-map-canvas { height: 280px; }
}
</style>
