/* ═══════════════════════════════════════════
   PR SERVICES — style.css
   Aesthetic: Monochrome editorial brutalism
   — refined ink-black on off-white, with
     razor-sharp type and kinetic accents
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black:   #0a0a0a;
  --white:   #f5f2ed;
  --ink:     #111111;
  --muted:   #6b6b6b;
  --accent:  #c8ff00;   /* electric lime — single pop of colour */
  --border:  rgba(0,0,0,0.12);
  --border-dark: rgba(255,255,255,0.12);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --nav-h: 68px;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ── Layout ── */
.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.section { padding: clamp(80px, 10vw, 140px) 0; }

/* ── Typography helpers ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

/* ── Reveal animations ── */
.reveal, .reveal-inline {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.in-view, .reveal-inline.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
}
.btn--primary:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(245, 242, 237, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links li a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links li a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s !important;
}
.nav__cta:hover {
  background: var(--accent) !important;
  color: var(--ink) !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__marquee-wrap {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  color: rgba(0,0,0,0.04);
  letter-spacing: 0.02em;
  will-change: transform;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, 8vw, 100px);
  padding-bottom: clamp(80px, 10vw, 120px);
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  transition-delay: 0.05s;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  transition-delay: 0.1s;
}
.hero__title em {
  font-style: normal;
  color: var(--muted);
}
.hero__title strong {
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero__title strong::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--transition) 0.8s;
}
.hero__title strong.in-view::after { transform: scaleX(1); }
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
  transition-delay: 0.18s;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  transition-delay: 0.26s;
}
.hero__scroll-hint {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero__scroll-hint span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  transform: rotate(90deg);
  margin-bottom: 8px;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.stat {
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--white);
}
.stat__suffix {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--accent);
}
.stat__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about__badge {
  margin-top: 48px;
  display: inline-block;
}
.about__badge-img {
  width: min(220px, 60%);
  opacity: 0.9;
  transition: opacity 0.3s;
}
.about__badge-img:hover { opacity: 1; }
.about__body {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #333;
  margin-bottom: 24px;
  line-height: 1.75;
}
.about__body strong { color: var(--ink); font-weight: 500; }
.about__pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.about__pillars li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  font-size: 18px;
  color: var(--muted);
  margin-top: 2px;
  flex-shrink: 0;
}
.about__pillars li strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 4px;
}
.about__pillars li p { font-size: 14px; color: var(--muted); }

/* ══════════════════════════════════════════
   VENTURES
══════════════════════════════════════════ */
.ventures {
  background: #f0ede6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ventures__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.ventures__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.venture-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.venture-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.venture-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.venture-card:hover::before { transform: scaleX(1); }
.venture-card--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.venture-card--dark::before { background: var(--accent); }
.venture-card--dark .venture-card__tag { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.12); }
.venture-card--dark .venture-card__desc { color: rgba(255,255,255,0.65); }
.venture-card--dark .venture-card__tags li { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.venture-card--dark .venture-card__link { color: var(--accent); }
.venture-card--dark .venture-card__logo-svg { color: rgba(255,255,255,0.15); }
.venture-card--dark .venture-card__num { color: rgba(255,255,255,0.08); }
.venture-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
}
.venture-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.venture-card__logo-svg {
  color: rgba(0,0,0,0.07);
  height: 28px;
  width: auto;
}
.venture-card__num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(0,0,0,0.05);
  position: absolute;
  top: 20px; right: 24px;
  pointer-events: none;
}
.venture-card__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 16px;
}
.venture-card__desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.venture-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.venture-card__tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(0,0,0,0.05);
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--muted);
}
.venture-card__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.venture-card__link:hover { gap: 12px; }
.venture-card__link .arrow { transition: transform 0.2s; }
.venture-card__link:hover .arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}
.service-item {
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(4), .service-item:nth-child(5), .service-item:nth-child(6) { border-bottom: none; }
.service-item:hover { background: var(--ink); color: var(--white); }
.service-item:hover .service-item__num { color: rgba(255,255,255,0.08); }
.service-item:hover h3 { color: var(--white); }
.service-item:hover p { color: rgba(255,255,255,0.55); }
.service-item__num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: rgba(0,0,0,0.05);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.3s;
}

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  background: var(--accent);
  padding: 20px 0;
  overflow: hidden;
}
.cta-strip__marquee { overflow: hidden; }
.cta-strip__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 16s linear infinite;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--ink);
  opacity: 0.9;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  background: var(--ink);
  color: var(--white);
}
.contact .section-label { color: rgba(255,255,255,0.35); }
.contact .section-title { color: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 48px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.contact__info-value {
  font-size: 16px;
  color: var(--white);
  transition: color 0.2s;
}
a.contact__info-value:hover { color: var(--accent); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
}
.form-group input.error,
.form-group textarea.error { border-color: #ff4d4d; }

.contact .btn--primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.contact .btn--primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.form-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  min-height: 20px;
  transition: color 0.3s;
}
.form-note.success { color: var(--accent); }
.form-note.error-msg { color: #ff6b6b; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #060606;
  color: rgba(255,255,255,0.5);
  padding: 60px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.footer__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(1);
}
.footer__logo span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}
.footer__mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a,
.footer__col ul li span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: 13px; }
.footer__legal { color: rgba(255,255,255,0.25); font-size: 12px !important; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ventures__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(3) { border-bottom: 1px solid var(--border); }
  .service-item:nth-child(5), .service-item:nth-child(6) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px; gap: 20px; }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__badge { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .service-item:last-child { border-bottom: none !important; }
  .footer__mid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-divider { display: none; }
  .hero__scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .footer__mid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
