/* ============================================================
   لیبرا فوٹو — صفحه‌آرایی اصلی (RTL فارسی)
   بدون هیچ وابستگی خارجی
   ============================================================ */

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-faint: #94a3b8;
  --line: #e2e8f0;
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-soft: #eef2ff;
  --accent: #f59e0b;
  --success: #16a34a;
  --success-soft: #dcfce7;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --warn: #d97706;
  --warn-soft: #fef3c7;
  --info: #0284c7;
  --info-soft: #e0f2fe;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { line-height: 1.5; margin: 0 0 12px; }
h1 { font-size: 26px; font-weight: 700; }
h2 { font-size: 22px; font-weight: 700; }
h3 { font-size: 17px; font-weight: 700; }
p { margin: 0 0 12px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

.page-main { min-height: 60vh; padding: 26px 0 60px; }

/* ---------- ناوبری ---------- */
.navbar {
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(2, 6, 23, 0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 64px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}
.nav-logo:hover { color: #fff; }
.nav-logo-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  font-size: 19px;
}
.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-links a.active { color: #fff; background: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 13.5px;
  padding: 5px 10px 5px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}
.nav-user:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.nav-user-name { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- دکمه‌ها ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #15803d; color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b91c1c; color: #fff; }
.btn-outline { background: var(--surface); color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: #e2e8f0; border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.btn-sm { padding: 6px 13px; font-size: 13px; border-radius: 9px; }
.btn-lg { padding: 13px 28px; font-size: 15.5px; border-radius: 13px; }
.btn-block { display: flex; width: 100%; }

/* ---------- کارت‌ها ---------- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.7);
}
.card-body { padding: 22px; }
.card-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.card-header h3 { margin: 0; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- فرم‌ها ---------- */
.form-group { margin-bottom: 16px; }
.label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text-soft);
}
.input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: inherit;
  font-size: 14.5px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.14);
}
textarea.input { resize: vertical; min-height: 96px; }
select.input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%); background-position: calc(0% + 18px) 55%, calc(0% + 13px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-left: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 12.5px; color: var(--text-faint); margin-top: 5px; }
.form-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* ---------- بج‌ها ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-warn { background: var(--warn-soft); color: var(--warn); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-muted { background: #e2e8f0; color: var(--text-soft); }
.badge-primary { background: var(--primary-soft); color: var(--primary); }

/* ---------- پیام‌ها (Alert) ---------- */
.alert {
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid transparent;
}
.alert-success { background: var(--success-soft); color: #166534; border-color: #bbf7d0; }
.alert-error { background: var(--danger-soft); color: #991b1b; border-color: #fecaca; }
.alert-warn { background: var(--warn-soft); color: #92400e; border-color: #fde68a; }
.alert-info { background: var(--info-soft); color: #075985; border-color: #bae6fd; }
.flash-wrap { margin-top: 16px; }

/* ---------- جدول ---------- */
.table-wrap { overflow-x: auto; }
table.table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.table th {
  text-align: right;
  background: #f8fafc;
  color: var(--text-soft);
  font-weight: 600;
  padding: 11px 14px;
  border-bottom: 1.5px solid var(--line);
  white-space: nowrap;
}
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.table tr:hover td { background: #fafbff; }
.table .actions-cell { white-space: nowrap; }
.table .actions-cell .btn { margin-left: 5px; }

/* ---------- هیرو ---------- */
.hero {
  background:
    radial-gradient(1000px 420px at 85% -10%, rgba(124, 58, 237, 0.5), transparent 60%),
    radial-gradient(800px 380px at 10% 110%, rgba(79, 70, 229, 0.45), transparent 55%),
    linear-gradient(135deg, #111c3d 0%, #1e1b4b 60%, #312e81 100%);
  color: #fff;
  border-radius: 22px;
  padding: 58px 48px;
  margin-bottom: 34px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '📷';
  position: absolute;
  left: 34px;
  bottom: -18px;
  font-size: 130px;
  opacity: 0.16;
  transform: rotate(-12deg);
}
.hero h1 {
  font-size: 34px;
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 640px;
}
.hero p {
  color: #c7d2fe;
  max-width: 620px;
  font-size: 15.5px;
  margin-bottom: 26px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
@media (max-width: 720px) {
  .hero { padding: 40px 26px; }
  .hero h1 { font-size: 25px; }
}

/* ---------- بخش‌ها ---------- */
.section { margin-bottom: 42px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.section-title { font-size: 21px; font-weight: 700; margin: 0; }
.section-sub { color: var(--text-soft); margin-top: 4px; font-size: 14px; }

/* ---------- مراحل ---------- */
.step-card { text-align: center; padding: 26px 20px; }
.step-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  border-radius: 18px;
  background: var(--primary-soft);
}
.step-card h3 { margin-bottom: 6px; }
.step-card p { color: var(--text-soft); font-size: 13.5px; margin: 0; }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- آمار ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}
.stat-value { font-size: 27px; font-weight: 700; color: var(--primary); }
.stat-label { color: var(--text-soft); font-size: 13.5px; }
@media (max-width: 640px) { .stat-strip { grid-template-columns: 1fr; } }

/* ---------- کارت عکاس ---------- */
.ph-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ph-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ph-card-top {
  display: flex;
  gap: 14px;
  padding: 20px 20px 0;
  align-items: center;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
.avatar-sm { width: 42px; height: 42px; font-size: 17px; }
.ph-card h3 { margin: 0 0 2px; font-size: 16px; }
.ph-card h3 a { color: var(--text); }
.ph-card h3 a:hover { color: var(--primary); }
.ph-meta { color: var(--text-faint); font-size: 12.5px; display: flex; gap: 10px; flex-wrap: wrap; }
.ph-card-body { padding: 14px 20px; flex: 1; }
.ph-price {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.ph-price small { font-weight: 400; color: var(--text-faint); font-size: 12px; }
.ph-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.chip {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
}
.ph-card-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
}
.ph-card-foot .btn { flex: 1; }

/* ---------- گالری نمونه‌کار ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #e2e8f0;
}
.portfolio-item .p-title {
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- چیدمان جزئیات (متن + جعبه کناری) ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
}
@media (max-width: 940px) { .detail-layout { grid-template-columns: 1fr; } }
.book-box { position: sticky; top: 84px; }

/* ---------- تایم‌لاین وضعیت ---------- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 34px 26px 0;
}
.timeline li::before {
  content: '';
  position: absolute;
  right: 9px;
  top: 22px;
  bottom: -2px;
  width: 2px;
  background: var(--line);
}
.timeline li:last-child::before { display: none; }
.timeline .t-dot {
  position: absolute;
  right: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--line);
}
.timeline li.done .t-dot { background: var(--success); box-shadow: 0 0 0 1.5px var(--success); }
.timeline li.active .t-dot { background: var(--primary); box-shadow: 0 0 0 1.5px var(--primary); }
.timeline li.rejected .t-dot { background: var(--danger); box-shadow: 0 0 0 1.5px var(--danger); }
.timeline .t-title { font-weight: 700; font-size: 14px; }
.timeline .t-sub { color: var(--text-faint); font-size: 12.5px; }

/* ---------- فیلتر ---------- */
.filter-bar {
  display: grid;
  grid-template-columns: 2fr 2fr 1.4fr auto;
  gap: 12px;
  align-items: end;
}
@media (max-width: 860px) { .filter-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .filter-bar { grid-template-columns: 1fr; } }

/* ---------- خلاصه اطلاعات (dl) ---------- */
.info-list { margin: 0; }
.info-list > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.info-list > div:last-child { border-bottom: none; }
.info-list dt { color: var(--text-faint); font-weight: 500; flex-shrink: 0; }
.info-list dd { margin: 0; font-weight: 600; text-align: left; }

/* ---------- حالت خالی ---------- */
.empty {
  text-align: center;
  padding: 54px 20px;
  color: var(--text-faint);
}
.empty .empty-icon { font-size: 46px; margin-bottom: 12px; }
.empty h3 { color: var(--text-soft); }

/* ---------- فوتر ---------- */
.footer {
  background: #0f172a;
  color: #94a3b8;
  margin-top: 30px;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 30px;
  padding: 44px 18px 30px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer h4 { color: #e2e8f0; margin-bottom: 12px; font-size: 15px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: #94a3b8; }
.footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 8px; align-items: center; }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 16px 0;
  text-align: center;
  font-size: 12.5px;
}

/* ---------- پنل‌ها ---------- */
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.panel-head h1 { margin: 0; font-size: 23px; }
.panel-head-sub { color: var(--text-soft); font-size: 13.5px; margin-top: 3px; }
.panel-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 6px;
  box-shadow: var(--shadow);
}
.panel-nav a {
  padding: 8px 16px;
  border-radius: 9px;
  color: var(--text-soft);
  font-size: 13.5px;
  font-weight: 600;
}
.panel-nav a:hover { background: var(--primary-soft); color: var(--primary); }
.panel-nav a.active { background: var(--primary); color: #fff; }

.page-title { font-size: 23px; margin-bottom: 18px; }

.divider { border: none; border-top: 1px solid var(--line); margin: 22px 0; }

.kv { font-size: 14px; }
.kv b { color: var(--text); }

.img-preview-box {
  border: 2px dashed var(--line);
  border-radius: 12px;
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 10px;
  margin-top: 10px;
  color: var(--text-faint);
  font-size: 13px;
  overflow: hidden;
}
.img-preview-box img { max-height: 190px; max-width: 100%; border-radius: 8px; object-fit: cover; }

.text-soft { color: var(--text-soft); }
.text-faint { color: var(--text-faint); }
.text-sm { font-size: 13px; }
.text-lg { font-size: 17px; }
.fw-700 { font-weight: 700; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.flex { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
/* Studio Libra premium homepage layer — safe overrides over existing system styles */
:root{--bg:#0b0b0d;--surface:#151519;--text:#f4f0e8;--text-soft:#b9b4aa;--text-faint:#837e76;--line:rgba(244,240,232,.14);--primary:#c9a46a;--primary-dark:#e1bd7b;--primary-soft:rgba(201,164,106,.14);--radius:0;--shadow:0 20px 60px rgba(0,0,0,.25);--shadow-lg:0 30px 90px rgba(0,0,0,.38)}
body{background:var(--bg);color:var(--text);font-size:15px;overflow-x:hidden}a{color:var(--primary)}a:hover{color:var(--primary-dark)}.navbar{background:rgba(11,11,13,.88);border-bottom:1px solid var(--line);box-shadow:none;backdrop-filter:blur(18px)}.nav-logo{letter-spacing:.01em}.nav-logo-icon{width:34px;height:34px;border-radius:50%;background:transparent;border:1px solid var(--primary);color:var(--primary);font-size:0}.nav-logo-icon::after{content:'L';font-family:Georgia,serif;font-size:18px}.nav-links a{color:var(--text-soft);border-radius:0}.nav-links a:hover,.nav-links a.active{color:var(--text);background:transparent}.nav-links a.active{box-shadow:inset 0 -1px var(--primary)}.btn{border-radius:999px;transition:transform .28s ease,background .28s ease,border-color .28s ease,color .28s ease}.btn-primary{background:var(--primary);color:#0b0b0d}.btn-primary:hover{background:var(--primary-dark);color:#0b0b0d;transform:translateY(-3px)}.btn-ghost{color:var(--text);border-color:rgba(244,240,232,.32)}.btn-ghost:hover{background:rgba(244,240,232,.08);color:var(--text);border-color:var(--primary)}.page-main{padding:0 0 80px}.libra-home{background:radial-gradient(900px 420px at 85% 0%,rgba(201,164,106,.09),transparent 65%)}.libra-hero{min-height:650px;display:grid;grid-template-columns:1.06fr .94fr;gap:40px;align-items:center;position:relative;overflow:hidden;padding-top:76px;padding-bottom:76px}.hero-noise{position:absolute;inset:0;opacity:.08;background-image:radial-gradient(#fff .6px,transparent .6px);background-size:7px 7px;mask-image:linear-gradient(110deg,#000,transparent 70%)}.hero-copy{position:relative;z-index:1;animation:libra-rise .8s both}.eyebrow{display:inline-block;color:var(--primary);font-size:11px;letter-spacing:.18em;font-weight:700;margin-bottom:18px}.hero-copy h1{font-size:clamp(38px,5.3vw,76px);line-height:1.2;letter-spacing:-.045em;max-width:720px;margin-bottom:22px}.hero-copy p{color:var(--text-soft);font-size:18px;line-height:2;max-width:590px;margin-bottom:30px}.hero-cta{display:flex;gap:12px;flex-wrap:wrap}.hero-proof{display:flex;gap:16px;align-items:center;color:var(--text-faint);font-size:12px;margin-top:40px;flex-wrap:wrap}.hero-proof i{height:1px;width:22px;background:var(--primary);opacity:.6}.hero-orbit{height:420px;position:relative;display:grid;place-items:center;animation:libra-fade 1s .2s both}.orbit-ring{position:absolute;border:1px solid rgba(201,164,106,.45);border-radius:50%;transform:rotate(-24deg)}.ring-one{width:310px;height:440px}.ring-two{width:440px;height:310px;transform:rotate(32deg);border-color:rgba(244,240,232,.14)}.orbit-core{width:134px;height:134px;border-radius:50%;border:1px solid var(--primary);display:grid;place-items:center;color:var(--primary);font:86px/1 Georgia,serif;box-shadow:0 0 80px rgba(201,164,106,.16)}.orbit-star{position:absolute;color:var(--primary);font-size:28px}.star-one{top:48px;right:18%}.star-two{bottom:72px;left:18%;font-size:45px}.libra-stats{border-top:1px solid var(--line);border-bottom:1px solid var(--line);display:grid;grid-template-columns:repeat(3,1fr) 1.5fr;gap:24px;padding:30px 0;margin-bottom:100px}.libra-stats>div:not(.stats-note){border-left:1px solid var(--line);padding-right:22px}.libra-stats strong{display:block;color:var(--primary);font-size:36px;line-height:1;margin-bottom:8px}.libra-stats span:not(.eyebrow){color:var(--text-soft);font-size:13px}.stats-note{padding-right:18px}.stats-note p{color:var(--text-soft);font-size:13px;max-width:240px;margin:0}.libra-section{margin-bottom:110px}.libra-head{align-items:flex-end;margin-bottom:34px}.section-title{font-size:clamp(28px,3.5vw,46px);line-height:1.35;letter-spacing:-.035em}.section-sub{color:var(--text-soft);max-width:280px;font-size:14px}.text-link{color:var(--text);font-size:13px;border-bottom:1px solid var(--primary);padding-bottom:5px}.text-link span{color:var(--primary);margin-right:8px}.libra-process-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line)}.libra-step{min-height:260px;padding:24px 22px 22px 0;border-left:1px solid var(--line);position:relative;transition:background .35s ease,transform .35s ease}.libra-step:hover{background:rgba(201,164,106,.06);transform:translateY(-5px)}.libra-step>span{color:var(--primary);font-size:12px}.step-mark{font-size:32px;color:var(--primary);margin:35px 0 20px}.libra-step h3{font-size:20px}.libra-step p{color:var(--text-soft);font-size:13px;max-width:220px}.libra-service-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}.libra-service{min-height:245px;background:var(--bg);padding:20px;position:relative;transition:background .35s ease,transform .35s ease}.libra-service:hover{background:var(--surface);transform:translateY(-5px);z-index:1}.service-index{color:var(--text-faint);font-size:11px}.service-icon{display:block;font-size:28px;filter:grayscale(1);margin:35px 0 18px}.libra-service h3{font-size:17px}.libra-service p{color:var(--text-soft);font-size:12px;line-height:1.8}.service-arrow{position:absolute;left:20px;bottom:18px;color:var(--primary);font-size:20px}.libra-talent-grid .ph-card,.card,.stat-card{background:var(--surface);border-color:var(--line);box-shadow:none;color:var(--text)}.ph-card:hover{box-shadow:var(--shadow-lg)}.ph-card h3 a{color:var(--text)}.ph-meta,.ph-price small,.text-soft{color:var(--text-soft)}.ph-card-foot{border-color:var(--line)}.chip{background:var(--primary-soft);color:var(--primary)}.libra-final-cta{display:flex;align-items:center;justify-content:space-between;gap:30px;background:linear-gradient(110deg,#18181b,#13100d);border:1px solid var(--line);padding:48px;margin-bottom:30px}.libra-final-cta h2{font-size:clamp(28px,4vw,48px);margin-bottom:10px}.libra-final-cta p{color:var(--text-soft);margin:0}.footer{background:#080809;border-top:1px solid var(--line);color:var(--text-soft)}.footer h4,.footer .nav-logo{color:var(--text)}.footer a{color:var(--text-soft)}.footer-bottom{border-color:var(--line)}
@keyframes libra-rise{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}@keyframes libra-fade{from{opacity:0;transform:scale(.92)}to{opacity:1;transform:none}}@media (max-width:900px){.libra-hero{grid-template-columns:1fr;min-height:auto;padding-top:58px}.hero-orbit{height:300px;order:-1}.ring-one{width:210px;height:290px}.ring-two{width:290px;height:210px}.libra-stats{grid-template-columns:repeat(3,1fr)}.stats-note{grid-column:1/-1;border-top:1px solid var(--line);padding-top:22px}.libra-process-grid,.libra-service-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:640px){.nav-links{display:none}.libra-hero{padding-top:44px}.hero-copy h1{font-size:39px}.hero-copy p{font-size:15px}.hero-proof{gap:10px}.hero-proof i{display:none}.libra-stats{grid-template-columns:1fr 1fr;gap:18px}.libra-stats>div:not(.stats-note){border-left:0;padding-right:0}.libra-stats strong{font-size:30px}.libra-section{margin-bottom:72px}.libra-process-grid,.libra-service-grid{grid-template-columns:1fr}.libra-step{min-height:0;border-left:0;border-bottom:1px solid var(--line);padding:22px 0}.libra-service{min-height:210px}.libra-final-cta{align-items:flex-start;flex-direction:column;padding:30px 22px}}@media (prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}
/* Libra Photobook marketplace premium system layer */
/* Applies to home, search, profiles, booking forms, authentication and dashboards. */
body:not(.libra-home){background:#0b0b0d}.page-main>.container{animation:libra-page-in .55s ease both}.card,.ph-card,.stat-card{border:1px solid var(--line);background:var(--surface);box-shadow:0 20px 60px rgba(0,0,0,.18);border-radius:0}.card-header{border-color:var(--line);background:rgba(244,240,232,.025)}.panel-head{padding-top:34px}.panel-head h1,.page-title{font-size:clamp(28px,4vw,46px);letter-spacing:-.035em}.panel-head-sub{color:var(--text-soft)}.panel-nav{border:1px solid var(--line);border-radius:0;background:rgba(21,21,25,.8);box-shadow:none;padding:4px}.panel-nav a{border-radius:0;color:var(--text-soft);transition:background .25s ease,color .25s ease}.panel-nav a:hover{background:var(--primary-soft);color:var(--text)}.panel-nav a.active{background:var(--primary);color:#0b0b0d}.stat-strip{gap:1px;background:var(--line);border:1px solid var(--line)}.stat-card{border:0;border-radius:0;background:var(--surface);box-shadow:none;padding:28px 20px}.stat-value{color:var(--primary);font-size:38px}.stat-label{color:var(--text-soft)}.form-group{margin-bottom:20px}.label{color:var(--text-soft);font-size:13px}.input{background:#111114;color:var(--text);border:1px solid var(--line);border-radius:0;padding:13px 15px}.input::placeholder{color:#6e6961}.input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(201,164,106,.13)}select.input{background-color:#111114;color:var(--text)}textarea.input{min-height:130px}.alert{border-radius:0}.alert-info{background:var(--primary-soft);color:var(--text);border-color:rgba(201,164,106,.35)}.table-wrap{border:1px solid var(--line)}table.table{background:var(--surface);color:var(--text)}.table th{background:#101013;color:var(--primary);border-color:var(--line);font-size:12px}.table td{border-color:var(--line)}.table tr:hover td{background:rgba(201,164,106,.06)}.badge{border-radius:0}.badge-primary,.badge-info{background:var(--primary-soft);color:var(--primary)}.empty{background:var(--surface);border:1px solid var(--line)}.ph-card{transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease}.ph-card:hover{border-color:rgba(201,164,106,.6);transform:translateY(-7px);box-shadow:0 30px 90px rgba(0,0,0,.42)}.ph-card-top{padding:24px 24px 0}.ph-card-body{padding:18px 24px}.ph-card-foot{padding:18px 24px;border-color:var(--line)}.avatar{background:#211b13;border:1px solid var(--primary);color:var(--primary)}.ph-price{color:var(--primary)}.book-box{top:88px}.detail-layout>.card{border-color:var(--line)}.portfolio-item{border-color:var(--line);background:var(--surface);border-radius:0}.portfolio-item img{filter:saturate(.8);transition:filter .35s ease,transform .45s ease}.portfolio-item:hover img{filter:saturate(1.1);transform:scale(1.03)}.portfolio-item .p-title{color:var(--text-soft);background:var(--surface)}.hero{border-radius:0;background:radial-gradient(700px 350px at 85% -10%,rgba(201,164,106,.32),transparent 60%),linear-gradient(135deg,#171513,#0e0e10 70%);border:1px solid var(--line)}.hero p{color:var(--text-soft)}.footer-grid{padding-top:60px;padding-bottom:46px}.footer-about p{max-width:360px;line-height:2}.lw-toast{border-radius:0!important;background:var(--surface)!important;border-color:var(--line)!important;color:var(--text)!important}.flash-wrap{margin-top:22px}.divider{border-color:var(--line)}
.auth-shell{min-height:70vh;display:grid;place-items:center}.page-main>.container[style*="max-width:480px"],.page-main>.container[style*="max-width:520px"]{padding-top:52px;padding-bottom:40px}.page-main>.container[style*="max-width:480px"] .card,.page-main>.container[style*="max-width:520px"] .card{border-color:var(--line)}
@keyframes libra-page-in{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}@media(max-width:720px){.panel-head{padding-top:22px}.panel-head h1,.page-title{font-size:32px}.panel-nav{overflow-x:auto;flex-wrap:nowrap}.panel-nav a{white-space:nowrap}.stat-strip{grid-template-columns:1fr 1fr}.stat-card{padding:20px 12px}.stat-value{font-size:30px}.table-wrap{border-left:0;border-right:0;margin-inline:-1px}.detail-layout{gap:14px}}@media(prefers-reduced-motion:reduce){.page-main>.container{animation:none!important}.ph-card,.portfolio-item img{transition:none!important}}
