:root{
  --bg: #F5EFE6;
  --bg-soft: #EFE6D8;
  --card: #FFFFFF;
  --text: #2E2A26;
  --muted: #6F675E;
  --accent: #C97A2B;
  --border: rgba(46,42,38,.15);
  --shadow: 0 10px 24px rgba(46,42,38,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 10% -10%, #FFF7EA, transparent 60%),
    radial-gradient(900px 500px at 110% 0%, #EAD7BD, transparent 55%),
    var(--bg);
}

/* ================= HEADER  ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245,239,230,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}

.header-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 18px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 1000;
}

.brand-left{ justify-self: start; }

.brand-text{ font-size:18px; }

.brand-center{
  display:none;
  justify-self:center;
  align-items:center;
  gap:12px;

  font-weight: 1000;
  font-size: clamp(18px, 5.2vw, 30px);
  line-height: 1;
  white-space: nowrap;

  color: #fff;
  text-decoration: none;
  text-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.brand-emoji{ font-size: 20px; }

.nav-pill{
  justify-self: center;
  display:flex;
  gap:6px;
  padding:6px;
  border-radius:16px;
  background: rgba(46,42,38,.05);
}

.nav-pill a{
  padding:10px 16px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  color:var(--text);
}

.nav-pill a:hover,
.nav-pill a.active{
  background: rgba(201,122,43,.18);
}

.lang-btn{
  justify-self: end;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* burger */
.burger{
  display:none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  cursor:pointer;
  position: relative;
}
.burger span{
  position:absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #111;
  border-radius: 3px;
}
.burger span:nth-child(1){ top: 16px; }
.burger span:nth-child(2){ top: 25px; }
.burger span:nth-child(3){ top: 34px; }

/* drawer */
.drawer{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
}
.drawer.open{ display:block; }

.drawer-card{
  position:absolute;
  top: calc(env(safe-area-inset-top) + 78px);
  left: 12px;
  right: 12px;
  background: var(--card);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  border: 1px solid var(--border);
}

.drawer-nav{
  display:grid;
  gap:10px;
}
.drawer-nav a{
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--text);
  font-weight: 900;
  background: rgba(46,42,38,.03);
  border: 1px solid rgba(46,42,38,.10);
}
.drawer-nav a.active{
  background: rgba(201,122,43,.14);
  border-color: rgba(201,122,43,.25);
}

.no-scroll{
  overflow:hidden !important;
  height:100vh !important;
}

/* mobile header */
@media (max-width: 860px){
  .nav-pill{ display:none; }
  .burger{ display:block; }
  .brand-left{ display:none; }
  .brand-center{ display:inline-flex; }

  .site-header{
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
  }

  .header-inner{
    margin: 14px 14px;
    padding: 14px 14px;

    grid-template-columns: 64px minmax(0,1fr) 64px;
    align-items: center;
    gap: 12px;

    border-radius: 28px;
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 34px 80px rgba(0,0,0,.25);
    backdrop-filter: blur(22px);

    max-width: calc(100vw - 28px);
  }

  .lang-btn{
    width: 64px;
    height: 64px;
    padding: 0;

    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.86);
    box-shadow: 0 22px 50px rgba(0,0,0,.18);

    font-weight: 1000;
    font-size: 22px;
    color: #1E7BE6;
  }

  .burger{
    width: 64px;
    height: 64px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.80);
    box-shadow: 0 22px 50px rgba(0,0,0,.18);
  }

  .burger span{
    left: 18px;
    right: 18px;
    height: 3px;
    background: #111;
  }
  .burger span:nth-child(1){ top: 20px; }
  .burger span:nth-child(2){ top: 30px; }
  .burger span:nth-child(3){ top: 40px; }
}

/* ================= PAGE ================= */
.wrap{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 18px 0 28px;
}

/* Hero */
.hero{
  margin-top: 8px;
}

.kicker{
  display:inline-flex;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(46,42,38,.65);
  margin-bottom: 10px;
}

.hero__title{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  color:#171513;
}

.hero__sub{
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
  max-width: 70ch;
}

.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration:none;
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor:pointer;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--solid{
  background: linear-gradient(180deg, rgba(201,122,43,.18), rgba(201,122,43,.08));
  border-color: rgba(201,122,43,.35);
  color: #4a2c12;
}
.btn--ghost{ background: rgba(46,42,38,.04); }
.w100{ width:100%; }

.divider{
  height: 1px;
  background: rgba(46,42,38,.12);
  margin: 12px 0;
}

.muted{ color: var(--muted); }

/*  2-column layout */
.franchise-layout{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}


.contact-card{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;

  position: sticky;
  top: 92px;
  display:flex;
  flex-direction: column;
  gap:10px;
}

.contact-card h3{
  margin:0;
  font-weight: 1000;
  font-size: 15px;
}
.contact-card p{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mini{ display:grid; gap:10px; }
.mini__row{ display:flex; justify-content:space-between; gap:10px; font-size: 12px; }
.mini__k{ color: rgba(46,42,38,.70); font-weight: 900; }
.mini__v{ font-weight: 900; }

@media (max-width: 980px){
  .franchise-layout{ grid-template-columns: 1fr; }
  .contact-card{ position: static; }
}

/* Sections */
.section{
  margin-top: 26px;
  display:grid;
  gap:12px;
}

.section__head{ display:grid; gap:6px; }

.section__title{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.06;
}

.section__sub{
  margin:0;
  color: var(--muted);
  line-height: 1.5;
  max-width: 70ch;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
@media (max-width: 980px){
  .steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .steps{ grid-template-columns: 1fr; }
}

.step{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
  min-height: 140px;
  display:flex;
  flex-direction: column;
  gap:8px;
}
.step__no{
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(46,42,38,.55);
}
.step__title{ margin:0; font-weight: 1000; font-size: 14px; }
.step__text{ margin:0; color: var(--muted); line-height: 1.5; font-size: 13px; }

/* Accordion */
.accordion{ display:grid; gap:10px; }

.acc{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.acc__sum{
  list-style: none;
  cursor:pointer;
  padding: 14px 46px 14px 14px;
  font-weight: 1000;
  position: relative;
  user-select:none;
}
.acc__sum::-webkit-details-marker{ display:none; }

.acc__sum::after{
  content:"";
  position:absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid rgba(46,42,38,.75);
  border-bottom: 2.5px solid rgba(46,42,38,.75);
  transform: translateY(-60%) rotate(45deg);
  transition: transform .18s ease;
}
.acc[open] .acc__sum::after{
  transform: translateY(-35%) rotate(-135deg);
}

.acc__body{
  padding: 0 14px 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  border-top: 1px solid rgba(46,42,38,.10);
}

/* Footer */
.footer{
  margin-top: 26px;
  padding: 16px 0 6px;
  border-top: 1px solid var(--border);
  display:grid;
  gap:10px;
  text-align:center;
  color: var(--muted);
}
.footer__links{
  display:flex;
  gap:10px;
  justify-content:center;
}
.iconlink{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size: 18px;
}
.footer__note{ margin:0; font-size: 12px; }

/* ================= WHY FRANCHISE ================= */
.why-franchise{
  margin: 18px 0 22px;
}

.why-franchise__card{
  background: rgba(255,255,255,.62);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.why-franchise__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 1000;
  color: #3A332C;
  letter-spacing: .2px;
}

.why-franchise__text{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.7;
}

.why-franchise__kicker{
  margin-top: 8px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,122,43,.25);
  background: rgba(201,122,43,.12);
  color: #7A4617;
  font-weight: 1000;
}

.why-franchise__list{
  margin: 12px 0 10px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.why-franchise__list li{
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(46,42,38,.10);
  background: rgba(46,42,38,.03);
  color: #3A332C;
  font-weight: 900;
}

.why-franchise__final{
  margin-top: 10px;
  text-align: center;
  font-weight: 1000;
  color: #3A332C;
  padding: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(46,42,38,.22);
  background: rgba(255,255,255,.75);
}

@media(max-width: 860px){
  .why-franchise__title{ font-size: 18px; }
  .why-franchise__text{ font-size: 14px; }
}
