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

:root {
  --black:  #0A0A0A;
  --yellow: #F3C623;
  --white:  #F8F8F8;
  --gray:   #111111;
  --gray2:  #161616;
  --border: rgba(248,248,248,0.07);
  --muted:  rgba(248,248,248,0.72);
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── LOGO ── */
.logo { font-size: 1.35rem; font-weight: 800; text-decoration: none; color: var(--white); letter-spacing: -0.3px; }
.logo em { font-style: italic; color: var(--yellow); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 6%;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul a {
  color: #888; text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--white); }
.nav-cta {
  background: var(--yellow) !important; color: var(--black) !important;
  padding: 0.45rem 1.2rem; border-radius: 50px;
  font-weight: 700 !important; transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  font-size: 0.92rem; padding: 0.8rem 1.8rem; border-radius: 50px;
  transition: transform 0.2s, opacity 0.2s; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-y { background: var(--yellow); color: var(--black); box-shadow: 0 0 18px rgba(243,198,35,0.35); }
.btn-y:hover { opacity: 0.88; box-shadow: 0 0 28px rgba(243,198,35,0.55); }
.btn-ghost { color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(248,248,248,0.22); background: rgba(248,248,248,0.04); }
.btn-outline { color: var(--yellow); border: 1px solid rgba(243,198,35,0.35); }
.btn-outline:hover { background: rgba(243,198,35,0.06); }

/* ── SHARED LAYOUT ── */
.page { padding: 8rem 6% 4rem; min-height: 100vh; }
.page-hero { padding: 8rem 6% 2rem; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }

.tag {
  display: inline-block; border: 1px solid rgba(243,198,35,0.35);
  color: var(--yellow); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 50px; margin-bottom: 2rem;
}

.section-label {
  font-size: 1.25rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -2px; max-width: 900px; margin-bottom: 1.4rem;
}
h1 span { color: var(--yellow); }

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem; color: var(--muted); max-width: 540px;
  margin-bottom: 2.5rem; line-height: 1.75;
}

.muted { color: var(--muted); font-size: 0.92rem; line-height: 1.75; }

section { padding: 3.5rem 6%; }
.section-dark { background: var(--gray); }
.section-darker { background: var(--gray2); }

/* ── LIGHT SECTIONS ── */
.section-light {
  background: #FFFCF2;
  color: var(--black);
}
.section-light h2 { color: var(--black); }
.section-light .section-label { color: #B89A1A; text-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.section-light .muted { color: #666; }
.section-light blockquote { color: #444; border-left-color: var(--yellow); }
.section-light blockquote strong { color: var(--black); }
.section-light .opp-stat { border-bottom-color: rgba(10,10,10,0.08); }
.section-light .opp-desc strong { color: var(--black); }
.section-light .opp-desc span { color: #666; }
.section-light .btn-ghost { color: var(--black); border-color: rgba(10,10,10,0.15); }
.section-light .btn-ghost:hover { border-color: rgba(10,10,10,0.3); background: rgba(10,10,10,0.04); }
.section-light .stats-row { border-top-color: rgba(10,10,10,0.08); }
.section-light .stat-label { color: #666; }

/* pillars on light bg */
.section-light .pillars { background: rgba(10,10,10,0.06); border-color: rgba(10,10,10,0.08); }
.section-light .pillar { background: #FFFCF2; }
.section-light .pillar:hover { background: #f5f0e4; }
.section-light .pillar h3 { color: var(--black); }

/* service cards on light bg */
.section-light .service-card { background: #FFFCF2; border-color: rgba(10,10,10,0.08); }
.section-light .service-card:hover { border-color: rgba(243,198,35,0.5); }
.section-light .service-card h3 { color: var(--black); }
.section-light .service-card .tagline { color: rgba(10,10,10,0.4); }
.section-light .service-card p.desc { color: #666; }
.section-light .service-includes li { color: rgba(10,10,10,0.5); }
.section-light .service-footer { border-top-color: rgba(10,10,10,0.08); }
.section-light .service-price { color: var(--black); }
.section-light .service-format { color: #888; }
.section-light .service-badge.outline { color: #B89A1A; border-color: rgba(179,154,26,0.5); }

/* about box on light bg */
.section-light .about-box { background: #f5f0e4; border-color: rgba(10,10,10,0.08); }
.section-light .about-box h3 { color: var(--black); }

/* team on light bg */
.section-light .team-photo { background: #f5f0e4; border-color: rgba(10,10,10,0.08); }

/* addons on light bg */
.section-light .addons { background: #f5f0e4; border-color: rgba(10,10,10,0.08); }
.section-light .addons h3 { color: var(--black); }
.section-light .addon-chip { border-color: rgba(10,10,10,0.12); color: rgba(10,10,10,0.5); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0 6%; }

/* ── STRIP ── */
.strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.4rem 6%; display: flex; justify-content: center;
  align-items: center; gap: 0.6rem 2rem; flex-wrap: wrap;
}
.strip-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.strip-tag { font-size: 0.8rem; font-weight: 600; color: rgba(248,248,248,0.3); }

/* ── STATS ── */
.stats-row {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 4.5rem; padding-top: 3rem; border-top: 1px solid var(--border);
}
.stat-num { font-size: 2.2rem; font-weight: 900; letter-spacing: -1.5px; color: var(--yellow); text-shadow: 0 0 18px rgba(243,198,35,0.55); }
.stat-label { font-size: 0.77rem; color: var(--muted); margin-top: 0.15rem; max-width: 155px; line-height: 1.4; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

blockquote {
  font-size: 1.1rem; line-height: 1.85; color: rgba(248,248,248,0.65);
  border-left: 2px solid var(--yellow); padding-left: 1.5rem;
}
blockquote strong { color: var(--white); }

/* ── OPP STATS ── */
.opp-stats { display: flex; flex-direction: column; gap: 2rem; }
.opp-stat { display: flex; align-items: baseline; gap: 1.2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.opp-stat:last-child { border-bottom: none; padding-bottom: 0; }
.opp-num { font-size: 2.6rem; font-weight: 900; letter-spacing: -2px; color: var(--yellow); white-space: nowrap; }
.opp-desc strong { color: var(--white); display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.opp-desc span { font-size: 0.87rem; color: var(--muted); }

/* ── PILLARS ── */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  margin-top: 3rem;
}
.pillar { background: var(--gray); padding: 2rem 1.8rem; transition: background 0.2s; }
.pillar:hover { background: #1a1a1a; }
.pillar-num { font-size: 0.68rem; font-weight: 800; color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.pillar h3 { font-size: 1rem; font-weight: 700; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--gray2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover { border-color: rgba(243,198,35,0.3); transform: translateY(-4px); }
.service-card.featured { border-color: rgba(243,198,35,0.2); }
.service-card.full-width { grid-column: 1 / -1; }

.service-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--black); background: var(--yellow);
  padding: 0.22rem 0.65rem; border-radius: 50px; display: inline-block; align-self: flex-start;
}
.service-badge.outline { background: transparent; color: var(--yellow); border: 1px solid rgba(243,198,35,0.4); }

.service-card h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.3px; line-height: 1.3; }
.service-card .tagline { font-size: 0.88rem; color: rgba(248,248,248,0.45); font-style: italic; }
.service-card p.desc { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

.service-includes { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.service-includes li { font-size: 0.82rem; color: rgba(248,248,248,0.5); padding-left: 1rem; position: relative; line-height: 1.5; }
.service-includes li::before { content: '—'; position: absolute; left: 0; color: var(--yellow); font-size: 0.7rem; }

.service-footer { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.service-price { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.5px; }
.service-format { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* ── ADD-ONS ── */
.addons {
  margin-top: 3rem; background: var(--gray2);
  border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem;
}
.addons h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.3px; }
.addons > p { font-size: 0.87rem; color: var(--muted); margin-bottom: 2rem; max-width: 580px; line-height: 1.7; }
.addons-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.addon-chip { font-size: 0.78rem; font-weight: 600; border: 1px solid var(--border); color: rgba(248,248,248,0.55); padding: 0.3rem 0.85rem; border-radius: 50px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 660px; }
.team-card { display: flex; flex-direction: column; gap: 1.1rem; }
.team-photo { width: 100%; height: 290px; background: var(--gray2); border-radius: 12px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.team-name { font-size: 1.05rem; font-weight: 800; color: var(--yellow); letter-spacing: -0.3px; }
.team-role { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-top: 0.2rem; }

/* ── ABOUT BOX ── */
.about-box { background: var(--gray2); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; }
.about-box h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.6rem; }

/* ── CONTACT ── */
.contact-wrap { max-width: 540px; }
.contact-email { display: inline-block; margin-top: 1.5rem; font-size: 0.9rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.contact-email:hover { color: var(--yellow); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border); padding: 2rem 6%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: 0.77rem; color: #888; }
footer a { color: #888; text-decoration: none; font-size: 0.77rem; transition: color 0.2s; }
footer a:hover { color: var(--white); }

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav ul {
    display: none;
    position: fixed; top: 62px; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem 6%; gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  nav ul.open { display: flex; }
  nav ul a { font-size: 1rem; }

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

  .page { padding: 6rem 5% 3rem; }
  .page-hero { padding: 6rem 5% 3rem; }
  section { padding: 2.5rem 5%; }
  nav { padding: 1rem 5%; }

  h1 { letter-spacing: -1.5px; }
  footer { flex-direction: column; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr !important; }
  .stats-row { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}
