:root{
  --bg: #fbf6ee;
  --bg2: #fffdf8;
  --surface: #ffffff;
  --text: #2a1f16;
  --muted: #6d5b4b;
  --line: rgba(42,31,22,.10);
  --shadow: 0 12px 34px rgba(27,18,10,.10);
  --shadow-soft: 0 10px 24px rgba(27,18,10,.08);
  --brand: #f07a21;
  --brand2: #f5b225;
  --radius: 18px;
  --radius-sm: 14px;
  --pad: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(240,122,33,.20), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(245,178,37,.18), transparent 50%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(1120px, calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

.section{
  padding: clamp(56px, 7vw, 92px) 0;
}

.section.soft{
  background:
    radial-gradient(900px 500px at 70% 0%, rgba(245,178,37,.13), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.35));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.section-head h2{ margin: 0; font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.02em; }
.section-head p{ margin: 0; color: var(--muted); max-width: 72ch; line-height: 1.55; }

.lead{ color: var(--muted); line-height: 1.65; max-width: 72ch; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,246,238,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand-logo{
  width: 160px;
  height: auto;
}

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  color: rgba(42,31,22,.82);
}
.nav a{
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(240,122,33,.10);
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(27,18,10,.06);
}
.icon-btn svg{
  width: 22px;
  height: 22px;
  fill: rgba(42,31,22,.86);
}
.icon-btn:hover{
  background: rgba(240,122,33,.10);
  border-color: rgba(240,122,33,.22);
}

.lang-switch{
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.lang-btn{
  border: 0;
  background: transparent;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  color: rgba(42,31,22,.70);
}
.lang-btn.is-active{
  background: rgba(240,122,33,.14);
  color: rgba(42,31,22,.95);
}

.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  cursor: pointer;
  padding: 10px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
}
.hamburger span{
  height: 2px;
  background: rgba(42,31,22,.80);
  border-radius: 99px;
}
.hamburger:hover{ background: rgba(240,122,33,.10); }

.mobile-nav{
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px var(--pad) 14px;
  border-top: 1px solid var(--line);
}
.mobile-nav a{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(42,31,22,.06);
}
.mobile-nav a:hover{ background: rgba(240,122,33,.10); }
.mobile-nav.is-open{ display: grid; }

.hero{
  padding-top: clamp(34px, 4vw, 60px);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}

.badge{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.60);
  color: rgba(42,31,22,.78);
  font-weight: 700;
  font-size: 13px;
}

.hero-title{
  margin: 14px 0 10px;
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero-title .accent{
  display: block;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  max-width: 64ch;
}

.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #1d130c;
  border-color: rgba(42,31,22,.12);
  box-shadow: 0 12px 26px rgba(240,122,33,.20);
}
.btn.primary:hover{ transform: translateY(-1px); }

.btn.secondary{
  background: rgba(255,255,255,.72);
  border-color: rgba(42,31,22,.12);
  color: rgba(42,31,22,.90);
}
.btn.secondary:hover{
  background: rgba(240,122,33,.10);
  border-color: rgba(240,122,33,.18);
}

.btn.ghost{
  background: transparent;
  border-color: rgba(42,31,22,.16);
  color: rgba(42,31,22,.86);
}
.btn.ghost:hover{ background: rgba(255,255,255,.55); }

.btn.full{ width: 100%; }

.meta-row{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.meta-item{
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(42,31,22,.75);
  font-weight: 650;
}
.meta-item svg{
  width: 18px;
  height: 18px;
  fill: rgba(240,122,33,.90);
}

.hero-visual{
  position: relative;
  display: grid;
  place-items: center;
}
.hero-card{
  width: min(460px, 100%);
  border-radius: 28px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(42,31,22,.10);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card img{
  border-radius: 22px;
  height:100%;
}

.float-chip{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(42,31,22,.12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 22px rgba(27,18,10,.10);
  font-weight: 800;
  color: rgba(42,31,22,.86);
}
.float-chip .dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}

.split-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}

.img-card{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(42,31,22,.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.70);
}
.img-card img{
  width: 100%;
  height: auto;
}

.feature-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.feature-list li{
  display: grid;
  gap: 4px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.60);
}
.feature-list strong{
  font-size: 14px;
  letter-spacing: .01em;
}
.feature-list span{
  color: var(--muted);
  line-height: 1.55;
}

.note{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(240,122,33,.18);
  background: rgba(240,122,33,.08);
  color: rgba(42,31,22,.86);
  line-height: 1.55;
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 30px rgba(27,18,10,.08);
  display: grid;
}
.card-media{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(42,31,22,.10);
}
.card-media img{
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pill{
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(42,31,22,.10);
}
.card-body{
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}
.card-body h3{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card-body p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.subtle{
  color: rgba(42,31,22,.64);
  font-weight: 700;
  font-size: 13px;
}
.text-link{
  margin-top: 2px;
  font-weight: 900;
  color: rgba(240,122,33,.98);
}
.text-link:hover{ text-decoration: underline; }

.kids-highlight{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 18px;
}
.kids-card{
  border-radius: 22px;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.65);
  padding: 14px 14px;
  box-shadow: 0 14px 28px rgba(27,18,10,.06);
}
.kids-card h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.kids-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.collect-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.collect-item{
  border: 1px solid rgba(42,31,22,.10);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(27,18,10,.06);
  transition: transform .15s ease;
}
.collect-item:hover{ transform: translateY(-2px); }
.collect-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.franchise-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.callout{
  margin-top: 16px;
  border-radius: 22px;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.60);
  padding: 14px 14px;
}
.callout h3{ margin: 0 0 8px; font-size: 16px; }
.callout ul{ margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.6; }

.franchise-form{
  border-radius: 26px;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.franchise-form h3{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.field{
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
label{
  font-weight: 850;
  font-size: 13px;
  color: rgba(42,31,22,.86);
}
input, textarea{
  border-radius: 16px;
  border: 1px solid rgba(42,31,22,.14);
  background: rgba(255,255,255,.80);
  padding: 12px 12px;
  font: inherit;
  color: var(--text);
  outline: none;
}
textarea{ resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(240,122,33,.42);
  box-shadow: 0 0 0 4px rgba(240,122,33,.14);
}

.locations-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}
.loc-card{
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.65);
  padding: 14px 14px;
}
.loc-title{ font-weight: 900; margin-bottom: 6px; }
.loc-address{ color: rgba(42,31,22,.78); font-weight: 750; }
.loc-hint{ color: var(--muted); margin-top: 6px; line-height: 1.55; }

.map-placeholder{
  border-radius: 26px;
  border: 1px dashed rgba(42,31,22,.22);
  background: rgba(255,255,255,.40);
  display: grid;
  place-items: center;
  min-height: 320px;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 oran */
  height: 0;
  overflow: hidden;
}
.map-placeholder iframe{
   position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-inner{
  text-align: center;
  padding: 18px;
}
.map-pin{ font-size: 26px; }
.map-text{ margin-top: 6px; color: var(--muted); font-weight: 800; }

.contact-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}
.contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.contact-card{
  border-radius: 26px;
  border: 1px solid rgba(42,31,22,.10);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.contact-row{
  display: grid;
  gap: 6px;
}
.contact-row strong{ font-weight: 950; }
.contact-row a{ font-weight: 900; color: rgba(240,122,33,.98); }
.divider{
  height: 1px;
  background: rgba(42,31,22,.10);
  margin: 12px 0;
}

.site-footer{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  padding: 26px 0;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr .6fr;
  gap: 14px;
  align-items: center;
}
.footer-links{
  display: grid;
  gap: 8px;
  justify-items: start;
}
.footer-links a{
  font-weight: 850;
  color: rgba(42,31,22,.74);
}
.footer-links a:hover{ color: rgba(240,122,33,.98); }
.footer-right{
  display: grid;
  justify-items: end;
  gap: 8px;
}

.tiny{
  margin: 12px 0 0;
  font-size: 12.5px;
  color: rgba(42,31,22,.62);
  line-height: 1.55;
}

.modal{
  border: 0;
  border-radius: 24px;
  padding: 0;
  width: min(920px, calc(100% - 36px));
  background: rgba(255,255,255,.94);
  box-shadow: 0 26px 60px rgba(27,18,10,.28);
}
.modal::backdrop{
  background: rgba(20,14,10,.55);
}
.modal img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.modal-close{
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(42,31,22,.16);
  background: rgba(255,255,255,.86);
  border-radius: 14px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.toast{
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(720px, calc(100% - 32px));
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(42,31,22,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(27,18,10,.18);
  color: rgba(42,31,22,.86);
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-2px);
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display: none; }
  .hamburger{ display: flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .split-grid{ grid-template-columns: 1fr; }
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .kids-highlight{ grid-template-columns: 1fr; }
  .collect-grid{ grid-template-columns: repeat(2, 1fr); }
  .franchise-grid{ grid-template-columns: 1fr; }
  .locations-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-right{ justify-items: start; }
  .brand-logo{ width: 140px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn, .collect-item, .toast{ transition: none; }
}
