/* ===============================
   BOTTEGA DA FE - CHI SIAMO 2.0
================================ */

.chi-page {
  background: #f7f1e8;
  color: #20291f;
  font-family: 'Manrope', sans-serif;
}

/* HERO */

.cs-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #20311f;
}

.cs-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.43) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}

.cs-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 95px 0;
}

.cs-kicker {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #f1dfbd;
  margin-bottom: 22px;
}

.cs-kicker.dark {
  color: #b99456;
}

.cs-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.2rem, 7.5vw, 7.6rem);
  line-height: 0.9;
  font-weight: 600;
  max-width: 850px;
  margin-bottom: 30px;
}

.cs-hero p {
  max-width: 700px;
  color: #f8f3ea;
  font-size: 1.22rem;
  line-height: 1.75;
}

/* INTRO */

.cs-intro {
  padding: 120px 0;
  background: #fffaf2;
}

.cs-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.cs-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 0.95;
}

.cs-intro p {
  color: #4b463d;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* STORY */

.cs-story {
  padding: 120px 0;
  background: #f7f1e8;
}

.cs-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cs-story-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.cs-story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.95;
  margin-bottom: 26px;
}

.cs-story-text p {
  color: #4b463d;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

/* BUTTONS */

.cs-btn-primary,
.cs-btn-light,
.cs-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 4px;
  font-weight: 800;
  transition: 0.3s;
}

.cs-btn-primary {
  background: #20311f;
  color: white;
  margin-top: 14px;
}

.cs-btn-primary:hover {
  background: #b99456;
  transform: translateY(-3px);
}

/* VALUES */

.cs-values {
  padding: 120px 0;
  background: #fffaf2;
}

.cs-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.cs-section-heading p {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #7b6a4a;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cs-section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.cs-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cs-value-card {
  background: #f7f1e8;
  padding: 42px;
  border-radius: 8px;
  border: 1px solid rgba(32, 49, 31, 0.08);
  box-shadow: 0 18px 45px rgba(35, 35, 35, 0.06);
  transition: 0.3s;
}

.cs-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(35, 35, 35, 0.10);
}

.cs-value-card span {
  color: #b99456;
  font-weight: 800;
  letter-spacing: 4px;
}

.cs-value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: 2.35rem;
  margin: 14px 0;
}

.cs-value-card p {
  color: #4b463d;
  line-height: 1.75;
}

/* LAB */

.cs-lab {
  padding: 120px 0;
  background: #20311f;
  color: white;
}

.cs-lab-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 75px;
  align-items: center;
}

.cs-lab-text h2 {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.95;
  margin-bottom: 26px;
}

.cs-lab-text p {
  color: #f7f1e8;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.cs-lab .cs-btn-primary {
  background: white;
  color: #20311f;
}

.cs-lab .cs-btn-primary:hover {
  background: #b99456;
  color: white;
}

.cs-lab-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

/* BOTTEGHE */

.cs-botteghe {
  padding: 120px 0;
  background: #f7f1e8;
}

.cs-botteghe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.cs-botteghe-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.cs-botteghe-content h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.95;
  margin-bottom: 26px;
}

.cs-botteghe-content > p {
  color: #4b463d;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.cs-botteghe-list {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.cs-bottega-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fffaf2;
  border: 1px solid rgba(32, 49, 31, 0.08);
  padding: 22px;
  border-radius: 8px;
}

.cs-bottega-item span {
  font-size: 1.55rem;
  line-height: 1;
}

.cs-bottega-item h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.cs-bottega-item p {
  color: #4b463d;
  line-height: 1.6;
}

/* CTA */

.cs-cta {
  background: #20311f;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.cs-cta h2 {
  max-width: 900px;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1;
  color: white;
}

.cs-cta p {
  max-width: 700px;
  margin: 0 auto;
  color: #f7f1e8;
  font-size: 1.12rem;
  line-height: 1.75;
}

.cs-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.cs-btn-light {
  background: white;
  color: #20311f;
}

.cs-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.cs-btn-light:hover,
.cs-btn-outline-light:hover {
  transform: translateY(-3px);
}

.cs-btn-outline-light:hover {
  background: white;
  color: #20311f;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .cs-intro-grid,
  .cs-story-grid,
  .cs-values-grid,
  .cs-lab-grid,
  .cs-botteghe-grid {
    grid-template-columns: 1fr;
  }

  .cs-lab-image {
    order: -1;
  }
}

@media (max-width: 760px) {

  .cs-hero {
    min-height: 650px;
  }

  .cs-hero h1 {
    font-size: 4rem;
  }

  .cs-intro,
  .cs-story,
  .cs-values,
  .cs-lab,
  .cs-botteghe,
  .cs-cta {
    padding: 80px 0;
  }

  .cs-story-image img,
  .cs-lab-image img,
  .cs-botteghe-image img {
    height: 390px;
  }

  .cs-value-card {
    padding: 32px;
  }

  .cs-cta-actions {
    flex-direction: column;
  }

  .cs-btn-light,
  .cs-btn-outline-light {
    width: 100%;
  }
}