/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #faf7f4;
  color: #2e1f1f;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
.section-pretitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c4897a;
  margin-bottom: 0.75rem;
}
.section-pretitle.light { color: #c4897a; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #2e1f1f;
  line-height: 1.2;
}
.section-title.light { color: #2e1f1f; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.divider {
  width: 0;
  height: 2px;
  background: #c4897a;
  margin: 1.5rem auto 0;
  transition: width 0.8s ease;
}
.divider.animate { width: 60px; }

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section-dark { background: #f0e8e3; }
.section-gold { background: #ede3de; border-top: 1px solid #ddd0c8; border-bottom: 1px solid #ddd0c8; }

/* ===========================
   HEADER / NAV
=========================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
#header.scrolled {
  background: rgba(250,247,244,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: color 0.3s, text-shadow 0.3s;
}
.logo-accent { color: #e8b4a8; transition: color 0.3s; }
#header.scrolled .logo-text { color: #2e1f1f; text-shadow: none; }
#header.scrolled .logo-accent { color: #c4897a; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover { color: #fff; }
#header.scrolled .nav-links a {
  color: #8c7370;
  text-shadow: none;
}
#header.scrolled .nav-links a:hover { color: #c4897a; }

.btn-nav {
  background: #c4897a !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s !important;
}
.btn-nav:hover { background: #d49a8a !important; }

/* ===========================
   LANGUAGE SWITCHER
=========================== */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: none;
  border: 1px solid #ddd0c8;
  color: #8c7370;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.lang-btn:hover { border-color: #c4897a; color: #c4897a; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #faf7f4;
  border: 1px solid #ddd0c8;
  border-radius: 2px;
  min-width: 130px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
  list-style: none;
  padding: 0.4rem 0;
}
.lang-dropdown.open { display: block; }
.lang-dropdown li button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0.6rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #8c7370;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.lang-dropdown li button:hover { background: #f0e8e3; color: #c4897a; }

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-lang .lang-dropdown {
  right: 0;
  top: calc(100% + 8px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2e1f1f;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(250,247,244,0.98);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd0c8;
  color: #8c7370;
}
.mobile-menu a:hover { color: #c4897a; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 750px;
}

.hero-pretitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c4897a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: #d49a8a; transform: translateY(-2px); }

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.btn-secondary:hover { border-color: #c4897a; color: #c4897a; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196,137,122,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===========================
   SERVIZI
=========================== */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.servizio-card {
  background: #fff;
  border: 1px solid #ddd5c8;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.servizio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.servizio-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.servizio-img img { transition: transform 0.5s ease; }
.servizio-card:hover .servizio-img img { transform: scale(1.05); }

.servizio-overlay { display: none; }

.servizio-body { padding: 2rem; }
.servizio-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2e1f1f;
  margin-bottom: 0.75rem;
}
.servizio-body p {
  font-size: 0.9rem;
  color: #8c7370;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.servizio-list { margin-bottom: 1.75rem; }
.servizio-list li {
  font-size: 0.85rem;
  color: #8c7370;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e0d8ce;
  padding-left: 1rem;
  position: relative;
}
.servizio-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #c4897a;
  font-size: 0.7rem;
}

.btn-card {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c4897a;
  border-bottom: 1px solid #c4897a;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-card:hover { color: #d49a8a; border-color: #d49a8a; }

/* ===========================
   LA MOTO
=========================== */
.moto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.moto-img {
  height: 550px;
  overflow: hidden;
  border: 1px solid #ddd0c8;
}

.moto-content .section-title { margin-bottom: 0.5rem; }

.moto-desc {
  font-size: 0.95rem;
  color: #8c7370;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.moto-specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #ddd0c8;
  border-bottom: 1px solid #ddd0c8;
}
.spec { text-align: center; flex: 1; }
.spec-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #c4897a;
  font-weight: 700;
}
.spec-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c7370;
  margin-top: 0.25rem;
}

/* ===========================
   GALLERIA
=========================== */
.galleria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}
.gallery-item.large {
  grid-column: span 2;
  height: 380px;
}
.gallery-item.wide {
  grid-column: span 3;
  height: 320px;
}

.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ===========================
   PERCHE SCEGLIERCI
=========================== */
.perche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.perche-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #ddd0c8;
  transition: border-color 0.3s, transform 0.3s;
}
.perche-item:hover { border-color: #c4897a; transform: translateY(-4px); }

.perche-icon {
  font-size: 1.25rem;
  color: #c4897a;
  margin-bottom: 1rem;
}
.perche-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #2e1f1f;
  margin-bottom: 0.75rem;
}
.perche-item p {
  font-size: 0.85rem;
  color: #8c7370;
  line-height: 1.7;
}

/* ===========================
   DICONO DI NOI
=========================== */
.reviews-carousel-wrapper {
  position: relative;
}

.reviews-grid {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd0c8;
  background: #fff;
  color: #c4897a;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.reviews-nav-btn:hover {
  background: #c4897a;
  color: #fff;
}

.review-card {
  background: #fff;
  border: 1px solid #ddd0c8;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 0 0 calc(33.333% - 1.2rem);
  scroll-snap-align: start;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.review-stars {
  color: #c4897a;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.9rem;
  color: #5a4040;
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid #e0d8ce;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c4897a;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.review-info strong {
  font-size: 0.85rem;
  color: #2e1f1f;
  font-weight: 600;
}
.review-info span {
  font-size: 0.72rem;
  color: #c4897a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===========================
   LISTINO PREZZI
=========================== */
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd0c8;
  padding: 3rem 2.5rem;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4897a;
  border: 1px solid #c4897a;
  padding: 0.35rem 1rem;
  margin-bottom: 1.75rem;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pricing-from {
  font-size: 1rem;
  color: #8c7370;
  margin-top: 1rem;
  font-weight: 300;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: #c4897a;
  line-height: 1;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: #8c7370;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.25rem;
  text-align: left;
}

.pricing-features li {
  font-size: 0.85rem;
  color: #8c7370;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid #e0d8ce;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c4897a;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-note {
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 3px solid #c4897a;
}

.pricing-note p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #2e1f1f;
  line-height: 2;
  font-style: italic;
}

/* ===========================
   CONTATTI
=========================== */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contatti-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #2e1f1f;
  margin-bottom: 1rem;
}
.contatti-info p {
  font-size: 0.9rem;
  color: #8c7370;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contatti-info strong { color: #c4897a; }

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #ddd0c8;
  font-size: 0.9rem;
  color: #8c7370;
}
.info-icon { color: #c4897a; font-size: 1rem; }
.info-link { color: #8c7370; font-size: 0.9rem; transition: color 0.3s; }
.info-link:hover { color: #c4897a; }

.slots-box {
  margin-top: 2rem;
  border: 1px solid #ddd0c8;
  border-radius: 2px;
  overflow: hidden;
}

.slots-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: #f0e8e3;
  border-bottom: 1px solid #ddd0c8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e1f1f;
}

.slots-icon { font-size: 0.95rem; }

.slots-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: #c4897a;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.slots-list {
  list-style: none;
  padding: 0.5rem 0;
}

.slots-list li {
  font-size: 0.85rem;
  color: #8c7370;
  padding: 0.55rem 1.1rem;
  border-bottom: 1px solid #ede3de;
  position: relative;
  padding-left: 2rem;
}

.slots-list li:last-child { border-bottom: none; }

.slots-list li::before {
  content: '◆';
  position: absolute;
  left: 0.9rem;
  color: #c4897a;
  font-size: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  background: #25D366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.9rem 1.75rem;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }

.whatsapp-note {
  font-size: 0.75rem;
  color: #8c7370;
  margin-top: 0.6rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* FORM */
.contatti-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8c7370;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid #ddd0c8;
  color: #2e1f1f;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #c4897a; }
.form-group select option { background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  background: #c4897a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: #d49a8a; transform: translateY(-2px); }

.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: rgba(196,137,122,0.1);
  border: 1px solid #c4897a;
  color: #c4897a;
  font-size: 0.9rem;
  border-radius: 2px;
}
.form-success.visible { display: block; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #ede3de;
  border-top: 1px solid #ddd0c8;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text { font-size: 1.1rem; color: #2e1f1f; text-shadow: none; }
.footer-brand .logo-accent { color: #c4897a; }
.footer-brand p {
  font-size: 0.8rem;
  color: #8c7370;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8c7370;
  transition: color 0.3s;
}
.footer-links a:hover { color: #c4897a; }

.footer-bottom {
  border-top: 1px solid #ddd0c8;
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: #8c7370; }
.footer-credit { margin-top: 0.6rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.7rem; color: #b8a8a0; }
.odyne-logo { height: 28px; width: auto; display: inline-block; vertical-align: middle; opacity: 0.85; transition: opacity 0.3s; }
.odyne-link { display: inline-flex; align-items: center; gap: 0.4rem; color: #c4897a; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; transition: opacity 0.3s; }
.odyne-link:hover { opacity: 0.8; }
.odyne-link:hover .odyne-logo { opacity: 1; }

/* ===========================
   FOOTER LEGAL
=========================== */
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  font-size: 0.75rem;
}
.footer-legal a {
  color: #8c7370;
  transition: color 0.3s;
}
.footer-legal a:hover { color: #c4897a; }
.footer-legal span { color: #c4897a; }

/* ===========================
   COOKIE BANNER
=========================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(46,31,31,0.97);
  color: #faf7f4;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.cookie-text strong { color: #fff; }
.cookie-text a { color: #c4897a; text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: #c4897a;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-btn-accept:hover { background: #d49a8a; }

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.65rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ===========================
   PAGINE LEGALI
=========================== */
.legal-page {
  padding-top: 6rem;
  padding-bottom: 5rem;
  min-height: 80vh;
}

.legal-header {
  text-align: center;
  padding: 3rem 0 3rem;
  border-bottom: 1px solid #ddd0c8;
  margin-bottom: 3rem;
}

.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2e1f1f;
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.8rem;
  color: #8c7370;
  letter-spacing: 0.1em;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #2e1f1f;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0d8ce;
}

.legal-content p {
  font-size: 0.9rem;
  color: #5a4040;
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: none;
  margin: 0.5rem 0 1rem 0;
}
.legal-content ul li {
  font-size: 0.9rem;
  color: #5a4040;
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #c4897a;
  font-size: 0.75rem;
}

.legal-highlight {
  border-left: 3px solid #c4897a;
  padding: 1rem 1.25rem;
  background: rgba(196,137,122,0.06);
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #2e1f1f;
  line-height: 1.8;
}

.placeholder-warning {
  color: #c4897a;
  font-weight: 600;
  border-bottom: 2px dashed #c4897a;
  padding: 0 2px;
}

.legal-alert {
  background: rgba(196,137,122,0.1);
  border: 1px solid #c4897a;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: #2e1f1f;
  border-radius: 2px;
}

.legal-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #ddd0c8;
  margin-top: 4rem;
}
.legal-footer p { font-size: 0.8rem; color: #8c7370; }
.legal-footer a { color: #c4897a; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right-mobile { display: flex; }

  .servizi-grid,
  .moto-grid,
  .contatti-grid,
  .pricing-wrapper { grid-template-columns: 1fr; }

  .review-card { flex: 0 0 85vw; }

  .pricing-note { border-left: none; border-top: 3px solid #c4897a; padding: 2rem 0 0; }

  .moto-img { height: 350px; }
  .moto-grid { gap: 2.5rem; }

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

  .galleria-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.wide { grid-column: span 2; }

  .footer-content { flex-direction: column; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }

  .hero-title { font-size: 2.75rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

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

  .galleria-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide { grid-column: span 1; height: 250px; }

  .moto-specs { gap: 1rem; }
}
