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

:root {
  --bg: #0a0a0c;
  --bg-alt: #0f0f12;
  --fg: rgba(255,255,255,0.90);
  --fg-secondary: rgba(255,255,255,0.65);
  --fg-muted: rgba(255,255,255,0.40);
  --gold: #C9A84C;
  --gold-hover: #b89440;
  --teal: #5CC4AE;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --radius: 4px;
  --heading: 'Cinzel', serif;
  --body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
::selection { background: rgba(201,168,76,0.25); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.nav.scrolled { background: rgba(10,10,12,0.98); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.nav-links {
  display: flex; list-style: none; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 22px; padding: 4px 0;
}
.nav-toggle span {
  display: block; height: 1px; background: var(--fg);
  transition: all 0.2s var(--ease);
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,12,0.55) 0%,
      rgba(10,10,12,0.20) 35%,
      rgba(10,10,12,0.45) 70%,
      rgba(10,10,12,0.85) 100%
    );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px; padding: 0 2rem;
}
.hero-kicker {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--heading);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.75rem;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: #0a0a0c;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.20);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
}
.btn-lg { padding: 0.9rem 2.25rem; font-size: 0.75rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.65rem; }
.btn-full { width: 100%; }

/* ── SECTIONS ── */
.section {
  padding: 8rem 0;
  background: var(--bg);
}
.section-dark {
  background: var(--bg-alt);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.section-heading {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 6rem;
  align-items: center;
}
.about-text .section-heading {
  text-align: left;
  margin-bottom: 2rem;
}
.about-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-body {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.about-disciplines {
  list-style: none;
  margin-bottom: 1.75rem;
}
.about-disciplines li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
  line-height: 1.6;
}
.about-disciplines li::before {
  content: '';
  position: absolute; left: 0; top: 0.72rem;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.about-close {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-bottom: 3rem;
}
.about-stats {
  display: flex; gap: 3.5rem;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}
.about-image {
  overflow: hidden;
}
.about-image img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
}

/* ── ARCHIVE ── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.archive-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color 0.2s var(--ease);
}
.archive-card:hover { border-color: var(--border-hover); }
.archive-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.archive-card h3 {
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.archive-card ul { list-style: none; }
.archive-card li {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.65;
}
.archive-card li::before {
  content: '';
  position: absolute; left: 0; top: 0.8rem;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.archive-card-text {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.75;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 5rem;
}
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 2.5rem 1.75rem;
  transition: border-color 0.2s var(--ease);
}
.service-card:hover { border-color: var(--border-hover); }
.service-card h3 {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ── PROCESS STRIP ── */
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.process-num {
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(201,168,76,0.35);
  line-height: 1;
  flex-shrink: 0;
}
.process-step h4 {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ── WORKS / PORTFOLIO ── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}
.work-card {
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.work-card:hover { border-color: var(--border-hover); }
.work-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
}
.work-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card-img img { transform: scale(1.03); }
.work-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.work-card-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}
.work-card-title {
  font-family: var(--heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.work-card-desc {
  font-size: 0.8rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 4rem;
}
.price-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: border-color 0.2s var(--ease);
}
.price-card:hover { border-color: var(--border-hover); }
.price-card-featured { border-color: rgba(201,168,76,0.30); }
.price-card-featured:hover { border-color: rgba(201,168,76,0.50); }
.price-badge {
  position: absolute;
  top: -0.5rem; left: 2rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
}
.price-card h3 {
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.price-card ul { list-style: none; }
.price-card li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--fg-secondary);
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}
.price-card li::before {
  content: '';
  position: absolute; left: 0; top: 0.75rem;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.pricing-cta {
  text-align: center;
}
.pricing-cta p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  margin-bottom: 1.5rem;
}

/* ── INQUIRY FORM ── */
.inquiry-form {
  max-width: 680px; margin: 0 auto;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group:not(.form-row .form-group) { margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  color: var(--fg);
  transition: border-color 0.2s var(--ease);
  font-size: 0.9rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
}
.form-group select option {
  background: var(--bg);
  color: var(--fg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201,168,76,0.50);
}
.form-group textarea { resize: vertical; }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #DC2626; }
.checkbox-label {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: var(--fg-secondary);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--gold);
}
.form-message { margin-top: 0.75rem; font-size: 0.85rem; }
.form-message.error-msg { color: #f87171; }
.form-message.success-msg { color: var(--teal); }

.form-success {
  text-align: center; padding: 4rem 1.5rem;
  max-width: 440px; margin: 0 auto;
}
.success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 2rem;
}
.form-success h3 {
  font-family: var(--heading);
  font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem; color: var(--fg);
}
.form-success p {
  color: var(--fg-secondary); margin-bottom: 2rem;
  line-height: 1.75; font-size: 0.9rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.8rem; margin-top: 0.75rem;
  color: var(--fg-muted);
}
.footer-brand .nav-logo { color: var(--fg); }
.footer-links {
  display: flex; gap: 1.75rem; flex-wrap: wrap; align-items: center;
}
.footer-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--fg-secondary); }
.footer-bottom {
  padding-top: 2rem; text-align: center;
  font-size: 0.75rem; color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ── ADMIN ── */
.admin-panel {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.admin-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.75);
}
.admin-content {
  position: relative; z-index: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem; width: 90%; max-width: 800px;
  max-height: 85vh; overflow-y: auto;
  color: var(--fg);
}
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-bottom: 2rem;
}
.admin-header h2 {
  font-family: var(--heading);
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}
.admin-login { max-width: 300px; margin: 2rem auto; text-align: center; }
.admin-login h3 {
  font-family: var(--heading);
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem; color: var(--fg);
}
.admin-login form { display: flex; flex-direction: column; gap: 0.75rem; }
.admin-login input {
  padding: 0.8rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); text-align: center;
  font-size: 0.9rem; background: rgba(255,255,255,0.03); color: var(--fg);
}
.admin-login input:focus { outline: none; border-color: rgba(201,168,76,0.50); }

.inquiry-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1rem;
  background: rgba(255,255,255,0.02);
}
.inquiry-card h4 { font-weight: 600; margin-bottom: 0.35rem; color: var(--fg); }
.inquiry-card .inquiry-meta {
  font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 0.75rem;
}
.inquiry-card .inquiry-detail {
  font-size: 0.85rem; color: var(--fg-secondary); line-height: 1.65;
}
.inquiry-card .inquiry-detail strong { color: var(--fg); }
.inquiry-empty {
  text-align: center; padding: 3rem; color: var(--fg-muted);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative; z-index: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 90%; max-width: 600px;
  max-height: 90vh; overflow-y: auto;
  padding: 2.75rem;
}
.modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; margin-bottom: 2.25rem;
}
.modal-head h3 {
  font-family: var(--heading);
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg); margin-bottom: 0.35rem;
}
.modal-kicker {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.modal-sub {
  font-size: 0.85rem; color: var(--fg-secondary);
}
.modal-close {
  font-size: 1.25rem; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: color 0.2s var(--ease);
  flex-shrink: 0;
}
.modal-close:hover { color: var(--fg-secondary); }
.modal-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1rem;
}
.modal-form .form-group {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.modal-form .form-group:not(.form-row .form-group) { margin-bottom: 1rem; }
.modal-form label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted);
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  color: var(--fg); font-size: 0.9rem;
  transition: border-color 0.2s var(--ease);
}
.modal-form input::placeholder,
.modal-form textarea::placeholder { color: var(--fg-muted); }
.modal-form select option { background: var(--bg); color: var(--fg); }
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus { outline: none; border-color: rgba(201,168,76,0.50); }
.modal-form textarea { resize: vertical; }
.modal-form input.error,
.modal-form select.error,
.modal-form textarea.error { border-color: #DC2626; }
.modal-success {
  text-align: center; padding: 2.5rem 1rem;
}
.modal-success .success-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 1.5rem;
}
.modal-success h3 {
  font-family: var(--heading);
  font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem; color: var(--fg);
}
.modal-success p {
  color: var(--fg-secondary); font-size: 0.9rem;
  margin-bottom: 1.5rem; line-height: 1.7;
}

/* ── EDITIONS PAGE ── */
.editions-panel {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.editions-overlay {
  position: absolute; inset: 0; background: var(--bg);
}
.editions-content {
  position: relative; z-index: 1;
  max-width: 560px; width: 90%;
}
.editions-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1.5rem; margin-bottom: 3rem;
}
.editions-header h2 {
  font-family: var(--body);
  font-size: 1rem; font-weight: 300;
  color: var(--fg-secondary);
  line-height: 1.75;
}
.editions-kicker {
  font-family: var(--heading);
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg); margin-bottom: 0.75rem;
}
.editions-body { text-align: left; }
.editions-intro {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── COLLECTOR ROOM ── */
.collector-panel {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.collector-overlay {
  position: absolute; inset: 0; background: var(--bg);
}
.collector-content {
  position: relative; z-index: 1;
  max-width: 560px; width: 90%;
  text-align: center;
}
.collector-header {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; margin-bottom: 3rem;
}
.collector-header h2 {
  font-family: var(--heading);
  font-size: 1.25rem; font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}
.collector-kicker {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.35rem;
}
.collector-body { text-align: left; }
.collector-intro {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.collector-status {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 2rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.collector-status-icon {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.collector-status p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { order: -1; }
  .about-image img { aspect-ratio: 16/9; }
  .about-text .section-heading { text-align: center; }
  .about-lead, .about-body { text-align: center; }
  .about-stats { justify-content: center; }
  .archive-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(10,10,12,0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.75rem 2rem; }
  .section { padding: 5rem 0; }
  .section-header { margin-bottom: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-form .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 220px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .about-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
  .hero-title { letter-spacing: 0.06em; }
  .hero-content { padding: 0 1rem; }
  .modal-panel { padding: 2rem 1.5rem; }
}

/* ── LIGHTBOX ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lb-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 4, 0.97);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Controls — borderless, appear on hover */
.lb-close {
  position: absolute;
  top: 2rem;
  right: 2.25rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.28);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.25s;
}
.lb-close:hover { color: rgba(255,255,255,0.85); }

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.22);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.25s;
}
.lb-arrow:hover { color: rgba(255,255,255,0.8); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* Inner layout — image dominant */
.lb-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 340px;
  width: min(94vw, 1320px);
  max-height: 92vh;
  overflow: hidden;
}

/* Image pane — pure black field */
.lb-img-pane {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 92vh;
}
.lb-img-pane img {
  width: 100%;
  height: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
.lb-img-pane img.lb-loading { opacity: 0; }

/* Info pane — museum plaque register */
.lb-info-pane {
  background: #06060a;
  border-left: 1px solid rgba(255,255,255,0.04);
  padding: 4.5rem 2.75rem 3.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Series — ultra-tracked micro label */
.lb-series-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

/* Gold rule under series */
.lb-series-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  margin-top: 0.85rem;
}

/* Title — quiet authority */
.lb-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin: 0 0 2.5rem;
}

/* Tagline — barely visible, editorial support */
.lb-tagline {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.75;
  margin: 0 0 1.75rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* Description — primary reading text */
.lb-description {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin: 0 0 2.75rem;
  font-weight: 300;
}

/* Metadata — minimal, subordinate */
.lb-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: auto;
  padding-bottom: 3rem;
}
.lb-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lb-meta-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.lb-meta-value {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  font-weight: 300;
}

/* CTA block — restrained, gallery-register */
.lb-cta-block {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
}
.lb-inquiry-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  margin: 0 0 1.25rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* CTA — ghost gold, not solid */
.lb-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.45) !important;
  transition: border-color 0.25s, color 0.25s;
}
.lb-cta-btn:hover {
  border-color: var(--gold) !important;
  color: rgba(255,255,255,0.92) !important;
  background: rgba(201, 168, 76, 0.06) !important;
}

/* Work cards — hover intent signal */
.work-card { cursor: pointer; }
.work-card:hover .work-card-img img { transform: scale(1.03); }

/* ── Lightbox mobile ── */
@media (max-width: 900px) {
  .lb-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    width: 100vw;
    max-width: 100%;
    max-height: 100dvh;
    max-height: 100vh;
    overflow-y: auto;
  }
  .lb-img-pane {
    max-height: 62vw;
    min-height: 200px;
  }
  .lb-img-pane img {
    max-height: 62vw;
    object-fit: cover;
    object-position: center top;
  }
  .lb-info-pane {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 2.5rem 1.75rem 3rem;
    overflow-y: unset;
  }
  .lb-title { font-size: 1.15rem; }
  .lb-prev { left: 0.75rem; }
  .lb-next { right: 0.75rem; }
  .lb-close { top: 1rem; right: 1rem; }
}
