/* ============ FRANCHISE PAGE ============ */

.nav-links li a[href="index.html"]{ opacity:0.85; }

/* ---------- hero ---------- */
.fr-hero{
  position:relative; height:100vh; width:100%; overflow:hidden;
  display:flex; align-items:center; justify-content:center; text-align:center;
}
.fr-hero-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:saturate(0.85) brightness(0.5);
}
.fr-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.35) 40%, rgba(10,8,6,0.92) 100%);
}
.fr-hero-content{ position:relative; z-index:2; max-width:760px; padding:0 24px; }
.fr-hero-content h1{
  font-family:var(--serif); font-weight:500; font-size:clamp(36px,6vw,72px); line-height:1.15;
  color:var(--cream); margin-top:16px;
}
.fr-hero-sub{ margin-top:24px; font-size:18px; line-height:1.7; color:rgba(237,227,207,0.75); }
.fr-hero-content .btn-gold{ margin-top:34px; }

/* ---------- concept ---------- */
.fr-concept{
  display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;
  max-width:1200px; margin:0 auto; padding:140px 6vw;
}
.fr-concept-text h2{ font-family:var(--serif); font-weight:500; font-size:clamp(28px,3.4vw,40px); color:var(--cream); margin:14px 0 20px; }
.fr-concept-text .lede{ font-size:17px; line-height:1.7; color:rgba(237,227,207,0.7); margin-bottom:16px; }
.fr-concept-text p{ font-size:15px; line-height:1.75; color:rgba(237,227,207,0.6); }
.fr-concept-media img{
  width:100%; border-radius:8px; border:1px solid rgba(201,162,75,0.35); box-shadow:0 30px 60px rgba(0,0,0,0.6);
}

/* ---------- formats ---------- */
.fr-formats{ background:var(--black-2); padding:0 6vw 140px; }
.fr-format-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); max-width:1200px; margin:0 auto; }
.fr-format-card{ background:var(--black-2); padding:48px 34px; transition:background .4s ease; }
.fr-format-card:hover{ background:var(--black-3); }
.fr-format-num{ font-family:var(--serif); font-size:34px; color:var(--gold-dark); }
.fr-format-card h3{ font-family:var(--serif); font-size:24px; font-weight:500; margin:12px 0 12px; color:var(--cream); }
.fr-format-card p{ font-size:14px; line-height:1.7; color:rgba(237,227,207,0.6); }

/* ---------- gallery ---------- */
.fr-gallery-section{ padding:140px 6vw; }
.fr-gallery{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:320px; gap:20px; max-width:1200px; margin:0 auto; }
.fr-gallery-item{ position:relative; border-radius:8px; overflow:hidden; box-shadow:0 24px 50px rgba(0,0,0,0.55); }
.fr-gallery-item.wide{ grid-column:span 2; }
.fr-gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.fr-gallery-item:hover img{ transform:scale(1.05); }
.fr-gallery-item figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:20px 22px;
  background:linear-gradient(0deg, rgba(6,5,3,0.9), transparent);
  font-family:var(--body); font-size:14px; color:rgba(237,227,207,0.85); line-height:1.5;
}
.fr-gallery-item figcaption span{
  display:block; font-family:var(--sans); font-size:11px; letter-spacing:0.2em; color:var(--gold); margin-bottom:6px;
}

/* ---------- included ---------- */
.fr-included{ background:var(--black-2); padding:140px 6vw; }
.fr-included-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:44px; max-width:1200px; margin:0 auto; }
.fr-included-item{ border-top:1px solid var(--line); padding-top:24px; }
.fr-included-num{ font-family:var(--serif); font-size:22px; color:var(--gold-dark); }
.fr-included-item h4{ font-family:var(--serif); font-size:20px; font-weight:500; margin:10px 0 12px; color:var(--cream); }
.fr-included-item p{ font-size:14px; line-height:1.7; color:rgba(237,227,207,0.6); }

/* ---------- apply form ---------- */
.fr-form{ max-width:560px; margin:0 auto; display:flex; flex-direction:column; gap:16px; }
.fr-form-row{ display:flex; gap:16px; }
.fr-form input, .fr-form select, .fr-form textarea{
  flex:1; background:rgba(255,255,255,0.02); border:1px solid var(--gold); border-radius:2px;
  padding:14px 16px; color:var(--cream); font-family:var(--body); font-size:15px; outline:none; resize:none;
}
.fr-form input::placeholder, .fr-form textarea::placeholder{ color:rgba(237,227,207,0.4); }
.fr-form select{ color:rgba(237,227,207,0.6); appearance:none; }
.fr-form select:valid{ color:var(--cream); }
.fr-form .btn-gold{ align-self:center; margin-top:6px; border:1px solid var(--gold); background:none; }

@media (max-width:900px){
  .fr-concept{ grid-template-columns:1fr; gap:40px; padding:100px 6vw; }
  .fr-format-grid{ grid-template-columns:1fr; }
  .fr-gallery{ grid-template-columns:1fr 1fr; grid-auto-rows:220px; }
  .fr-gallery-item.wide{ grid-column:span 2; }
  .fr-included-grid{ grid-template-columns:1fr 1fr; gap:30px 24px; }
  .fr-form-row{ flex-direction:column; }
}
@media (max-width:560px){
  .fr-gallery{ grid-template-columns:1fr; }
  .fr-gallery-item.wide{ grid-column:span 1; }
  .fr-included-grid{ grid-template-columns:1fr; }
}
