:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --card: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.11);
  --text: #f0f0f0;
  --muted: #888888;
  --accent: #f97316;
  --accent-2: #1d8cf8;
  --success: #6dd3a0;
  --danger: #ff8e8e;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(249,115,22,0.10), transparent 30%),
    radial-gradient(circle at top left, rgba(29,140,248,0.08), transparent 25%),
    var(--bg);
  color: var(--text);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 0);
  background-size: 4px 4px;
  opacity: .22;
}

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
html, body { overflow-x: hidden; }
/* Scroll offset for sticky header */
main { padding-top: 80px; }
section[id] { scroll-margin-top: 80px; }
#chatbot { scroll-margin-top: 100px; }
.section { padding: 96px 0; position: relative; }
.section.muted { background: rgba(255,255,255,0.035); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.left { margin-bottom: 28px; }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: 12px; color: var(--accent); margin-bottom: 12px; }
.lead { color: var(--muted); font-size: 18px; line-height: 1.7; }

h1, h2, h3 { margin: 0 0 14px; line-height: 1.05; }
h1 { font-size: clamp(42px, 7vw, 78px); max-width: 10ch; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 22px; }
p { color: var(--muted); line-height: 1.65; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(9,9,11,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-header img {
  background: transparent !important;
  /* Force GPU compositing layer for PNG transparency */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  transition: .2s ease;
}

.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #16110b;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.btn:hover { filter: brightness(1.05); }
.btn-small { min-height: 40px; padding: 0 14px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); box-shadow: none; }
.btn.wide { width: 100%; }

.hero { padding: 86px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-badges li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.hero-card, .booking-form, .chat-shell, .portfolio-card, .step, .faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card { padding: 28px; }
.hero-logo-big { display: block; max-width: 380px; width: 100%; height: auto; margin: 12px 0 8px; }
.hero-title-fallback { font-size: clamp(36px, 7vw, 72px); font-weight: 800; line-height: 1.05; }
.hero-image-card { display: flex; flex-direction: column; align-items: center; justify-content: center; background: transparent; border: none; box-shadow: none; padding: 0; }
.hero-feature-img { display: block; width: 100%; height: auto; object-fit: contain; border-radius: 18px; }
.hero-caption { margin-top: 14px; font-size: 14px; color: var(--muted); text-align: center; letter-spacing: .02em; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.stat {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.stat span { display: block; font-size: 26px; font-weight: 800; color: var(--text); }
.stat small { color: var(--muted); }
.mini-chat-preview {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.mini-chat-preview p { margin: 8px 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.portfolio-card { overflow: hidden; }
.portfolio-card h3, .portfolio-card p { padding: 0 18px; }
.portfolio-card p { padding-bottom: 20px; }
.art {
  height: 280px;
  border-bottom: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}
.art-1 { background: linear-gradient(135deg, rgba(230,180,76,.25), rgba(255,123,84,.18)), radial-gradient(circle at center, #2b2b30, #141418 70%); }
.art-2 { background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(0,0,0,.25)), radial-gradient(circle at 20% 20%, #444, #17171a 65%); }
.art-3 { background: linear-gradient(135deg, rgba(255,123,84,.28), rgba(104,34,146,.2)), radial-gradient(circle at center, #35213a, #121216 70%); }
.art-4 { background: linear-gradient(135deg, rgba(230,180,76,.25), rgba(34,34,34,.22)), radial-gradient(circle at center, #2f2924, #121216 70%); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step { padding: 24px; }
.step span {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a130d; font-weight: 800;
}

.booking-layout, .chatbot-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 26px;
  align-items: start;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}
.feature-list strong { display: block; color: var(--text); margin-bottom: 4px; }
.feature-list span { color: var(--muted); }

@media (max-width: 780px) {
  .feature-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .feature-list div { padding: 12px 14px; border-radius: 12px; }
  .feature-list strong { font-size: 13px; }
  .feature-list span { font-size: 12px; display: none; }
}

.booking-form { padding: 24px; min-width: 0; max-width: 100%; overflow: hidden; }
.booking-form .grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.booking-form .grid.two { grid-template-columns: repeat(2, 1fr); }
.booking-form .grid.three { grid-template-columns: repeat(3, 1fr); }
label { display: block; }
label span { display: block; margin-bottom: 8px; color: var(--text); font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
}
select { background-color: #111319; }
select option { background-color: #111319; color: #f3efe8; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(230,180,76,.6);
  box-shadow: 0 0 0 3px rgba(230,180,76,.12);
}
.form-note { margin: 12px 2px 0; font-size: 14px; }
.form-note.ok { color: var(--success); }
.form-note.error { color: var(--danger); }

.chat-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.chat-rules div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.chat-shell {
  overflow: hidden;
}
.chat-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  background: rgba(255,255,255,.04);
}
.chat-messages {
  min-height: 420px;
  max-height: 520px;
  overflow: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg {
  max-width: 84%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.55;
}
.msg.bot {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  align-self: flex-start;
}
.msg.user {
  background: linear-gradient(135deg, rgba(230,180,76,.94), rgba(255,123,84,.94));
  color: #1b130c;
  align-self: flex-end;
}
.chat-form {
  padding: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.chat-status { font-size: 13px; padding: 0 16px 16px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0 18px; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 700;
}
.faq-list details p { margin-top: 0; padding-bottom: 20px; }

.site-footer {
  padding: 30px 0 56px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 16px;
}
.footer-logo { margin-bottom: 12px; }

@media (max-width: 1050px) {
  .hero-grid, .booking-layout, .chatbot-layout, .steps, .portfolio-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  /* Hide logo text on mobile, keep only image */
  .logo-text { display: none; }
  /* Hide QR on mobile */
  .qr-nav-wrap { display: none !important; }

  /* Nav hidden by default on mobile - toggled by hamburger */
  .nav {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(9,9,11,.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 29;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .nav.open { max-height: 400px; padding: 12px 0 20px; }
  .nav a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.open a { opacity: 1; transform: translateY(0); }
  .nav.open a:nth-child(1) { transition-delay: .05s; }
  .nav.open a:nth-child(2) { transition-delay: .08s; }
  .nav.open a:nth-child(3) { transition-delay: .11s; }
  .nav.open a:nth-child(4) { transition-delay: .14s; }
  .nav.open a:nth-child(5) { transition-delay: .17s; }
  .nav.open a:nth-child(6) { transition-delay: .20s; }
  .nav a:last-child { border-bottom: 0; }

  /* Hamburger button */
  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: 0;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .25s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* "Book now" button smaller on mobile */
  .btn-small { min-height: 36px; padding: 0 12px; font-size: 13px; }

  /* Hero */
  .hero { padding-top: 36px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .hero-logo-big { max-width: 220px; margin: 8px auto; }
  .hero-feature-img { max-height: 280px !important; }
  .hero-card, .hero-image-card { min-width: 0; }
  .hero-actions { justify-content: center; }
  .lead { text-align: center; }
  .eyebrow { text-align: center; }

  /* Layouts */
  .booking-layout, .chatbot-layout, .portfolio-grid, .footer-grid,
  .booking-form .grid.two, .booking-form .grid.three, .chat-rules { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .step { padding: 16px; }
  .section { padding: 50px 0; }
  .chat-messages { min-height: 300px; }

  /* Calendar on mobile */
  .calendar-grid { gap: 4px; }
  .calendar-day { min-height: 54px; padding: 8px 4px; border-radius: 12px; }
  .calendar-day small { font-size: 10px; }
  .weekday-row span { font-size: 10px; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; }

  /* Smaller text on mobile */
  .lead { font-size: 14px; }
  .eyebrow { font-size: 11px; }
  h1 { font-size: clamp(24px, 5vw, 42px); }
  .container { padding: 0 16px; }
}

/* Hamburger hidden on desktop */
.hamburger { display: none; }


.calendar-card {
  margin-top: 18px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.calendar-header h3 { margin: 0; font-size: 20px; }
.calendar-nav {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
.weekday-row, .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.weekday-row {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.calendar-day {
  min-height: 78px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 12px 10px;
  text-align: left;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
/* Days that have available slots */
.calendar-day.has-slots {
  background: rgba(29,140,248,.08);
  border-color: rgba(29,140,248,.25);
}
.calendar-day.has-slots:hover {
  background: rgba(29,140,248,.15);
  border-color: rgba(29,140,248,.5);
}
.calendar-day .day-number {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}
.calendar-day small { color: var(--muted); }
.calendar-day.active {
  border-color: rgba(230,180,76,.75);
  box-shadow: 0 0 0 3px rgba(230,180,76,.12);
}
.calendar-day.disabled, .calendar-day:disabled {
  opacity: .45;
  cursor: default;
}
.calendar-day.empty {
  border: 0;
  background: transparent;
  min-height: 0;
}
.slot-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.slot-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 12px;
}
.slot-head span {
  color: var(--muted);
  font-size: 14px;
}
.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slot-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor: pointer;
}
.slot-chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #16110b;
  border-color: transparent;
}
.slot-empty {
  color: var(--muted);
  margin: 8px 0 0;
}
.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 6px 0 18px;
}
.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.checkbox-row span {
  margin: 0;
  color: var(--muted);
}






.calendar-day {
  position: relative;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.calendar-day:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(230,180,76,.55);
  background: rgba(255,255,255,.06);
}
.calendar-day:not(:disabled) {
  opacity: 1;
}


/* ================================================================
   FIX7
   ================================================================ */

/* ── Logo in header ── */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  /* Preserve PNG transparency over dark header */
  display: block;
}
.logo-text {
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 14px;
  color: var(--text);
}

/* ── Booking layout: equal-height columns ── */
.booking-head { max-width: 100%; margin-bottom: 24px; }

.booking-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: stretch;
}
.booking-column {
  display: flex;
  flex-direction: column;
  min-width: 0; /* prevent grid blowout */
  max-width: 100%;
}
.calendar-card {
  flex: 1 1 auto;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 1050px) {
  .booking-layout { grid-template-columns: 1fr; }
}

/* ── Portfolio cards as links ── */
.portfolio-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.portfolio-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0,0,0,.5);
}
.portfolio-link h3 { color: var(--text); }

/* ── Contact section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info { padding: 8px 0; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Social icons (Font Awesome, studio style) ── */
.studio-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.studio-icon {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}
.studio-icon:hover { transform: scale(1.25); }

/* Brand hover colours (same as studio reference) */
.studio-ig:hover { color: #E4405F; }
.studio-fb:hover  { color: #1877F2; }
.studio-x:hover         { color: #1DA1F2; }
.studio-tt:hover    { color: #69C9D0; }
.studio-em:hover     { color: #ffcc00; }


/* ── Mobile admin responsiveness ── */
@media (max-width: 700px) {
  /* Admin tables scroll */
  .tw { border-radius: 10px; }
  table { min-width: 500px; }
  th, td { padding: 8px 10px; font-size: 13px; }

  /* Admin top bar */
  .top { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Admin tabs wrap */
  .tabs { gap: 4px; }
  .tab { padding: 7px 12px; font-size: 13px; }

  /* Slot form stacks */
  .sf { grid-template-columns: 1fr; }
  .g2, .g3 { grid-template-columns: 1fr; }

  /* Admin two-col calendar layout stacks */
  .two-col { grid-template-columns: 1fr !important; }

  /* Admin calendar smaller */
  .ac-grid { gap: 3px; }
  .ac-day { min-height: 42px; padding: 5px 3px; border-radius: 8px; }
  .ac-day .ac-num { font-size: 12px; }
  .ac-dot { width: 5px; height: 5px; }
  .ac-weekdays span { font-size: 10px; }

  /* Modal fills screen on mobile */
  .modal { padding: 18px; border-radius: 14px; }
  .mb { padding: 16px 12px; align-items: flex-end; }
  .mb .modal { width: 100%; margin: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
}

/* ── Portfolio gallery responsive ── */
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  h2 { font-size: clamp(22px, 5vw, 36px); }
}

/* ── Hero on small screens ── */
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-logo-big { max-width: 160px; }
  .hero-feature-img { max-height: 200px !important; }
  .hero-caption { font-size: 11px; }
  .studio-links { gap: 14px; }
  .studio-icon svg { width: 22px; height: 22px; }
  h1 { font-size: clamp(24px, 6vw, 38px); }
  h2 { font-size: clamp(18px, 5vw, 28px); }
  .calendar-day { min-height: 44px; border-radius: 10px; }
  .calendar-day small { display: none; }
  .section { padding: 36px 0; }
  .hero { padding-top: 24px; }
  .booking-form label span { font-size: 13px; }
  .booking-form input, .booking-form select, .booking-form textarea { font-size: 16px; }
  .step-card { padding: 12px; }
  .step-num { width: 36px; height: 36px; font-size: 13px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 8px; }
  .step { padding: 14px; }
  .step span { width: 36px; height: 36px; font-size: 13px; margin-bottom: 10px; }
  .step h3 { font-size: 14px; margin-bottom: 4px; }
  .step p { font-size: 12px; }
  .lead { font-size: 14px; }
  /* Reduce FAQ padding */
  .faq-item { padding: 14px 16px; }
  .faq-q { font-size: 14px; }
  .faq-a { font-size: 13px; }
  /* Chat compact */
  .chat-messages { min-height: 240px; }
  .chat-bubble { font-size: 13px; padding: 10px 14px; }
}

/* Header compact on mobile - prevent overflow */
@media (max-width: 600px) {
  .nav-wrap { padding: 0 14px; min-height: 56px; height: auto; gap: 8px; }
  main { padding-top: 60px; }
  .site-logo-img { height: 26px !important; }
  .logo-text { font-size: 11px; letter-spacing: .12em; }
  .logo-wrap { gap: 7px; }
  .qr-nav-img { width: 28px !important; height: 28px !important; }
  .btn-small { min-height: 32px; padding: 0 11px; font-size: 12px; }
  /* Nav dropdown starts lower */
  .nav { top: 56px !important; }
  .nav.open { top: 56px !important; }
}


/* ── QR code in header ── */
.qr-nav-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.qr-nav-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: white; /* QR codes need white background to scan */
  padding: 3px;
  cursor: pointer;
  display: block;
}
.qr-nav-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 100;
}
.qr-nav-wrap:hover .qr-nav-tooltip { display: block; }
@media (hover: none) {
  /* Touch devices: hide tooltip by default, toggle via JS */
  .qr-nav-wrap:hover .qr-nav-tooltip { display: none; }
  .qr-nav-tooltip.open { display: block !important; }
}

/* Settings: QR upload info */

/* Portfolio cards - consistent height on mobile */
@media (max-width: 480px) {
  .art { height: 160px; }
  .portfolio-card h3 { font-size: 15px; margin-bottom: 4px; }
  .portfolio-card p { font-size: 13px; padding-bottom: 14px; }
}

/* Ask AI nav button - compact on very small screens */
@media (max-width: 360px) {
  .btn-ghost-nav { padding: 0 8px; font-size: 11px; min-height: 28px; }
}


/* ══ Booking Type Selector ══════════════════════════════════════ */
.booking-type-selector { margin-bottom: 32px; }
.booking-type-label { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.booking-type-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.btype-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background .2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
}
.btype-card:hover { border-color: var(--line2); background: rgba(255,255,255,.06); }
.btype-card.selected, .btype-card.btype-active { border-color: var(--accent-2); background: rgba(29,140,248,.1); }
.btype-card.btype-active .btype-icon { transform: scale(1.15); }
.btype-card.btype-active strong { color: var(--accent-2); }
.btype-icon { font-size: 22px; margin-bottom: 4px; color: var(--accent); }
.btype-card strong { font-size: 15px; font-weight: 700; display: block; }
.btype-card span { font-size: 13px; color: var(--muted); }

.btype-back {
  background: none; border: 0; color: var(--muted); cursor: pointer;
  font-size: 13px; padding: 0; margin-bottom: 20px; display: inline-flex;
  align-items: center; gap: 6px;
  transition: color .2s;
}
.btype-back:hover { color: var(--text); }

.booking-type-title {
  font-weight: 700; font-size: 16px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  color: var(--text);
}

@media (max-width: 600px) {
  .booking-type-cards { grid-template-columns: 1fr; gap: 8px; }
  .btype-card { flex-direction: row; align-items: center; padding: 14px 16px; gap: 12px; }
  .btype-icon { font-size: 20px; margin-bottom: 0; }
  .btype-card strong { font-size: 14px; }
  .btype-card > span:last-child { display: none; }
  .booking-type-selector { margin-bottom: 20px; }
}

/* ══ Upload zones ════════════════════════════════════════════════ */
.ref-drop-zone {
  border: 1.5px dashed var(--line2);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: rgba(255,255,255,.02);
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  -webkit-tap-highlight-color: transparent;
}
.ref-drop-zone:hover, .ref-drop-zone.drag-over {
  border-color: var(--accent-2);
  background: rgba(29,140,248,.1);
}
.ref-drop-text { color: var(--muted); font-size: 13px; }
.ref-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ref-thumb { position: relative; width: 64px; height: 64px; border-radius: 8px; overflow: hidden; }
.ref-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ref-thumb .rm {
  position: absolute; top: 2px; right: 2px; width: 16px; height: 16px;
  border-radius: 50%; background: rgba(0,0,0,.75); color: #fff;
  font-size: 9px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 0;
}

/* ══ Preferred dates chips ═══════════════════════════════════════ */
.preferred-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(29,140,248,.1); border: 1px solid rgba(37,99,235,.35);
  font-size: 13px; color: var(--text);
}
.preferred-chip button {
  background: none; border: 0; cursor: pointer; color: var(--muted);
  font-size: 14px; line-height: 1; padding: 0;
}


/* ══ Convention boxes on homepage ══════════════════════════════ */
.convention-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.convention-box:hover { border-color: var(--line2); }
.convention-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.convention-box-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.convention-box-name { font-size: 17px; font-weight: 700; color: var(--text); }
.convention-box-location { font-size: 13px; color: var(--muted); }
.convention-box-dates { font-size: 13px; color: var(--accent); }
.convention-box-toggle {
  font-size: 22px; color: var(--muted); flex-shrink: 0;
  transition: transform .2s;
}
.convention-box.open .convention-box-toggle { transform: rotate(45deg); }
.convention-box-details {
  padding: 0 24px 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.convention-looking-for {
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 12px 0;
}
.convention-looking-for strong { color: var(--text); font-size: 13px; display: block; margin-bottom: 4px; }
.convention-notes { color: var(--muted); font-size: 13px; font-style: italic; }

/* Calendar convention color */
.calendar-convention { background: rgba(234,88,12,.12); border-color: rgba(234,88,12,.35) !important; }

@media (max-width: 780px) {
  .hamburger { display: flex !important; }
}
