/* Royal Tandoori v1.4 — Premium Warm */
:root {
  --bg: #0a0908;
  --bg-2: #111010;
  --bg-3: #181614;
  --surface: rgba(24, 22, 20, 0.72);
  --surface-solid: #1a1816;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --amber: #e8941a;
  --amber-hover: #f5a832;
  --amber-dim: rgba(232, 148, 26, 0.12);
  --gold: #c9a84c;
  --cream: #f5f0ea;
  --text: #f5f0ea;
  --text-2: rgba(245, 240, 234, 0.65);
  --text-3: rgba(245, 240, 234, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --header: 68px;
  --tabbar: 72px;
  --glass: blur(24px) saturate(160%);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

.wrap { width: min(1080px, 90%); margin: 0 auto; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo img { width: clamp(120px, 14vw, 148px); }

.header__nav { display: flex; align-items: center; gap: .25rem; }

.header__link {
  padding: .45rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}

.header__link:hover, .header__link.is-active { color: var(--text); background: rgba(255,255,255,.06); }

.header__order {
  margin-left: .5rem;
  padding: .5rem 1.15rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #1a1008;
  background: var(--amber);
  border-radius: var(--radius-pill);
  transition: background .2s, transform .2s;
}

.header__order:hover { background: var(--amber-hover); transform: translateY(-1px); }

.header.is-scrolled { background: rgba(10, 9, 8, 0.88); }

/* ── Mobile app tab bar ── */
.app-tabbar { display: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 2rem) 0 3rem;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
}

.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,9,8,.94) 0%, rgba(10,9,8,.78) 45%, rgba(10,9,8,.55) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 40%);
}

.hero__content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__logo { margin-bottom: .75rem; }

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__title em { font-style: italic; color: var(--amber); }

.hero__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.hero__pills li {
  padding: .35rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.04);
}

/* ── Order Box ── */
.order-box {
  background: var(--surface);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.order-box__top {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.order-box__step {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  color: #1a1008;
  background: var(--amber);
  border-radius: 50%;
}

.order-box__heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .15rem;
}

.order-box__sub { font-size: .8125rem; color: var(--text-2); }

.order-box__form { display: flex; flex-direction: column; gap: .85rem; }

.order-box__locate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  min-height: 48px;
}

.order-box__locate:hover { background: rgba(255,255,255,.08); border-color: var(--amber); color: var(--amber); }
.order-box__locate.is-loading { opacity: .7; cursor: wait; }
.order-box__locate svg { color: var(--amber); }

/* PLZ text field + list */
.plz-field { position: relative; }

.plz-field__label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .4rem;
}

.plz-field__input {
  width: 100%;
  padding: .85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  min-height: 52px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.plz-field__input::placeholder { color: var(--text-3); }

.plz-field__input:focus,
.plz-field.is-open .plz-field__input {
  border-color: rgba(232,148,26,.5);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(232,148,26,.1);
}

.plz-field__list {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.plz-field__options {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.plz-field__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem .85rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.plz-field__option:last-child { border-bottom: none; }
.plz-field__option:hover,
.plz-field__option.is-selected { background: var(--amber-dim); }
.plz-field__option.is-hidden { display: none; }

.plz-field__option-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  min-width: 0;
}

.plz-field__option-plz { font-weight: 700; color: var(--amber); font-size: .9rem; }
.plz-field__option-city { font-size: .8125rem; color: var(--text); }
.plz-field__option-branch { font-size: .72rem; color: var(--text-3); }
.plz-field__option-price { font-size: .75rem; font-weight: 600; color: var(--gold); white-space: nowrap; }

.plz-field__empty {
  padding: 1rem;
  text-align: center;
  font-size: .8125rem;
  color: var(--text-3);
}

.order-box__area {
  font-size: .8125rem;
  color: var(--gold);
  margin-top: .35rem;
  min-height: 1.2em;
}

.order-box__area.is-empty { display: none; }

.order-box__submit {
  width: 100%;
  padding: 1rem;
  margin-top: .25rem;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1a1008;
  background: var(--amber);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 52px;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.order-box__submit:hover:not(:disabled) {
  background: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,148,26,.3);
}

.order-box__submit:disabled { opacity: .65; cursor: wait; }

.order-box__status {
  font-size: .8125rem;
  text-align: center;
  min-height: 1.2em;
  color: var(--text-2);
}

.order-box__status--success { color: #6ecf8a; }
.order-box__status--error { color: #e87070; }
.order-box__status--info { color: var(--gold); }

.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Modal ── */
.modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}

.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
}

.modal__box {
  position: relative;
  width: min(400px, 100%);
  padding: 2rem 1.75rem;
  text-align: center;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: popIn .3s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(.95) translateY(8px); }
  to { opacity: 1; transform: none; }
}

.modal__icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,112,112,.12);
  border-radius: 50%;
  color: #e87070;
}

.modal__box h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: .65rem;
}

.modal__box p {
  font-size: .9rem;
  color: var(--text-2);
  margin-bottom: .4rem;
  line-height: 1.55;
}

.modal__box p strong { color: var(--text); }

.modal__tel {
  display: inline-block;
  margin: .85rem 0 1.25rem;
  padding: .7rem 1.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(232,148,26,.25);
  border-radius: var(--radius-pill);
}

.modal__tel:hover { background: rgba(232,148,26,.2); }

.modal__close {
  width: 100%;
  padding: .75rem;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.modal__close:hover { background: rgba(255,255,255,.1); }

/* ── Blocks ── */
.block { padding: clamp(4rem, 10vw, 6rem) 0; }
.block--dark { background: var(--bg-2); }

.block__head { margin-bottom: 2.5rem; max-width: 560px; }
.block__head--center { text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; }

.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}

.title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .5rem;
}

.lead { font-size: 1rem; color: var(--text-2); line-height: 1.65; }

.block__cta { text-align: center; margin-top: 2rem; }

.btn-outline {
  display: inline-flex;
  padding: .7rem 1.4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  transition: background .2s, border-color .2s;
}

.btn-outline:hover { background: rgba(255,255,255,.05); border-color: var(--amber); color: var(--amber); }

/* About — modern */
.about-modern { padding-top: clamp(4rem, 10vw, 6rem); }

.about-modern__layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-modern__title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: .75rem; }

.about-modern__lead {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-modern__text {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-modern__stats {
  display: flex;
  gap: 2rem;
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-modern__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--amber);
}

.about-modern__stat span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
}

.about-modern__tags { display: flex; flex-wrap: wrap; gap: .5rem; }

.about-modern__tag {
  padding: .4rem .85rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--amber-dim);
  border: 1px solid rgba(232,148,26,.2);
  border-radius: var(--radius-pill);
}

.about-modern__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.about-modern__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-modern__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.15rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--cream);
  background: linear-gradient(to top, rgba(10,9,8,.92), transparent);
}

/* Branch hub cards */
.branch-hub { padding-bottom: clamp(3rem, 8vw, 4rem); }

.branch-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.branch-hub-card {
  padding: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.branch-hub-card:hover {
  border-color: rgba(232,148,26,.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.branch-hub-card.is-highlighted {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(232,148,26,.25);
}

.branch-hub-card__top {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}

.branch-hub-card__badge {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #1a1008;
  background: var(--amber);
  border-radius: 50%;
}

.branch-hub-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: .1rem;
}

.branch-hub-card__city { font-size: .8125rem; color: var(--text-3); }

.branch-hub-card__address {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: .65rem;
}

.branch-hub-card__address svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }

.branch-hub-card__phone {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: .5rem;
}

.branch-hub-card__hours {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.branch-hub-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
}

.branch-hub-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.branch-hub-card__btn:hover { transform: translateY(-1px); }

.branch-hub-card__btn--delivery {
  color: #1a1008;
  background: var(--amber);
  border-color: var(--amber);
}

.branch-hub-card__btn--delivery:hover { background: var(--amber-hover); }

.branch-hub-card__btn--pickup:hover,
.branch-hub-card__btn--booking:hover {
  border-color: rgba(232,148,26,.4);
  color: var(--amber);
  background: var(--amber-dim);
}

/* Map showcase — blurred edges, branch focus */
.map-section {
  padding: 0 0 clamp(4rem, 10vw, 5rem);
  background: var(--bg);
}

.map-section__head {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.map-showcase {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.map-showcase__shell {
  position: relative;
  width: min(920px, 100%);
  margin-bottom: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.map-showcase__inner {
  position: relative;
  width: 100%;
  height: clamp(260px, 40vw, 340px);
  max-height: 340px;
  border: none;
  outline: none;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(
    ellipse 92% 78% at 50% 50%,
    #000 28%,
    rgba(0, 0, 0, 0.92) 48%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 92% 78% at 50% 50%,
    #000 28%,
    rgba(0, 0, 0, 0.92) 48%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
}

.map-showcase__map {
  width: 100%;
  height: 100%;
  min-height: 0;
  pointer-events: none;
  user-select: none;
  transform: scale(1.14);
  transform-origin: center center;
}

.map-showcase__inner .leaflet-container {
  pointer-events: none !important;
  cursor: default !important;
  background: var(--bg) !important;
  border: none !important;
  outline: none !important;
}

.map-showcase__inner .leaflet-tile {
  border: none !important;
  outline: none !important;
}

/* Soft fade into page background — no hard shape edge */
.map-showcase__vignette {
  position: absolute;
  inset: 0;
  z-index: 410;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 88% 74% at 50% 50%,
      transparent 0%,
      transparent 38%,
      rgba(10, 9, 8, 0.35) 62%,
      var(--bg) 100%
    );
}

.map-showcase__edge-blur {
  position: absolute;
  inset: 0;
  z-index: 420;
  pointer-events: none;
  box-shadow: none;
  background:
    radial-gradient(
      ellipse 95% 82% at 50% 50%,
      transparent 45%,
      rgba(10, 9, 8, 0.55) 78%,
      var(--bg) 100%
    );
}

.map-showcase__spotlight {
  position: absolute;
  inset: 0;
  z-index: 415;
  pointer-events: none;
  background: radial-gradient(ellipse 42% 58% at 50% 50%, rgba(232, 148, 26, 0.07) 0%, transparent 62%);
}

/* Simple branch dots on map */
.rt-map-marker--dot {
  width: 16px !important;
  height: 16px !important;
  background: transparent !important;
  border: none !important;
}

.rt-map-marker--dot .rt-map-marker__dot {
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px auto;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(232, 148, 26, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rt-map-marker--dot.rt-map-marker--alt .rt-map-marker__dot {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.65);
}

.rt-map-marker--dot.rt-map-marker--active .rt-map-marker__dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(232, 148, 26, 0.35), 0 0 16px rgba(232, 148, 26, 0.75);
}

/* Legacy focus markers (unused) */
.rt-map-marker--focus {
  width: 52px !important;
  height: 58px !important;
  background: transparent !important;
  border: none !important;
}

.rt-map-marker--focus .rt-map-marker__ring {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(232, 148, 26, 0.45);
  animation: ringPulse 2.8s ease infinite;
}

.rt-map-marker--focus.rt-map-marker--alt .rt-map-marker__ring {
  border-color: rgba(201, 168, 76, 0.45);
}

@keyframes ringPulse {
  0%, 100% { transform: translateX(-50%) scale(0.85); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(1.25); opacity: 0.35; }
}

.rt-map-marker--focus .rt-map-marker__pulse {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 148, 26, 0.4);
  filter: blur(4px);
  animation: markerPulse 2.5s ease infinite;
}

.rt-map-marker--focus.rt-map-marker--alt .rt-map-marker__pulse {
  background: rgba(201, 168, 76, 0.4);
}

@keyframes markerPulse {
  0%, 100% { transform: translateX(-50%) scale(0.7); opacity: 0.85; }
  50% { transform: translateX(-50%) scale(1.5); opacity: 0; }
}

.rt-map-marker--focus .rt-map-marker__pin {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: #1a1008;
  background: linear-gradient(135deg, var(--amber), var(--amber-hover));
  border-radius: 50% 50% 50% 0;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(232, 148, 26, 0.45);
}

.rt-map-marker--focus.rt-map-marker--alt .rt-map-marker__pin {
  background: linear-gradient(135deg, var(--gold), #e0bc4a);
}

.rt-map-marker__num { transform: rotate(45deg); display: block; }

.rt-map-marker--focus.rt-map-marker--active .rt-map-marker__pin {
  box-shadow: 0 0 0 6px rgba(232, 148, 26, 0.4), 0 8px 28px rgba(232, 148, 26, 0.55);
  transform: translateX(-50%) rotate(-45deg) scale(1.15);
}

/* Legacy static map (removed) */
.map-section__frame--static,
.map-section__controls { display: none; }

/* Legacy about (inner pages) */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-split__text p {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.stats { display: flex; gap: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); }

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber);
}

.stat span { font-size: .78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }

.about-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-split__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu-card {
  padding: 1.35rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}

.menu-card:hover { border-color: rgba(232,148,26,.3); transform: translateY(-2px); }

.menu-card__icon { font-size: 1.5rem; display: block; margin-bottom: .65rem; }

.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .35rem;
}

.menu-card p { font-size: .8125rem; color: var(--text-2); line-height: 1.5; }

/* Branches */
.branch-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  align-items: start;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
}

.map-wrap__map { width: 100%; height: 360px; }

.map-wrap__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .65rem .85rem;
  border-top: 1px solid var(--border);
}

.map-fit-btn {
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--text-2);
}

.map-fit-btn:hover { color: var(--text); border-color: var(--border-light); }

.map-chips { display: flex; gap: .35rem; }

.map-chip {
  width: 30px; height: 30px;
  font-size: .75rem; font-weight: 700;
  color: var(--text-2);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}

.map-chip:hover, .map-chip.is-active {
  color: var(--amber);
  border-color: rgba(232,148,26,.4);
  background: var(--amber-dim);
}

.branch-cards { display: flex; flex-direction: column; gap: .65rem; }

.branch-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}

.branch-card:hover { border-color: rgba(232,148,26,.35); transform: translateX(3px); }

.branch-card__idx {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  color: #1a1008;
  background: var(--amber);
  border-radius: 50%;
}

.branch-card h3 {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .15rem;
}

.branch-card p { font-size: .75rem; color: var(--text-2); line-height: 1.4; }

.branch-card__tel { display: block; font-size: .75rem; color: var(--amber); margin-top: .2rem; }
.branch-card__time { display: block; font-size: .7rem; color: var(--text-3); margin-top: .15rem; }
.branch-card__go { flex-shrink: 0; color: var(--text-3); margin-left: auto; }

/* Gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.photo-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--delay, 0s);
}

#galleryGrid.is-inview .photo-grid__item,
.photo-grid__item.is-visible { opacity: 1; transform: none; }

.photo-grid__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s ease;
}

.photo-grid__item:hover img { transform: scale(1.04); }

/* Footer */
.footer {
  padding: 3rem 0 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__tagline { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-size: .9rem; margin: .4rem 0; }
.footer__text { font-size: .8125rem; color: var(--text-2); max-width: 240px; }
.footer__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: .65rem; }
.footer__list { list-style: none; }
.footer__list a { font-size: .8125rem; color: var(--text-2); transition: color .2s; }
.footer__list a:hover { color: var(--amber); }
.footer__list li { margin-bottom: .35rem; }
.footer__phone { display: block; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.footer__phone:hover { color: var(--amber); }
.footer__branch { font-size: .75rem; color: var(--text-3); margin-bottom: .25rem; }

.footer__copy {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: .72rem;
  color: var(--text-3);
}

/* Leaflet */
.leaflet-container { font-family: var(--font-sans); background: #0e0c0a; }
.leaflet-popup-content-wrapper {
  background: var(--surface-solid);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.leaflet-popup-tip { background: var(--surface-solid); }
.leaflet-popup-content a { color: var(--amber); font-weight: 600; }

.rt-map-marker { background: transparent !important; border: none !important; }

.rt-map-marker__pin {
  position: absolute; bottom: 0; left: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: .85rem;
  color: #1a1008;
  background: var(--amber);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow-sm);
}

.rt-map-marker--alt .rt-map-marker__pin { background: var(--gold); }
.rt-map-marker__num { transform: rotate(45deg); }
.rt-map-marker--active .rt-map-marker__pin { box-shadow: 0 0 0 4px rgba(232,148,26,.35); }

.rt-map-popup__title { display: block; font-weight: 700; margin-bottom: .25rem; }
.rt-map-popup__address { font-size: .8rem; color: var(--text-2); }
.rt-map-popup__btn {
  display: inline-block; margin-top: .45rem;
  padding: .3rem .7rem; font-size: .75rem; font-weight: 600;
  color: #1a1008; background: var(--amber); border-radius: var(--radius-pill);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-up.is-visible { opacity: 1; transform: none; }

/* Inner pages */
.page-hero {
  padding: calc(var(--header) + 2.5rem) 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero .label { margin-bottom: .5rem; }
.page-hero .title { font-size: clamp(2rem, 4vw, 2.75rem); }

.inner-about { padding: 3rem 0 5rem; }
.inner-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.inner-about__text { color: var(--text-2); line-height: 1.75; }

/* Responsive */
@media (max-width: 900px) {
  .hero__content,
  .about-modern__layout,
  .about-split,
  .branch-grid,
  .inner-about__grid { grid-template-columns: 1fr; }

  .order-box { max-width: 440px; }

  .menu-grid, .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .header__inner {
    justify-content: center;
  }

  .header__nav {
    display: none;
  }

  .app-tabbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 220;
    min-height: var(--tabbar);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(10, 9, 8, 0.94);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  }

  .app-tabbar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    min-width: 0;
    padding: .45rem .25rem .55rem;
    font-size: .625rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--text-3);
    transition: color .2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .app-tabbar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 12px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .app-tabbar__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .app-tabbar__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-tabbar__item.is-active {
    color: var(--amber);
  }

  .app-tabbar__item.is-active .app-tabbar__icon {
    background: rgba(232, 148, 26, 0.14);
  }

  .app-tabbar__item--order {
    color: var(--amber);
  }

  .app-tabbar__item--order .app-tabbar__icon {
    background: linear-gradient(135deg, var(--amber), var(--amber-hover));
    color: #1a1008;
    box-shadow: 0 4px 14px rgba(232, 148, 26, 0.35);
  }

  .app-tabbar__item--order.is-active .app-tabbar__icon {
    transform: scale(1.05);
  }

  body {
    padding-bottom: calc(var(--tabbar) + env(safe-area-inset-bottom, 0px));
  }

  .footer {
    padding-bottom: calc(2.5rem + var(--tabbar) + env(safe-area-inset-bottom, 0px));
  }

  .menu-grid, .photo-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats { gap: 1.25rem; }
  .map-wrap__map { height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
