/* ================================================================
   PATRICK BITATURE — MAIN STYLESHEET
   Dark luxury editorial. Cormorant Garamond + DM Sans.
   Matches original WP/Elementor design without dependencies.
   ================================================================ */

/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #0a0a0a;
  --deep:         #111111;
  --surface:      #161616;
  --surface2:     #1d1d1d;
  --border:       rgba(255,255,255,0.08);
  --gold:         #c9a84c;
  --gold-light:   #e2c27d;
  --gold-dim:     rgba(201,168,76,0.12);
  --white:        #ffffff;
  --off-white:    #f0ece4;
  --text-muted:   #888888;
  --text-body:    #cccccc;
  --primary:      #282828;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:       5px;
  --radius-pill:  50px;
  --nav-h:        72px;
  --container:    1280px;
  --section-pad:  100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--black);
  padding: .5rem 1rem; z-index: 9999; border-radius: var(--radius);
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── CONTAINERS ────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 2rem;
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.8rem; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: .875rem;
  font-weight: 500; letter-spacing: .04em;
  cursor: pointer; transition: all .25s ease;
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn-primary  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn-gold     { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn-dark     { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-dark:hover { background: var(--gold); color: var(--black); }

/* ── HEADER ────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 2rem; height: var(--nav-h);
  display: flex; align-items: center; gap: 2rem;
}
.site-logo img { width: 100px; height: auto; flex-shrink: 0; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .25rem; align-items: center; }
.main-nav a {
  display: block; padding: .5rem .9rem;
  color: rgba(255,255,255,0.8); font-size: .875rem;
  font-weight: 400; letter-spacing: .03em;
  border-radius: var(--radius-pill); transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white); background: rgba(255,255,255,0.07);
}
.header-cta { flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all .3s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  display: none; background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px); padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  display: block; padding: .75rem 1rem;
  color: rgba(255,255,255,0.85); font-size: 1rem;
  border-radius: var(--radius); transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: .75rem; }

/* ── SHARED SECTION STYLES ─────────────────────────────────────── */
section { padding: var(--section-pad) 0; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 600px; margin-bottom: 2.5rem;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 0; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(160deg, #0d0d0d 0%, #0a0a0a 100%);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  padding-left: max(2rem, calc((100vw - var(--container)) / 2 + 2rem));
}
.hero-greeting {
  font-family: var(--font-body); font-size: clamp(.875rem, 1.5vw, 1rem);
  color: var(--gold); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-name {
  font-family: var(--font-display); font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300; line-height: .95; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 2rem;
  display: flex; flex-direction: column;
}
.hero-name .accent { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,0.65);
  max-width: 560px; line-height: 1.75; margin-bottom: 2.5rem;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
}
.hero-scroll-hint span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform:scaleY(1); }
  50%      { opacity:1;  transform:scaleY(1.2); }
}
.animate-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .9s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ── PLATFORM INTRO ─────────────────────────────────────────────── */
.platform-intro {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.section-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400;
  color: var(--white); line-height: 1.4; max-width: 800px;
  margin-bottom: 3rem; font-style: italic;
}
.faces-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.faces-row img {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--surface); object-fit: cover;
}
.stat-badge { display: flex; flex-direction: column; align-items: flex-start; margin-left: .75rem; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label  { font-size: .8rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

/* ── WHY SECTION ────────────────────────────────────────────────── */
.why-section { background: var(--black); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.why-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem;
}
.why-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.why-text blockquote {
  border-left: 3px solid var(--gold); padding-left: 1.25rem; margin: 2rem 0;
  font-family: var(--font-display); font-size: 1.4rem;
  font-style: italic; color: var(--off-white); line-height: 1.5;
}
.why-story h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem,2.5vw,2rem);
  color: var(--white); font-weight: 500; line-height: 1.25; margin-bottom: 1.5rem;
}
.why-story p { color: var(--text-body); margin-bottom: 1rem; font-size: .97rem; }

/* ── CARDS GRID ─────────────────────────────────────────────────── */
.find-here { background: var(--surface); }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.3); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.card-img   { width:100%; height:200px; object-fit:cover; }
.card-icon  {
  height:200px; display:flex; align-items:center; justify-content:center;
  font-size:3rem;
  background:linear-gradient(135deg,var(--surface2) 0%,var(--surface) 100%);
  border-bottom:1px solid var(--border);
}
.card-body  { padding: 1.75rem; }
.card-body h3 {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--white);
  font-weight: 600; margin-bottom: .75rem; line-height: 1.2;
}
.card-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.link-arrow {
  display:inline-flex; align-items:center; color: var(--gold);
  font-size: .875rem; font-weight: 500; letter-spacing: .03em; transition: gap .2s; gap: .3rem;
}
.link-arrow:hover { gap: .6rem; }

/* ── ENTERPRISES / LOGO TICKER ──────────────────────────────────── */
.enterprises-section { background: var(--black); overflow: hidden; }
.enterprises-section .container { margin-bottom: 3rem; }
.logo-ticker-wrapper {
  overflow: hidden; position: relative;
  padding: 2rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.logo-ticker-wrapper::before,
.logo-ticker-wrapper::after {
  content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2;
}
.logo-ticker-wrapper::before { left:0; background:linear-gradient(to right, var(--black), transparent); }
.logo-ticker-wrapper::after  { right:0; background:linear-gradient(to left, var(--black), transparent); }
.logo-ticker {
  display:flex; align-items:center; gap:4rem;
  width:max-content; animation: ticker 30s linear infinite;
}
.logo-ticker:hover { animation-play-state: paused; }
.logo-ticker img {
  height:48px; width:auto; object-fit:contain;
  filter: brightness(0) invert(1) opacity(.4);
  transition: filter .3s; flex-shrink:0;
}
.logo-ticker img:hover { filter: brightness(0) invert(1) opacity(1); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SPEAKING ───────────────────────────────────────────────────── */
.speaking-section { background: var(--surface); border-top: 1px solid var(--border); }
.speaking-inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.speaking-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem);
  color: var(--white); font-weight: 600; margin-bottom: 1.25rem; line-height: 1.1;
}
.speaking-text p { color: var(--text-body); font-size: .97rem; margin-bottom: 2rem; line-height: 1.75; }

/* ── INSIGHTS POSTS ─────────────────────────────────────────────── */
.insights-section { background: var(--black); }
.posts-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.post-card {
  background: var(--surface2); border:1px solid var(--border); border-radius:12px;
  overflow:hidden; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.post-card:hover { transform:translateY(-4px); border-color:rgba(201,168,76,.25); box-shadow:0 16px 48px rgba(0,0,0,.35); }
.post-thumb { display:block; overflow:hidden; }
.post-thumb img { width:100%; height:200px; object-fit:cover; transition:transform .5s ease; }
.post-card:hover .post-thumb img { transform:scale(1.04); }
.post-meta { padding:1.5rem 1.5rem 0; display:flex; align-items:center; gap:.75rem; }
.post-date { font-family:var(--font-display); font-size:1.5rem; font-weight:700; color:var(--gold); line-height:1; }
.post-date span { display:block; font-size:.65rem; color:var(--text-muted); font-family:var(--font-body); font-weight:400; }
.post-category {
  font-size:.7rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted); border:1px solid var(--border); padding:.25rem .65rem; border-radius:var(--radius-pill);
}
.post-body { padding:1rem 1.5rem 1.5rem; }
.post-body h3 { font-family:var(--font-display); font-size:1.2rem; color:var(--white); font-weight:600; line-height:1.3; margin-bottom:1rem; }
.post-body h3 a:hover { color: var(--gold); }
.read-more { font-size:.8rem; color:var(--gold); letter-spacing:.06em; text-transform:uppercase; font-weight:500; transition:opacity .2s; }
.read-more:hover { opacity:.7; }

/* ── CTA BANNER ─────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #111 0%, #1a1400 50%, #111 100%);
  border-top:1px solid rgba(201,168,76,.2); border-bottom:1px solid rgba(201,168,76,.2);
  text-align:center; padding:80px 0;
}
.cta-section h2 {
  font-family:var(--font-display); font-size:clamp(1.8rem,3.5vw,3rem);
  color:var(--white); font-weight:500; max-width:640px; margin:0 auto 1rem; line-height:1.25;
}
.cta-section p { color:var(--text-muted); max-width:520px; margin:0 auto 2.5rem; }

/* ── ARCHIVE / CATEGORY PAGE ────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  max-width: var(--container); margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-header .entry-title {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3.5rem);
  color: var(--white); font-weight: 300;
}
.page-header .entry-title span { color: var(--gold); font-style: italic; }
.page-content {
  max-width: var(--container); margin: 0 auto; padding: 3rem 2rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 2rem;
}
.page-content article {
  background: var(--surface2); border:1px solid var(--border); border-radius:12px;
  overflow:hidden; transition: transform .3s, border-color .3s;
}
.page-content article:hover { transform:translateY(-4px); border-color:rgba(201,168,76,.25); }
.page-content article .entry-title {
  font-family:var(--font-display); font-size:1.3rem; color:var(--white);
  font-weight:600; padding:1.25rem 1.5rem 0; line-height:1.3;
}
.page-content article .entry-title a:hover { color: var(--gold); }
.page-content article img { width:100%; height:220px; object-fit:cover; }
.page-content article p { padding:1rem 1.5rem 1.5rem; font-size:.875rem; color:var(--text-muted); line-height:1.7; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer { background: var(--deep); border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem;
  padding: 4rem 0 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand p { font-size:.875rem; color:var(--text-muted); line-height:1.7; }
.footer-nav ul { display:flex; flex-direction:column; gap:.5rem; }
.footer-nav a { font-size:.875rem; color:var(--text-muted); transition:color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-social-title { font-family:var(--font-display); font-size:1.3rem; color:var(--white); font-weight:400; margin-bottom:1rem; }
.social-icons { display:flex; gap:.75rem; }
.social-icons a {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:50%;
  border:1px solid var(--border); color:var(--text-muted); transition:all .25s;
}
.social-icons a svg { width:16px; height:16px; }
.social-icons a:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-dim); }
.footer-bottom { padding:1.5rem 0; text-align:center; }
.footer-bottom p { font-size:.8rem; color:var(--text-muted); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid, .posts-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .speaking-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .cards-grid, .posts-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-name  { font-size: clamp(3.5rem,16vw,5rem); }
}
@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .page-content { grid-template-columns: 1fr; }
}
