/* Marketing landing page — scoped to body.site so the app pages keep their theme. */
.site {
  --ink: #1b1714;
  --body: #3a342e;
  --bg: #fbf9f6;
  --bg-alt: #f1ece3;
  --bg-dark: #17130f;
  --line: #e6ded2;
  --accent: #c0902f;
  --accent-d: #a87c23;
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
.site * { box-sizing: border-box; }
.site h1, .site h2, .site h3, .site h4 {
  font-family: "Oswald", "Inter", sans-serif;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}
.site a { color: inherit; text-decoration: none; }
.site-main { width: 100%; max-width: none; padding: 0; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; width: 100%; }
.narrow { max-width: 560px; }
.center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,246,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.shop-name-bar {
  font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: clamp(20px, 3vw, 30px); text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink); text-align: center;
  padding: 18px 0 4px;
}
/* Google / Yandex map links, centred under the shop name. */
.map-links {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 26px; padding: 10px 0 16px;
}
.map-ic {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-decoration: none; color: var(--muted, #6b6154);
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
}
.map-ic svg {
  width: 30px; height: 30px; padding: 7px; box-sizing: content-box;
  background: #fff; border: 1px solid var(--line); border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .12s ease, box-shadow .12s ease;
}
/* The Yandex mark is its own filled circle — let it reach the badge edge. */
.map-ic-yandex svg { padding: 0; width: 44px; height: 44px; }
.map-ic:hover svg { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.16); }
.map-ic:focus-visible svg { outline: 2px solid var(--accent); outline-offset: 3px; }

.site-logo {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink);
}
.site-nav { display: flex; gap: 26px; margin-left: 12px; flex: 1; }
.site-nav a { font-size: 15px; font-weight: 500; color: var(--body); }
.site-nav a:hover { color: var(--accent); }
.site-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Floating "Join the queue" — appears after the hero button scrolls away */
.sticky-join {
  position: fixed; left: 50%; bottom: 18px; z-index: 60;
  width: calc(100% - 32px); max-width: 360px; padding: 15px;
  text-align: center; background: var(--accent); color: #1a1204;
  font-weight: 700; font-size: 16px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(16px);
  transition: opacity .2s ease, transform .2s ease;
}
.sticky-join.show { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.sticky-join:hover { background: var(--accent-d); }

/* Compact header menu (shop name + ▾ that reveals Admin / language) */
.site-menu { position: relative; }
.site-menu-btn {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: #fff; border: 1px solid var(--line); border-radius: 9px;
  color: var(--ink); font-size: 16px; line-height: 1; cursor: pointer;
}
.site-menu-btn:hover { border-color: var(--ink); }
.site-menu-caret { transition: transform .15s ease; }
.site-menu.open .site-menu-caret { transform: rotate(180deg); }
.site-menu-panel {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 180px; display: none; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.14); padding: 8px; z-index: 70;
}
.site-menu.open .site-menu-panel { display: flex; }
.site-menu-item {
  display: block; padding: 11px 12px; border-radius: 7px;
  font-size: 15px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.site-menu-item:hover { background: var(--bg-alt); }
.site-menu-lang { margin: 4px 0 0; }
.site-lang {
  width: 100%; border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 8px; padding: 10px 10px; font-size: 14px; font-family: inherit;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  background: var(--hero) center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0.72) 100%),
    linear-gradient(180deg, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0.7) 100%);
}
.hero-content {
  position: relative; color: #fff; padding: 80px 24px; max-width: 720px;
  margin: 0 auto; text-align: center;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; color: #f3ece1;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: #cbb9a3; display: inline-block; }
.dot-open { background: #57c08a; box-shadow: 0 0 0 4px rgba(87,192,138,0.25); }
.site .hero-title {
  color: #fff; font-size: clamp(40px, 7vw, 76px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: 0.01em; font-weight: 700; margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.hero-sub {
  font-size: clamp(17px, 2.4vw, 21px); color: #f0e8db; max-width: 540px;
  margin: 0 auto 30px; text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Booking landing: white form card sitting on the hero image. */
.hero-book { min-height: auto; }
/* Tighter top padding so the WhatsApp button sits closer to the map icons. */
.hero-book .hero-content { max-width: 520px; padding: 26px 20px 72px; }
.hero-book .hero-title { font-size: clamp(30px, 5.5vw, 52px); margin-bottom: 26px; }
.book-card {
  background: #fff; color: var(--body); border-radius: 18px;
  padding: 26px 24px 30px; text-align: left;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.book-card .join-form:first-of-type { margin-top: 0; }
.book-card .join-form label:first-child { margin-top: 0; }

.btn-solid {
  display: inline-block; background: var(--accent); color: #1a1204;
  font-weight: 700; font-size: 16px; padding: 15px 32px; border-radius: 8px;
  border: none; cursor: pointer; transition: background .12s ease;
}
.btn-solid:hover { background: var(--accent-d); }
.btn-wide { width: 100%; margin-top: 20px; }
.btn-whatsapp {
  display: inline-block; text-align: center; box-sizing: border-box;
  background: #25d366; color: #063d1c; text-decoration: none;
  font-weight: 700; font-size: 16px; padding: 13px 28px; border-radius: 999px;
  margin: 0 auto 18px; box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: background .12s ease;
}
.btn-whatsapp:hover { background: #1eb257; }
/* Flags-only public header */
.site-header-flags { justify-content: flex-end; }

/* Flag language switcher */
.langbar { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.langbar .flag {
  background: none; border: 0; cursor: pointer; padding: 4px 5px;
  font-size: 24px; line-height: 1; border-radius: 8px; opacity: .55;
  transition: opacity .12s ease, background .12s ease, transform .08s ease;
}
.langbar .flag img { display: block; width: 26px; height: auto; border-radius: 3px; }
.langbar .flag:hover { opacity: .9; background: rgba(255,255,255,0.12); }
.langbar .flag:active { transform: scale(0.9); }
.langbar .flag-on { opacity: 1; background: rgba(255,255,255,0.18); }
@media (max-width: 480px) { .langbar .flag { font-size: 21px; padding: 4px 4px; } }

/* Booking-confirmation page */
.confirm-wrap {
  min-height: calc(100vh - 64px); display: flex; align-items: center;
  justify-content: center; padding: 24px 18px 48px;
}
.confirm-card {
  width: 100%; max-width: 460px; text-align: center; color: var(--body);
}
.site .confirm-h1 {
  font-size: clamp(30px, 8vw, 40px); font-weight: 700; margin: 0 0 18px;
  text-transform: none; letter-spacing: 0;
}
.confirm-when { margin: 8px 0 14px; }
.confirm-day { font-size: clamp(22px, 6vw, 28px); font-weight: 600; }
.confirm-time { font-size: clamp(34px, 11vw, 52px); font-weight: 800; color: var(--accent-d, #b26a00); line-height: 1.1; }
.confirm-meta { color: #6f675b; font-size: 16px; margin: 0 0 26px; }
.confirm-instruct {
  font-size: clamp(18px, 5vw, 22px); font-weight: 600; line-height: 1.35;
  background: #fff6e6; color: #8a5a00; border-radius: 12px;
  padding: 16px 18px; margin: 0 0 18px;
}
.confirm-fine { color: #8a8175; font-size: 15px; margin: 14px 0 0; }
.confirm-back { display: inline-block; margin-top: 32px; color: #8a8175; font-size: 15px; }

/* Big, prominent WhatsApp confirm button. */
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; box-sizing: border-box; margin: 4px 0;
  background: #25D366; color: #fff; font-size: clamp(20px, 5.5vw, 24px); font-weight: 800;
  padding: 22px 20px; border-radius: 16px; text-align: center; line-height: 1.15;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  animation: wa-pulse 1.8s ease-in-out infinite;
}
.btn-wa:hover { background: #1ebe5a; }
.btn-wa:active { transform: scale(0.98); }
.btn-wa-ic { font-size: 1.3em; line-height: 1; }
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 22px rgba(37,211,102,0.45); }
  50% { transform: scale(1.02); box-shadow: 0 12px 30px rgba(37,211,102,0.6); }
}
@media (prefers-reduced-motion: reduce) { .btn-wa { animation: none; } }
.btn-off { background: rgba(255,255,255,0.18); color: #fff; }
.btn-ghost {
  display: inline-block; padding: 15px 30px; border-radius: 8px; font-weight: 600;
  color: #fff; border: 1px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: #fff; }

/* ---------- Bands ---------- */
.band { padding: 80px 0; }
.band-alt { background: var(--bg-alt); }
.band-dark { background: var(--bg-dark); }
.site .eyebrow {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 14px; color: var(--accent); margin-bottom: 28px; font-weight: 600;
}
.eyebrow.center { text-align: center; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { }
.feature-ic {
  width: 54px; height: 54px; display: grid; place-items: center; font-size: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 16px;
}
.band-alt .feature-ic { background: #fbf9f6; }
.feature h3 { font-size: 21px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--body); }

/* Split (image + services) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: 14px; }
.svc-list { display: flex; flex-direction: column; gap: 2px; }
.svc { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.svc:last-child { border-bottom: none; }
.svc-name { font-weight: 600; color: var(--ink); font-size: 18px; white-space: nowrap; }
.svc-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.svc-meta { color: var(--accent-d); font-weight: 600; white-space: nowrap; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; display: block; }

/* Quote */
.quote { font-family: "Oswald", sans-serif; color: #fff; font-size: clamp(24px, 4vw, 38px); line-height: 1.25; max-width: 800px; margin: 0 auto 14px; font-weight: 500; }
.quote-by { color: #b9ab97; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; margin: 0; }

/* Join form */
.join-form label { display: block; font-size: 14px; color: var(--body); margin: 14px 0 6px; font-weight: 500; }
.join-form input, .join-form select {
  width: 100%; padding: 13px 14px; border-radius: 9px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-size: 16px; font-family: inherit;
}
.join-form input:focus, .join-form select:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.fine { font-size: 13px; color: #8a8175; margin-top: 12px; }
.alert { background: #fbe9e6; color: #9b2c20; border-radius: 9px; padding: 12px 14px; margin-bottom: 12px; }
.muted { color: #8a8175; }

/* Appointment slot picker */
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 6px 0 4px; }
.slot { position: relative; display: flex; align-items: center; justify-content: center; box-sizing: border-box; min-height: 44px; padding: 10px 6px; border: 1px solid var(--line, #ddd6cc); border-radius: 9px; font-size: 14px; white-space: nowrap; cursor: pointer; text-align: center; background: #fff; user-select: none; }
.slot input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot:has(input:checked) { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.slot-off { color: #bdb6a8; background: #f3f0ea; cursor: not-allowed; text-decoration: line-through; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #cdc3b4; padding: 56px 0 28px; }
.site-footer h4 { color: #fff; text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; margin-bottom: 12px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-logo { font-family: "Oswald", sans-serif; font-size: 24px; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.foot-tag { color: #a99d8c; max-width: 320px; margin: 0; }
.foot-col p { margin: 0 0 8px; }
/* Block so the Google / Yandex map links stack instead of colliding. */
.foot-link { display: block; margin-top: 6px; color: var(--accent); font-weight: 600; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 22px; font-size: 13px; color: #8a7f6f; }
.foot-by { letter-spacing: 0.08em; }
.foot-admin { color: #8a7f6f; border: 1px solid rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 7px; }
.foot-admin:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .features { grid-template-columns: 1fr; gap: 22px; }
  .split { grid-template-columns: 1fr; gap: 26px; }
  .split-media { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 680px) {
  .site-nav { display: none; }
  .band { padding: 56px 0; }
  .hero { min-height: 70vh; }
}
html, body { max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
.site-header { scroll-margin-top: 0; }
