/* ===== FRANCHISE LUXURY RESET ===== */

.franchise-page {
  background: #faf8f4;
  color: #1a1a1a;
  font-family: "Cormorant Garamond", serif;
}

/* HERO */
.franchise-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.franchise-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.franchise-hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
}

.franchise-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.franchise-hero p {
  font-size: 20px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* SECTIONS */
.franchise-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px;
}

.franchise-section h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.franchise-section p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 820px;
}

/* FEATURES */
.franchise-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  margin-top: 70px;
}

.franchise-feature h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.franchise-feature p {
  font-size: 18px;
  color: #444;
}

/* IMAGE */
.franchise-image {
  margin-top: 80px;
}

.franchise-image img {
  width: 100%;
  border-radius: 8px;
}

/* CTA */
.franchise-cta {
  background: #111;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.franchise-cta h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.franchise-cta a {
  display: inline-block;
  padding: 16px 44px;
  background: #b89b5e;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 20px;
}