/* ========================================
   Global Psychological Solutions
   Stylesheet
   ======================================== */

   @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

   :root {
     /* Deep navy + warm gold palette — trust, authority, warmth */
     --navy: #0f1f3d;
     --navy-light: #1a3260;
     --slate: #2c3e5a;
     --teal: #1a8a7d;
     --teal-light: #22b8a6;
     --gold: #d4a84b;
     --gold-light: #e8c97a;
     --cream: #faf6ef;
     --white: #ffffff;
     --gray-100: #f4f1ec;
     --gray-200: #e2ddd4;
     --gray-400: #a09888;
     --gray-600: #6b6155;
     --text: #1e1e1e;
     --text-light: #5a5a5a;
   
     --font-display: 'DM Serif Display', Georgia, serif;
     --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
   
     --max-width: 1200px;
     --nav-height: 80px;
     --section-pad: 100px;
   }
   
   /* ── Reset ──────────────────────────── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   html { scroll-behavior: smooth; }
   
   body {
     font-family: var(--font-body);
     color: var(--text);
     background: var(--cream);
     line-height: 1.7;
     font-size: 17px;
     -webkit-font-smoothing: antialiased;
   }
   
   img { max-width: 100%; display: block; }
   a { color: inherit; text-decoration: none; }
   ul { list-style: none; }
   
   /* ── Typography ─────────────────────── */
   h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
   h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
   h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
   h3 { font-size: 1.35rem; }
   p { max-width: 680px; }
   
   .section-label {
     display: inline-block;
     text-transform: uppercase;
     letter-spacing: 3px;
     font-size: 0.78rem;
     font-weight: 700;
     color: var(--teal);
     margin-bottom: 12px;
   }
   
   /* ── Navigation ─────────────────────── */
   .navbar {
     position: fixed; top: 0; left: 0; right: 0;
     height: var(--nav-height);
     background: rgba(15, 31, 61, 0.97);
     backdrop-filter: blur(10px);
     z-index: 1000;
     display: flex;
     align-items: center;
   }
   
   .nav-inner {
     width: 100%;
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 32px;
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   
   .nav-brand {
     font-family: var(--font-display);
     font-size: 1.25rem;
     color: var(--white);
     white-space: nowrap;
   }
   
   .nav-brand span { color: var(--gold); }
   
   .nav-links {
     display: flex;
     gap: 36px;
     align-items: center;
   }
   
   .nav-links a {
     color: rgba(255,255,255,0.75);
     font-size: 0.9rem;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: color 0.3s;
     position: relative;
   }
   
   .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -4px; left: 0;
     width: 0; height: 2px;
     background: var(--gold);
     transition: width 0.3s;
   }
   
   .nav-links a:hover,
   .nav-links a.active { color: var(--white); }
   .nav-links a:hover::after,
   .nav-links a.active::after { width: 100%; }
   
   /* Mobile menu toggle */
   .nav-toggle {
     display: none;
     background: none; border: none;
     cursor: pointer;
     flex-direction: column; gap: 5px;
   }
   .nav-toggle span {
     display: block; width: 26px; height: 2px;
     background: var(--white);
     transition: 0.3s;
   }
   
   /* ── Hero ────────────────────────────── */
   .hero {
     min-height: 92vh;
     display: flex;
     align-items: center;
     background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, var(--slate) 100%);
     position: relative;
     overflow: hidden;
     padding-top: var(--nav-height);
   }
   
   .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
       radial-gradient(ellipse 60% 50% at 80% 40%, rgba(26,138,125,0.12) 0%, transparent 70%),
       radial-gradient(ellipse 40% 60% at 20% 70%, rgba(212,168,75,0.08) 0%, transparent 60%);
   }
   
   /* Subtle grid pattern */
   .hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image:
       linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
       linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
     background-size: 60px 60px;
   }
   
   .hero-inner {
     width: 100%;
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 60px 32px;
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
   }
   
   .hero-text { color: var(--white); }
   .hero-text h1 { margin-bottom: 20px; }
   .hero-text h1 em { font-style: italic; color: var(--gold); }
   .hero-text p {
     font-size: 1.12rem;
     color: rgba(255,255,255,0.72);
     margin-bottom: 36px;
     max-width: 500px;
   }
   
   .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
   }
   
   .hero-graphic {
     width: 340px; height: 340px;
     border-radius: 50%;
     border: 2px solid rgba(212,168,75,0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     background: radial-gradient(circle, rgba(26,138,125,0.08), transparent 70%);
   }
   
   .hero-graphic::before {
     content: '';
     position: absolute;
     width: 280px; height: 280px;
     border-radius: 50%;
     border: 1px solid rgba(255,255,255,0.06);
   }
   
   .hero-graphic svg {
     width: 100px; height: 100px;
     opacity: 0.6;
   }
   
   /* ── Buttons ─────────────────────────── */
   .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     border-radius: 6px;
     font-family: var(--font-body);
     font-weight: 700;
     font-size: 0.92rem;
     letter-spacing: 0.5px;
     cursor: pointer;
     border: none;
     transition: all 0.3s;
   }
   
   .btn-primary {
     background: var(--gold);
     color: var(--navy);
   }
   .btn-primary:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(212,168,75,0.3);
   }
   
   .btn-outline {
     background: transparent;
     color: var(--white);
     border: 1.5px solid rgba(255,255,255,0.3);
   }
   .btn-outline:hover {
     border-color: var(--gold);
     color: var(--gold);
   }
   
   .btn-dark {
     background: var(--navy);
     color: var(--white);
   }
   .btn-dark:hover {
     background: var(--navy-light);
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(15,31,61,0.25);
   }
   
   .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
   
   /* ── Sections ────────────────────────── */
   .section {
     padding: var(--section-pad) 32px;
   }
   
   .section-inner {
     max-width: var(--max-width);
     margin: 0 auto;
   }
   
   .section-header {
     margin-bottom: 56px;
   }
   
   .section-header h2 { margin-bottom: 16px; }
   .section-header p { color: var(--text-light); }
   
   /* Alternating backgrounds */
   .section--light { background: var(--white); }
   .section--cream { background: var(--cream); }
   .section--dark {
     background: var(--navy);
     color: var(--white);
   }
   .section--dark p { color: rgba(255,255,255,0.7); }
   .section--dark .section-label { color: var(--gold); }
   
   /* ── Cards grid ──────────────────────── */
   .card-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 28px;
   }
   
   .card {
     background: var(--white);
     border-radius: 12px;
     padding: 40px 32px;
     border: 1px solid var(--gray-200);
     transition: all 0.35s;
     position: relative;
     overflow: hidden;
   }
   
   .card::before {
     content: '';
     position: absolute;
     top: 0; left: 0; right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--teal), var(--gold));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s;
   }
   
   .card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 40px rgba(15,31,61,0.08);
   }
   
   .card:hover::before { transform: scaleX(1); }
   
   .card-icon {
     width: 52px; height: 52px;
     background: var(--gray-100);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: var(--teal);
   }
   
   .card h3 { margin-bottom: 12px; }
   .card p { color: var(--text-light); font-size: 0.95rem; }
   
   /* ── Workshop / Discussion Queue Cards ── */
   .workshop-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 24px;
   }
   
   .workshop-card {
     border-radius: 12px;
     padding: 36px 28px;
     color: var(--white);
     position: relative;
     overflow: hidden;
     min-height: 220px;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     transition: transform 0.3s;
   }
   
   .workshop-card:hover { transform: translateY(-4px); }
   
   .workshop-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.55) 100%);
     z-index: 1;
   }
   
   .workshop-card > * { position: relative; z-index: 2; }
   
   .workshop-card .card-number {
     font-family: var(--font-display);
     font-size: 3rem;
     opacity: 0.2;
     position: absolute;
     top: 16px; right: 24px;
     z-index: 2;
   }
   
   .workshop-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
   .workshop-card p { font-size: 0.88rem; opacity: 0.85; }
   
   .wc-teal    { background: linear-gradient(135deg, #1a8a7d, #12655b); }
   .wc-navy    { background: linear-gradient(135deg, var(--navy-light), var(--navy)); }
   .wc-gold    { background: linear-gradient(135deg, #b8912e, #8a6b1e); }
   .wc-slate   { background: linear-gradient(135deg, var(--slate), #1f2e45); }
   .wc-forest  { background: linear-gradient(135deg, #2d6a4f, #1b4332); }
   .wc-plum    { background: linear-gradient(135deg, #6b3fa0, #4a2874); }
   
   /* ── About layout ────────────────────── */
   .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
   }
   
   .about-text h2 { margin-bottom: 20px; }
   .about-text p { margin-bottom: 16px; color: var(--text-light); }
   
   .about-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 24px;
     margin-top: 32px;
   }
   
   .stat-item {
     padding: 24px;
     background: var(--gray-100);
     border-radius: 10px;
     text-align: center;
   }
   
   .stat-number {
     font-family: var(--font-display);
     font-size: 2.2rem;
     color: var(--teal);
     display: block;
   }
   
   .stat-label {
     font-size: 0.82rem;
     color: var(--gray-600);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-top: 4px;
   }
   
   .about-visual {
     background: var(--navy);
     border-radius: 16px;
     padding: 48px;
     display: flex;
     flex-direction: column;
     gap: 24px;
     color: var(--white);
     position: relative;
     overflow: hidden;
   }
   
   .about-visual::before {
     content: '';
     position: absolute;
     width: 300px; height: 300px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(26,138,125,0.15), transparent 70%);
     top: -80px; right: -80px;
   }
   
   .about-visual h3 { color: var(--gold); }
   .about-visual ul { display: flex; flex-direction: column; gap: 14px; }
   .about-visual li {
     padding-left: 20px;
     position: relative;
     color: rgba(255,255,255,0.8);
     font-size: 0.95rem;
   }
   .about-visual li::before {
     content: '→';
     position: absolute;
     left: 0;
     color: var(--gold);
   }
   
   /* ── Experience & Approach ───────────── */
   .exp-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: start;
   }
   
   .exp-bio h2 { margin-bottom: 20px; }
   .exp-bio p { color: var(--text-light); margin-bottom: 16px; }
   .exp-bio .btn { margin-top: 16px; }
   
   .exp-sectors-card,
   .exp-methods-card {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: 12px;
     padding: 32px 28px;
   }
   
   .exp-sectors-card { margin-bottom: 20px; }
   
   .exp-sectors-card h3,
   .exp-methods-card h3 {
     font-size: 1.1rem;
     margin-bottom: 20px;
     padding-bottom: 14px;
     border-bottom: 2px solid var(--gray-100);
   }
   
   .exp-sector-list {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
   }
   
   .exp-sector-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.92rem;
     color: var(--text);
     font-weight: 600;
   }
   
   .exp-sector-item svg {
     color: var(--teal);
     flex-shrink: 0;
   }
   
   .exp-method-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
   }
   
   .exp-tag {
     display: inline-block;
     padding: 7px 16px;
     background: var(--gray-100);
     border: 1px solid var(--gray-200);
     border-radius: 6px;
     font-size: 0.82rem;
     font-weight: 600;
     color: var(--text-light);
     letter-spacing: 0.3px;
   }
   
   /* ── Contact ─────────────────────────── */
   .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
   }
   
   .contact-info h2 { margin-bottom: 20px; }
   .contact-info > p { color: var(--text-light); margin-bottom: 36px; }
   
   .contact-detail {
     display: flex;
     gap: 16px;
     align-items: flex-start;
     margin-bottom: 28px;
   }
   
   .contact-icon {
     width: 48px; height: 48px;
     background: var(--navy);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--gold);
   }
   
   .contact-detail h4 {
     font-family: var(--font-body);
     font-weight: 700;
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--gray-600);
     margin-bottom: 4px;
   }
   
   .contact-detail p { font-size: 1.05rem; color: var(--text); }
   
   .contact-map {
     background: var(--gray-100);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 380px;
     border: 1px solid var(--gray-200);
     color: var(--gray-400);
     font-size: 0.9rem;
   }
   
   /* ── CTA Banner ──────────────────────── */
   .cta-banner {
     text-align: center;
     padding: 80px 32px;
     background: linear-gradient(135deg, var(--navy), var(--slate));
     color: var(--white);
   }
   
   .cta-banner h2 { margin-bottom: 16px; }
   .cta-banner p { margin: 0 auto 32px; color: rgba(255,255,255,0.7); }
   
   /* ── Footer ──────────────────────────── */
   .footer {
     background: var(--navy);
     color: rgba(255,255,255,0.55);
     padding: 48px 32px 32px;
     font-size: 0.88rem;
   }
   
   .footer-inner {
     max-width: var(--max-width);
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 16px;
   }
   
   .footer-brand {
     font-family: var(--font-display);
     color: var(--white);
     font-size: 1.1rem;
   }
   
   .footer-brand span { color: var(--gold); }
   
   .footer-links { display: flex; gap: 24px; }
   .footer-links a { transition: color 0.3s; }
   .footer-links a:hover { color: var(--gold); }
   
   /* ── Page Header (interior pages) ───── */
   .page-header {
     padding: 140px 32px 60px;
     background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
     color: var(--white);
     position: relative;
   }
   
   .page-header::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image:
       linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
       linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
     background-size: 60px 60px;
   }
   
   .page-header-inner {
     max-width: var(--max-width);
     margin: 0 auto;
     position: relative;
     z-index: 1;
   }
   
   .page-header h1 { margin-bottom: 12px; }
   .page-header p { color: rgba(255,255,255,0.65); font-size: 1.1rem; }
   
   /* ── Animations ──────────────────────── */
   .fade-up {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.7s ease, transform 0.7s ease;
   }
   
   .fade-up.visible {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* ── Responsive ──────────────────────── */
   @media (max-width: 900px) {
     .hero-inner { grid-template-columns: 1fr; text-align: center; }
     .hero-text p { margin-left: auto; margin-right: auto; }
     .hero-buttons { justify-content: center; }
     .hero-visual { display: none; }
   
     .about-grid,
     .contact-grid,
     .exp-layout { grid-template-columns: 1fr; }
   
     .nav-links {
       display: none;
       position: absolute;
       top: var(--nav-height);
       left: 0; right: 0;
       background: var(--navy);
       flex-direction: column;
       padding: 24px 32px;
       gap: 20px;
     }
   
     .nav-links.open { display: flex; }
     .nav-toggle { display: flex; }
   
     :root { --section-pad: 64px; }
   }
   
   @media (max-width: 600px) {
     .card-grid { grid-template-columns: 1fr; }
     .workshop-grid { grid-template-columns: 1fr; }
     .about-stats { grid-template-columns: 1fr; }
     .hero-buttons { flex-direction: column; align-items: center; }
     .exp-sector-list { grid-template-columns: 1fr; }
   }