/* ── Corporate PR — agency marketing site ── */

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

:root {
  --ink:      #111111;
  --ink-2:    #1b1b1b;
  --ink-3:    #242424;
  --gold:     #ECC700;
  --gold-lt:  #F5D800;
  --bg:       #FBFAF7;
  --surface:  #FFFFFF;
  --border:   #E7E3D9;
  --text:     #1A1A1A;
  --muted:    #6B6B66;
  --muted-d:  rgba(255,255,255,.62);
  --radius:   16px;
  --maxw:     1140px;
  --shadow:   0 18px 50px -22px rgba(17,17,17,.28);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ── Reveal-on-scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1) var(--d, 0s),
              transform .7s cubic-bezier(.16,1,.3,1) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 26px -10px rgba(236,199,0,.7);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-lt); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-block { width: 100%; padding: 16px; }

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(17,17,17,0);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(17,17,17,.92);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
}
.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  letter-spacing: -.2px;
}
.brand-text-accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 9px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 168px 24px 110px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -260px; right: -160px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(236,199,0,.20), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 70% 18%, #000, transparent 72%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.04;
  letter-spacing: -1.2px;
  max-width: 16ch;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-lead {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,.72);
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
}
.stat-num::after { content: '+'; color: var(--gold); }
.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

/* ── Clients ── */
.clients {
  background: var(--ink-2);
  padding: 40px 24px 46px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.clients-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 26px;
}
.clients-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 46px;
}
.client-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
  transition: color .2s ease;
}
.client-wordmark:hover { color: #fff; }

/* ── Sections ── */
.section { padding: 100px 24px; max-width: var(--maxw); margin: 0 auto; }
.section-dark, .section-soft {
  max-width: none;
  margin: 0;
}
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-soft { background: #F4F1EA; }
.section-soft > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-head { max-width: 60ch; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B59700;
  margin-bottom: 16px;
}
.section-dark .section-eyebrow { color: var(--gold); }
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.6px;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.32rem;
  margin: 14px 0 10px;
  letter-spacing: -.3px;
}
.service-card p { color: var(--muted); font-size: 15px; }

/* ── Method ── */
.method-list { list-style: none; display: grid; gap: 6px; }
.method-step {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.method-step:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.method-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 56px;
}
.method-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.method-step p { color: rgba(255,255,255,.66); max-width: 60ch; }

/* ── Testimonials ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  position: relative;
  padding-top: 14px;
}
.quote blockquote::before {
  content: '“';
  position: absolute;
  top: -18px; left: -6px;
  font-size: 3.4rem;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  line-height: 1;
}
.quote figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote-avatar {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c, var(--gold));
  color: var(--ink);
  font-weight: 700;
  flex-shrink: 0;
}
.quote figcaption strong { display: block; font-size: 15px; }
.quote figcaption span span { font-size: 13px; color: var(--muted); }

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-photo {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c, var(--gold));
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
}
.team-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.18rem; }
.team-role { color: var(--gold); font-weight: 600; font-size: 13px; letter-spacing: .4px; text-transform: uppercase; margin: 4px 0 10px; }
.team-card .team-role { color: #B59700; }
.team-bio { color: var(--muted); font-size: 14px; }

/* ── CTA ── */
.cta {
  background: var(--ink);
  color: #fff;
  padding: 100px 24px;
}
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.6px;
  margin-bottom: 16px;
}
.cta-lead { color: rgba(255,255,255,.7); max-width: 46ch; margin: 0 auto 38px; }
.cta-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.cta-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input, .cta-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color .2s ease, background .2s ease;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,.4); }
.cta-form input:focus, .cta-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}
.cta-note { min-height: 20px; font-size: 14px; color: var(--gold); text-align: center; }

/* ── Footer ── */
.footer { background: var(--ink-2); color: #fff; padding: 70px 24px 30px; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}
.footer-brand { max-width: 34ch; }
.footer-brand .brand-text { font-size: 24px; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,.55); font-size: 15px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span { color: rgba(255,255,255,.62); font-size: 15px; transition: color .18s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(17,17,17,.98);
    backdrop-filter: blur(12px);
    padding: 12px 24px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-cta { margin-top: 14px; text-align: center; border-color: var(--gold); }
  .hero { padding-top: 130px; }
  .hero-stats { gap: 30px 40px; }
  .method-step { gap: 18px; }
  .cta-fields { grid-template-columns: 1fr; }
}
