* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #faf8f5 0%, #f4f0eb 100%);
  color: #2c1810;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Animazioni */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.card {
  opacity: 0;
  transform: translateY(30px);
}

.catalog-item {
  opacity: 0;
  transform: translateY(30px);
}

.hero-image-card {
  opacity: 0;
  transform: translateX(30px);
}

.section-header {
  opacity: 0;
  transform: translateY(30px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-light {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 252, 250, 0.95) 100%),
    url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.section-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 158, 132, 0.3) 50%, transparent 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(184, 158, 132, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px) saturate(200%);
  box-shadow: 0 8px 32px rgba(139, 111, 71, 0.1);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 2rem;
  position: relative;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #2c1810;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(184, 158, 132, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #8b6f47;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #faf7f2 60%, #f0e8dc 100%);
  box-shadow: 
    0 4px 20px rgba(139, 111, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(-45deg);
  transition: transform 0.6s ease;
}

.logo-mark:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.25);
}

.logo-mark:hover::before {
  transform: rotate(-45deg) translate(100%, 100%);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #2c1810;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #8b6f47;
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.main-nav a {
  padding: 0.8rem 0;
  position: relative;
  color: #2c1810;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #8b6f47, #d4b896);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.8rem 1.8rem !important;
  border-radius: 50px;
  border: 1px solid rgba(139, 111, 71, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
  box-shadow: 0 2px 12px rgba(139, 111, 71, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #a67c52 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.25);
}

.hero {
  padding: 8rem 0 10rem;
  background: 
    radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.8) 0%, transparent 70%),
    linear-gradient(135deg, #faf8f5 0%, #f4f0eb 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 6rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 5vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #2c1810;
  background: linear-gradient(135deg, #2c1810 0%, #8b6f47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  max-width: 36rem;
  color: #6b5444;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn.primary {
  background: linear-gradient(135deg, #8b6f47 0%, #a67c52 100%);
  color: #ffffff;
  border-color: #8b6f47;
  box-shadow: 0 4px 20px rgba(139, 111, 71, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.4);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.8);
  color: #2c1810;
  border-color: rgba(139, 111, 71, 0.3);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
}

.btn.full-width {
  width: 100%;
}

.hero-image-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #faf7f2 50%, #f0e8dc 100%);
  box-shadow: 
    0 25px 60px rgba(139, 111, 71, 0.15),
    0 8px 25px rgba(139, 111, 71, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 
    0 35px 80px rgba(139, 111, 71, 0.2),
    0 15px 35px rgba(139, 111, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-photo {
  border-radius: 32px;
  min-height: 400px;
  background: linear-gradient(135deg, #f0e8dc 0%, #e0cec0 50%, #d4b896 100%);
  position: relative;
  overflow: hidden;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.3), rgba(44, 24, 16, 0.05));
  z-index: 2;
}

.hero-img-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  font-size: 0.85rem;
  z-index: 3;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #8b6f47;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.2);
}

.section-header {
  text-align: left;
  max-width: 48rem;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #2c1810;
  line-height: 1.15;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #8b6f47, #d4b896);
  border-radius: 2px;
}

.section-header p {
  color: #6b5444;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
  border-radius: 24px;
  padding: 2.5rem 2.8rem;
  border: 1px solid rgba(184, 158, 132, 0.2);
  box-shadow: 
    0 20px 40px rgba(139, 111, 71, 0.08),
    0 4px 12px rgba(139, 111, 71, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b6f47, #d4b896, #8b6f47);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 60px rgba(139, 111, 71, 0.15),
    0 8px 25px rgba(139, 111, 71, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card.muted {
  background: linear-gradient(135deg, #faf7f2 0%, #f5f0ea 100%);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: #2c1810;
  font-style: italic;
}

.card p {
  font-size: 1rem;
  color: #6b5444;
  line-height: 1.6;
  font-weight: 300;
}

.card-with-image {
  padding: 0;
  overflow: hidden;
}

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(44, 24, 16, 0.1) 0%, rgba(44, 24, 16, 0.3) 100%);
}

.card-content {
  padding: 2.5rem 2.8rem;
}

.check-list {
  list-style: none;
  margin-top: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #6b5444;
  font-weight: 300;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b6f47, #d4b896);
  box-shadow: 0 2px 4px rgba(139, 111, 71, 0.3);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.partner-cta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184, 158, 132, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.catalog-item {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
  border-radius: 20px;
  padding: 2.2rem 2.5rem;
  border: 1px solid rgba(184, 158, 132, 0.2);
  box-shadow: 0 12px 30px rgba(139, 111, 71, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
  color: inherit;
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 111, 71, 0.12);
  text-decoration: none;
  color: inherit;
}

.catalog-item:hover h3 {
  color: #8b6f47;
}

.catalog-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #2c1810;
  font-style: italic;
}

.catalog-item p {
  font-size: 1rem;
  color: #6b5444;
  line-height: 1.6;
  font-weight: 300;
}

.catalog-with-image {
  padding: 0;
  overflow: hidden;
}

.catalog-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.catalog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(44, 24, 16, 0.1) 0%, rgba(44, 24, 16, 0.25) 100%);
}

.catalog-content {
  padding: 2.2rem 2.5rem;
}

.tag {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1), rgba(212, 184, 150, 0.1));
  color: #8b6f47;
  border: 1px solid rgba(139, 111, 71, 0.2);
}

/* Breadcrumb Styles */
.breadcrumb {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(184, 158, 132, 0.2);
  font-size: 0.9rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: #8b6f47;
  font-weight: 500;
}

.breadcrumb-link {
  color: #6b5444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #8b6f47;
  text-decoration: underline;
}

.breadcrumb-current {
  color: #2c1810;
  font-weight: 500;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
  border: 1px solid rgba(184, 158, 132, 0.2);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.05);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c1810;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
  color: #8b6f47;
}

.faq-question[aria-expanded="true"] {
  color: #8b6f47;
  border-bottom: 1px solid rgba(184, 158, 132, 0.2);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #8b6f47;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #6b5444;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.section-contact {
  background: linear-gradient(135deg, #2c1810 0%, #3a2418 100%);
  color: #faf7f2;
  position: relative;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(139, 111, 71, 0.1) 0%, transparent 70%);
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.section-contact p {
  color: #d4c4b4;
}

.contact-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact-form {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.35rem;
}

input,
textarea {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  color: #faf7f2;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 300;
}

textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(212, 196, 180, 0.7);
}

input:focus,
textarea:focus {
  border-color: rgba(139, 111, 71, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.2);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(184, 158, 132, 0.3);
  background: linear-gradient(135deg, #faf8f5 0%, #f4f0eb 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #8b6f47;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .hero {
    padding: 6rem 0 8rem;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-inner {
    padding: 1.2rem 0;
  }
  

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(32px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(139, 111, 71, 0.1);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    font-size: 1.2rem;
    font-weight: 400;
    padding: 1rem 0;
  }

  .nav-cta {
    padding: 1.2rem 2.5rem !important;
    font-size: 1rem !important;
  }

  .hero-inner,
  .two-cols,
  .grid-3,
  .catalog-grid,
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 4rem;
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    max-width: 500px;
    margin: 0 auto;
    order: -1;
     width: 100%; /* Aggiungi questa riga */
  }

  .hero-photo {
    min-height: 300px; /* Aumenta l'altezza minima */
  }
  .hero-text {
    text-align: center;
  }

  .partner-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .contact-form {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 2rem 0 4rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .header-inner {
    padding: 1rem 0;
  }

  .logo-name {
    font-size: 1.6rem;
  }
  
  .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
    .hero-photo {
    min-height: 280px; /* Mantieni un'altezza adeguata */
    border-radius: 20px;
  }
  
  .hero-image-card {
    padding: 1rem;
    border-radius: 24px;
    width: 100%; /* Assicurati che sia al 100% */
    max-width: 100%; /* Rimuovi la limitazione */
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .card {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .hero-photo {
    min-height: 250px;
    border-radius: 20px;
  }
  
  .hero-img-fallback {
    border-radius: 20px;
  }

  .hero-image-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .hero-badge {
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    z-index: 3;
  }

  .main-nav {
    max-width: 100%;
  }

  .grid-3 {
    gap: 1.5rem;
  }

  .catalog-grid {
    gap: 1.5rem;
  }

  .two-cols {
    gap: 2rem;
  }

  .partner-cta {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-photo {
    min-height: 250px;
  }
  
  .hero-img-fallback {
    border-radius: 20px;
  }
  
  .hero-image-card {
    max-width: 100%;
     width: 100%; /* Assicurati che occupi tutta la larghezza */
    margin: 0;
  }
}
