/* ===============================
   BOTTEGA DA FE - GASTRONOMIA 2.0
================================ */

.gastronomia-page {
  background: #f7f1e8;
  color: #20291f;
  font-family: 'Manrope', sans-serif;
}

/* HERO */

.ga-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #20311f;
}

.ga-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.44) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}

.ga-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 95px 0;
}

.ga-kicker {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #f1dfbd;
  margin-bottom: 22px;
}

.ga-kicker.dark {
  color: #b99456;
}

.ga-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: 860px;
  margin-bottom: 30px;
}

.ga-hero p {
  max-width: 720px;
  color: #f8f3ea;
  font-size: 1.22rem;
  line-height: 1.75;
}

/* INTRO */

.ga-intro {
  padding: 120px 0;
  background: #fffaf2;
}

.ga-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.ga-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 0.95;
}

.ga-intro p {
  color: #4b463d;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* CATEGORIE */

.ga-categories {
  padding: 120px 0;
  background: #f7f1e8;
}

.ga-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.ga-section-heading p {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #7b6a4a;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.ga-section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.ga-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ga-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(35, 35, 35, 0.10);
  background: #20311f;
}

.ga-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: 0.65s;
}

.ga-card:hover img {
  transform: scale(1.08);
}

.ga-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.30) 55%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.ga-card-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  color: white;
}

.ga-card-content span {
  color: #f1dfbd;
  font-weight: 800;
  letter-spacing: 3px;
}

.ga-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  line-height: 1;
  margin: 10px 0 14px;
}

.ga-card-content p {
  color: #f7f1e8;
  line-height: 1.65;
  font-size: 1rem;
}

/* WEEKEND */

.ga-weekend {
  padding: 120px 0;
  background: #fffaf2;
}

.ga-weekend-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.ga-weekend-text h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 26px;
}

.ga-weekend-text p {
  color: #4b463d;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.ga-weekend-box {
  display: grid;
  gap: 22px;
}

.ga-step {
  background: #f7f1e8;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid rgba(32, 49, 31, 0.08);
  transition: 0.3s;
}

.ga-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(35, 35, 35, 0.08);
}

.ga-step span {
  color: #b99456;
  font-weight: 800;
  letter-spacing: 4px;
}

.ga-step h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: 2rem;
  margin: 10px 0;
}

.ga-step p {
  color: #4b463d;
  line-height: 1.65;
}

/* SPECIAL */

.ga-special {
  padding: 120px 0;
  background: #20311f;
  color: white;
}

.ga-special-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
  align-items: center;
}

.ga-special-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.ga-special-text h2 {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.95;
  margin-bottom: 26px;
}

.ga-special-text p {
  color: #f7f1e8;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.ga-special-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.ga-special-list div {
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.14);
  padding: 24px;
  border-radius: 8px;
}

.ga-special-list h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #f1dfbd;
  font-size: 1.9rem;
  margin-bottom: 6px;
}

/* BUTTONS */

.ga-btn-primary,
.ga-btn-light,
.ga-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;
}

.ga-btn-primary {
  background: #20311f;
  color: white;
  margin-top: 14px;
}

.ga-btn-primary:hover {
  background: #b99456;
  transform: translateY(-3px);
}

/* CTA */

.ga-cta {
  background: #20311f;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.ga-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;
}

.ga-cta p {
  max-width: 700px;
  margin: 0 auto;
  color: #f7f1e8;
  font-size: 1.12rem;
  line-height: 1.75;
}

.ga-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.ga-btn-light {
  background: white;
  color: #20311f;
}

.ga-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.ga-btn-light:hover,
.ga-btn-outline-light:hover {
  transform: translateY(-3px);
}

.ga-btn-outline-light:hover {
  background: white;
  color: #20311f;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .ga-intro-grid,
  .ga-weekend-grid,
  .ga-special-grid {
    grid-template-columns: 1fr;
  }

  .ga-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {

  .ga-hero {
    min-height: 620px;
  }

  .ga-hero h1 {
    font-size: 4rem;
  }

  .ga-intro,
  .ga-categories,
  .ga-weekend,
  .ga-special,
  .ga-cta {
    padding: 80px 0;
  }

  .ga-category-grid {
    grid-template-columns: 1fr;
  }

  .ga-card,
  .ga-card img {
    min-height: 390px;
  }

  .ga-card-content h3 {
    font-size: 2.4rem;
  }

  .ga-special-image img {
    height: 390px;
  }

  .ga-cta-actions {
    flex-direction: column;
  }

  .ga-btn-light,
  .ga-btn-outline-light {
    width: 100%;
  }
}