/* CGA Creative — Global Styles */
/* CHANGE LOG (2026-03-28):
  - Added skip-link styles for accessibility
  - Added focus-visible styles for keyboard navigation
  - Added content page link to nav/footer references
*/
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ---- SKIP LINK (Accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #0a0a0a;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  z-index: 200;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ---- FOCUS STYLES (Accessibility) ---- */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #888;
  --accent: #c9f06b;
  --accent-dim: rgba(201,240,107,0.1);
  --accent-2: #6bc9f0;
  --accent-2-dim: rgba(107,201,240,0.1);
  --border: #222;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
nav .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-links .nav-cta {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,240,107,0.25);
  color: #0a0a0a;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
}
.hero .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ---- CTA BUTTON ---- */
.cta {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,240,107,0.25);
}
.cta-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.cta-secondary:hover {
  border-color: var(--accent);
  box-shadow: none;
}
.cta-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

/* ---- SECTION ---- */
.section { padding: 0 0 60px; }
.section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 400;
}
.section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---- INSIGHT BLOCK ---- */
.insight {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}
.insight p {
  font-size: 16px;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

/* ---- TWO PATHS ---- */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}
.path-card .path-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.path-card.creative .path-label {
  color: var(--accent);
  background: var(--accent-dim);
}
.path-card.executive .path-label {
  color: var(--accent-2);
  background: var(--accent-2-dim);
}
.path-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}
.path-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}
.path-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.path-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.path-card ul li:first-child { border-top: none; }

/* ---- PROBLEMS ---- */
.problems {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.problem-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.problem-item strong {
  color: var(--accent);
  font-weight: 500;
}

/* ---- DELIVERABLES ---- */
.deliverables {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
.deliverable {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.deliverable-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.deliverable h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.deliverable p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- WHO LIST ---- */
.who-list { margin-top: 20px; }
.who-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.who-item:last-child { border-bottom: none; }

/* ---- CREDENTIALS ---- */
.creds {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.creds p {
  font-size: 15px;
  margin-bottom: 12px;
}
.creds p:last-child { margin-bottom: 0; }

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 60px 0 80px;
  text-align: left;
}
.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 400;
}
.final-cta p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
}

/* ---- ABOUT PAGE ---- */
.about-hero {
  padding: 80px 0 40px;
}
.about-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}
.about-hero .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.about-story {
  padding: 0 0 60px;
}
.about-story h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 400;
}
.about-story p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story p strong {
  color: var(--text);
  font-weight: 500;
}

.highlight-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin: 32px 0;
}
.highlight-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
}
.highlight-block ul {
  list-style: none;
  padding: 0;
}
.highlight-block ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.highlight-block ul li:last-child { border-bottom: none; }
.highlight-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.philosophy {
  background: var(--surface);
  border-left: 3px solid var(--accent-2);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}
.philosophy p {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  margin: 0;
  line-height: 1.7;
}

/* ---- CONTACT PAGE ---- */
.contact-hero {
  padding: 80px 0 40px;
}
.contact-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}
.contact-hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 16px;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}
.contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact-card .cta {
  font-size: 14px;
  padding: 12px 24px;
}

.calendly-section {
  padding: 40px 0 80px;
}
.calendly-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 400;
}
.calendly-section p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}
.calendly-embed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  min-height: 660px;
}

/* ---- NEWSLETTER SIGNUP ---- */
.newsletter-signup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 36px;
  margin: 60px 0;
  text-align: center;
}
.newsletter-signup h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}
.newsletter-signup .newsletter-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}
.newsletter-form button {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,240,107,0.25);
}
.newsletter-privacy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.newsletter-signup.compact {
  padding: 32px 28px;
  margin: 40px 0;
}
.newsletter-signup.compact h2 {
  font-size: 22px;
}
.newsletter-signup.compact .newsletter-desc {
  font-size: 14px;
  margin-bottom: 20px;
}
.newsletter-success {
  display: none;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 0;
}
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    padding: 14px;
  }
  .newsletter-signup {
    padding: 36px 24px;
  }
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
footer .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copyright {
  font-size: 13px;
  color: var(--text-muted);
}
footer .footer-links {
  display: flex;
  gap: 24px;
}
footer .footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
footer .footer-links a:hover {
  color: var(--text);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }
  .paths { grid-template-columns: 1fr; }
  .deliverable { grid-template-columns: 36px 1fr; gap: 12px; }
  .deliverable-num { font-size: 24px; }
  .creds { padding: 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-methods { grid-template-columns: 1fr; }
  .about-hero { padding: 48px 0 24px; }
  .contact-hero { padding: 48px 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }

  footer .container-wide {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 16px 8px; }
  .stat-num { font-size: 28px; }
}
