/* =====================================================
   IP-MAKER · Professional Portfolio Site
   Color system: navy #0d0d18 · gold #d4a472 · ivory #f5f0e8
   ===================================================== */

:root {
  --navy:       #0d0d18;
  --navy-2:     #12121f;
  --navy-3:     #1a1a2e;
  --navy-4:     #22224a;
  --gold:       #d4a472;
  --gold-light: #f0c070;
  --gold-dark:  #a07840;
  --ivory:      #f5f0e8;
  --ivory-muted:#c8c0b0;
  --white:      #ffffff;
  --accent-teal:#4ecdc4;
  --accent-rose:#e8a0a0;
  --radius:     12px;
  --radius-lg:  24px;
  --shadow:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold:0 4px 24px rgba(212,164,114,0.25);
  --transition: 0.35s cubic-bezier(0.22,1,0.36,1);
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  background: var(--navy);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Typography ─────────────────────────────────── */
.serif { font-family: 'Noto Serif SC', 'Georgia', serif; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.3em 1em;
  border: 1px solid rgba(212,164,114,0.35);
  border-radius: 100px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--ivory);
}
.section-title span { color: var(--gold); }
.section-desc {
  color: var(--ivory-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ─── Layout ─────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section {
  padding-block: 100px;
}
.section--dark  { background: var(--navy); }
.section--mid   { background: var(--navy-2); }
.section--card  { background: var(--navy-3); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin-inline: auto; margin-top: 1rem; }

/* ─── Navbar ─────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,24,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,164,114,0.15);
  padding-block: 0.85rem;
}
.nav-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--ivory-muted); font-weight: 400; font-size: 0.9rem; margin-left: 0.5em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--ivory-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.85rem;
  padding: 0.5rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-menu-btn { display: none; }

/* ─── Hero ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,164,114,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(78,205,196,0.05) 0%, transparent 60%),
    var(--navy);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,164,114,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,164,114,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 120px 80px;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,164,114,0.12);
  border: 1px solid rgba(212,164,114,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-title .line-dim  { color: var(--ivory-muted); font-size: 0.65em; font-weight: 400; display: block; margin-top: 0.3em; font-family: 'Inter', sans-serif; letter-spacing: 0.05em; }
.hero-desc {
  color: var(--ivory-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,164,114,0.35);
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,164,114,0.5); }
.btn-secondary {
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(212,164,114,0.4);
  color: var(--gold);
  font-size: 0.95rem;
  border-radius: 100px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(212,164,114,0.08); border-color: var(--gold); }
.hero-visual {
  position: relative;
}
.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  aspect-ratio: 1 / 0.85;
}
.mosaic-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--navy-3);
}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item:nth-child(1) { grid-row: 1 / 3; border-radius: var(--radius-lg); }
.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,24,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-float-tag {
  position: absolute;
  background: rgba(13,13,24,0.85);
  border: 1px solid rgba(212,164,114,0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 0.4rem;
}
.hero-float-tag.tag-1 { bottom: -1rem; left: -1.5rem; }
.hero-float-tag.tag-2 { top: 1rem; right: -1.5rem; }
.hero-float-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-teal); }

/* ─── Stats bar ──────────────────────────────────── */
#stats {
  background: var(--navy-2);
  border-top: 1px solid rgba(212,164,114,0.1);
  border-bottom: 1px solid rgba(212,164,114,0.1);
  padding-block: 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num .unit { font-size: 1.4rem; }
.stat-label { font-size: 0.82rem; color: var(--ivory-muted); letter-spacing: 0.06em; }

/* ─── What We Do ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(212,164,114,0.25); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(212,164,114,0.1);
  border: 1px solid rgba(212,164,114,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--ivory); }
.service-card p { font-size: 0.9rem; color: var(--ivory-muted); line-height: 1.7; }
.service-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(212,164,114,0.1);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ─── Process / Pipeline ─────────────────────────── */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.pipeline-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,164,114,0.3) 20%, rgba(212,164,114,0.3) 80%, transparent);
}
.pipeline-step {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.pipeline-step:hover { border-color: rgba(212,164,114,0.3); transform: translateY(-4px); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.pipeline-step h4 { font-size: 0.95rem; color: var(--ivory); margin-bottom: 0.5rem; }
.pipeline-step p { font-size: 0.8rem; color: var(--ivory-muted); line-height: 1.6; }
.step-row-2 { grid-template-columns: repeat(4, 1fr); }

/* ─── Portfolio Gallery ──────────────────────────── */
.gallery-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(212,164,114,0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--ivory-muted);
  transition: var(--transition);
}
.gallery-tab:hover, .gallery-tab.active {
  background: rgba(212,164,114,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-intro h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--ivory); }
.gallery-intro p { color: var(--ivory-muted); font-size: 0.9rem; max-width: 55ch; margin-inline: auto; }
.gallery-intro .tags { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.75rem; flex-wrap: wrap; }
.gallery-intro .tags span {
  font-size: 0.72rem;
  padding: 0.25rem 0.75rem;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 100px;
  color: var(--accent-teal);
}
.gallery-grid {
  columns: 4;
  column-gap: 12px;
}
.gallery-img {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--navy-3);
}
.gallery-img img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-img:hover img { transform: scale(1.04); }
.gallery-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,24,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.gallery-img:hover .gallery-img-overlay { opacity: 1; }
.gallery-img-label {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.gallery-chars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.char-card {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.char-card:hover { border-color: rgba(212,164,114,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.char-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.char-info { padding: 1.25rem; }
.char-info h4 { font-size: 1rem; color: var(--ivory); margin-bottom: 0.25rem; }
.char-info .char-title { font-size: 0.78rem; color: var(--gold); margin-bottom: 0.5rem; }
.char-info p { font-size: 0.8rem; color: var(--ivory-muted); line-height: 1.6; }


/* ─── Gallery extended (exports + series) ─────────── */
.gallery-exports,
.gallery-series { margin-top: 2.5rem; }

.gallery-subsection-title {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-mono, monospace);
}

.gallery-grid--exports {
  columns: 3;
}

.gallery-grid--series {
  columns: 4;
}

.gallery-img--wide {
  break-inside: avoid;
  margin-bottom: 12px;
}

.gallery-stats-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy-3);
  border-radius: var(--radius);
  border: 1px solid rgba(212,164,114,0.15);
  justify-content: space-around;
  flex-wrap: wrap;
}

.gallery-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.gallery-stat .stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-sans);
}

.gallery-stat .stat-label {
  font-size: 0.72rem;
  color: var(--ivory-muted);
  text-align: center;
}


#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--ivory);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#lightbox-close:hover { opacity: 1; }

/* ─── Pricing ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.pricing-card {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(212,164,114,0.25); }
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(212,164,114,0.12), rgba(212,164,114,0.04));
  border-color: rgba(212,164,114,0.4);
  box-shadow: var(--shadow-gold);
}
.pricing-badge {
  position: absolute;
  top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.pricing-price {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  color: var(--ivory);
  font-weight: 700;
  line-height: 1.1;
}
.pricing-price .currency { font-size: 1.1rem; vertical-align: top; margin-top: 0.2em; display: inline-block; }
.pricing-price .note { font-size: 0.78rem; color: var(--ivory-muted); font-weight: 400; font-family: 'Inter', sans-serif; display: block; margin-top: 0.25rem; }
.pricing-divider { height: 1px; background: rgba(255,255,255,0.08); margin-block: 1.25rem; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 0.83rem;
  color: var(--ivory-muted);
  padding: 0.3rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pricing-features li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 0.15em; }
.pricing-cta {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.7rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(212,164,114,0.35);
  color: var(--gold);
  display: block;
}
.pricing-cta:hover { background: rgba(212,164,114,0.1); }
.pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-color: transparent;
}
.pricing-card.featured .pricing-cta:hover { box-shadow: var(--shadow-gold); }

/* ─── CTA / Brief ────────────────────────────────── */
#contact {
  background: linear-gradient(160deg, rgba(212,164,114,0.06) 0%, var(--navy-2) 40%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.contact-info h2 span { color: var(--gold); }
.contact-info p { color: var(--ivory-muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.contact-tags span {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(212,164,114,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--gold);
}
.contact-form {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  color: var(--ivory-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--ivory);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: rgba(212,164,114,0.5); }
.form-row select option { background: var(--navy-3); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,164,114,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,164,114,0.45); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--ivory-muted); margin-top: 0.75rem; }

/* ─── Footer ─────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--ivory-muted); line-height: 1.7; max-width: 32ch; }
.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--ivory-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--ivory-muted); }
.footer-bottom .built-by { color: var(--gold-dark); font-size: 0.75rem; }

/* ─── Scroll reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding-block: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline-grid::before { display: none; }
  .gallery-grid { columns: 2; }
  .gallery-chars { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: block; color: var(--ivory); font-size: 1.3rem; }

  /* Mobile nav open state */
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    padding: 1.2rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(212,185,126,0.15);
  }
  .nav-links.nav-open li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.nav-open li a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  .nav-cta.nav-open {
    display: block;
    margin: 0.5rem 1.5rem 1rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
}
