/* ═══════════════════════════════════════════════════════════
   CORTEX WRAP — SHARED SITE STYLES  v2.0
═══════════════════════════════════════════════════════════ */

:root {
  --bg:           #07070a;
  --bg-2:         #0c0c10;
  --surface:      #101015;
  --surface-2:    #16161c;
  --line:         rgba(255, 255, 255, 0.06);
  --line-strong:  rgba(255, 255, 255, 0.14);
  --text:         #f6f6f3;
  --text-2:       #e4e4e0;
  --muted:        #a1a1aa;
  --muted-2:      #71717a;
  --muted-3:      #52525b;
  --amber:        #e08a2c;
  --amber-2:      #b9691a;
  --amber-glow:   rgba(224, 138, 44, 0.28);
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --container:    1320px;
}

/* ─────── RESET ─────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg, video { display: block; max-width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────── ACCESSIBILITY ─────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--amber);
  color: #1a0e00;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: top 200ms;
  white-space: nowrap;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─────── LABELS & HEADINGS ─────── */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.label.amber { color: var(--amber); }
.h-display {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}
.h1 { font-size: clamp(72px, 11vw, 184px); letter-spacing: -0.05em; }
.h2 { font-size: clamp(48px, 7vw, 104px); letter-spacing: -0.035em; }
.h3 { font-size: clamp(28px, 3vw, 40px); }

/* ─────── BUTTONS ─────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 360ms var(--ease), background 360ms var(--ease),
              border-color 360ms var(--ease), box-shadow 360ms var(--ease), color 360ms var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: #1a0e00; }
.btn-primary:hover { background: #f0982f; box-shadow: 0 14px 50px -10px var(--amber-glow); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
.btn-secondary { background: transparent; color: var(--fg,var(--text)); border: 1px solid var(--line-strong); }
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); background: rgba(224,138,44,0.06); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn .arrow { transition: transform 360ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ─────── NAV ─────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 320ms var(--ease), backdrop-filter 320ms var(--ease), border-color 320ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 10, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { font-weight: 700; font-size: 17px; letter-spacing: 0.22em; text-transform: uppercase; flex-shrink: 0; }
.brand .dot { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}
.nav-links a { transition: color 240ms var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta {
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--amber);
  color: #1a0e00;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.nav-cta:hover { background: #f0982f; transform: translateY(-1px); box-shadow: 0 10px 30px -10px var(--amber-glow); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background 200ms;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: rgba(7, 7, 10, 0.97);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--line);
  padding: 24px 32px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
  z-index: 99;
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms;
  letter-spacing: -0.01em;
}
.nav-mobile-links a:last-of-type { border-bottom: none; }
.nav-mobile-links a:hover { color: var(--text); }
.nav-mobile-links .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ─────── HERO (video — homepage) ─────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 0 32px 80px;
  background: radial-gradient(80% 70% at 50% 35%, #1a1410 0%, #0c0a0a 60%, #07070a 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -3;
  filter: saturate(1.05) contrast(1.05);
  mask-image: radial-gradient(120% 100% at 50% 50%, #000 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 50%, transparent 95%);
  will-change: transform;
}
.hero-tint {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(70% 50% at 80% 20%, rgba(224, 138, 44, 0.10) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(80% 60% at 20% 80%, rgba(8, 12, 22, 0.45) 0%, rgba(0,0,0,0) 70%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,7,10,0.55) 0%, rgba(7,7,10,0.0) 30%, rgba(7,7,10,0.0) 55%, rgba(7,7,10,0.92) 100%),
    linear-gradient(90deg, rgba(7,7,10,0.45) 0%, rgba(7,7,10,0.0) 35%, rgba(7,7,10,0.0) 65%, rgba(7,7,10,0.35) 100%);
}
.hero-inner { width: 100%; max-width: var(--container); margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 900ms var(--ease) 0.4s forwards;
}
.hero-eyebrow .bar { width: 32px; height: 1px; background: var(--amber); }
.hero-title {
  opacity: 0;
  transform: translateY(36px);
  animation: rise 1100ms var(--ease) 0.65s forwards;
  margin-bottom: 36px;
  max-width: 1100px;
}
.hero-title .amber { color: var(--amber); }
.hero-title em { font-style: normal; font-weight: 300; letter-spacing: -0.06em; display: block; }
.hero-sub {
  color: var(--text-2);
  font-size: clamp(18px, 1.5vw, 22px);
  max-width: 560px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1000ms var(--ease) 1.0s forwards;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1000ms var(--ease) 1.25s forwards;
  margin-bottom: 56px;
}
.hero-meta {
  display: flex;
  gap: 36px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  animation: fadeOnly 1000ms var(--ease) 1.6s forwards;
  flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta .pip { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

/* ─────── SERVICE HERO (static — service pages) ─────── */
.svc-hero {
  position: relative;
  min-height: 72vh;
  min-height: 72dvh;
  display: flex;
  align-items: flex-end;
  padding: 120px 32px 80px;
  overflow: hidden;
  isolation: isolate;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 70% at 50% 30%, #1a1208 0%, #0e0c0a 55%, #07070a 100%);
}
.svc-hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 15%, rgba(224, 138, 44, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, rgba(7,7,10,0.2) 0%, rgba(7,7,10,0.0) 40%, rgba(7,7,10,0.85) 100%);
}
.svc-hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.svc-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.svc-hero-label .bar { width: 24px; height: 1px; background: var(--amber); }
.svc-hero h1 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 900px;
}
.svc-hero-sub {
  color: var(--text-2);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 540px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.svc-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────── BREADCRUMB ─────── */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--muted-2); transition: color 200ms; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: var(--muted-3); }
.breadcrumb .current { color: var(--muted); }

/* ─────── SECTIONS ─────── */
section { position: relative; }
.section { padding: 160px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 96px;
  max-width: 900px;
}

/* ─────── SERVICES GRID ─────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), background 420ms var(--ease), box-shadow 420ms var(--ease);
  min-height: 380px;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 138, 44, 0.55);
  background: var(--surface-2);
  box-shadow: 0 30px 80px -30px var(--amber-glow);
}
.service-icon { width: 44px; height: 44px; color: var(--text); stroke-width: 1.4; }
.service-card h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; }
.service-card p { color: var(--muted); font-size: 16px; line-height: 1.65; flex: 1; }
.service-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 320ms var(--ease);
  background: none; border: none; padding: 0;
  cursor: pointer; font-family: inherit; text-align: left;
}
.service-card:hover .service-link { gap: 14px; }
.service-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted-2);
  letter-spacing: 0.14em; text-transform: uppercase;
  padding-top: 18px; border-top: 1px solid var(--line);
}

/* ─────── WHY US ─────── */
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-num {
  font-weight: 800;
  font-size: clamp(64px, 7vw, 104px);
  color: var(--amber);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.why-title {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 14px;
}
.why-body { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 520px; padding-top: 12px; }

/* ─────── PRICING ─────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), background 420ms var(--ease), box-shadow 420ms var(--ease);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.6);
}
.pricing-card.featured {
  border-color: rgba(224, 138, 44, 0.45);
  background: linear-gradient(155deg, var(--surface-2) 0%, var(--surface) 100%);
}
.pricing-card.featured:hover {
  border-color: rgba(224, 138, 44, 0.75);
  box-shadow: 0 30px 80px -20px var(--amber-glow);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #1a0e00;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pricing-from { font-size: 14px; color: var(--muted); font-weight: 500; }
.pricing-amount { font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.045em; line-height: 1; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.55; }
.pricing-divider { border: none; border-top: 1px solid var(--line); margin-bottom: 24px; }
.pricing-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px; flex: 1;
}
.pricing-features li {
  font-size: 14.5px; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.45;
}
.pricing-features li .check { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.pricing-cta { width: 100%; justify-content: center; margin-top: auto; }

/* ─────── WORK GRID ─────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 420ms var(--ease);
  display: block;
}
.work-card:hover { border-color: var(--line-strong); }
.work-image { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.work-image .ph { position: absolute; inset: 0; transition: transform 700ms var(--ease), filter 700ms var(--ease); }
.work-card:hover .ph { transform: scale(1.05); filter: brightness(0.78); }
.work-image .stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 14px, transparent 14px 28px);
}
.work-image .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.65) 100%);
}
.ph-1 { background: radial-gradient(ellipse at 30% 40%, #1f1f24 0%, #07070a 70%); }
.ph-2 { background: radial-gradient(ellipse at 70% 50%, #2a1c0b 0%, #07070a 75%); }
.ph-3 { background: radial-gradient(ellipse at 50% 60%, #1a1a22 0%, #07070a 70%); }
.ph-4 { background: radial-gradient(ellipse at 40% 30%, #221511 0%, #07070a 75%); }
.ph-5 { background: radial-gradient(ellipse at 60% 50%, #11181f 0%, #07070a 70%); }
.ph-6 { background: radial-gradient(ellipse at 50% 50%, #1b1b1b 0%, #050507 70%); }
.ph-7 { background: radial-gradient(ellipse at 35% 55%, #1a150f 0%, #07070a 70%); }
.ph-8 { background: radial-gradient(ellipse at 65% 35%, #0f1a18 0%, #07070a 70%); }
.ph-9 { background: radial-gradient(ellipse at 50% 45%, #1a0f1a 0%, #07070a 70%); }
.work-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--line);
  padding: 5px 9px; border-radius: 4px;
  backdrop-filter: blur(4px);
}
.work-meta { padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.work-meta-l { display: flex; flex-direction: column; gap: 3px; }
.work-title { font-size: 15px; font-weight: 600; }
.work-sub { font-size: 12.5px; color: var(--muted); }
.work-arrow {
  width: 18px; height: 18px;
  color: var(--muted-2);
  transition: color 320ms var(--ease), transform 320ms var(--ease);
}
.work-card:hover .work-arrow { color: var(--amber); transform: translate(2px, -2px); }

/* Work page — view all link */
.work-view-all {
  text-align: center;
  margin-top: 56px;
}

/* ─────── PROCESS STEPS ─────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.35;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 320ms, background 320ms;
}
.process-step:hover .step-num {
  border-color: var(--amber);
  background: rgba(224, 138, 44, 0.08);
}
.step-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ─────── FAQ ─────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  text-align: left;
  transition: color 240ms;
  cursor: pointer;
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: transform 320ms var(--ease), border-color 320ms, background 320ms, color 320ms;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--amber);
  background: rgba(224, 138, 44, 0.1);
  color: var(--amber);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease);
}
.faq-a-inner {
  padding-bottom: 28px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 800px;
}

/* ─────── BRANDS/MATERIALS ─────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 320ms, transform 320ms;
}
.brand-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.brand-name {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
}
.brand-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.brand-type {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber);
}

/* ─────── WHAT IS X? (educational section) ─────── */
.edu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.edu-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  line-height: 1.05;
}
.edu-text p { color: var(--muted); font-size: 17px; line-height: 1.72; margin-bottom: 20px; }
.edu-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.edu-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.edu-stat .num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.edu-stat .lbl {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ─────── WORK FILTERS ─────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  background: transparent;
  transition: color 240ms, border-color 240ms, background 240ms;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.filter-btn:hover { color: var(--text); border-color: var(--amber); }
.filter-btn.active {
  color: #1a0e00;
  background: var(--amber);
  border-color: var(--amber);
}

/* ─────── CONTACT PAGE ─────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted-2);
  background: var(--surface);
  font-size: 14px;
}
.map-placeholder svg { color: var(--muted-3); }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block h3 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.contact-block p { font-size: 17px; color: var(--text); line-height: 1.65; }
.contact-block a { color: var(--amber); transition: color 200ms; }
.contact-block a:hover { color: #f0982f; }

/* Inline quote form (contact page) */
.inline-form { display: flex; flex-direction: column; gap: 20px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid-2 .span-2 { grid-column: span 2; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-2);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-3); }
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field select option { background: var(--surface-2); color: var(--text); }

/* ─────── ABOUT PAGE ─────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 320ms, transform 320ms;
}
.team-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-3);
  font-size: 48px;
}
.team-info { padding: 20px 22px; }
.team-name { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--amber); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.6; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cert-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.cert-icon { font-size: 28px; margin-bottom: 10px; }
.cert-name { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--text); margin-bottom: 4px; }
.cert-body { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ─────── COMING SOON OVERLAY ─────── */
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.coming-soon-inner { max-width: 480px; }
.coming-soon-inner .label { display: block; margin-bottom: 20px; }
.coming-soon-inner h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1;
}
.coming-soon-inner p { color: var(--muted); font-size: 17px; margin-bottom: 36px; line-height: 1.6; }

/* ─────── CTA ─────── */
.cta {
  text-align: center;
  padding: 200px 0;
  position: relative;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -40% 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(224, 138, 44, 0.18) 0%, rgba(7,7,10,0) 60%);
  z-index: -1;
}
.cta .label { margin-bottom: 28px; }
.cta-sub { margin: 36px auto 48px; color: var(--text-2); max-width: 520px; font-size: 19px; }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────── FOOTER ─────── */
footer {
  border-top: 1px solid var(--line);
  padding: 96px 0 40px;
  background: var(--bg-2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.foot-col h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
  margin-bottom: 18px;
}
.foot-col p, .foot-col a { color: var(--muted); font-size: 14px; line-height: 1.8; display: block; }
.foot-col a:hover { color: var(--text); }
.foot-brand { font-size: 14px; letter-spacing: 0.2em; font-weight: 700; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.foot-tagline { font-size: 14px; color: var(--muted); max-width: 280px; line-height: 1.7; margin-bottom: 20px; }
.foot-social { display: flex; gap: 12px; margin-top: 16px; }
.foot-social a {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2);
  font-size: 14px;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.foot-social a:hover { border-color: var(--amber); color: var(--amber); background: rgba(224, 138, 44, 0.06); }
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted-2);
}

/* ─────── MODAL ─────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-dialog {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 90dvh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 300ms var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--muted-3) transparent;
}
.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background 240ms, color 240ms, border-color 240ms;
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.08); color: var(--text); border-color: var(--line-strong); }
.modal-header { margin-bottom: 32px; padding-right: 40px; }
.modal-header .label { margin-bottom: 10px; display: block; }
.modal-header h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.modal-header p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .span-2 { grid-column: span 2; }
.form-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--muted-2); text-align: center; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.visible { display: block; }
.form-success-icon {
  width: 60px; height: 60px;
  background: rgba(224, 138, 44, 0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--amber);
}
.form-success h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ─────── REVEAL ─────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1000ms var(--ease), transform 1000ms var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.delay-4 { transition-delay: 400ms; }

/* ─────── KEYFRAMES ─────── */
@keyframes rise     { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOnly { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%       { transform: scaleY(1); opacity: 1; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; right: 32px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeOnly 800ms var(--ease) 2.0s forwards;
  z-index: 1;
}
.scroll-cue .bar {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollPulse 2.4s var(--ease) infinite;
}

/* ─────── RESPONSIVE ─────── */
@media (max-width: 1280px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .edu-grid { gap: 56px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { grid-template-columns: 120px 1fr; grid-template-areas: "num title" "num body"; gap: 24px; }
  .why-num { grid-area: num; font-size: 64px; }
  .why-title { grid-area: title; padding-top: 8px; }
  .why-body { grid-area: body; padding-top: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  body { font-size: 16px; }

  /* Nav mobile */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 16px 0; }
  .nav-inner { padding: 0 22px; }
  .brand { font-size: 14px; letter-spacing: 0.18em; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .nav-mobile { top: 58px; padding: 20px 22px 28px; }

  /* Hero mobile — masaüstü gibi tam ekran */
  .hero {
    min-height: 100dvh;
    padding: 0 22px 56px;
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: stretch;
  }
  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    mask-image: none; -webkit-mask-image: none;
    filter: saturate(0.95) contrast(1.05) brightness(0.55);
  }
  .hero-inner { position: relative; z-index: 1; }
  .hero-vignette {
    background: linear-gradient(
      180deg,
      rgba(7,7,10,0.45) 0%,
      rgba(7,7,10,0.05) 22%,
      rgba(7,7,10,0.0)  42%,
      rgba(7,7,10,0.75) 70%,
      rgba(7,7,10,0.97) 88%
    );
  }
  .hero-tint { background: radial-gradient(80% 40% at 50% 100%, rgba(7,7,10,0.7) 0%, rgba(0,0,0,0) 70%); }
  .h1 { font-size: clamp(44px, 13vw, 72px); letter-spacing: -0.04em; }
  .h2 { font-size: clamp(36px, 9vw, 60px); letter-spacing: -0.03em; }
  .section { padding: 88px 0; }
  .container { padding: 0 22px; }
  .section-head { margin-bottom: 56px; gap: 18px; }
  .hero-eyebrow { margin-bottom: 22px; gap: 10px; }
  .hero-eyebrow .label { font-size: 11px; }
  .hero-title { margin-bottom: 22px; }
  .hero-sub { font-size: 16px; margin-bottom: 30px; max-width: 100%; }
  .hero-ctas { gap: 10px; margin-bottom: 36px; }
  .hero-ctas .btn { padding: 14px 20px; font-size: 14px; flex: 1 1 auto; justify-content: center; }
  .hero-meta { gap: 14px 22px; font-size: 10px; }
  .scroll-cue { display: none; }

  .svc-hero { padding: 100px 22px 56px; min-height: 60vh; }
  .svc-hero h1 { font-size: clamp(32px, 9vw, 56px); }
  .svc-hero-sub { font-size: 15px; }

  .services-grid, .work-grid, .pricing-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; min-height: 0; gap: 18px; }
  .service-card h3 { font-size: 22px; }
  .pricing-card { padding: 32px 28px; }
  .why-item { padding: 40px 0; gap: 14px 18px; }
  .why-num { font-size: 48px; }
  .why-body { font-size: 15px; }
  .cta { padding: 120px 0; }
  .cta-sub { font-size: 16px; margin: 24px auto 32px; }
  .cta-ctas { gap: 10px; }
  .cta-ctas .btn { padding: 14px 20px; font-size: 14px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .modal-dialog { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-grid-2 .span-2 { grid-column: span 1; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-grid::before { display: none; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .edu-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero { min-height: 100dvh; padding-bottom: 40px; }

  .modal-dialog { padding: 28px 20px; border-radius: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .edu-stats { grid-template-columns: 1fr 1fr; }
  .svc-hero-ctas { flex-direction: column; align-items: stretch; }
  .svc-hero-ctas .btn { justify-content: center; }
}

/* ─────────────────────────────────────────────
   SHARED FORM COMPONENTS (quote-form / form-group)
───────────────────────────────────────────────── */
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-2, var(--muted));
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--fg, var(--text));
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group select option { background: var(--surface); color: var(--fg, var(--text)); }

/* ─────────────────────────────────────────────
   MODAL BOX (alias for modal-dialog)
───────────────────────────────────────────────── */
.modal-overlay[hidden] { display: none; }
.modal-overlay:not([hidden]) {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-box {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  width: 100%; max-width: 580px;
  max-height: 90dvh; overflow-y: auto;
  padding: 48px 40px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
}
.modal-box .modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface-2, var(--surface));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 16px;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.modal-box .modal-close:hover { background: rgba(255,255,255,0.08); color: var(--fg,var(--text)); border-color: var(--line-strong); }

/* ─────────────────────────────────────────────
   GALLERY GRID (work.html)
───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 320ms, transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.gallery-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-2, #111115);
  position: relative;
  overflow: hidden;
}
.placeholder-img { background: linear-gradient(135deg, #0f0f14 0%, #1a1a22 100%); }
.placeholder-content {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-icon { font-size: 2.5rem; opacity: 0.35; }
.gallery-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-wrap { background: rgba(96,165,250,0.15); color: #93c5fd; border: 1px solid rgba(96,165,250,0.3); }
.badge-ppf { background: rgba(52,211,153,0.15); color: #6ee7b7; border: 1px solid rgba(52,211,153,0.3); }
.badge-tint { background: rgba(167,139,250,0.15); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.3); }
.badge-commercial { background: rgba(224,138,44,0.15); color: var(--amber); border: 1px solid rgba(224,138,44,0.3); }
.gallery-info {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.gallery-info strong { font-size: 14px; font-weight: 700; color: var(--fg, var(--text)); }
.gallery-info span { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ─────────────────────────────────────────────
   CTA SECTION (shared across pages)
───────────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  position: relative;
  isolation: isolate;
}
.cta-section::before {
  content: "";
  position: absolute; inset: -30% 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(224,138,44,0.14) 0%, transparent 65%);
  z-index: -1;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE COMPONENTS
───────────────────────────────────────────────── */
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  transition: border-color 280ms;
}
.contact-card:hover { border-color: var(--line-strong); }
.contact-card-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.contact-card h3 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-card p { font-size: 15px; color: var(--fg, var(--text)); line-height: 1.6; margin: 0; }
.contact-card ul { list-style: none; padding: 0; margin: 0; }
.contact-card ul li { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--muted); padding: 3px 0; }

.inline-quote-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  margin-top: 8px;
}

.contact-map-col { display: flex; flex-direction: column; gap: 24px; }
.map-container {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-strong);
  line-height: 0;
}

.directions-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.directions-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.directions-list { display: flex; flex-direction: column; gap: 20px; }
.direction-item { display: flex; gap: 16px; align-items: flex-start; }
.direction-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.direction-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.direction-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

.info-callout {
  background: rgba(224,138,44,0.06);
  border: 1px solid rgba(224,138,44,0.2);
  border-radius: 14px;
  padding: 24px;
}
.info-callout h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.info-callout p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

.areas-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  max-width: 720px; margin: 0 auto;
}
.area-chip {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  transition: border-color 220ms, color 220ms;
}
.area-chip:hover { border-color: var(--amber); color: var(--amber); }

.link-amber { color: var(--amber); font-weight: 600; transition: color 200ms; }
.link-amber:hover { color: #f0982f; }

/* Responsive additions */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 32px 24px; }
  .inline-quote-form { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-info { padding: 10px 12px 12px; }
}
