/*
Theme Name:  Cindy O. Portfolio
Theme URI:   https://cindyo.ca
Author:      Custom Build for Cindy Okosun
Author URI:  https://cindyo.ca
Description: A bespoke glassmorphism portfolio theme built exclusively for Cindy Okosun — Strategic IT & Program Leader, Speaker, Author, and Community Builder.
Version:     1.1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cindyo
Tags:        portfolio, custom, glassmorphism, one-page, dark
*/

/* ============================================================
   CONTENTS:
   1. CSS Variables
   2. Reset & Base
   3. Scrollbar
   4. Background & Canvas
   5. Navigation
   6. Hero Section
   7. Section Commons
   8. Glass Card
   9. Board Roles
   10. Awards
   11. Services
   12. Works & Talks
   13. Testimonials
   14. About Page
   15. Contact Page
   16. Footer
   17. Animations
   18. Responsive
   19. Award Modal
============================================================ */

/* ── 1. CSS VARIABLES ── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E2C97E;
  --gold-dim:     rgba(201,168,76,0.18);
  --gold-glow:    rgba(201,168,76,0.08);
  --teal:         #0D3B4F;
  --teal-mid:     #0F4A63;
  --navy:         #0A0A0A;

  /*
   * Base background changed from #000000 to #000D27
   * — the exact navy blue from Cindy's suit.
   * This creates a cohesive tone that harmonises with
   * the gold accents and removes the harsh black clash.
   */
  --deep:         #000D27;

  --glass-bg:     rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.13);
  --glass-hover:  rgba(255,255,255,0.12);
  --blur:         blur(18px);
  --text:         #F0EDE6;
  --text-muted:   rgba(240,237,230,0.6);
  --radius:       6px;
  --radius-sm:    2px;
  --transition:   all 0.3s ease;

  /*
   * Site-wide image gradient blend variables.
   * Tweak these two values to make all image overlays
   * stronger or weaker across the entire site at once.
   */
  --img-blend-edge:   rgba(0,0,0,0.20);
  --img-blend-bottom: rgba(0,0,0,0.55);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ── 3. SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000D27; }
::-webkit-scrollbar-thumb { background: var(--teal-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── 4. BACKGROUND & CANVAS ── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /*
   * Base colour is now #000D27 (Cindy's suit navy).
   * The existing radial gradients are retained on top —
   * they now blend from this warmer navy rather than pure black,
   * which softens the overall contrast significantly.
   */
  background-color: #000D27;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(13,59,79,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201,168,76,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(7,27,39,0.20)   0%, transparent 100%);
}

.site-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(201,168,76,0.07) 0%, transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(13,59,79,0.15)   0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(201,168,76,0.05) 0%, transparent 30%);
}

.site-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── 5. NAVIGATION ── */

.site-nav li::before,
.site-nav li::marker {
  display: none !important;
  content: '' !important;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  /* Header tinted with the navy base so it feels integrated */
  background: rgba(0,13,39,0.65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(0,13,39,0.92);
  padding: 12px 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav-logo-text span {
  color: var(--gold);
}

/* Desktop nav */
.site-nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav-desktop .nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-nav-desktop li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav-desktop a {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.site-nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.site-nav-desktop a:hover,
.site-nav-desktop .current-menu-item a,
.site-nav-desktop a.active { color: var(--gold); }

.site-nav-desktop a:hover::after,
.site-nav-desktop .current-menu-item a::after,
.site-nav-desktop a.active::after { width: 100%; }

.site-nav { display: none; }

.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
}

.nav-book-btn::after { display: none !important; }

.nav-book-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease-in-out;
}

.nav-close { display: none; }
.nav-backdrop { display: none; }

/* ── 6. HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid var(--gold-dim);
  background: rgba(201,168,76,0.07);
  border-radius: var(--radius-sm);
}

.hero-tag span {
  width: 20px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.hero-title strong {
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 380px;
  height: 480px;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  animation: pulse-border 3s ease-in-out infinite;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 60%; height: 60%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  opacity: 0.4;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.85) contrast(1.05);
}

.hero-img-wrap .hero-portrait-blend {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,13,39,0.20) 0%, transparent 20%),
    linear-gradient(to top,    rgba(0,13,39,0.32) 0%, transparent 35%),
    linear-gradient(to right,  rgba(0,13,39,0.16) 0%, transparent 22%),
    linear-gradient(to left,   rgba(0,13,39,0.16) 0%, transparent 22%);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 30px; left: -30px;
  /* Badge uses the navy base for consistency */
  background: rgba(0,13,39,0.80);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 16px 22px;
  border-radius: 4px;
  min-width: 180px;
  z-index: 2;
}

.hero-badge-title {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-badge-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ── 7. SECTION COMMONS ── */
.site-section {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-wrap { position: relative; z-index: 1; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  position: relative;
  z-index: 1;
}

/* ── 8. GLASS CARD ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,13,39,0.4), 0 0 0 1px rgba(201,168,76,0.08);
}

/* ── 9. BOARD ROLES ── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.board-item {
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.board-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.board-item:hover .board-num { opacity: 1; }

.board-role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.board-org {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

.board-org a:hover { color: var(--gold); }

a.board-item {
  color: inherit;
  text-decoration: none;
  display: flex;
  cursor: pointer;
}

a.board-item:hover { color: inherit; }

/* ── 10. AWARDS ── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.award-card {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.award-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.3s;
  display: block;
}

.award-card:hover .award-img { filter: saturate(1); }

.award-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 220px;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,13,39,0.14) 0%, transparent 18%),
    linear-gradient(to top,    rgba(0,13,39,0.38) 0%, transparent 32%),
    linear-gradient(to right,  rgba(0,13,39,0.10) 0%, transparent 16%),
    linear-gradient(to left,   rgba(0,13,39,0.10) 0%, transparent 16%);
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 1;
}

.award-info {
  padding: 20px 22px;
  position: relative;
  z-index: 2;
}

.award-source {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.award-title {
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 400;
}

.award-icon {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.3;
}

/* ── 11. SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-link { opacity: 1; }
.service-link::after { content: '→'; }

.services-cta {
  text-align: center;
  margin-top: 70px;
  padding: 60px 40px;
}

/* ── 12. WORKS & TALKS ── */

.works-talks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 20px;
  margin-top: 50px;
}

/* Card base — glassmorphism */
.works-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: inherit;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  transform: none !important;
  transition: var(--transition);
}

.works-card:hover {
  background: var(--glass-hover);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 20px 60px rgba(0,13,39,0.45), 0 0 0 1px rgba(201,168,76,0.08);
  transform: none !important;
}

a.works-card { cursor: pointer; }

/* Explicit grid placement */
.works-card--pme        { grid-column: 1; grid-row: 1 / 3; }
.works-card--mastering  { grid-column: 2; grid-row: 1;     }
.works-card--ai-success { grid-column: 3; grid-row: 1;     }
.works-card--pmexpo     { grid-column: 2; grid-row: 2 / 4; }
.works-card--lift       { grid-column: 3; grid-row: 2;     }
.works-card--ai-mgmt    { grid-column: 3; grid-row: 3;     }

.works-card__img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.works-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.8) brightness(0.82);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.works-card:hover .works-card__img {
  filter: saturate(1) brightness(0.92);
  transform: scale(1.03);
}

/* Edge blend using the navy base colour */
.works-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius);
  background:
    linear-gradient(to bottom, rgba(0,13,39,0.22) 0%, transparent 22%),
    linear-gradient(to top,    rgba(0,13,39,0.22) 0%, transparent 28%),
    linear-gradient(to right,  rgba(0,13,39,0.16) 0%, transparent 18%),
    linear-gradient(to left,   rgba(0,13,39,0.16) 0%, transparent 18%);
}

.works-card:hover .works-card__img-wrap::after {
  background:
    linear-gradient(to bottom, rgba(0,13,39,0.12) 0%, transparent 18%),
    linear-gradient(to top,    rgba(0,13,39,0.14) 0%, transparent 22%),
    linear-gradient(to right,  rgba(0,13,39,0.09) 0%, transparent 14%),
    linear-gradient(to left,   rgba(0,13,39,0.09) 0%, transparent 14%);
}

.works-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0,13,39,0.88) 0%,
    rgba(0,13,39,0.38) 40%,
    rgba(0,13,39,0.0)  75%
  );
  transition: background 0.3s;
}

.works-card:hover .works-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0,13,39,0.92) 0%,
    rgba(0,13,39,0.45) 45%,
    rgba(0,13,39,0.04) 75%
  );
}

.works-card__body {
  position: relative;
  z-index: 3;
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.works-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,13,39,0.65);
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 6px;
  width: fit-content;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.works-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,13,39,0.4);
}

.works-card--pme   .works-card__title,
.works-card--pmexpo .works-card__title {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.works-card__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,13,39,0.4);
}

.works-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-weight: 600;
}

a.works-card:hover .works-card__cta {
  opacity: 1;
  transform: translateY(0);
}

a.works-card {
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

a.works-card:hover { border-color: var(--gold); }

/* YouTube videos row */
.works-talks-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

/* ── 13. TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 40px 38px;
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  filter: saturate(0.85);
}

.author-name { font-size: 0.88rem; font-weight: 600; }

.author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── 14. ABOUT PAGE ── */
.about-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 60px 80px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-img-col { position: sticky; top: 120px; }

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 4px;
  filter: saturate(0.85);
}

/* About portrait blend — uses navy tint */
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background:
    linear-gradient(to top,    rgba(0,13,39,0.18) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(0,13,39,0.10) 0%, transparent 30%),
    linear-gradient(to right,  rgba(0,13,39,0.10) 0%, transparent 22%),
    linear-gradient(to left,   rgba(0,13,39,0.10) 0%, transparent 22%);
  pointer-events: none;
}

/* About portrait blend div (added in PHP) */
.about-portrait-blend {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,13,39,0.18) 0%, transparent 20%),
    linear-gradient(to top,    rgba(0,13,39,0.28) 0%, transparent 35%),
    linear-gradient(to right,  rgba(0,13,39,0.14) 0%, transparent 22%),
    linear-gradient(to left,   rgba(0,13,39,0.14) 0%, transparent 22%);
  z-index: 1;
}

.about-reach-card { margin-top: 24px; padding: 24px 28px; }

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 24px;
}

.about-lead em { font-style: italic; color: var(--gold); font-weight: 600; }

.about-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
}

.about-body p + p { margin-top: 16px; }
.about-section { margin-bottom: 50px; }

.awards-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.award-mini { padding: 22px 24px; }

.award-mini-source {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.award-mini-title { font-size: 0.95rem; font-weight: 500; }

.career-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  backdrop-filter: var(--blur);
}

.career-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
}

.location-pill::before { content: '◆'; color: var(--gold); font-size: 0.5rem; }

.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* ── 15. CONTACT PAGE ── */
.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 60px 80px;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-card { padding: 40px 36px; }
.contact-item { margin-bottom: 36px; }
.contact-item:last-child { margin-bottom: 0; }

.contact-item-label {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-item-val { font-size: 1rem; font-weight: 400; }
.contact-item-val a:hover { color: var(--gold); }
.contact-form-card { padding: 40px 36px; }

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  backdrop-filter: var(--blur);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,237,230,0.25); }

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000D27;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.3);
}

.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.wpcf7-mail-sent-ok {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold) !important;
  color: var(--gold);
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.3) !important;
  color: #e87070;
}

/* ── BUTTONS (GLOBAL) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000D27;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.3);
  color: #000D27;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 14px 32px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── 16. FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,13,39,0.5);
  backdrop-filter: blur(20px);
}

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-copy strong { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── 17. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-border {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.01); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ── 18. RESPONSIVE ── */
@media (max-width: 1100px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }

  .works-talks-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px 280px;
  }

  .works-card--pme        { grid-column: 1; grid-row: 1 / 3; }
  .works-card--mastering  { grid-column: 2; grid-row: 1;     }
  .works-card--ai-success { grid-column: 2; grid-row: 2;     }
  .works-card--pmexpo     { grid-column: 1; grid-row: 3 / 5; }
  .works-card--lift       { grid-column: 2; grid-row: 3;     }
  .works-card--ai-mgmt    { grid-column: 2; grid-row: 4;     }
}

@media (max-width: 900px) {
  .site-header { padding: 16px 24px; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,13,39,0.6);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }

  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
  .site-nav-desktop { display: none !important; }

  .site-nav {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: 75%;
    height: 100vh;
    background: rgba(0,13,39,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    padding: 100px 24px 40px;
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
  }

  .site-nav.open { transform: translateX(0); }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center;
    width: 100%;
  }

  .site-nav li {
    list-style: none !important;
    width: 100%;
    text-align: center;
    padding: 0; margin: 0;
  }

  .site-nav li::before,
  .site-nav li::after,
  .site-nav li::marker { display: none !important; content: none !important; }

  .site-nav a { font-size: 1.3rem; }

  .nav-close {
    display: flex;
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }

  .nav-close:hover { color: var(--gold); }

  .nav-toggle {
    display: flex;
    z-index: 200;
    transition: opacity 0.3s ease-in-out;
  }

  .nav-toggle.open { opacity: 0; pointer-events: none; }

  .hero,
  .site-section,
  .about-page-inner,
  .contact-page-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .board-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  /* Mobile works grid */
  .works-talks-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    width: 100%;
  }

  .works-card--pme,
  .works-card--mastering,
  .works-card--ai-success,
  .works-card--pmexpo,
  .works-card--lift,
  .works-card--ai-mgmt {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    height: 260px;
    min-height: unset;
  }

  .works-card--pme,
  .works-card--pmexpo { height: 320px; }

  .works-card__img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .works-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .works-card__body { padding: 16px 18px 20px; }
  .works-card__title { font-size: 1.1rem; }

  .works-card--pme   .works-card__title,
  .works-card--pmexpo .works-card__title { font-size: 1.3rem; }

  .works-card__sub { font-size: 0.75rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .about-page-inner { grid-template-columns: 1fr; }
  .about-img-col { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .site-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px 24px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .glass-card[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 30px !important;
  }
}

@media (max-width: 600px) {
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.8rem; }
  .services-cta { padding: 40px 24px; }

  .works-card--pme,
  .works-card--mastering,
  .works-card--ai-success,
  .works-card--pmexpo,
  .works-card--lift,
  .works-card--ai-mgmt { height: 240px; }

  .works-card--pme,
  .works-card--pmexpo { height: 290px; }
}

/* ── 19. AWARD MODAL ── */
.award-card-clickable { cursor: pointer; transition: all 0.3s ease; }
.award-card-clickable:hover { transform: translateY(-6px); }
.award-mini-clickable { cursor: pointer; transition: all 0.3s ease; }
.award-mini-clickable:hover { transform: translateY(-4px); }

.award-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.award-modal.open { display: flex; }

.award-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,13,39,0.88);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.award-modal-content {
  position: relative;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  z-index: 1001;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.award-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(0,13,39,0.65);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1002;
  transition: all 0.2s;
}

.award-modal-close:hover {
  background: rgba(201,168,76,0.3);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

.award-modal-inner { padding: 40px; }

.award-modal-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
}

.award-modal-source {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.award-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.award-modal-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
}

.award-modal-description p { margin-bottom: 16px; }
.award-modal-description p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .award-modal-inner { padding: 30px 24px; }
  .award-modal-title { font-size: 1.6rem; }
  .award-modal-img { max-height: 250px; }
}