/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0f0d0b;
  --bg-soft: #1a1612;
  --cream: #f6efe4;
  --cream-soft: #ece2cf;
  --accent: #d94f1e;
  --accent-2: #f2a93b;
  --accent-deep: #8a2a08;
  --text: #1c1815;
  --text-soft: #4a4036;
  --muted: #8a7d6e;
  --line: rgba(28,24,21,0.1);
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-md: 0 18px 40px rgba(0,0,0,0.18);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.28);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
input, select, textarea, button { font-family: var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 600; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 30px rgba(217,79,30,0.35); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(217,79,30,0.45); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost-dark:hover { background: var(--text); color: #fff; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(15,13,11,0.92);
  backdrop-filter: blur(14px);
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 110px; width: auto;
  transition: height .3s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)) brightness(0) invert(1);
}
.nav.scrolled .nav-logo img { height: 78px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: #fff; font-weight: 500; font-size: 0.95rem;
  font-family: var(--sans);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--accent-2); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 180px 24px 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,9,7,0.55) 0%, rgba(15,9,7,0.45) 40%, rgba(15,9,7,0.85) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(242,169,59,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(217,79,30,0.2), transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.hero-logo {
  height: 460px; width: auto; margin: 0 auto 32px;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,0.65));
}
.hero h1 { color: #fff; margin-bottom: 24px; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero h1 span { color: var(--accent-2); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  max-width: 680px; margin: 0 auto 40px;
  font-weight: 300;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.4); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span {
  width: 4px; height: 8px; background: rgba(255,255,255,0.7); border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============ ABOUT ============ */
.about { background: var(--cream); padding: 120px 0; position: relative; }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 28px; }
.about-text h2 em { color: var(--accent); font-style: italic; }
.about-text p { color: var(--text-soft); margin-bottom: 18px; font-size: 1.15rem; line-height: 1.7; }
.about-text strong { color: var(--text); font-weight: 600; }
.about-quote {
  margin-top: 32px !important;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--cream-soft);
  border-radius: 0 12px 12px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--text) !important;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat {
  background: #fff;
  padding: 36px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 500; }

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 16px; }
.section-sub { color: var(--text-soft); font-size: 1.05rem; }

/* ============ MENU ============ */
.menu { background: var(--bg-soft); color: var(--cream); padding: 120px 0; }
.menu .eyebrow { color: var(--accent-2); }
.menu h2, .menu .section-sub, .menu h3 { color: var(--cream); }
.menu .section-sub { opacity: 0.75; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242,169,59,0.45);
  background: rgba(255,255,255,0.06);
}
.product-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}
.product-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-photo img { transform: scale(1.06); }
.product-body { padding: 22px 24px 26px; text-align: center; }
.product-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-2);
}
.product-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(246,239,228,0.82);
}

.combo-head {
  text-align: center;
  margin: 80px auto 40px;
  max-width: 720px;
}
.combo-head h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.combo-head h3::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px auto 0;
}
.combo-head p { color: rgba(246,239,228,0.7); font-size: 0.98rem; }
.product-grid-combo { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); max-width: 800px; margin: 0 auto; }

.menu-social { margin-top: 90px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.menu-social-title {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--cream);
  margin-bottom: 32px;
}
.menu-social-title::after {
  content: ""; display: block;
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px auto 0;
}
.story-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.story-item {
  flex: 0 1 200px;
  min-width: 160px;
  max-width: 230px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #000;
  box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
}
.story-item::before {
  content: "";
  position: absolute; inset: -3px;
  background: conic-gradient(from 180deg, var(--accent), var(--accent-2), var(--accent));
  border-radius: 25px;
  z-index: -1;
}
.story-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.story-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.story-item:hover img { transform: scale(1.05); }
.menu-social-ig { text-align: center; font-size: 1rem; }
.menu-social-ig a { color: var(--accent-2); font-weight: 600; }
@media (max-width: 540px) {
  .story-item { flex: 0 1 calc(50% - 9px); min-width: 140px; }
}

/* ============ DELIVERY & PAYMENT ============ */
.delivery { background: var(--cream); padding: 100px 0; }
.delivery-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  border-top: 4px solid var(--accent);
  margin-bottom: 28px;
}
.delivery-card:last-child { margin-bottom: 0; }
.delivery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.delivery-card-center { text-align: center; }
.delivery-card-center .dc-icon { display: block; }
.delivery-card-center p { max-width: 640px; margin: 0 auto 28px; }
.dc-icon { font-size: 2.6rem; margin-bottom: 14px; }
.delivery-card h3 { margin-bottom: 12px; }
.delivery-card p { color: var(--text-soft); margin-bottom: 24px; }

.brand-row { display: flex; flex-wrap: wrap; gap: 16px; }
.brand-row-center { justify-content: center; }
.brand-chip {
  display: inline-flex;
  align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 20px;
  height: 84px;
  min-width: 140px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;
}
a.brand-chip { cursor: pointer; }
.brand-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); border-color: rgba(217,79,30,0.3); }
.brand-chip img {
  max-height: 56px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============ BRANCHES ============ */
.branches { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%); padding: 120px 0; }
.branch-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.branch-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  display: flex; flex-direction: column;
}
.branch-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s ease;
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.branch-card:hover::before { transform: scaleY(1); }
.branch-card.is-hq { background: linear-gradient(135deg, #fff8ef 0%, #fff 100%); border-color: rgba(217,79,30,0.2); }
.branch-card.is-hq::before { transform: scaleY(1); }
.branch-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.branch-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.branch-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.branch-addr { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; flex: 1; }
.branch-phone {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}
.branch-phone a { color: var(--accent); }

/* ============ BOWLITA ============ */
.bowlita { background: var(--bg); color: var(--cream); padding: 120px 0; }
.bowlita .section-sub { color: rgba(246,239,228,0.78); }
.bowlita .section-head { margin-bottom: 50px; }
.bowlita-logo {
  display: block;
  margin: 0 auto 22px;
  height: 110px; width: auto;
  filter: invert(1) drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}
.bowl-photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto 70px;
}
.bowl-photo {
  flex: 0 1 280px;
  min-width: 220px;
}
@media (max-width: 720px) {
  .bowl-photo-grid { max-width: 560px; }
  .bowl-photo { flex: 0 1 calc(50% - 12px); }
}
@media (max-width: 460px) {
  .bowl-photo { flex: 0 1 100%; }
}
.bowl-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  aspect-ratio: 4 / 5;
}
.bowl-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.bowl-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
}
.bowl-photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bowl-photo:hover img { transform: scale(1.06); }

.sauces {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto 70px;
}
.sauces-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent-2);
  margin-bottom: 22px;
}
.sauce-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 16px; }
.sauce-pill {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(242,169,59,0.14);
  border: 1px solid rgba(242,169,59,0.35);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
}
.sauces-note { font-size: 0.88rem; color: rgba(246,239,228,0.6); font-style: italic; }

.bowlita-posts { max-width: 1100px; margin: 0 auto; }
.bowlita-posts-title {
  font-family: var(--serif);
  text-align: center;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0.85;
}
.bowlita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.bowlita-grid .menu-item { aspect-ratio: 1 / 1; }
.bowlita-ig { text-align: center; font-size: 1rem; }
.bowlita-ig a { color: var(--accent-2); font-weight: 600; }

/* ============ FRANCHISING ============ */
.franchising {
  background:
    linear-gradient(135deg, rgba(217,79,30,0.95), rgba(138,42,8,0.95)),
    url("assets/menu-products/kavurma-pilav.jpg") center/cover;
  background-blend-mode: multiply;
  color: #fff;
  padding: 120px 0;
}
.franchising .eyebrow { color: #ffd99c; }
.franchising h2, .franchising h3 { color: #fff; }
.franc-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; align-items: center; }
.franc-text p { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 24px; max-width: 540px; }
.franc-list { list-style: none; margin-bottom: 32px; }
.franc-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}
.check {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.franc-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.franc-stat { text-align: center; }
.fs-num { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #ffd99c; margin-bottom: 6px; line-height: 1; }
.fs-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.85); }

/* ---- Modal ---- */
.modal {
  position: fixed; inset: 0; z-index: 250;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.modal.active { display: flex; }
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-panel {
  position: relative;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  width: 100%;
  max-width: 880px;
  margin: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--text);
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .2s;
  z-index: 2;
}
.modal-close:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }
body.modal-open { overflow: hidden; }

/* ---- Franchise Form ---- */
.franc-form-wrap {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 48px;
}
.franc-form-head { text-align: center; margin-bottom: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }
.franc-form-head h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); margin-bottom: 12px; }
.franc-form-head p { color: var(--text-soft); }

.franc-form fieldset { border: none; margin-bottom: 32px; }
.franc-form legend {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--cream-soft);
  width: 100%;
}
.ff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
.ff { display: flex; flex-direction: column; gap: 6px; }
.ff-full { grid-column: 1 / -1; }
.ff > span { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.ff > span em { color: var(--accent); font-style: normal; margin-left: 2px; }
.ff input, .ff select, .ff textarea {
  border: 1px solid var(--line);
  background: #fafafa;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(217,79,30,0.12);
}
.ff textarea { resize: vertical; min-height: 60px; }
.ff-grid .ff-full { margin-top: 4px; }
.franc-form > .ff-full { margin-top: 16px; }

.ff-check { display: flex; align-items: flex-start; gap: 12px; margin: 20px 0; font-size: 0.92rem; color: var(--text-soft); }
.ff-check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent); }
.ff-check strong { color: var(--accent); cursor: help; }

.ff-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }

/* ============ CONTACT ============ */
.contact { background: var(--bg); color: var(--cream); padding: 120px 0; }
.contact .eyebrow { color: var(--accent-2); }
.contact h2, .contact h3 { color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-text p { color: rgba(246,239,228,0.8); margin-bottom: 28px; max-width: 460px; }
.contact-hq {
  background: rgba(217,79,30,0.12);
  border: 1px solid rgba(217,79,30,0.35);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.hq-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.contact-hq h3 { font-family: var(--serif); margin-bottom: 10px; color: #fff; }
.contact-hq p { color: rgba(246,239,228,0.85); margin-bottom: 8px; }
.hq-phone { margin-top: 14px !important; font-size: 1.1rem; font-weight: 600; }
.hq-phone a { color: var(--accent-2); }

.contact-list { list-style: none; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246,239,228,0.1);
  font-size: 1rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ico {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(217,79,30,0.18);
  border-radius: 50%;
  font-size: 1.05rem;
}
.contact-list a { color: var(--cream); transition: color .2s; }
.contact-list a:hover { color: var(--accent-2); }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form span { font-family: var(--sans); font-size: 0.85rem; color: rgba(246,239,228,0.7); font-weight: 500; }
.contact-form span em { color: var(--accent-2); font-style: normal; margin-left: 2px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 1rem;
  resize: vertical;
}
.contact-form select option { background: var(--bg); color: var(--cream); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1); }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }

/* ============ FOOTER ============ */
.footer { background: #0a0807; color: rgba(246,239,228,0.7); padding: 70px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; align-items: start; }
.footer-brand img { height: 100px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.footer h4 { color: var(--cream); font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.92rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent-2); }
.footer-meta p { font-size: 0.88rem; margin-bottom: 8px; line-height: 1.6; }
.footer-meta .copyr { font-size: 0.8rem; margin-top: 18px; opacity: 0.7; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: #fff;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 28px;
  transition: background .2s, transform .2s;
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 36px; }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 36px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.1); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav-links { gap: 22px; }
  .nav-logo img { height: 84px; }
  .nav.scrolled .nav-logo img { height: 64px; }
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .delivery-grid { grid-template-columns: 1fr; }
  .franc-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ff-grid { grid-template-columns: 1fr; }
  .franc-form-wrap { padding: 36px 28px; }
  .hero-logo { height: 340px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15,13,11,0.97);
    padding: 20px 24px;
    backdrop-filter: blur(12px);
  }
  .nav.menu-open .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-logo img { height: 70px; }
  .nav.scrolled .nav-logo img { height: 54px; }
  .hero { padding-top: 130px; }
  .hero-logo { height: 240px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .menu, .branches, .bowlita, .franchising, .contact, .about, .delivery { padding: 80px 0; }
  .contact-form, .bowlita-menu-block { padding: 28px; }
  .franc-card { padding: 28px; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { width: 42px; height: 42px; font-size: 28px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* ===== SSS (FAQ) ===== */
.faq { background: var(--cream); padding: 120px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 24px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--text-soft); line-height: 1.65; margin: 0; }
.faq-item a { color: var(--accent); }
