:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f0ede6;
  --fg-muted: #8a8578;
  --fg-dim: #5a5650;
  --accent: #c9a84c;
  --accent-glow: #e8c55a;
  --accent-subtle: rgba(201, 168, 76, 0.12);
  --border: #222222;
  --border-light: #2a2a2a;
  --radius: 2px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.title-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

/* ---- CREDIBILITY ---- */
.credibility {
  padding: 120px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credibility-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.credibility-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 24px;
}

.credibility-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.credibility-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.credibility-leagues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.league-badge {
  padding: 10px 24px;
  border: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  background: var(--bg);
  transition: all 0.3s ease;
}

.league-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- SERVICES ---- */
.services {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--bg-elevated);
}

.service-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- PROCESS ---- */
.process {
  padding: 120px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process .section-eyebrow,
.process .section-title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process .section-title {
  margin-bottom: 72px;
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 0 32px;
  position: relative;
}

.step-line {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-light);
}

.step:first-child .step-line {
  left: 50%;
}

.step:last-child .step-line {
  right: 50%;
}

.step-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 0;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 32px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-subtle) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-accent {
  color: var(--accent);
}

.closing-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 48px;
  font-weight: 300;
}

.closing-contact {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 40px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.contact-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
}

.contact-email {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 14px;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
}

.footer-info {
  font-size: 13px;
  color: var(--fg-dim);
  display: flex;
  gap: 8px;
}

.footer-dot {
  color: var(--border-light);
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-dim);
}

/* ---- NAV LINKS ---- */
.logo {
  text-decoration: none;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-link--cta {
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 18px;
  transition: all 0.2s ease;
}

.nav-link--cta:hover {
  background: var(--accent-subtle);
  color: var(--accent-glow);
  border-color: var(--accent);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--fg-dim);
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 160px 32px 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero--sm {
  padding: 140px 32px 60px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--accent);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  margin-top: 16px;
}

.page-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
  font-weight: 300;
}

/* ---- CREDIBILITY CASE LINK ---- */
.credibility-case-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.credibility-case-link:hover {
  color: var(--accent-glow);
}

/* ---- CLOSING ACTIONS ---- */
.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: 80px 32px;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  background: var(--border);
}

.meta-item {
  background: var(--bg-card);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
}

.meta-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-bottom: 64px;
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card);
}

.gallery-item--large {
  aspect-ratio: 4/5;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
  min-height: 280px;
}

.placeholder-icon {
  font-size: 32px;
  opacity: 0.15;
}

.placeholder-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.case-block {
  background: var(--bg-elevated);
  padding: 40px 36px;
}

.case-block-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.case-block-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- GALLERY CTA ---- */
.gallery-cta {
  padding: 120px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  text-align: center;
}

.gallery-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.gallery-cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.gallery-cta-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ---- INQUIRY FORM ---- */
.inquiry-section {
  padding: 60px 32px 120px;
}

.inquiry-inner {
  max-width: 720px;
  margin: 0 auto;
}

.inquiry-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  background: var(--border);
}

.type-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.type-btn:hover {
  background: var(--bg-elevated);
}

.type-btn--active {
  background: var(--bg-elevated);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.type-btn-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.type-btn-desc {
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 300;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

.required {
  color: var(--accent);
}

.form-optional {
  color: var(--fg-dim);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--fg-dim);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-textarea--sm {
  min-height: 100px;
}

.form-error {
  color: #e05252;
  font-size: 14px;
  font-weight: 400;
  min-height: 20px;
}

.btn-submit {
  align-self: flex-start;
  font-size: 13px;
  padding: 16px 40px;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ---- INQUIRY SUCCESS ---- */
.inquiry-success {
  text-align: center;
  padding: 80px 0;
}

.success-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.success-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ---- SHOWCASE ---- */
.showcase-section {
  padding: 80px 32px;
}

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.showcase-card {
  background: var(--bg-card);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.showcase-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.showcase-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 10px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.showcase-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.showcase-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}

.showcase-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 3px;
}

.showcase-case {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 32px;
}

.showcase-case-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  margin-bottom: 8px;
}

.showcase-case-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 12px;
}

.case-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.case-link:hover {
  color: var(--accent-glow);
}

.showcase-process {
  padding: 120px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.showcase-process .process-header {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 72px;
}

/* ---- GALLERY CAPTION ---- */
.gallery-img--clickable {
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.gallery-img--clickable:hover {
  opacity: 0.88;
}

.gallery-caption {
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.lightbox--open {
  display: flex;
}

.lightbox-inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--fg-muted);
  font-size: 20px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  background: var(--bg-card);
  color: var(--fg);
}

/* ---- MOBILE NAV HAMBURGER ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  transition: all 0.2s ease;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-tagline {
    display: none;
  }
  
  .nav-inner {
    padding: 14px 20px;
  }
  
  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 48px;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .credibility {
    padding: 80px 20px;
  }
  
  .credibility-leagues {
    gap: 8px;
  }
  
  .league-badge {
    padding: 8px 16px;
    font-size: 11px;
  }
  
  .services {
    padding: 80px 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 36px 28px;
  }
  
  .process {
    padding: 80px 20px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .step {
    padding: 0;
    padding-left: 32px;
  }
  
  .step-line {
    top: 0;
    bottom: 0;
    left: 5px;
    right: auto;
    width: 1px;
    height: auto;
  }
  
  .step:first-child .step-line {
    left: 5px;
    top: 6px;
  }
  
  .step:last-child .step-line {
    right: auto;
    bottom: auto;
    height: 6px;
  }
  
  .step-dot {
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .closing {
    padding: 80px 20px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-info {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  .nav-links--open {
    display: flex;
  }

  .nav-link {
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .nav-link--cta {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 18px 20px;
    color: var(--accent);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: 120px 20px 60px;
  }

  .page-hero--sm {
    padding: 110px 20px 48px;
  }

  .gallery-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--large {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .case-details {
    grid-template-columns: 1fr;
  }

  .inquiry-section {
    padding: 40px 20px 80px;
  }

  .inquiry-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .showcase-inner {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    padding: 40px 28px;
  }

  .gallery-cta {
    padding: 80px 20px;
  }

  .closing-actions {
    flex-direction: column;
    align-items: center;
  }
}