:root {
  --black: #0a0a0a;
  --off-white: #f5f0e8;
  --gold: #0a8f1c;
  --gold-light: #29720c;
  --muted: #8a8070;
  --card-bg: #141414;
  --border: rgba(201,168,76,0.2);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--off-white); font-family: 'DM Sans', sans-serif; font-weight: 300; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(243, 243, 243, 0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--gold); }
.nav-logo span { color: var(--off-white); }
nav ul { list-style: none; display: flex; gap: 40px; }
nav ul a { color: var(--black); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.65; transition: all 0.2s; }
nav ul a:hover { opacity: 1; color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 10px 22px; opacity: 1 !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px 40px 80px; position: relative; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.055) 1px, transparent 1px); background-size: 60px 60px; }
.hero-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 68%); top: 50%; left: 50%; transform: translate(-50%, -58%); pointer-events: none; }
.hero-eyebrow { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; position: relative; z-index: 2; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(44px, 6.5vw, 92px); font-weight: 900; line-height: 1.04; letter-spacing: -2.5px; max-width: 940px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; position: relative; z-index: 2; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { max-width: 580px; margin: 28px auto 0; font-size: 17px; line-height: 1.75; color: rgba(245,240,232,0.55); opacity: 0; animation: fadeUp 0.8s 0.6s forwards; position: relative; z-index: 2; }
.hero-actions { display: flex; gap: 16px; margin-top: 48px; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; position: relative; z-index: 2; }
.btn-primary { background: var(--gold); color: var(--black); padding: 16px 36px; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--off-white); padding: 16px 36px; font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(245,240,232,0.22); cursor: pointer; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* DELIVERABLES STRIP — replaces wall of numbers */
.deliverables-strip { background: var(--gold); padding: 0; display: flex; }
.deliv-item { flex: 1; padding: 28px 20px; text-align: center; border-right: 1px solid rgba(10,10,10,0.12); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.deliv-item:last-child { border-right: none; }
.deliv-icon { font-size: 22px; }
.deliv-title { font-size: 13px; font-weight: 700; color: var(--black); letter-spacing: 0.5px; }
.deliv-sub { font-size: 11px; color: rgba(10,10,10,0.6); letter-spacing: 0.5px; }

/* SECTION COMMONS */
.section-wrap { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.section-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 54px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; max-width: 640px; }
.section-title em { font-style: italic; color: var(--gold); }

/* HOW IT WORKS */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.how-card { padding: 48px 36px; background: var(--card-bg); border: 1px solid var(--border); position: relative; overflow: hidden; transition: background 0.3s; }
.how-card:hover { background: #1c1c1c; }
.how-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.how-card:hover::before { transform: scaleX(1); }
.how-num { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: rgba(201,168,76,0.09); line-height: 1; margin-bottom: 20px; }
.how-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.how-card p { font-size: 14px; line-height: 1.85; color: rgba(245,240,232,0.5); }

/* RESULTS */
.results-section { padding: 100px 60px; background: #0d0d0d; }
.results-inner { max-width: 1200px; margin: 0 auto; }
.results-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.campaigns-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.campaign-card { position: relative; background: var(--card-bg); border: 1px solid var(--border); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; min-height: 280px; transition: border-color 0.3s; }
.campaign-card:hover { border-color: var(--gold); }
.campaign-tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: inline-block; border: 1px solid rgba(201,168,76,0.28); padding: 4px 10px; }
.campaign-card h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.campaign-card .desc { font-size: 13px; color: rgba(245,240,232,0.42); line-height: 1.75; max-width: 360px; margin-bottom: 28px; }
.campaign-metrics { display: flex; gap: 32px; align-items: flex-end; flex-wrap: wrap; }
.campaign-raised { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--gold); line-height: 1; }
.campaign-raised-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,240,232,0.38); margin-top: 4px; }
.campaign-total { font-size: 13px; color: rgba(245,240,232,0.38); border-left: 1px solid var(--border); padding-left: 32px; }
.campaign-total strong { display: block; font-size: 18px; color: rgba(245,240,232,0.65); font-weight: 600; }
.editorial-badge { position: absolute; top: 16px; right: 16px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border: 1px solid rgba(138,128,112,0.2); padding: 3px 8px; }

/* PORTFOLIO */
.portfolio-section { padding: 100px 60px; background: var(--black); }
.portfolio-inner { max-width: 1200px; margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 60px; }
.portfolio-item { background: var(--card-bg); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s; }
.portfolio-item:hover { border-color: var(--gold); }
.portfolio-item img { width: 100%; height: auto; display: block; }

/* GUARANTEE */
.guarantee-section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.guarantee-inner { background: linear-gradient(135deg, #141414 0%, #1a1508 100%); border: 1px solid var(--border); padding: 80px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guarantee-inner::before { content: '✦'; position: absolute; right: -30px; top: -40px; font-size: 240px; color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none; }
.guarantee-inner h2 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.guarantee-inner p { font-size: 15px; line-height: 1.8; color: rgba(245,240,232,0.52); margin-bottom: 16px; }
.guarantee-terms { display: flex; flex-direction: column; gap: 20px; }
.term { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.1); }
.term-icon { font-size: 22px; flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(201,168,76,0.08); }
.term-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.term-text p { font-size: 13px; line-height: 1.6; color: rgba(245,240,232,0.45); margin: 0; }

/* CTA */
.cta-banner { padding: 0 60px 100px; max-width: 1200px; margin: 0 auto; }
.cta-inner { background: var(--gold); padding: 70px 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)); }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; line-height: 1.1; color: var(--black); letter-spacing: -1px; max-width: 480px; }
.cta-inner h2 em { font-style: italic; }
.btn-dark { background: var(--black); color: var(--gold); padding: 18px 42px; font-size: 14px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; white-space: nowrap; transition: all 0.2s; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%); display: inline-block; }
.btn-dark:hover { background: #1a1a1a; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════ HAMBURGER MENU (mobile nav) ══════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none;
  min-width: 0;
}
.nav-hamburger:focus,
.nav-hamburger:active {
  background: transparent !important;
  outline: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--black) !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: none;
  flex-shrink: 0;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }

  nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }
  nav ul.open { display: flex !important; }
  nav ul li { border-bottom: 1px solid rgba(201,168,76,0.1); list-style: none; }
  nav ul li a { display: block; padding: 14px 0; font-size: 15px; width: 100%; color: var(--off-white) !important; opacity: 1 !important; }
  nav ul .nav-cta { margin: 12px 0 0; display: block; text-align: center; padding: 13px 0; }

  .hero { padding: 120px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .deliverables-strip { flex-wrap: wrap; }
  .deliv-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(10,10,10,0.12); }
  .section-wrap, .guarantee-section, .cta-banner { padding: 60px 24px; }
  .how-grid, .campaigns-grid { grid-template-columns: 1fr; }
  .results-section { padding: 60px 24px; }
  .guarantee-inner { grid-template-columns: 1fr; padding: 40px 24px; }
  .cta-inner { flex-direction: column; padding: 44px 28px; text-align: center; }
  .portfolio-section { padding: 60px 24px; }
  .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
}