/* ==============================================
   ACE GROWTH CONSULTANCY — Main Stylesheet
   WordPress Theme v1.0.0
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --black: #080808;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #222222;
  --white: #F5F0E8;
  --muted: #9A8F7A;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-dim);
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 34px; height: 34px; color: var(--gold); }
.logo-text { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 13px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* WordPress admin bar offset */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 28px; font-family: var(--ff-display); font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 6vw; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}
.hero-spade {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  max-width: 680px;
  opacity: 0.035;
  color: white;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(-50%) scale(1)} 50%{transform:translateY(-52%) scale(1.02)} }

.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.eyebrow-line { width: 44px; height: 1px; background: var(--gold); }
.eyebrow-text { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(54px, 8.5vw, 116px);
  font-weight: 700;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em { color: var(--gold); font-style: italic; }
.hero-headline .indent1 { display: block; margin-left: clamp(40px, 7vw, 130px); }
.hero-headline .indent2 { display: block; margin-left: clamp(20px, 3.5vw, 60px); }

.hero-sub {
  max-width: 530px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin: 36px 0 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 38px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,240,232,0.25);
  padding: 15px 38px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(245,240,232,0.05); }

.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 80px;
  padding-top: 44px;
  border-top: 1px solid var(--gold-dim);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.stat-num { font-family: var(--ff-display); font-size: 46px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--gold); padding: 14px 0; overflow: hidden; }
.marquee-inner { display: flex; animation: marquee 24s linear infinite; white-space: nowrap; }
.marquee-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.mdot { width: 4px; height: 4px; background: rgba(8,8,8,0.35); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTIONS ── */
.section { padding: 110px 6vw; }
.section.alt { background: var(--dark2); }

.section-eyebrow { font-size: 11px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 18px;
}
.section-title em { color: var(--gold); }
.section-sub { font-size: 16px; color: var(--muted); max-width: 520px; font-weight: 300; line-height: 1.75; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  margin-top: 64px;
}
.service-card {
  background: var(--dark);
  padding: 44px 38px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { background: #161616; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap { width: 48px; height: 48px; margin-bottom: 26px; }
.service-name { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 12px;
}

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: center; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.why-num { font-family: var(--ff-display); font-size: 48px; font-weight: 700; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 14px; }
.why-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── INDUSTRIES ── */
.industry-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 52px; }
.pill {
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--muted);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  cursor: default;
}
.pill:hover, .pill.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

/* ── FOUNDER ── */
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 88px; align-items: center; }
.founder-frame-wrap { position: relative; }
.founder-frame {
  aspect-ratio: 3/4;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder-frame-initials { font-family: var(--ff-display); font-size: 100px; font-weight: 700; color: rgba(201,168,76,0.1); user-select: none; }
.frame-corner {
  position: absolute;
  width: 34px; height: 34px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
  z-index: 2;
}
.fc-tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.fc-tr { top: 14px; right: 14px; border-width: 1px 1px 0 0; }
.fc-bl { bottom: 14px; left: 14px; border-width: 0 0 1px 1px; }
.fc-br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
.founder-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 16px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.founder-name { font-family: var(--ff-display); font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.founder-role { font-size: 14px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 26px; }
.founder-bio { font-size: 16px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 36px; }
.founder-creds { display: flex; flex-direction: column; gap: 13px; }
.cred { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.cred-dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* ── CTA BANNER ── */
.cta-section {
  background: var(--dark2);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 110px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-spade-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  opacity: 0.025;
  color: white;
  pointer-events: none;
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.cta-title em { color: var(--gold); }
.cta-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold-dim);
  padding: 60px 6vw 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer-logo { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.12em; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 12px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 13px; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(154,143,122,0.5); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── WORDPRESS CONTENT AREA ── */
.site-content { padding: 80px 6vw; }
.entry-title { font-family: var(--ff-display); font-size: clamp(32px, 4vw, 56px); font-weight: 700; color: var(--white); margin-bottom: 24px; }
.entry-content { color: var(--muted); line-height: 1.8; font-size: 16px; }
.entry-content a { color: var(--gold); }
.entry-content h2, .entry-content h3 { font-family: var(--ff-display); color: var(--white); margin: 32px 0 16px; }
.entry-content p { margin-bottom: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-cards { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .section { padding: 72px 24px; }
  .cta-section { padding: 72px 24px; }
  footer { padding: 48px 24px 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card[style*="grid-column"] { grid-column: auto !important; }
}
