/* =========================================================
   EBUKA SOLOMON — PORTFOLIO DESIGN SYSTEM
   Palette: Branding Orange #E85002, Black #000000,
   Gradient (#F16001 -> #C10801 -> #000000),
   White #F9F9F9, Gray #646464, Dark Gray #333333, Light Gray #A7A7A7
   ========================================================= */

:root {
  --black: #000000;
  --dark-gray: #1A1A1A;
  --panel: #141414;
  --border: #2A2A2A;
  --orange: #E85002;
  --orange-bright: #F16001;
  --orange-deep: #C10801;
  --white: #F9F9F9;
  --gray: #646464;
  --light-gray: #A7A7A7;

  --grad-brand: linear-gradient(135deg, #F16001 0%, #C10801 55%, #000000 100%);

  --font-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p { margin: 0; color: var(--light-gray); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-brand);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-brand); color: var(--white); }
.btn-primary:hover { opacity: .92; }
.btn-outline { border-color: var(--border); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--orange-bright); }
.btn-outline-dark { border-color: rgba(0,0,0,0.22); color: var(--black); background: transparent; }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange-deep); }
.btn-dark { background: var(--white); color: var(--black); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--light-gray);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.04;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 22px;
  font-size: 17px;
  max-width: 480px;
  color: var(--light-gray);
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 30%, #F16001 0%, #C10801 45%, #000000 85%);
  overflow: hidden;
  padding: 16px;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 8px);
  position: relative;
  z-index: 1;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 75%, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
}
.trust-strip {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.trust-strip span {
  color: var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-strip .platforms {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--light-gray);
  font-size: 15px;
}

/* ---------- Trusted-by marquee ---------- */
.trust-marquee-section {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}
.trust-marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
}
.trust-marquee-label {
  flex-shrink: 0;
  padding-left: 24px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.trust-marquee-viewport {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: trust-scroll 38s linear infinite;
}
.trust-marquee-section:hover .trust-marquee-track { animation-play-state: paused; }
.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--light-gray);
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity .15s ease, color .15s ease;
}
.trust-logo:hover { opacity: 1; color: var(--white); }
.trust-logo .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
}
.trust-logo-img {
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity .15s ease;
  flex-shrink: 0;
}
.trust-logo-img:hover { opacity: 1; }
@media (max-width: 700px) {
  .trust-logo-img { height: 24px; max-width: 120px; }
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-marquee-track { animation: none; }
}
@media (max-width: 700px) {
  .trust-marquee-label { padding-left: 16px; font-size: 11px; }
  .trust-logo { font-size: 15px; }
}
section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { margin-top: 14px; font-size: 16px; }

.section-light {
  background: var(--white);
  color: var(--black);
  border-radius: 32px;
}
.section-light p { color: var(--gray); }
.section-light .eyebrow { color: var(--orange-deep); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: border-color .15s ease, transform .15s ease;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.service-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--light-gray); }
.service-card .learn {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card.featured { background: var(--black); }
.service-card.featured h3, .service-card.featured .num { color: var(--white); }
.service-card.featured p { color: var(--light-gray); }
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,80,2,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--orange-bright); }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}
.stat h3 { font-size: 34px; color: var(--white); }
.stat p { color: rgba(255,255,255,0.85); font-size: 13px; margin-top: 4px; }
@media (max-width: 700px) { .stats-panel { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Project / work grid ---------- */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--light-gray);
  background: transparent;
  cursor: pointer;
}
.filter-pill.active { background: var(--grad-brand); color: var(--white); border-color: transparent; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.project-thumb {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  background: var(--dark-gray);
}
.project-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.project-body h3 { font-size: 17px; }
.project-body p { font-size: 13.5px; }
.project-links {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 12px;
  flex-wrap: wrap;
}
.project-links a {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.project-links a.pdf { background: var(--grad-brand); border-color: transparent; }
.project-links a:hover { border-color: var(--orange-bright); }

@media (max-width: 980px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .project-grid { grid-template-columns: 1fr; } }

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

/* ---------- Resume block ---------- */
.resume-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.resume-block h3 { font-size: 24px; margin-bottom: 8px; }
.resume-block p { max-width: 420px; }

/* ---------- Testimonial / CTA ---------- */
.cta-panel {
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  padding: 54px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-panel h2 { font-size: clamp(26px, 3vw, 34px); max-width: 460px; }
.cta-panel p { color: rgba(255,255,255,0.85); margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--panel);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-nav-cols {
  display: flex;
  gap: 30px;
  margin-top: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a { color: var(--light-gray); font-size: 14px; }
.footer-links a:hover { color: var(--orange-bright); }
.footer-contact-line {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 8px;
}
.footer-contact-line a { color: var(--light-gray); }
.footer-contact-line a:hover { color: var(--orange-bright); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--light-gray);
  transition: border-color .15s ease, color .15s ease;
}
.footer-social a:hover { border-color: var(--orange-bright); color: var(--orange-bright); }
.footer-social svg { width: 16px; height: 16px; }

.footer-review-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 14px;
  transition: border-color .15s ease;
}
.footer-review-badge:hover { border-color: var(--orange-bright); }
.footer-review-badge .mark {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
}
.footer-review-badge .txt { font-size: 12.5px; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.footer-stars { color: var(--orange-bright); font-size: 13px; letter-spacing: 1px; margin-bottom: 4px; }
.footer-review-sub { font-size: 11.5px; color: var(--gray); }

.footer-newsletter p { font-size: 14px; color: var(--light-gray); margin-bottom: 14px; }
.footer-newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  background: var(--black);
}
.footer-newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  padding: 10px 0;
}
.footer-newsletter-form input::placeholder { color: var(--gray); }
.footer-newsletter-form button {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  border: none;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.footer-newsletter-form button:hover { transform: scale(1.06); }

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gray);
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--gray); }
.footer-bottom-links a:hover { color: var(--orange-bright); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-cols { gap: 40px; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Comments / reactions (giscus) ---------- */
.comments-section {
  padding: 20px 0 10px;
}
.comments-note {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 22px;
  max-width: 560px;
}

/* ---------- Lightbox viewer ---------- */
.lightbox-img { cursor: zoom-in; }
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity .2s ease;
}
.lightbox-overlay.open { display: flex; opacity: 1; }
.lightbox-stage {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--panel);
}
.lightbox-caption {
  margin-top: 16px;
  color: var(--light-gray);
  font-size: 14px;
  text-align: center;
}
.lightbox-counter {
  margin-top: 4px;
  color: var(--gray);
  font-size: 12.5px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
  font-size: 20px;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(232,80,2,0.18);
  border-color: var(--orange-bright);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; }
  .lightbox-stage img { max-height: 65vh; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 70px 0 40px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .stats-panel { grid-template-columns: 1fr 1fr; padding: 24px 18px; }
  .stat h3 { font-size: 26px; }
  .cta-panel { padding: 34px 22px; flex-direction: column; text-align: center; }
  .cta-panel > div:last-child { width: 100%; }
  .folio-grid { grid-template-columns: repeat(2, 1fr); }
  .resume-block { flex-direction: column; align-items: flex-start; }
  .resume-block .btn { width: 100%; justify-content: center; }
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--grad-brand);
  padding: 16px;
  overflow: hidden;
}
.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 8px);
}
@media (max-width: 860px) { .about-grid, .hero-grid { grid-template-columns: 1fr; } .hero-visual { height: 260px; } }

/* ---------- Breadcrumb (service pages) ---------- */
.breadcrumb {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--light-gray); }
.breadcrumb a:hover { color: var(--orange-bright); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.contact-item .ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Logo Folio gallery (view-only, white bg -> dark bg) ---------- */
.folio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.folio-tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: default;
}
.folio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.folio-tile .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transition: opacity .15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.folio-tile:hover .cap { opacity: 1; }
.folio-tile:hover img { transform: scale(1.04); }
.folio-tile img { transition: transform .2s ease; }
.folio-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.folio-divider::before, .folio-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
@media (max-width: 980px) { .folio-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px) { .folio-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Contact row (horizontal, clickable pills) ---------- */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color .15s ease, transform .15s ease;
}
.contact-pill:hover { border-color: var(--orange-bright); transform: translateY(-2px); }
.contact-pill .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--white);
}
.contact-pill span.label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 600px) { .contact-row { gap: 10px; } .contact-pill { padding: 10px 16px 10px 10px; } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
