﻿:root {
  --ink: #0b1220;
  --ink-soft: #151e30;
  --panel: rgba(255, 248, 238, 0.92);
  --sand: #f6f0e6;
  --sand-deep: #ebe2d4;
  --gold: #b8894a;
  --gold-bright: #d4a85c;
  --gold-deep: #8f6a34;
  --gold-dim: rgba(212, 168, 92, 0.55);
  --text: #1c2434;
  --muted: #5f6b7c;
  --line: rgba(184, 137, 74, 0.28);
  --white: #fffaf3;
  --shadow: 0 24px 60px rgba(11, 18, 32, 0.18);
  --radius: 18px;
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(212, 168, 92, 0.16), transparent 55%),
    radial-gradient(900px 400px at 90% 0%, rgba(21, 30, 48, 0.08), transparent 50%),
    linear-gradient(180deg, #f8f3ea 0%, #f3ebe0 45%, #efe6d8 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; margin: 0 0 0.4em; }
p { margin: 0 0 1em; line-height: 1.65; }
.muted { color: var(--muted); }

.shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.72);
  border-bottom: 1px solid rgba(212, 168, 92, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #d4a85c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1;
  background: #0f1520;
  box-shadow:
    0 0 0 1px rgba(212, 168, 92, 0.5),
    0 8px 22px rgba(11, 18, 32, 0.35);
}

.brand-mark-img {
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  padding: 0;
}

.brand-mark-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark:not(.brand-mark-img)::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 11px;
  border: 1px solid rgba(212, 168, 92, 0.85);
  pointer-events: none;
}

.brand-mark > span {
  position: relative;
  z-index: 1;
}

.brand-text {
  display: grid;
  gap: 0.12rem;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fffaf3;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e2c48a;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.nav a:hover { color: var(--gold-bright); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 168, 92, 0.35);
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.06);
  padding: 0;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: #e2c48a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) { opacity: 0; }

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu-toggle:hover {
  background: rgba(212, 168, 92, 0.14);
  border-color: rgba(212, 168, 92, 0.55);
}

.mobile-nav-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.mobile-nav-root.is-open { pointer-events: auto; }

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.6rem;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(212, 168, 92, 0.22), transparent 55%),
    linear-gradient(165deg, #121a2b 0%, #0b1220 55%, #151e30 100%);
  border-left: 1px solid rgba(212, 168, 92, 0.28);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
  transform: translateX(104%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  color: #fffaf3;
}

.mobile-nav-root.is-open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-root.is-open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212, 168, 92, 0.18);
}

.mobile-nav-top .brand { color: #fffaf3; }

.menu-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 92, 0.3);
  background: rgba(255, 250, 243, 0.05);
  position: relative;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 50%;
  height: 1.5px;
  background: #e2c48a;
  border-radius: 999px;
}

.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }

.mobile-nav-links {
  display: grid;
  gap: 0.35rem;
  padding: 1.4rem 0;
  flex: 1;
}

.mobile-nav-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 0.85rem;
  border-radius: 16px;
  border: 1px solid transparent;
  color: rgba(255, 250, 243, 0.9);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mobile-nav-links a em {
  font-style: normal;
  font-family: var(--font-display);
  color: #d4a85c;
  font-size: 0.95rem;
}

.mobile-nav-links a span {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  background: rgba(212, 168, 92, 0.1);
  border-color: rgba(212, 168, 92, 0.28);
  transform: translateX(-2px);
  outline: none;
}

.mobile-nav-foot {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 168, 92, 0.18);
}

.mobile-nav-foot .btn { width: 100%; }

.mobile-nav-foot p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 250, 243, 0.55);
}

body.menu-open { overflow: hidden; }

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 168, 92, 0.4);
  border-radius: 16px;
  background: linear-gradient(145deg, #e2c48a, #b8894a);
  color: #0b1220;
  box-shadow: 0 14px 32px rgba(11, 18, 32, 0.28);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(184, 137, 74, 0.35);
}

.scroll-top span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(2px) rotate(45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 30px rgba(184, 137, 74, 0.35);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: end;
  color: var(--white);
}

.hero-lux { min-height: min(84vh, 720px); }

.hero-slider,
.hero-slide,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.25s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  animation: hero-kenburns 7.5s ease-out forwards;
}

@keyframes hero-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-veil {
  background:
    linear-gradient(105deg, rgba(11, 18, 32, 0.82) 8%, rgba(11, 18, 32, 0.38) 55%, rgba(11, 18, 32, 0.55) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.2) 0%, rgba(11, 18, 32, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 6;
  padding: 6.5rem 0 3.25rem;
  max-width: 920px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #d4a85c;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 14ch;
  margin: 0 0 0.85rem;
}

.hero-lead {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 250, 243, 0.78);
  margin: 0 0 1.6rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-lead.is-swap,
.hero-kicker.is-swap {
  opacity: 0;
  transform: translateY(6px);
}

.hero-lead.static { color: var(--muted); }

.search-panel-lux {
  grid-template-columns: 1fr auto;
  padding: 0.7rem;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(11, 18, 32, 0.28);
  backdrop-filter: blur(12px);
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: stretch;
  padding: 0.85rem;
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  animation: rise 0.9s ease both;
}

.search-panel-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.65rem;
  min-width: 0;
}

.search-panel-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  min-width: 0;
}

.multi-select {
  position: relative;
  z-index: 2;
}

.multi-select.is-open {
  z-index: 40;
}

.multi-select-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.multi-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 1.4rem;
  padding: 0 1rem 0 0;
  border: 0;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%) calc(100% - 4px) calc(50% - 2px) / 5px 5px no-repeat,
    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%) calc(100% + 2px) calc(50% - 2px) / 5px 5px no-repeat,
    transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.multi-select-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  color: inherit;
  font-size: inherit;
}

.multi-select-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  display: grid;
  gap: 0.35rem;
  max-height: min(320px, 55vh);
  padding: 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: #fffdf8;
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.16);
}

.multi-select-panel[hidden] {
  display: none !important;
}

.multi-select-tools {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.multi-select-tool {
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.15rem 0.2rem;
}

.multi-select-options {
  display: grid;
  gap: 0.15rem;
  overflow: auto;
  max-height: min(250px, 45vh);
  padding-right: 0.15rem;
}

.multi-select-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.45rem;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.92rem;
}

.multi-select-option:hover {
  background: rgba(201, 168, 76, 0.12);
}

.multi-select-option input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold-deep);
  margin: 0;
}

.filter-pair .multi-select {
  min-width: 0;
}

.page-search { grid-template-columns: 1fr auto; }

.field {
  display: grid;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  background: rgba(11, 18, 32, 0.04);
  min-width: 0;
}

.field.grow { min-width: 0; }

.field span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  min-height: 1.4rem;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 4px) calc(50% - 2px),
    calc(100% + 2px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1rem;
}

.search-submit {
  min-width: 120px;
  align-self: stretch;
  border-radius: 16px;
  min-height: 52px;
}

.hero-dots,
.hero-progress {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.35rem;
  max-width: 220px;
}

.hero-dots button,
.hero-progress-item {
  position: relative;
  flex: 1;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.22);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.hero-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: #d4a85c;
  border-radius: inherit;
}

.hero-progress-item.is-active .hero-progress-fill {
  width: 100%;
  transition: width 6.2s linear;
}

.hero-dots button.is-active {
  background: #d4a85c;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: -2.2rem;
  position: relative;
  z-index: 3;
}

.stat {
  padding: 1.2rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.08);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section { padding: 4.5rem 0; }

.section-soft {
  background: linear-gradient(180deg, rgba(255,250,243,0.55), rgba(235,226,212,0.65));
}

.section-ink {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.96), rgba(21,30,48,0.94)),
    radial-gradient(circle at 80% 20%, rgba(212,168,92,0.18), transparent 35%);
  color: var(--white);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.8rem;
  max-width: 40rem;
}

.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-head p { color: var(--muted); margin: 0; }
.section-head.light p { color: rgba(255,250,243,0.72); }

.sector-grid,
.biz-grid,
.blog-grid,
.steps {
  display: grid;
  gap: 1rem;
}

.sector-grid { grid-template-columns: repeat(4, 1fr); }
.biz-grid { grid-template-columns: repeat(2, 1fr); }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(4, 1fr); }

.sector-tile,
.biz-card,
.blog-card,
.steps article,
.side-panel {
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(184, 137, 74, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sector-tile,
.biz-card,
.blog-card {
  padding: 1.25rem;
}

.sector-tile:hover,
.biz-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 137, 74, 0.4);
}

.sector-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(212,168,92,0.25), rgba(11,18,32,0.08));
  color: var(--gold-deep);
  font-weight: 700;
}

.sector-icon::before {
  content: "â—†";
  font-size: 0.9rem;
}

.sector-tile strong,
.biz-card h3,
.blog-card h3 {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.sector-tile span:last-child,
.biz-card p,
.blog-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.steps article {
  padding: 1.4rem;
}

.steps span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.biz-top {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.biz-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-bright), #e7c48a);
}

.biz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(212, 168, 92, 0.18);
}

.chip-new {
  color: #245c45;
  background: rgba(56, 140, 102, 0.16);
}

.rating {
  color: var(--gold-deep);
  font-size: 0.88rem;
}

.rating em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.section-ink .rating em,
.section-ink .biz-card p,
.section-ink .biz-address { color: rgba(255,250,243,0.72); }

.section-ink .biz-card,
.section-ink .sector-tile {
  background: rgba(255,250,243,0.06);
  border-color: rgba(212,168,92,0.22);
  color: var(--white);
}

.section-ink .biz-avatar {
  color: var(--ink);
}

.biz-address {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.blog-card { padding: 0; overflow: hidden; display: grid; }

.blog-cover {
  min-height: 170px;
  background: center/cover no-repeat linear-gradient(135deg, #2a3348, #151e30);
}

.blog-body { padding: 1.15rem 1.2rem 1.35rem; }

.blog-body time {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.brand-row a {
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,250,243,0.7);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.brand-row a:hover {
  border-color: var(--gold);
  background: rgba(212,168,92,0.14);
}

.page-hero {
  padding: 4.5rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.92), rgba(11,18,32,0.78)),
    radial-gradient(circle at 70% 20%, rgba(212,168,92,0.25), transparent 40%);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 1.4rem;
}

.detail-main,
.side-panel {
  padding: 1.5rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.detail-list li {
  display: grid;
  gap: 0.25rem;
}

.detail-list strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.side-panel {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  position: sticky;
  top: 96px;
}

.empty-state {
  padding: 1rem 0 3rem;
}

/* â”€â”€ Article / rehber luxury reading â”€â”€ */
.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}
.article-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 0.08s linear;
}

.article-hero,
.article-index-hero {
  position: relative;
  color: #fffaf3;
  overflow: hidden;
}
.article-hero {
  min-height: min(68vh, 560px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.2), rgba(11,18,32,0.88)),
    var(--article-cover) center/cover no-repeat;
}
.article-index-hero {
  padding: 4.5rem 0 2.75rem;
  background:
    radial-gradient(ellipse 55% 70% at 85% 10%, rgba(212,168,92,0.22), transparent 55%),
    linear-gradient(145deg, #0b1220 0%, #151e30 55%, #1a2438 100%);
}
.article-hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 78% 18%, rgba(212,168,92,0.2), transparent 58%),
    linear-gradient(105deg, rgba(11,18,32,0.82) 18%, rgba(11,18,32,0.4) 100%);
  pointer-events: none;
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 2.6rem;
  max-width: 820px;
}
.article-index-hero h1,
.article-hero h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  color: #fffaf3;
  line-height: 1.08;
  max-width: 18ch;
  margin: 0.35rem 0 0.85rem;
}
.article-hero-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,250,243,0.8);
  max-width: 40rem;
  margin-bottom: 1.35rem;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.article-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,250,243,0.88);
  border: 1px solid rgba(255,250,243,0.16);
  background: rgba(0,0,0,0.28);
}
.article-pill-link:hover {
  border-color: rgba(226,196,138,0.55);
  color: #e2c48a;
}
.article-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.article-index-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.article-index-stats div {
  min-width: 120px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,250,243,0.14);
  background: rgba(0,0,0,0.22);
}
.article-index-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.article-index-stats span {
  font-size: 0.75rem;
  color: rgba(255,250,243,0.55);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
  padding-top: 2.5rem;
}
.article-main {
  min-width: 0;
  padding: 1.75rem 1.85rem 2rem;
  border-radius: 22px;
  border: 1px solid rgba(184,137,74,0.16);
  background:
    linear-gradient(180deg, rgba(255,250,243,0.94), rgba(255,248,238,0.88));
  box-shadow: 0 18px 50px rgba(11,18,32,0.06);
}
.article-body {
  font-size: 1.08rem;
  max-width: none;
}
.article-body.prose h2 {
  margin: 2.4rem 0 0.85rem;
  padding-top: 0.35rem;
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  color: var(--ink);
  border-top: 1px solid rgba(184,137,74,0.18);
}
.article-body.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 1.5rem; }
.article-body.prose h3 {
  margin: 1.55rem 0 0.55rem;
  font-size: 1.2rem;
  color: var(--ink-soft);
}
.article-body.prose p,
.article-body.prose li {
  color: var(--text);
  line-height: 1.85;
}
.article-body.prose p { margin-bottom: 1.15rem; }
.article-body.prose ul,
.article-body.prose ol {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}
.article-body.prose li { margin-bottom: 0.45rem; }
.article-body.prose a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.article-body.prose a:hover { color: var(--ink); }

.article-lead {
  font-size: 1.22rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184,137,74,0.16);
}
.article-toc {
  padding: 1.25rem 1.35rem;
  margin: 0 0 2rem;
  border-radius: 16px;
  border: 1px solid rgba(184,137,74,0.22);
  background:
    linear-gradient(145deg, rgba(212,168,92,0.12), rgba(11,18,32,0.03));
}
.article-toc strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.article-toc ol {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}
.article-toc a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}
.article-toc a:hover { color: var(--gold-deep); }

.content-callout {
  margin: 1.35rem 0 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(212,168,92,0.16), rgba(212,168,92,0.05));
}
.content-callout strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  color: var(--ink);
}
.content-callout p { margin: 0; }

.content-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 1.35rem;
}
.content-stats div {
  padding: 1rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(184,137,74,0.18);
  background: rgba(255,250,243,0.7);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.content-stats div:hover {
  transform: translateY(-2px);
  border-color: rgba(184,137,74,0.4);
}
.content-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
}
.content-stats span {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(184,137,74,0.16);
}
.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.content-table th,
.content-table td {
  border-bottom: 1px solid rgba(20,24,32,0.08);
  padding: 0.8rem 0.9rem;
  text-align: left;
  vertical-align: top;
}
.content-table th {
  background: rgba(11,18,32,0.92);
  color: #fffaf3;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.content-table tr:nth-child(even) td { background: rgba(212,168,92,0.06); }

.biz-rich-list { display: grid; gap: 1rem; margin: 1.25rem 0; }
.biz-rich-item {
  padding: 1.2rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(184,137,74,0.18);
  background: rgba(255,250,243,0.55);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.biz-rich-item:hover {
  border-color: rgba(184,137,74,0.4);
  transform: translateY(-2px);
}
.biz-rich-item h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.biz-rich-meta { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.55rem; }

.faq-list { display: grid; gap: 0.85rem; margin: 1.25rem 0; }
.faq-item {
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(20,24,32,0.08);
  background: rgba(255,250,243,0.5);
}
.faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-item p { margin: 0; color: var(--muted); }

.article-algo-tag {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(184,137,74,0.28);
  opacity: 0.7;
}

.article-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,137,74,0.18);
  display: grid;
  gap: 1rem;
}
.article-footer-meta {
  display: grid;
  gap: 0.25rem;
}
.article-footer-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-footer-meta code {
  font-size: 0.88rem;
  color: var(--gold-deep);
}
.article-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.article-rail {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 96px;
}
.article-rail-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(184,137,74,0.16);
  background: rgba(255,250,243,0.78);
}
.article-rail-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.article-rail-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.article-rail-stats li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(20,24,32,0.06);
  padding-bottom: 0.4rem;
}
.article-rail-stats em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
}
.article-related-mini { display: grid; gap: 0.75rem; }
.article-related-mini a {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(20,24,32,0.06);
}
.article-related-mini a:last-child { border-bottom: 0; }
.article-related-mini span {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}
.article-related-mini small { color: var(--muted); }
.article-related-mini a:hover span { color: var(--gold-deep); }
.article-related-band { padding-top: 0.5rem; }

.blog-card-lux {
  background: rgba(255,250,243,0.85);
  border-color: rgba(184,137,74,0.18);
}
.blog-cover {
  position: relative;
  min-height: 190px;
}
.blog-cover-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.blog-grid-lux { gap: 1.25rem; }

@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-rail { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .content-stats { grid-template-columns: 1fr 1fr; }
  .article-main { padding: 1.25rem 1.15rem 1.5rem; }
  .article-rail { grid-template-columns: 1fr; }
}
.algo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px) {
  .algo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .algo-grid { grid-template-columns: 1fr; }
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: var(--ink);
  color: rgba(255,250,243,0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212,168,92,0.18);
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--gold-bright);
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255,250,243,0.72);
  margin-bottom: 0.45rem;
}

.footer-brand { margin-bottom: 1rem; color: var(--white); }

.footer-legal {
  padding: 1.25rem 0 0;
  border-bottom: 1px solid rgba(212,168,92,0.12);
  margin-bottom: 0.2rem;
}

.footer-legal p {
  margin: 0;
  max-width: 68rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255,250,243,0.55);
}

.footer-bottom {
  padding-top: 1.2rem;
  color: rgba(255,250,243,0.5);
  font-size: 0.88rem;
}
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.footer-mini-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.footer-mini-links a {
  color: rgba(255,250,243,0.62);
  text-decoration: none;
}
.footer-mini-links a:hover { color: #e2c48a; }
.footer-cookie-btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255,250,243,0.78);
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-cookie-btn:hover { color: #e2c48a; }
.text-link-btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold, #b8894a);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legal pages */
.legal-page { max-width: 820px; }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin: 1.25rem 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(20, 24, 32, 0.08);
}
.legal-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
}
.legal-nav a:hover { color: var(--ink); }
.legal-body h2 {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.legal-body ul { padding-left: 1.2rem; }
.legal-body li { margin: 0.35rem 0; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0;
}
.legal-table th,
.legal-table td {
  border: 1px solid rgba(20, 24, 32, 0.1);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: rgba(20, 24, 32, 0.04);
  font-weight: 600;
}
.legal-body code {
  font-size: 0.86em;
  background: rgba(20, 24, 32, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Cookie consent banner */
.cookie-root {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1200;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .28s ease, transform .28s ease;
}
.cookie-root.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 92, 0.35);
  background:
    linear-gradient(165deg, rgba(28, 32, 42, 0.97), rgba(18, 22, 30, 0.98));
  color: #fffaf3;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}
.cookie-banner .eyebrow { color: #d4a85c; margin-bottom: 0.35rem; }
.cookie-banner h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  color: #fffaf3;
}
.cookie-banner .muted {
  color: rgba(255, 250, 243, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.cookie-banner a { color: #e2c48a; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cookie-prefs {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 243, 0.1);
}
.cookie-prefs h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #fffaf3;
}
.cookie-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 250, 243, 0.1);
  background: rgba(255, 250, 243, 0.03);
  cursor: pointer;
}
.cookie-toggle.is-locked { opacity: 0.85; cursor: default; }
.cookie-toggle input { margin-top: 0.2rem; accent-color: #b8894a; }
.cookie-toggle strong { display: block; color: #fffaf3; margin-bottom: 0.15rem; }
.cookie-toggle small { color: rgba(255, 250, 243, 0.55); font-size: 0.8rem; line-height: 1.4; }
@media (max-width: 640px) {
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
}

.reveal {
  animation: rise 0.9s ease both;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .sector-grid, .steps, .blog-grid, .footer-grid, .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-panel,
  .search-panel-rich,
  .page-search,
  .search-page-bar {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,250,243,0.97), rgba(246,240,230,0.96));
    border: 1px solid rgba(184, 137, 74, 0.28);
    box-shadow: 0 18px 40px rgba(11, 18, 32, 0.18);
  }

  .search-panel-main {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .search-panel-meta {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .search-panel .field {
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    background: rgba(11, 18, 32, 0.045);
    border: 1px solid rgba(184, 137, 74, 0.12);
  }

  .search-panel .field span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--gold-deep);
  }

  .search-panel .field input,
  .search-panel .field select {
    font-size: 1.02rem;
    min-height: 1.55rem;
  }

  .search-submit {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 720px) {
  .shell { width: min(1180px, calc(100% - 1.25rem)); }
  .hero-content { padding: 6rem 0 3.2rem; }
  .stats, .biz-grid, .sector-grid, .steps, .blog-grid, .footer-grid, .detail-grid {
    grid-template-columns: 1fr;
  }
  .stats { margin-top: 1rem; }
}

/* ===== Admin & Bot ===== */
.admin-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(212,168,92,0.12), transparent 50%),
    linear-gradient(160deg, #0b1220 0%, #151e30 45%, #1a2438 100%);
  color: #f6f0e6;
  font-family: var(--font-body);
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-side {
  padding: 1.5rem 1.1rem;
  border-right: 1px solid rgba(212,168,92,0.18);
  background: rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-side .brand { color: #fffaf3; }
.admin-side nav { display: grid; gap: 0.35rem; }
.admin-side nav a {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: rgba(255,250,243,0.78);
  transition: background .2s ease, color .2s ease;
}
.admin-side nav a:hover { background: rgba(212,168,92,0.12); color: #d4a85c; }
.admin-logout { margin-top: auto; }
.admin-logout .btn { width: 100%; color: #f6f0e6; border-color: rgba(212,168,92,0.3); }

.admin-main { padding: 1.75rem 1.75rem 3rem; }
.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.admin-head h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0; }
.admin-head-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.admin-body .stat {
  background: rgba(255,250,243,0.06);
  border: 1px solid rgba(212,168,92,0.2);
  color: #fffaf3;
}
.admin-body .stat span { color: rgba(255,250,243,0.65); }

.panel, .admin-panel, .wizard-panel, .bot-filters, .bot-results {
  background: rgba(255,250,243,0.05);
  border: 1px solid rgba(212,168,92,0.18);
  border-radius: 18px;
  padding: 1.2rem;
}

.admin-table-wrap { overflow: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid rgba(255,250,243,0.08);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}
.admin-table th { color: #d4a85c; font-weight: 600; font-size: 0.78rem; letter-spacing: .08em; text-transform: uppercase; }
.admin-table a { color: #f3e6cc; text-decoration: underline; text-underline-offset: 3px; }

.flash { padding: 0.85rem 1rem; border-radius: 12px; margin-bottom: 1rem; }
.flash-ok { background: rgba(56,140,102,0.18); color: #b7e0c8; }
.flash-err { background: rgba(180,60,60,0.2); color: #f0b4b4; }

.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #0b1220, #1a2438);
  padding: 1rem;
}
.login-card {
  width: min(420px, 100%);
  display: grid;
  gap: 0.8rem;
  padding: 1.6rem;
  border-radius: 22px;
  background: rgba(255,250,243,0.06);
  border: 1px solid rgba(212,168,92,0.25);
  color: #fffaf3;
}
.login-card .field { background: rgba(255,255,255,0.04); }
.login-card input { color: #fffaf3; }
.login-card .muted { color: rgba(255,250,243,0.65); }

.wizard-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0;
  margin: 0 0 1.2rem;
}
.wizard-steps li {
  padding: 0.8rem;
  border-radius: 14px;
  background: rgba(255,250,243,0.04);
  border: 1px solid rgba(255,250,243,0.08);
  display: grid;
  gap: 0.2rem;
}
.wizard-steps li.is-active { border-color: rgba(212,168,92,0.55); background: rgba(212,168,92,0.12); }
.wizard-steps li.is-done { opacity: 0.75; }
.wizard-steps span { color: #d4a85c; font-family: var(--font-display); }
.wizard-form { display: grid; gap: 0.8rem; }
.wizard-form .field, .bot-filters .field { background: rgba(255,255,255,0.04); }
.wizard-form input, .wizard-form select, .wizard-form textarea,
.bot-filters input, .bot-filters select, .bot-filters textarea {
  color: #fffaf3;
  background: transparent;
  border: 0;
  font: inherit;
  width: 100%;
}

/* Native dropdown options must stay dark-on-light (Windows/Chrome) */
.admin-body select option,
.login-card select option,
.lux-field select option,
.wizard-form select option,
.bot-filters select option,
.generate-form select option,
.filter-form select option,
.field select option {
  color: #1c2434;
  background-color: #fffaf3;
}
.wizard-form textarea { min-height: 90px; resize: vertical; }
.check { display: flex; gap: 0.55rem; align-items: center; color: rgba(255,250,243,0.85); font-size: 0.92rem; }
.place-pick-list { display: grid; gap: 0.65rem; }
.place-pick {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(212,168,92,0.18);
  background: rgba(255,250,243,0.03);
}
.inline-form { grid-template-columns: 1.4fr 1fr auto; align-items: end; }
.inline-form .field.grow { grid-column: auto; }

.bot-layout {
  display: grid;
  grid-template-columns: minmax(360px, 420px) 1fr;
  gap: 1.25rem;
  align-items: start;
}

.premium-filters {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,250,243,0.07), rgba(255,250,243,0.03)),
    rgba(8, 13, 22, 0.55);
  border: 1px solid rgba(212,168,92,0.22);
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}

.filter-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.35rem 1.15rem;
  border-bottom: 1px solid rgba(212,168,92,0.16);
  background:
    radial-gradient(500px 160px at 0% 0%, rgba(212,168,92,0.16), transparent 60%),
    rgba(255,250,243,0.02);
}

.filter-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4a85c;
}

.filter-hero h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #fffaf3;
}

.filter-hero p {
  margin: 0.35rem 0 0;
  color: rgba(255,250,243,0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.filter-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-badge {
  color: #1a140a;
  background: linear-gradient(135deg, #e2c48a, #b8894a);
}

.status-pill-ok {
  color: #b7e0c8;
  background: rgba(56,140,102,0.18);
  border: 1px solid rgba(56,140,102,0.28);
}

.status-pill-warn {
  color: #e6c98a;
  background: rgba(212,168,92,0.14);
  border: 1px solid rgba(212,168,92,0.28);
}

.filter-block {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid rgba(255,250,243,0.06);
}

.filter-block-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-bottom: 0.95rem;
}

.filter-step {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #1a140a;
  background: linear-gradient(145deg, #e2c48a, #b8894a);
}

.filter-block-head h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #fffaf3;
}

.filter-block-head p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: rgba(255,250,243,0.55);
}

.filter-block-body {
  display: grid;
  gap: 0.8rem;
}

.lux-field {
  display: grid;
  gap: 0.4rem;
}

.lux-label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,250,243,0.58);
  font-weight: 600;
}

.lux-label em {
  font-style: normal;
  color: #d4a85c;
}

.lux-field input,
.lux-field select,
.input-suffix {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(212,168,92,0.22);
  background: rgba(255,250,243,0.04);
  color: #fffaf3;
  font: inherit;
  font-size: 0.95rem;
  padding: 0 0.9rem;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.lux-field select {
  appearance: none;
  color: #fffaf3;
  background-color: rgba(255,250,243,0.04);
  background-image:
    linear-gradient(45deg, transparent 50%, #d4a85c 50%),
    linear-gradient(135deg, #d4a85c 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.lux-field select option {
  color: #1c2434;
  background-color: #fffaf3;
}

.lux-field input:focus,
.lux-field select:focus,
.input-suffix:focus-within {
  border-color: rgba(212,168,92,0.55);
  background: rgba(212,168,92,0.08);
  box-shadow: 0 0 0 3px rgba(212,168,92,0.12);
}

.lux-field small {
  color: rgba(255,250,243,0.42);
  font-size: 0.78rem;
}

.input-suffix {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-right: 0.75rem;
  gap: 0.35rem;
}

.input-suffix input {
  border: 0;
  background: transparent;
  min-height: 44px;
  padding: 0;
  box-shadow: none;
}

.input-suffix em {
  font-style: normal;
  color: #d4a85c;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-grid {
  grid-template-columns: 1fr 1fr;
}

.city-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.lux-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,250,243,0.78);
  font-size: 0.86rem;
}

.lux-check.compact { font-size: 0.8rem; color: #d4a85c; }

.city-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  max-height: 230px;
  overflow: auto;
  padding: 0.15rem;
}

.city-chip {
  position: relative;
  cursor: pointer;
}

.city-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.city-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.65rem;
  border-radius: 11px;
  border: 1px solid rgba(255,250,243,0.1);
  background: rgba(255,250,243,0.03);
  color: rgba(255,250,243,0.78);
  font-size: 0.86rem;
  text-align: center;
  transition: all .2s ease;
}

.city-chip input:checked + span {
  color: #1a140a;
  border-color: transparent;
  background: linear-gradient(135deg, #e2c48a, #b8894a);
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(184,137,74,0.25);
}

.city-chip:hover span {
  border-color: rgba(212,168,92,0.35);
}

.rule-grid {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.rule-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,250,243,0.08);
  background: rgba(255,250,243,0.03);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.rule-card:hover {
  border-color: rgba(212,168,92,0.28);
  background: rgba(212,168,92,0.06);
}

.rule-card input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: #b8894a;
}

.rule-card strong {
  display: block;
  color: #fffaf3;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.rule-card small {
  display: block;
  color: rgba(255,250,243,0.5);
  font-size: 0.78rem;
  line-height: 1.4;
}

.filter-actions-bar {
  padding: 1.2rem 1.35rem 1.35rem;
  display: grid;
  gap: 0.75rem;
  background: rgba(0,0,0,0.18);
}

.filter-actions-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.filter-actions-bar .btn { width: 100%; }

.bot-progress {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(212,168,92,0.18);
  background: rgba(255,250,243,0.03);
}

.bot-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.bot-progress-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,250,243,0.45);
}

.bot-progress-meta p {
  margin: 0;
  color: rgba(255,250,243,0.8);
  font-size: 0.86rem;
}

.bot-progress-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.bot-progress-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #b8894a, #e2c48a);
  transition: width .3s ease;
}

.bot-log {
  max-height: 160px;
  overflow: auto;
  display: grid;
  gap: 0.35rem;
}

.bot-log-line {
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.22);
  font-size: 0.8rem;
  line-height: 1.4;
}

.bot-log-line.is-ok { color: #b7e0c8; }
.bot-log-line.is-err { color: #f0b4b4; }
.bot-log-line.is-warn { color: #e6c98a; }

.results-premium {
  min-height: 680px;
}

.bot-table .tiny { font-size: 0.78rem; margin-top: 0.2rem; }
.chip.is-new { color: #b7e0c8; background: rgba(56,140,102,0.18); }
.chip.is-exists { color: #e6c98a; background: rgba(212,168,92,0.16); }
.bot-empty td { color: rgba(255,250,243,0.55); text-align: center; padding: 2.4rem 1rem; }
.admin-body .muted { color: rgba(255,250,243,0.62); }
.admin-body .section-head h2 { color: #fffaf3; }
.admin-body .section-head p { color: rgba(255,250,243,0.62); }
.admin-body .text-link { color: #d4a85c; }
.admin-body h2 em { font-style: normal; color: #d4a85c; margin-left: 0.35rem; }

.search-panel-rich { grid-template-columns: 1fr auto; }
.hero-lux .hero-content { padding: 5.75rem 0 2.75rem; }
.search-page-hero .search-page-bar { margin-top: 1.35rem; }
.search-page-hero .hero-lead { color: rgba(255,250,243,0.78); }
.filter-strip { margin-top: -1.2rem; position: relative; z-index: 4; }
.filter-strip-inner {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  padding: 0.85rem 1rem; border-radius: 16px;
  background: rgba(255,250,243,0.92); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.filter-label { font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 0.3rem; }
.filter-strip-inner a {
  padding: 0.45rem 0.8rem; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(11,18,32,0.03); font-size: 0.86rem;
}
.stats-compact { margin-top: 1rem; }
.section-tight { padding: 2.8rem 0; }
.home-split { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 1.2rem; }
.sector-grid-dense { grid-template-columns: repeat(2, 1fr); }
.city-spotlight { display: grid; gap: 0.55rem; }
.city-spotlight a {
  display: flex; justify-content: space-between; gap: 0.8rem;
  padding: 0.85rem 1rem; border-radius: 14px;
  background: rgba(255,250,243,0.78); border: 1px solid var(--line);
}
.row-head { flex-direction: row; justify-content: space-between; align-items: end; max-width: none; width: 100%; }
.biz-grid-3 { grid-template-columns: repeat(3, 1fr); }
.home-dual { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.2rem; }
.rank-list { display: grid; gap: 0.55rem; }
.rank-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.8rem; align-items: center;
  padding: 0.9rem 1rem; border-radius: 14px; background: rgba(255,250,243,0.78); border: 1px solid var(--line);
}
.rank-no { font-family: var(--font-display); color: var(--gold-deep); }
.steps-inline article { background: rgba(255,250,243,0.06); border-color: rgba(212,168,92,0.22); color: #fffaf3; }
.steps-inline p { color: rgba(255,250,243,0.7); }
.search-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas:
    "toolbar toolbar"
    "filters results";
  gap: 1.2rem;
  align-items: start;
}
.search-toolbar {
  grid-area: toolbar;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.search-toolbar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.search-toolbar p { margin: 0.25rem 0 0; color: var(--muted); }
.filter-open-btn { display: none; }
.filter-panel { grid-area: filters; }
.search-results { grid-area: results; }
.filter-sheet-backdrop { display: none; }
.filter-sheet-head { display: none; }
.filter-panel, .filter-form { display: grid; gap: 0.75rem; }
.filter-form {
  padding: 1.15rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,250,243,0.95), rgba(246,240,230,0.9));
  border: 1px solid var(--line);
  position: sticky;
  top: 90px;
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.06);
}
.filter-form h2, .filter-sheet-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.filter-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.filter-checks { display: grid; gap: 0.45rem; }
.filter-actions { display: grid; gap: 0.55rem; }
.filter-form .field {
  border: 1px solid rgba(184, 137, 74, 0.14);
  background: rgba(255,255,255,0.55);
}
.filter-form .check {
  color: var(--text);
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.03);
}
.page-hero-slim { padding: 3.2rem 0 1.5rem; }
.detail-hero-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 1.2rem; align-items: end; }
.detail-photo { min-height: 220px; border-radius: 18px; background-size: cover; background-position: center; }
.detail-address { color: rgba(255,250,243,0.75); margin-top: 0.8rem; }
.map-frame { min-height: 280px; border-radius: 16px; margin: 1rem 0; background: #151e30; }
.biz-photo { min-height: 140px; background-size: cover; background-position: center; border-radius: 18px 18px 0 0; }
.biz-card { padding: 0; overflow: hidden; display: block; }
.biz-card-body { padding: 1.1rem 1.15rem 1.25rem; }
.sticky-panel { position: sticky; top: 96px; }

@media (max-width: 1100px) {
  .admin-shell, .bot-layout, .home-split, .home-dual, .detail-hero-grid, .inline-form { grid-template-columns: 1fr; }
  .search-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "toolbar"
      "results";
  }
  .filter-open-btn { display: inline-flex; }
  .filter-panel {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    pointer-events: none;
  }
  .filter-panel.is-open { pointer-events: auto; }
  .filter-sheet-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 20, 0.58);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.28s ease;
  }
  .filter-form {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: min(88vh, 760px);
    overflow: auto;
    margin: 0;
    border-radius: 24px 24px 0 0;
    padding: 1.2rem 1.15rem calc(1.2rem + env(safe-area-inset-bottom));
    transform: translateY(104%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -20px 50px rgba(0,0,0,0.25);
  }
  .filter-panel.is-open .filter-sheet-backdrop { opacity: 1; }
  .filter-panel.is-open .filter-form { transform: translateY(0); }
  .filter-sheet-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
  }
  .filter-sheet-head .eyebrow { margin-bottom: 0.25rem; }
  .filter-close-btn { flex: 0 0 auto; }
  body.filter-open { overflow: hidden; }
  .admin-stats, .biz-grid-3, .wizard-steps, .metric-grid, .city-chip-grid { grid-template-columns: 1fr 1fr; }
  .admin-side { border-right: 0; border-bottom: 1px solid rgba(212,168,92,0.18); }
}

@media (max-width: 640px) {
  .metric-grid, .city-chip-grid, .filter-actions-secondary { grid-template-columns: 1fr; }
  .search-panel-meta,
  .filter-pair { grid-template-columns: 1fr; }
  .hero-lux .hero-content { padding: 4.5rem 0 2rem; }
  .search-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-open-btn { width: 100%; justify-content: center; }
}

/* ===== Admin blog / Quill ===== */
.article-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}
.article-form-main, .article-form-side { display: grid; gap: 0.9rem; }
.article-form-side { position: sticky; top: 1rem; }
.lux-field textarea {
  width: 100%;
  min-height: 96px;
  border-radius: 12px;
  border: 1px solid rgba(212,168,92,0.22);
  background: rgba(255,250,243,0.04);
  color: #fffaf3;
  font: inherit;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}
.quill-shell {
  min-height: 320px;
  border-radius: 0 0 12px 12px;
  background: #fffaf3;
  color: #1c2434;
}
.ql-toolbar.ql-snow {
  border-radius: 12px 12px 0 0;
  border-color: rgba(212,168,92,0.28) !important;
  background: rgba(255,250,243,0.08);
}
.ql-container.ql-snow {
  border-color: rgba(212,168,92,0.28) !important;
  border-radius: 0 0 12px 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 300px;
}
.ql-editor { min-height: 300px; }
.field-error { color: #f0b4b4; font-size: 0.8rem; }
.table-actions { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.inline-form-delete { display: inline; margin: 0; }
.btn-sm { min-height: 36px; padding: 0.4rem 0.75rem; font-size: 0.82rem; border-radius: 999px; }
.btn-danger { color: #f0b4b4 !important; border-color: rgba(240,180,180,0.35) !important; }
.generate-form { display: grid; gap: 0.9rem; max-width: 720px; }
.tiny { font-size: 0.78rem; }
@media (max-width: 980px) {
  .article-form-grid { grid-template-columns: 1fr; }
  .article-form-side { position: static; }
}

/* ===== Advanced article generator studio ===== */
.gen-studio {
  display: grid;
  gap: 1rem;
  position: relative;
}
.gen-studio::before {
  content: "";
  position: absolute;
  inset: -1rem -0.5rem auto;
  height: 180px;
  background:
    radial-gradient(ellipse 50% 80% at 15% 0%, rgba(212,168,92,0.14), transparent 70%),
    radial-gradient(ellipse 40% 70% at 85% 20%, rgba(255,250,243,0.04), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.gen-scope-panel,
.gen-fields-panel,
.gen-publish-panel {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.45rem;
  overflow: hidden;
}
.gen-scope-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,92,0.12), transparent 70%);
  pointer-events: none;
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.scope-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,250,243,0.1);
  background:
    linear-gradient(160deg, rgba(255,250,243,0.05), rgba(255,250,243,0.015));
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.scope-card:hover {
  border-color: rgba(212,168,92,0.35);
  background: rgba(212,168,92,0.08);
  transform: translateY(-2px);
}
.scope-card:has(input:checked) {
  border-color: rgba(212,168,92,0.6);
  background:
    linear-gradient(160deg, rgba(212,168,92,0.18), rgba(212,168,92,0.06));
  box-shadow: 0 14px 36px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,250,243,0.08);
}
.scope-card input { margin-top: 0.25rem; accent-color: #b8894a; }
.scope-card strong {
  display: block;
  color: #fffaf3;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.scope-card span {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  color: #d4a85c;
  margin-bottom: 0.4rem;
}
.scope-card small { color: rgba(255,250,243,0.52); font-size: 0.8rem; line-height: 1.4; }
.gen-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.gen-fields-grid > [data-field] { min-width: 0; }
.gen-fields-grid .multi-select {
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.04);
  border: 1px solid rgba(212, 168, 92, 0.18);
}
.gen-fields-grid .multi-select-label {
  color: rgba(255, 250, 243, 0.55);
}
.gen-fields-grid .multi-select-trigger {
  color: #fffaf3;
  background-image:
    linear-gradient(45deg, transparent 50%, #d4a85c 50%),
    linear-gradient(135deg, #d4a85c 50%, transparent 50%);
  background-position:
    calc(100% - 4px) calc(50% - 2px),
    calc(100% + 2px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.gen-fields-grid .multi-select-panel {
  background: #1a2436;
  border-color: rgba(212, 168, 92, 0.35);
  color: #fffaf3;
}
.gen-fields-grid .multi-select-option:hover {
  background: rgba(212, 168, 92, 0.14);
}
.gen-fields-grid .multi-select-option span {
  color: #fffaf3;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.92rem;
}
.lux-field[hidden] { display: none !important; }
[data-field][hidden] { display: none !important; }
.seo-preview-card {
  margin-top: 1.1rem;
  padding: 1.05rem 1.15rem;
  border-radius: 16px;
  border: 1px dashed rgba(212,168,92,0.4);
  background:
    linear-gradient(135deg, rgba(0,0,0,0.28), rgba(212,168,92,0.06));
  display: grid;
  gap: 0.45rem;
}
.seo-preview-card .lux-label {
  color: rgba(255,250,243,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.seo-preview-card code,
.seo-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #e2c48a;
  font-size: 0.95rem;
  word-break: break-all;
}
.job-progress { padding: 1.25rem 0 1rem; }
.job-progress-stats { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.job-progress-stats div { display: flex; flex-direction: column; }
.job-progress-stats strong { font-size: 1.6rem; color: var(--ink); line-height: 1; }
.job-progress-stats span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.job-progress-bar { height: 10px; border-radius: 999px; background: var(--line); overflow: hidden; margin-bottom: .5rem; }
.job-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), #d99b3c); transition: width .5s ease; }
.gen-publish-panel .rule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .scope-grid,
  .gen-fields-grid,
  .gen-publish-panel .rule-grid { grid-template-columns: 1fr; }
}

/* ===== Public business submit (light luxury) ===== */
.submit-hero { padding-bottom: 0.35rem; }
.submit-hero .eyebrow {
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.submit-hero h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.85rem);
}
.submit-hero .hero-lead {
  color: var(--muted);
  max-width: 36rem;
}

.submit-studio {
  padding: 1.75rem 1.85rem 2rem;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  background:
    linear-gradient(165deg, rgba(255,255,255,0.96), rgba(255,250,243,0.92)),
    #fffaf3;
  border: 1px solid rgba(28, 36, 52, 0.08);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 28px 60px rgba(11, 18, 32, 0.1);
}

.submit-studio .filter-block-head h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}

.submit-studio .filter-block-head p {
  color: var(--muted);
}

.submit-studio .lux-label {
  color: #4a5568;
  letter-spacing: 0.08em;
}

.submit-studio .lux-field input,
.submit-studio .lux-field select,
.submit-studio .lux-field textarea {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(28, 36, 52, 0.12);
  box-shadow: 0 1px 2px rgba(11, 18, 32, 0.04);
}

.submit-studio .lux-field select {
  color: var(--ink);
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.submit-studio .lux-field input::placeholder,
.submit-studio .lux-field textarea::placeholder {
  color: #8b95a5;
}

.submit-studio .lux-field input:focus,
.submit-studio .lux-field select:focus,
.submit-studio .lux-field textarea:focus {
  border-color: rgba(184, 137, 74, 0.55);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.14);
}

.submit-studio .field-error {
  color: #b42318;
}

.submit-studio .seo-preview-card {
  background:
    linear-gradient(135deg, rgba(246, 240, 230, 0.9), rgba(255, 255, 255, 0.85));
  border: 1px dashed rgba(184, 137, 74, 0.4);
}

.submit-studio .seo-preview-card .lux-label {
  color: var(--gold-deep);
}

.submit-studio .seo-preview-card .muted,
.submit-studio .seo-preview-card p {
  color: var(--muted);
}

.submit-studio .seo-preview-card strong {
  color: var(--ink);
}

.submit-studio .btn-ghost {
  color: var(--ink);
  border-color: rgba(28, 36, 52, 0.14);
  background: rgba(255,255,255,0.7);
}

.submit-studio .flash-err {
  background: rgba(180, 60, 60, 0.1);
  color: #8f1f1f;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

.submit-thanks {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, #fff, #fffaf3);
  border: 1px solid rgba(28, 36, 52, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(11, 18, 32, 0.08);
  color: var(--text);
}

.submit-thanks .eyebrow { color: var(--gold-deep); font-weight: 600; letter-spacing: 0.14em; }
.submit-thanks h1,
.submit-thanks h2,
.submit-thanks h3 {
  color: var(--ink);
}
.submit-thanks .hero-lead { color: var(--muted); }
.submit-thanks .btn-ghost {
  color: var(--ink);
  border-color: rgba(28, 36, 52, 0.14);
  background: rgba(255,255,255,0.7);
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.admin-stats a.stat {
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.admin-stats a.stat:hover,
.admin-stats a.stat.is-active {
  border-color: rgba(212,168,92,0.45);
  transform: translateY(-1px);
}

/* ===== Brand luxury pages ===== */
.brand-index-hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 80% at 15% 0%, rgba(212,168,92,0.2), transparent 60%),
    linear-gradient(160deg, #0b1220 0%, #151e30 55%, #1a2438 100%);
  color: #fffaf3;
  overflow: hidden;
}
.brand-index-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.brand-index-hero .eyebrow { color: #d4a85c; }
.brand-index-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fffaf3;
  margin-bottom: 0.6rem;
}
.brand-index-hero .hero-lead { color: rgba(255,250,243,0.72); }
.brand-index-search {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.brand-index-search input {
  flex: 1;
  min-width: 220px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,250,243,0.18);
  background: rgba(255,250,243,0.06);
  color: #fffaf3;
  padding: 0.7rem 1.1rem;
  font: inherit;
}
.brand-lux-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.brand-lux-card {
  display: grid;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(20,24,32,0.08);
  background: rgba(255,250,243,0.7);
  transition: transform .22s ease, box-shadow .22s ease;
}
.brand-lux-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11,18,32,0.12);
}
.brand-lux-card-media {
  height: 140px;
  background: center/cover no-repeat #151e30;
}
.brand-lux-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.25rem;
}
.brand-lux-card-body strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.brand-lux-card-body span { color: var(--muted); font-size: 0.9rem; }
.brand-lux-card-body em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold-deep);
  margin-top: 0.35rem;
}
.brand-lux-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.brand-lux-tag {
  font-style: normal !important;
  margin-top: 0 !important;
  font-size: 0.72rem !important;
  color: var(--ink) !important;
  background: rgba(20, 24, 32, 0.06);
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
}
.brand-sector-nav-wrap { padding-bottom: 0.25rem; }
.brand-sector-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.brand-sector-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 24, 32, 0.12);
  background: rgba(255, 250, 243, 0.75);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.brand-sector-chip:hover {
  border-color: rgba(212, 168, 92, 0.55);
  background: rgba(212, 168, 92, 0.12);
}
.brand-sector-chip.is-active {
  background: #141820;
  border-color: #141820;
  color: #fffaf3;
}
.brand-sector-block { scroll-margin-top: 5.5rem; }
.brand-sector-head { align-items: end; }
.brand-sector-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}

.brand-hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.25), rgba(11,18,32,0.82)),
    var(--brand-cover) center/cover no-repeat;
  color: #fffaf3;
}
.brand-hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(212,168,92,0.18), transparent 60%),
    linear-gradient(100deg, rgba(11,18,32,0.75) 20%, rgba(11,18,32,0.35) 100%);
  pointer-events: none;
}
.brand-hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.75rem;
  max-width: 760px;
}
.brand-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,250,243,0.55);
  margin-bottom: 1rem;
}
.brand-crumb a:hover { color: #e2c48a; }
.brand-crumb em { font-style: normal; color: #e2c48a; }
.brand-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: #fffaf3;
  line-height: 1.05;
  margin: 0.2rem 0 0.7rem;
}
.brand-hero-lead {
  font-size: 1.1rem;
  color: rgba(255,250,243,0.78);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}
.brand-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.brand-hero-stats div {
  min-width: 110px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,250,243,0.14);
  background: rgba(0,0,0,0.22);
}
.brand-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.brand-hero-stats span { font-size: 0.75rem; color: rgba(255,250,243,0.55); }
.brand-hero-cta { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.brand-cta-ghost {
  color: #fffaf3 !important;
  border-color: rgba(255,250,243,0.28) !important;
}
.brand-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.brand-aside-panel {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(20,24,32,0.08);
  background: rgba(255,250,243,0.65);
}
.brand-aside-panel strong {
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}
.brand-quick-block { margin-bottom: 1.35rem; }
.brand-quick-block h3 {
  font-size: 1rem;
  margin-bottom: 0.65rem;
}
.brand-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(184,137,74,0.35);
  background: rgba(255,250,243,0.8);
  font-size: 0.9rem;
  transition: background .2s ease, transform .2s ease;
}
.brand-chip:hover {
  background: rgba(212,168,92,0.18);
  transform: translateY(-1px);
}
.brand-chip-alt {
  border-color: rgba(20,24,32,0.12);
  background: rgba(20,24,32,0.04);
}
.brand-inline-search {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.brand-inline-search input {
  flex: 1;
  min-width: 220px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(20,24,32,0.12);
  padding: 0.7rem 1.1rem;
  font: inherit;
  background: #fffaf3;
}
.brand-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.brand-contact-points {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.brand-contact-form {
  padding: 1.35rem 1.4rem 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.lead-unread td { font-weight: 500; }
@media (max-width: 900px) {
  .brand-lux-grid,
  .brand-intro-grid,
  .brand-contact-grid { grid-template-columns: 1fr; }
}

/* Blog index filters */
.blog-filter-section { padding-top: 1.5rem; padding-bottom: 0.5rem; }
.blog-filter-panel {
  padding: 1.4rem 1.5rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(184,137,74,0.2);
  background:
    linear-gradient(160deg, rgba(255,250,243,0.95), rgba(255,248,238,0.88));
  box-shadow: 0 16px 40px rgba(11,18,32,0.06);
}
.blog-filter-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}
.blog-filter-head h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 0 0 0.25rem;
}
.blog-filter-head p { margin: 0; }
.blog-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.blog-filter-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.brand-chip.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  border-color: transparent;
  font-weight: 600;
}
.blog-filter-grid .field {
  background: rgba(255,250,243,0.7);
  border: 1px solid rgba(184,137,74,0.16);
  border-radius: 14px;
  padding: 0.65rem 0.8rem 0.75rem;
}
.blog-filter-grid .field select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.blog-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 1.1rem;
}
.blog-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
}
.article-pill-ink {
  color: var(--ink);
  border-color: rgba(184,137,74,0.28);
  background: rgba(212,168,92,0.14);
}
.blog-filter-hint { margin: 0.85rem 0 0; }
@media (max-width: 980px) {
  .blog-filter-grid,
  .blog-filter-grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .blog-filter-grid,
  .blog-filter-grid-2 { grid-template-columns: 1fr; }
  .blog-filter-panel { padding: 1.15rem 1.1rem; }
}

/* ===== Brand one-page microsite (Ads-safe luxury) ===== */
.bmp { color: var(--text); }
.bmp-nav {
  position: sticky;
  top: 74px;
  z-index: 35;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.28);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.bmp-nav.is-solid {
  background: rgba(11, 18, 32, 0.92);
  border-bottom-color: rgba(212, 168, 92, 0.2);
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.18);
}
.bmp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
}
.bmp-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fffaf3;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  max-width: 42vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bmp-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.85rem;
  font-size: 0.88rem;
}
.bmp-nav-links a { color: rgba(255,250,243,0.72); }
.bmp-nav-links a:hover,
.bmp-nav-links a.is-active { color: #e2c48a; }
.bmp-nav-cta {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2c48a, #b8894a);
  color: #0b1220 !important;
  font-weight: 600;
}

.bmp-hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: #fffaf3;
  overflow: hidden;
}
.bmp-hero-media {
  position: absolute;
  inset: 0;
  background:
    var(--brand-cover) center/cover no-repeat;
  transform: scale(1.04);
  animation: bmp-kenburns 18s ease-in-out infinite alternate;
}
.bmp-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,18,32,0.88) 12%, rgba(11,18,32,0.42) 58%, rgba(11,18,32,0.55) 100%),
    linear-gradient(180deg, rgba(11,18,32,0.15), rgba(11,18,32,0.78));
}
.bmp-hero-copy {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.5rem;
  max-width: 720px;
}
.bmp-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #d4a85c;
}
.bmp-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: #fffaf3;
}
.bmp-hero-lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,250,243,0.78);
}
.bmp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}
.bmp-btn-ghost {
  color: #fffaf3 !important;
  border-color: rgba(255,250,243,0.28) !important;
  background: rgba(255,250,243,0.06) !important;
}

.bmp-disclosure {
  background: #151e30;
  color: rgba(255,250,243,0.78);
  border-bottom: 1px solid rgba(212,168,92,0.18);
}
.bmp-disclosure p {
  margin: 0;
  padding: 0.95rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.bmp-disclosure strong { color: #e2c48a; font-weight: 600; }

.bmp-section { padding: 4.5rem 0; }
.bmp-section-ink {
  background:
    radial-gradient(ellipse 50% 80% at 10% 0%, rgba(212,168,92,0.14), transparent 55%),
    linear-gradient(160deg, #0b1220 0%, #151e30 100%);
  color: #fffaf3;
}
.bmp-section-head { max-width: 640px; margin-bottom: 2rem; }
.bmp-section-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
}
.bmp-section-head p { margin: 0; color: var(--muted); }
.bmp-section-head-light h2 { color: #fffaf3; }
.bmp-section-head-light p { color: rgba(255,250,243,0.68); }
.bmp-section-head-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  max-width: none;
}

.bmp-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.5rem 0 1.5rem;
}
.bmp-cat {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(184,137,74,0.28);
  background: rgba(212,168,92,0.12);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.bmp-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
}
.bmp-service h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: var(--ink);
}
.bmp-service p { margin: 0; color: var(--muted); }

.bmp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.bmp-step {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(212,168,92,0.22);
  border-radius: 18px;
  background: rgba(255,250,243,0.04);
}
.bmp-step span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #d4a85c;
  margin-bottom: 0.65rem;
}
.bmp-step h3 { margin: 0 0 0.4rem; color: #fffaf3; font-size: 1.15rem; }
.bmp-step p { margin: 0; color: rgba(255,250,243,0.65); font-size: 0.95rem; }

.bmp-filter {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(28,36,52,0.08);
  background: linear-gradient(165deg, #fff, #fffaf3);
  box-shadow: 0 18px 40px rgba(11,18,32,0.06);
}
.bmp-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.85rem;
  align-items: end;
}
.bmp-field {
  display: grid;
  gap: 0.35rem;
}
.bmp-field span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6b7c;
  font-weight: 600;
}
.bmp-field input,
.bmp-field select,
.bmp-field textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(28,36,52,0.12);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.65rem 0.9rem;
  outline: none;
}
.bmp-field textarea { min-height: 120px; resize: vertical; }
.bmp-field input:focus,
.bmp-field select:focus,
.bmp-field textarea:focus {
  border-color: rgba(184,137,74,0.55);
  box-shadow: 0 0 0 3px rgba(184,137,74,0.12);
}
.bmp-filter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-top: 0.9rem;
  font-size: 0.9rem;
}
.bmp-filter-meta span {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(212,168,92,0.16);
  color: var(--gold-deep);
  font-weight: 600;
}
.bmp-hint { margin: 0.75rem 0 0; font-size: 0.82rem; color: var(--muted); }

.bmp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.bmp-chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(28,36,52,0.1);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  font-size: 0.9rem;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.bmp-chip:hover { border-color: rgba(184,137,74,0.4); transform: translateY(-1px); }
.bmp-chip.is-active {
  background: linear-gradient(135deg, #e2c48a, #b8894a);
  border-color: transparent;
  color: #0b1220;
  font-weight: 600;
}

.bmp-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  border: 1px dashed rgba(184,137,74,0.35);
  background: rgba(255,250,243,0.55);
}
.bmp-empty h3 { margin: 0 0 0.4rem; }
.bmp-biz-grid { margin-top: 0.5rem; }

.bmp-faq { display: grid; gap: 0.65rem; max-width: 820px; }
.bmp-faq-item {
  border-radius: 16px;
  border: 1px solid rgba(28,36,52,0.08);
  background: #fff;
  padding: 0.35rem 1rem;
}
.bmp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--ink);
}
.bmp-faq-item summary::-webkit-details-marker { display: none; }
.bmp-faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.bmp-richtext {
  max-width: 820px;
  line-height: 1.75;
  font-size: 1.02rem;
}
.bmp-richtext h2, .bmp-richtext h3, .bmp-richtext h4 {
  color: #fffaf3;
  margin: 1.6rem 0 0.6rem;
}
.bmp-richtext p { margin: 0 0 1rem; }
.bmp-richtext ul, .bmp-richtext ol { margin: 0 0 1rem; padding-left: 1.3rem; }
.bmp-richtext li { margin: 0.35rem 0; }
.bmp-richtext a { color: var(--gold); text-decoration: underline; }
.bmp-richtext blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1.1rem;
  border-left: 3px solid var(--gold);
  color: rgba(255,250,243,0.85);
  background: rgba(255,255,255,0.04);
}
.bmp-richtext img { max-width: 100%; border-radius: 10px; margin: 0.6rem 0; }
.bmp-richtext strong { color: #fff; }

.bmp-contact {
  padding: 4.75rem 0 5.5rem;
  background:
    radial-gradient(ellipse 55% 70% at 85% 10%, rgba(212,168,92,0.16), transparent 55%),
    linear-gradient(165deg, #0b1220 0%, #151e30 100%);
  color: #fffaf3;
}
.bmp-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.bmp-contact-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: #fffaf3;
}
.bmp-contact-copy p { color: rgba(255,250,243,0.72); }
.bmp-contact-copy ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: rgba(255,250,243,0.78);
}
.bmp-contact-copy li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: #d4a85c;
  vertical-align: 0.15rem;
}
.bmp-contact-copy a { color: #e2c48a; text-decoration: underline; text-underline-offset: 3px; }

.bmp-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(212,168,92,0.22);
  background: rgba(255,250,243,0.96);
  color: var(--text);
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}
.bmp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.bmp-form .flash-ok {
  background: rgba(56,140,102,0.12);
  color: #1f6b45;
}
.bmp-form .flash-err {
  background: rgba(180,60,60,0.1);
  color: #8f1f1f;
}
.bmp-form .field-error { color: #b42318; font-size: 0.8rem; }
.bmp-form-legal {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.bmp-form-legal a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

[data-bmp-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-bmp-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes bmp-kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.bmp-nav-cta-ghost {
  background: transparent !important;
  color: #fffaf3 !important;
  border: 1px solid rgba(255,250,243,0.28);
}
.bmp-contact-actions { margin: 1.1rem 0 1.25rem; }
.bmp-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(11, 18, 32, 0.94);
  border-top: 1px solid rgba(212, 168, 92, 0.22);
  box-shadow: 0 -10px 28px rgba(11, 18, 32, 0.28);
  backdrop-filter: blur(16px);
}
.bmp-dock-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.bmp-dock-btn:active { transform: scale(0.98); }
.bmp-dock-btn-primary {
  color: #0b1220;
  background: linear-gradient(135deg, #e2c48a, #b8894a);
  box-shadow: 0 6px 16px rgba(184, 137, 74, 0.28);
}
.bmp-dock-btn-secondary {
  color: #fffaf3;
  background: rgba(255, 250, 243, 0.06);
  border: 1px solid rgba(255, 250, 243, 0.22);
}

@media (max-width: 980px) {
  .bmp-nav-links a:not(.bmp-nav-cta) { display: none; }
  .bmp-service-grid,
  .bmp-steps,
  .bmp-contact-grid,
  .bmp-form-row,
  .bmp-filter-grid { grid-template-columns: 1fr; }
  .bmp-section-head-row { flex-direction: column; align-items: flex-start; }
  .bmp-hero { min-height: min(85vh, 640px); }
  .bmp-dock { display: flex; }
  .bmp { padding-bottom: calc(5.25rem + env(safe-area-inset-bottom)); }
  .header-inner { min-height: 78px; }
  .brand-mark { width: 50px; height: 50px; border-radius: 15px; }
  .brand-mark > span { font-size: 1.1rem; }
  .brand-text strong { font-size: 1.18rem; }
  .brand-text em { font-size: 0.7rem; letter-spacing: 0.2em; }
  .bmp-nav { top: 78px; }
  .bmp-hero-actions { display: none; }
}

/* ── Admin · Yapay zekâ makale üretici ───────────────────────── */
.ai-toolbar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.ai-toolbar .btn { margin: 0; }
.ai-toolbar small { color: var(--muted, #8b93a3); }

.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn.is-loading .ai-spin { display: inline-block; }

.ai-spin {
  width: 14px;
  height: 14px;
  margin-right: 0.45rem;
  vertical-align: -2px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: ai-spin 0.7s linear infinite;
}
@keyframes ai-spin {
  to { transform: rotate(360deg); }
}

.ai-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(7, 11, 20, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: ai-fade-in 0.16s ease;
}
.ai-modal {
  width: min(440px, 100%);
  padding: 1.6rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #1a2233, #151c2b);
  border: 1px solid rgba(255, 250, 243, 0.14);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: ai-pop-in 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.ai-modal-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.15rem;
  color: #0b1220;
  background: linear-gradient(135deg, #e2c48a, #b8894a);
}
.ai-modal-err .ai-modal-icon { background: linear-gradient(135deg, #ff9d8a, #d64545); color: #fff; }
.ai-modal-title { margin: 0 0 0.5rem; color: #fffaf3; font-family: var(--font-display); }
.ai-modal-text { margin: 0 0 1.4rem; color: #b9c1cf; line-height: 1.55; }
.ai-modal .btn { min-width: 130px; }
@keyframes ai-fade-in { from { opacity: 0; } }
@keyframes ai-pop-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
}

.ai-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2100;
  max-width: min(400px, calc(100vw - 2.5rem));
  padding: 0.9rem 1.15rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, #1f8a5d, #14684a);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.ai-toast.is-visible { opacity: 1; transform: translateY(0); }
.ai-toast-err { background: linear-gradient(135deg, #d64545, #a92f2f); }

.settings-section-title {
  margin: 0 0 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 250, 243, 0.1);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #fffaf3;
}


/* ===== Rehber pagination ===== */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 2.5rem 0 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 92, 0.18);
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(212, 168, 92, 0.35);
  border-radius: 0.6rem;
  background: rgba(20, 26, 33, 0.72);
  color: #fffaf3;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.page-btn:hover { border-color: var(--gold); background: rgba(212, 168, 92, 0.14); transform: translateY(-1px); }
.page-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1106;
  border-color: transparent;
  cursor: default;
}
.page-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.page-ellipsis { color: var(--gold-dim); padding: 0 0.15rem; }


/* ===== Breadcrumb ===== */
.breadcrumb { padding-top: 1.1rem; padding-bottom: 0; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--gold-dim);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.35rem; }
.breadcrumb li + li::before {
  content: "/";
  color: rgba(212, 168, 92, 0.35);
  font-size: 0.75rem;
}
.breadcrumb a {
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.16s ease;
}
.breadcrumb a:hover { color: var(--gold); text-decoration: underline; }
.breadcrumb li:last-child span {
  color: #fffaf3;
  font-weight: 600;
}
