/* ==========================================================
   Tenuta Le Colline · Azienda Agricola Toscana
   Demo realizzata da Future Is Now - futureisnow.cloud
   Palette: Verde oliva #5B7B3F | Terracotta #C75B39 | Crema #FAF7F0
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --olive:        #5B7B3F;
  --olive-dark:   #3D5429;
  --olive-light:  #A8C180;
  --olive-soft:   rgba(91, 123, 63, 0.10);
  --terra:        #C75B39;
  --terra-dark:   #A04428;
  --terra-soft:   rgba(199, 91, 57, 0.12);
  --bg:           #FAF7F0;
  --bg-warm:      #F3EDE0;
  --white:        #FFFFFF;
  --ink:          #2B2419;
  --ink-soft:     #6B6258;
  --border:       #E6DDD0;
  --shadow-sm:    0 1px 3px rgba(43, 36, 25, 0.07);
  --shadow-md:    0 4px 18px rgba(43, 36, 25, 0.11);
  --shadow-lg:    0 14px 40px rgba(43, 36, 25, 0.15);
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --container:    1200px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- NAV --- */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand-logo { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--olive-dark);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--transition);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--olive); }
.nav-cta {
  background: var(--olive);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 600 !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--olive-dark); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary { background: var(--olive); color: var(--white); }
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--olive-dark); border-color: var(--olive); }
.btn-ghost:hover { background: var(--olive-soft); }
.btn-outline { background: transparent; color: var(--olive-dark); border-color: var(--olive); border-radius: 9999px; }
.btn-outline:hover { background: var(--olive-soft); }
.btn-large { padding: 18px 44px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 14px; margin-top: 16px; }

/* --- HERO --- */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive-dark);
  background: var(--olive-soft);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero h1 em { color: var(--olive-dark); font-style: italic; }
.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--olive-dark);
  font-weight: 700;
}
.hero-trust span { font-size: 13px; color: var(--ink-soft); }
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(250, 247, 240, 0.96);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}
.hero-image-tag span { font-size: 28px; }
.hero-image-tag p { font-size: 13px; line-height: 1.4; color: var(--ink); }

/* --- INTRO STATEMENT --- */
.intro-statement {
  padding: 80px 0;
  background: var(--olive-dark);
  color: var(--white);
  text-align: center;
}
.intro-quote {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto;
}
.intro-quote em { color: var(--terra); font-style: italic; }

/* --- SECTIONS BASE --- */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-head h2 em { color: var(--olive-dark); font-style: italic; }
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* --- CHI SIAMO --- */
.section-chi { background: var(--bg); }
.chi-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.chi-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.chi-image img { width: 100%; height: 500px; object-fit: cover; }
.chi-text h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}
.chi-text h2 em { color: var(--olive-dark); font-style: italic; }
.chi-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.7;
}
.credentials { margin-top: 28px; border-top: 1px solid var(--border); padding-top: 20px; }
.credentials li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* --- PRODOTTI --- */
.section-prodotti { background: var(--white); }
.prodotti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prodotto-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.prodotto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.prodotto-card.featured {
  border-color: var(--olive);
  box-shadow: var(--shadow-md);
}
.prodotto-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terra);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}
.prodotto-img { position: relative; overflow: hidden; }
.prodotto-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prodotto-card:hover .prodotto-img img { transform: scale(1.04); }
.prodotto-body { padding: 24px; }
.prodotto-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-dark);
  background: var(--olive-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.prodotto-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.prodotto-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.prodotto-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--olive-dark);
}
.prodotto-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
}

/* --- VENDITA DIRETTA --- */
.section-vendita { background: var(--bg); }
.vendita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vendita-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.vendita-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.vendita-card.featured-card {
  border-color: var(--olive);
  box-shadow: var(--shadow-md);
}
.vendita-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--terra);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vendita-icon { font-size: 40px; margin-bottom: 18px; display: block; }
.vendita-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}
.vendita-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.vendita-card ul { margin-bottom: 24px; }
.vendita-card ul li {
  padding: 6px 0 6px 22px;
  font-size: 14px;
  position: relative;
  color: var(--ink);
}
.vendita-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}

/* --- ESPERIENZE --- */
.section-esperienze { background: var(--white); }
.esperienze-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.esperienza-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.esperienza-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.esperienza-img { overflow: hidden; }
.esperienza-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.esperienza-card:hover .esperienza-img img { transform: scale(1.04); }
.esperienza-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.esperienza-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra-dark);
  background: var(--terra-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.esperienza-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.esperienza-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.esperienza-info {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.esperienza-info span {
  font-size: 14px;
  font-weight: 600;
  color: var(--olive-dark);
}

/* --- TESTIMONIANZE --- */
.section-testi { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: var(--terra); margin-bottom: 16px; font-size: 18px; }
.testi-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 22px;
}
.testi-author { display: flex; gap: 14px; align-items: center; }
.testi-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testi-author strong { display: block; color: var(--ink); font-size: 15px; }
.testi-author span { font-size: 13px; color: var(--ink-soft); }

/* --- CTA BANNER --- */
.section-banner { padding: 60px 0; background: var(--bg-warm); }
.banner-inner {
  background: var(--olive-dark);
  color: var(--white);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}
.banner-inner h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.banner-inner h2 em { color: var(--terra); font-style: italic; }
.banner-inner p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.banner-inner .btn-primary { background: var(--terra); color: var(--white); border-color: transparent; }
.banner-inner .btn-primary:hover { background: var(--terra-dark); }

/* --- FAQ --- */
.section-faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  padding-right: 36px;
  position: relative;
  list-style: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--olive);
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 15px;
}

/* --- CONTATTI --- */
.section-contatti { background: var(--bg); }
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contatti-text h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.contatti-text h2 em { color: var(--olive-dark); font-style: italic; }
.contatti-text > p { color: var(--ink-soft); margin-bottom: 32px; line-height: 1.7; font-size: 1.05rem; }
.contatti-info { margin-bottom: 28px; }
.contatti-info > div {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.contatti-info span:first-child { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contatti-info strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 14px; }
.contatti-info div div { font-size: 15px; color: var(--ink-soft); }
.contatti-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contatti-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contatti-form label { display: block; margin-bottom: 18px; }
.contatti-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contatti-form input,
.contatti-form select,
.contatti-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  transition: var(--transition);
}
.contatti-form input:focus,
.contatti-form select:focus,
.contatti-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px var(--olive-soft);
  background: var(--white);
}
.form-check {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.form-check input { width: auto !important; margin-top: 3px; flex-shrink: 0; }
.form-promise {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

/* --- FOOTER --- */
.footer {
  background: var(--olive-dark);
  color: var(--white);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand-name { color: var(--white); display: block; margin-bottom: 4px; font-size: 20px; }
.footer .brand-sub { color: var(--olive-light); display: block; margin-bottom: 16px; }
.footer p { font-size: 14px; opacity: 0.85; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--terra);
  letter-spacing: 0.02em;
}
.footer ul li { padding: 4px 0; }
.footer a { font-size: 14px; opacity: 0.85; transition: var(--transition); }
.footer a:hover { opacity: 1; color: var(--terra); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- DEMO BADGE --- */
.demo-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #3AA6B9;
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(58, 166, 185, 0.4);
  font-size: 13px;
  max-width: 380px;
  z-index: 200;
}
.demo-badge a { color: var(--white); text-decoration: underline; font-weight: 600; }
.demo-badge a:hover { color: #caeef2; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .prodotti-grid { grid-template-columns: repeat(2, 1fr); }
  .vendita-grid { grid-template-columns: 1fr; }
  .esperienze-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid,
  .chi-grid,
  .contatti-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.4rem; }
  .chi-text h2,
  .contatti-text h2,
  .banner-inner h2 { font-size: 2rem; }
  .section-head h2,
  .intro-quote { font-size: 1.7rem; }
  section { padding: 60px 0; }

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-200%);
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }

  .prodotti-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .hero-image img { height: 360px; }
  .chi-image img { height: 320px; }
  .banner-inner { padding: 40px 24px; }
  .contatti-form-wrap { padding: 24px 20px; }
  .demo-badge { right: 8px; left: 8px; max-width: none; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
