/* ============================================================
   RAY BRESLIN — Personal Brand Website
   style.css
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F6F5F2;
  --bg-dark:      #0E0E0E;
  --bg-dark2:     #151515;
  --text:         #111111;
  --text-light:   #666666;
  --text-xlight:  #999999;
  --gold:         #C8973D;
  --gold-hover:   #b8852c;
  --gold-bg:      rgba(200, 151, 61, 0.08);
  --border:       #E5E3DE;
  --border-dark:  #222222;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07);
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 64px rgba(0,0,0,0.12);
  --radius:       6px;
  --radius-lg:    14px;
  --t:            0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:        1160px;
  --nav-h:        72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.875rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 700; }
p  { color: var(--text-light); font-size: 1.0625rem; line-height: 1.78; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ---- Utilities ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px; flex-shrink: 0;
}
.text-gold  { color: var(--gold); }
.text-white { color: #ffffff; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.0625rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 0.9375rem; font-weight: 700; cursor: pointer;
  transition: var(--t); border: 2px solid transparent;
  white-space: nowrap; font-family: inherit;
}
.btn-primary {
  background: var(--text); color: #fff; border-color: var(--text);
}
.btn-primary:hover {
  background: #2a2a2a; border-color: #2a2a2a;
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--text); background: var(--bg-alt);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: #fff; border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover); border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,151,61,0.35);
}
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07);
}
.btn-arrow::after { content: ' →'; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 1000; transition: border-color var(--t), box-shadow var(--t);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-size: 1.125rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  padding: 7px 13px; font-size: 0.875rem; font-weight: 600;
  color: var(--text-light); border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); background: var(--bg-alt);
}
.nav-cta { margin-left: 14px; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.nav-burger span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--t); display: block;
}
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.nav-mobile ul a {
  display: block; padding: 12px 16px; font-weight: 600;
  color: var(--text); border-radius: var(--radius);
}
.nav-mobile ul a:hover { background: var(--bg-alt); }
.nav-mobile .btn { width: 100%; justify-content: center; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; right: 0;
  width: 48%; height: 100%;
  background: var(--bg-alt); z-index: 0;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.125rem; line-height: 1.75;
  color: var(--text-light); margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-proof-item h4 {
  font-size: 1.875rem; font-weight: 800;
  letter-spacing: -0.04em; color: var(--text);
}
.hero-proof-item h4 span { color: var(--gold); }
.hero-proof-item p {
  font-size: 0.8125rem; color: var(--text-xlight);
  font-weight: 500; margin-top: 2px;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.hero-photo-wrap {
  position: relative; width: 100%; max-width: 400px;
}
.hero-photo-wrap::before {
  content: ''; position: absolute;
  inset: -14px; border: 2px solid var(--gold);
  border-radius: 18px; opacity: 0.25;
}
.hero-photo-wrap::after {
  content: ''; position: absolute;
  bottom: -32px; right: -32px;
  width: 140px; height: 140px;
  background: var(--gold-bg);
  border-radius: 50%; z-index: -1;
}
.hero-photo {
  width: 100%; border-radius: 16px;
  object-fit: cover; object-position: top center;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--bg-dark); padding: 60px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px; text-align: center;
}
.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; color: var(--gold);
  letter-spacing: -0.04em; margin-bottom: 8px;
}
.stat-item p { font-size: 0.875rem; color: #888; font-weight: 500; }

/* ============================================================
   HOME — SERVICES OVERVIEW
   ============================================================ */
.services-section { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.service-card {
  background: white; padding: 40px 36px;
  transition: background var(--t); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 36px; right: 36px; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.service-card:hover { background: var(--bg-alt); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 46px; height: 46px; background: var(--gold-bg);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.375rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.125rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9375rem; line-height: 1.65; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 700;
  color: var(--text); margin-top: 20px;
  transition: gap var(--t), color var(--t);
}
.service-card:hover .card-link { gap: 10px; color: var(--gold); }

/* ============================================================
   HOME — FEATURED BUSINESSES
   ============================================================ */
.biz-section { background: var(--bg-alt); }
.biz-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.biz-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.biz-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.biz-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 20px; align-self: flex-start;
}
.biz-status::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: currentColor;
}
.status-active   { background: rgba(34,197,94,0.1);   color: #16a34a; }
.status-growing  { background: rgba(59,130,246,0.1);  color: #2563eb; }
.status-building { background: rgba(245,158,11,0.1);  color: #d97706; }
.status-exited   { background: rgba(156,163,175,0.12); color: #6b7280; }
.biz-card h3 { font-size: 1.1875rem; margin-bottom: 10px; }
.biz-card p { font-size: 0.9375rem; flex: 1; margin-bottom: 20px; }
.biz-role {
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-xlight); text-transform: uppercase; letter-spacing: 0.1em;
}

/* ============================================================
   HOME — WHY RAY
   ============================================================ */
.why-section { background: var(--bg-dark); }
.why-section h2, .why-section h3, .why-section h4 { color: white; }
.why-section p { color: #888; }
.why-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; gap: 20px; padding: 26px 28px;
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  transition: border-color var(--t);
}
.why-item:hover { border-color: var(--gold); }
.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--gold-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.why-item h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.9375rem; color: #777; line-height: 1.65; }
.why-aside {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: #181818;
  border: 1px solid #252525;
  border-radius: var(--radius-lg); padding: 44px;
}
.why-aside h3 { font-size: 1.625rem; margin-bottom: 14px; }
.why-aside p { margin-bottom: 28px; }
.why-aside-divider {
  height: 1px; background: var(--border-dark); margin: 28px 0;
}
.why-aside-note { font-size: 0.875rem !important; color: #555 !important; font-style: italic; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1.125rem; max-width: 580px; }
.page-hero .eyebrow { margin-bottom: 16px; }

/* ============================================================
   EXPERTISE PAGE
   ============================================================ */
.expertise-wrap { display: flex; flex-direction: column; gap: 14px; }
details.exp-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: white;
}
details.exp-item[open] { border-color: rgba(200,151,61,0.4); }
details.exp-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px; cursor: pointer;
  list-style: none; user-select: none;
  transition: background var(--t);
}
details.exp-item summary::-webkit-details-marker { display: none; }
details.exp-item[open] summary { background: var(--bg-alt); }
details.exp-item summary:hover { background: var(--bg-alt); }
.exp-header { display: flex; align-items: center; gap: 18px; }
.exp-icon {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; flex-shrink: 0;
}
.exp-title h3 { font-size: 1.125rem; margin-bottom: 3px; }
.exp-title p  { font-size: 0.875rem; color: var(--text-xlight); }
.exp-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--text-light);
  transition: var(--t); font-weight: 300;
}
details.exp-item[open] .exp-toggle {
  background: var(--text); border-color: var(--text);
  color: white; transform: rotate(45deg);
}
.exp-body { padding: 4px 32px 32px; }
.exp-intro { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 24px; color: var(--text-light); }
.exp-services {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.exp-service {
  padding: 20px 22px; background: var(--bg-alt);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.exp-service h4 { font-size: 0.9375rem; margin-bottom: 6px; }
.exp-service p  { font-size: 0.875rem; line-height: 1.65; }

/* ============================================================
   BUSINESSES PAGE
   ============================================================ */
.ventures-list { display: flex; flex-direction: column; gap: 28px; }
.venture-card {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px; padding: 44px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); align-items: start;
  transition: box-shadow var(--t);
}
.venture-card:hover { box-shadow: var(--shadow); }
.venture-left { }
.venture-name {
  font-size: 1.625rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 12px;
}
.venture-left p { font-size: 0.9375rem; line-height: 1.7; }
.venture-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  display: inline-block; padding: 4px 12px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  background: var(--bg-alt); color: var(--text-light);
  border: 1px solid var(--border);
}
.venture-right h3 { font-size: 1.25rem; margin-bottom: 12px; }
.venture-right p { margin-bottom: 20px; }
.venture-detail-list {
  display: flex; flex-direction: column; gap: 8px; margin-top: 20px;
}
.venture-detail-list li {
  font-size: 0.9375rem; color: var(--text-light);
  display: flex; align-items: flex-start; gap: 10px;
}
.venture-detail-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   TOOLS PAGE
   ============================================================ */
.tools-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tool-card {
  padding: 32px; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.tool-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow);
  border-color: rgba(200,151,61,0.4);
}
.tool-icon {
  font-size: 1.625rem; margin-bottom: 16px;
  width: 48px; height: 48px; background: var(--gold-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.tool-card h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.tool-card p  { font-size: 0.9375rem; }
.tool-category-label {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; display: block;
}

/* ============================================================
   CONSULTING PAGE
   ============================================================ */
.engagements-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-bottom: 56px;
}
.engagement-card {
  padding: 40px; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: box-shadow var(--t);
}
.engagement-card:hover { box-shadow: var(--shadow); }
.engagement-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.engagement-card p { margin-bottom: 24px; }
.engagement-features { display: flex; flex-direction: column; gap: 10px; }
.engagement-features li {
  font-size: 0.9375rem; color: var(--text-light);
  display: flex; align-items: flex-start; gap: 10px;
}
.engagement-features li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.not-for-box {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; margin-bottom: 56px;
}
.not-for-box h3 { margin-bottom: 8px; }
.not-for-box > p { margin-bottom: 24px; }
.not-for-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.not-for-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; background: white;
  border-radius: var(--radius); border: 1px solid var(--border);
  font-size: 0.9375rem; color: var(--text-light);
}
.not-for-item::before {
  content: '✕'; color: #ef4444; flex-shrink: 0;
  font-weight: 700; font-size: 0.875rem; margin-top: 1px;
}
.calendly-section { }
.calendly-wrap {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================================
   MEDIA PAGE
   ============================================================ */
.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.media-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.media-thumb {
  height: 140px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.media-body { padding: 24px; }
.media-body .tag { margin-bottom: 12px; display: inline-block; }
.media-body h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.media-body p  { font-size: 0.9375rem; }
.platform-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px;
}
.platform-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: var(--t);
}
.platform-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.platform-item-icon {
  width: 42px; height: 42px; background: var(--gold-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.platform-item h4 { font-size: 0.9375rem; margin-bottom: 2px; }
.platform-item p { font-size: 0.8125rem; color: var(--text-xlight); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 36px; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: var(--bg-alt);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  font-weight: 600; font-size: 0.9375rem;
  transition: var(--t);
}
.contact-channel:hover { border-color: var(--gold); background: white; box-shadow: var(--shadow-sm); }
.contact-channel-icon {
  width: 40px; height: 40px; background: white;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0;
}
.contact-channel-text { flex: 1; }
.contact-channel-text span { display: block; font-size: 0.75rem; font-weight: 500; color: var(--text-xlight); margin-top: 2px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-dark); text-align: center;
}
.cta-section h2 { color: white; }
.cta-section p  { color: #888; max-width: 520px; margin: 0 auto 40px; font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0A;
  border-top: 1px solid #191919;
  padding: 64px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand h3  { font-size: 1.1875rem; color: white; margin-bottom: 12px; }
.footer-brand p   { font-size: 0.9375rem; color: #555; max-width: 260px; line-height: 1.75; }
.footer-brand .footer-gold { color: var(--gold); font-size: 0.875rem; margin-top: 16px; display: block; }
.footer-col h4 {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #444; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9375rem; color: #555; transition: color var(--t); }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid #191919;
}
.footer-bottom p   { font-size: 0.875rem; color: #444; }
.footer-bottom a   { color: var(--gold); }

/* ============================================================
   DIVIDERS & MISC
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 0; }
.divider-dark { height: 1px; background: var(--border-dark); margin: 40px 0; }
.label {
  display: inline-block; padding: 4px 12px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  background: var(--bg-alt); color: var(--text-light);
  border: 1px solid var(--border);
}
.label-gold { background: var(--gold-bg); color: var(--gold); border-color: rgba(200,151,61,0.2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.about-photo-col { position: sticky; top: calc(var(--nav-h) + 32px); }
.about-photo {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; object-position: top;
  aspect-ratio: 3/4; box-shadow: var(--shadow-lg);
}
.about-photo-caption {
  margin-top: 20px; padding: 20px 24px;
  background: var(--bg-alt); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-photo-caption p { font-size: 0.875rem; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 22px; }
.about-content p:last-child { margin-bottom: 0; }
.timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative; margin: 40px 0;
}
.timeline::before {
  content: ''; position: absolute;
  left: 20px; top: 0; bottom: 0; width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex; gap: 28px; padding: 0 0 32px; position: relative;
}
.timeline-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: white; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9375rem; flex-shrink: 0; z-index: 1;
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 4px; }
.timeline-content p  { font-size: 0.9375rem; }
.timeline-year {
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.08em; display: block; margin-bottom: 4px;
}
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px;
}
.value-card {
  padding: 24px; background: var(--bg-alt);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.9375rem; }

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.45s; }
.delay-5 { animation-delay: 0.6s; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner          { gap: 48px; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .why-grid            { grid-template-columns: 1fr; gap: 48px; }
  .why-aside           { position: static; }
  .venture-card        { grid-template-columns: 1fr; gap: 24px; }
  .about-grid          { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-col     { position: static; }
  .about-photo         { max-width: 320px; }
  .contact-grid        { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 64px 0; }
  .nav-links, .nav-cta.desktop { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 40px); min-height: auto; }
  .hero-bg { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; padding: 16px; }
  .hero-photo-wrap { max-width: 260px; margin: 0 auto; }
  .hero-photo { aspect-ratio: 1/1; }
  .hero-proof { gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .engagements-grid { grid-template-columns: 1fr; }
  .not-for-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .exp-services { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .platform-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .tools-grid      { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions     { flex-direction: column; align-items: center; }
  .stats-grid      { grid-template-columns: 1fr 1fr; gap: 20px; }
  .portfolio-grid  { grid-template-columns: 1fr 1fr; }
  .build-types-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   PORTFOLIO GRID (homepage — all ventures compact)
   ============================================================ */
.portfolio-section { background: var(--bg-dark); padding: 88px 0; }
.portfolio-section h2 { color: white; }
.portfolio-section .section-header p { color: #888; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.portfolio-card {
  background: #161616; border: 1px solid #242424;
  border-radius: var(--radius-lg); padding: 22px 20px;
  transition: border-color var(--t), background var(--t);
  display: flex; flex-direction: column;
}
.portfolio-card:hover { border-color: rgba(200,151,61,0.5); background: #1b1b1b; }
.portfolio-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.portfolio-cat {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #444;
}
.portfolio-card-name {
  font-size: 1.0625rem; font-weight: 800;
  color: white; letter-spacing: -0.02em; margin-bottom: 4px; line-height: 1.2;
}
.portfolio-card-domain {
  font-size: 0.8125rem; color: var(--gold); font-weight: 500; margin-bottom: 10px;
}
.portfolio-card-domain a { color: var(--gold); transition: opacity var(--t); }
.portfolio-card-domain a:hover { opacity: 0.75; }
.portfolio-card-role {
  font-size: 0.75rem; color: #555; font-weight: 500; margin-top: auto; padding-top: 12px;
  border-top: 1px solid #242424;
}

/* ============================================================
   BUILD TYPES SECTION
   ============================================================ */
.build-types-section { background: var(--bg-alt); }
.build-types-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.build-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.build-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.875rem; font-weight: 600;
  color: var(--text); transition: var(--t); cursor: default;
}
.build-tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.build-tag::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.consulting-types { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.consulting-type {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--t);
}
.consulting-type:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.consulting-type-icon {
  width: 40px; height: 40px; background: var(--gold-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0;
}
.consulting-type h4 { font-size: 1rem; margin-bottom: 4px; }
.consulting-type p  { font-size: 0.875rem; }

/* ============================================================
   PORTFOLIO GRID — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .portfolio-grid   { grid-template-columns: repeat(3, 1fr); }
  .build-types-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BUSINESSES PAGE — CATEGORY GRID
   ============================================================ */
.ventures-category { margin-bottom: 56px; }
.ventures-category:last-child { margin-bottom: 0; }
.ventures-cat-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.ventures-cat-icon {
  width: 40px; height: 40px; background: var(--gold-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0;
}
.ventures-cat-header h3 { font-size: 1.125rem; }
.ventures-cat-header p  { font-size: 0.875rem; color: var(--text-xlight); margin-top: 2px; }
.ventures-cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.ventures-cat-grid.wide { grid-template-columns: 1fr; }
.venture-card-v2 {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.venture-card-v2:hover { box-shadow: var(--shadow); border-color: rgba(200,151,61,0.3); }
.venture-card-v2-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.venture-card-v2-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.venture-card-v2-domain a {
  font-size: 0.875rem; color: var(--gold); font-weight: 600; transition: opacity var(--t);
}
.venture-card-v2-domain a:hover { opacity: 0.75; }
.venture-card-v2 p { font-size: 0.9375rem; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.venture-card-v2-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; flex-wrap: wrap; }
.venture-card-v2-role { font-size: 0.75rem; font-weight: 700; color: var(--text-xlight); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 768px) {
  .ventures-cat-grid { grid-template-columns: 1fr; }
}
