/* ============================================================
   TBG Strategies – shared stylesheet
   ============================================================ */

/* Reset & base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --text-dark: #221C2C;
  --primary: #B37263;
  --primary-light: #C4907F;
  --primary-pale: #D4AD94;
  --secondary: #9BB099;
  --secondary-dark: #71846F;
  --taupe: #ABB0AB;
  --neutral: #F5F0EB;
  --neutral-dark: #EDE5DC;
  --white: #FFFFFF;
  --plum-dark: #2D2430;
  --plum: #3A2F3E;
  --plum-mid: #4E4254;
  --font-heading: 'Libre Caslon Text', 'Big Caslon', 'Book Antiqua', Georgia, serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-pad: clamp(64px, 10vw, 120px);
  --container: min(1200px, 90vw);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.7; font-weight: 300; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
.label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---- Nav ---- */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 clamp(20px,4vw,48px); transition: all 0.4s cubic-bezier(.16,1,.3,1); background: rgba(45,36,48,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 30px rgba(0,0,0,0.15); }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400; color: var(--white); display: flex; align-items: center; }
.nav-logo .tb { color: var(--primary); }
.nav-logo .g { color: var(--white); }
.nav-logo .strat { font-family: var(--font-body); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.15em; text-transform: lowercase; color: var(--taupe); display: block; margin-top: -4px; }
.nav-logo-img { height: 40px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.nav-logo-img--footer { height: 36px; opacity: 0.9; }
.footer-logo-link { text-decoration: none; margin-bottom: 12px; display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em; color: rgba(255,255,255,0.7); transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--primary); transition: width 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--primary) !important; color: var(--white) !important; padding: 10px 24px; border-radius: 100px; font-weight: 500 !important; transition: all 0.3s !important; }
.nav-cta:hover { background: var(--primary-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-social { display: flex; gap: 14px; margin-left: 8px; }
.nav-social a { opacity: 0.6; transition: opacity 0.3s; }
.nav-social a:hover { opacity: 1; }
.nav-social a::after { display: none !important; }
.nav-social svg { width: 17px; height: 17px; fill: white; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #ffffff; }

/* ---- Nav Dropdown ---- */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #1a1a2e; min-width: 180px; border-radius: 6px; padding: 8px 0; z-index: 1002; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.nav-dropdown-menu a { display: block; padding: 10px 16px; white-space: nowrap; color: #ffffff; text-decoration: none; font-size: 0.95rem; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu:hover { display: block; }

/* ---- Mobile Nav ---- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: var(--plum-dark) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    z-index: 1001 !important;
    display: none !important;
    height: 100vh !important;
    width: 100vw !important;
  }
  .nav-links.open { display: flex !important; }
  .nav-links a { font-size: 1.1rem; color: white !important; }
  .nav-social { margin-left: 0; margin-top: 12px; }
  .nav-dropdown { text-align: center; width: 100%; }
  .nav-dropdown > a { justify-content: center; }
  .nav-dropdown-menu { position: static; display: block; background: transparent; box-shadow: none; padding-left: 0; text-align: center; }
}

/* ---- Page hero banner (inner pages) ---- */
.page-hero { padding: 140px 0 80px; background: linear-gradient(160deg, var(--plum-dark), var(--plum), var(--plum-mid)); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 120%; background: radial-gradient(ellipse, rgba(155,176,153,0.06), transparent 60%); pointer-events: none; }
.page-hero .label { color: var(--secondary); display: block; margin-bottom: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--primary); }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 560px; line-height: 1.7; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary-pale), transparent); }
.page-hero .hero-buttons { margin-top: 2rem; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; transition: all 0.35s cubic-bezier(.16,1,.3,1); cursor: pointer; border: none; font-family: var(--font-body); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(179,114,99,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn svg { width: 15px; height: 15px; }

/* ---- Footer ---- */
footer { background: var(--plum-dark); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.82rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social a:hover { background: rgba(155,176,153,0.15); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.55); }
.footer-col h3 { font-family: var(--font-body); color: var(--white); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.footer-certs { display: flex; gap: 18px; align-items: center; }
.footer-certs span { color: rgba(255,255,255,0.25); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } .footer-certs { flex-wrap: wrap; justify-content: center; } }

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(28px); transition: all 0.7s cubic-bezier(.16,1,.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(16px); transition: all 0.5s cubic-bezier(.16,1,.3,1); }
.stagger.visible > *:nth-child(1) { transition-delay: .04s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: .08s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: .12s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: .16s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: .20s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: .24s; opacity: 1; transform: translateY(0); }

/* ============================================================ HOME PAGE ============================================================ */
nav.home-nav { background: transparent; box-shadow: none; }
nav.home-nav.scrolled { background: rgba(45,36,48,0.97); backdrop-filter: blur(20px); box-shadow: 0 1px 30px rgba(0,0,0,0.15); }
.hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(160deg, var(--plum-dark), var(--plum) 45%, var(--plum-mid)); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 70%; height: 140%; background: radial-gradient(ellipse, rgba(155,176,153,0.08), transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary-pale), transparent); }
.hero .container { max-width: 1400px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-top: 100px; padding-bottom: 60px; }
.hero-content { position: relative; z-index: 2; }
.hero-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-label .line { width: 36px; height: 1px; background: var(--primary); }
.hero-label span { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); font-weight: 500; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-sub { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.8; max-width: 500px; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-certs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 2; }
.cert-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 28px 20px; text-align: center; transition: all 0.4s; backdrop-filter: blur(8px); }
.cert-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(179,114,99,0.25); transform: translateY(-3px); }
.cert-icon { width: 44px; height: 44px; margin: 0 auto 14px; background: rgba(179,114,99,0.12); border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.cert-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.cert-card .cert-title { font-family: var(--font-body); color: var(--white); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 4px; }
.cert-card p { color: rgba(255,255,255,0.45); font-size: 0.72rem; }
.mission { padding: var(--section-pad) 0; background: var(--white); }
.mission-inner { max-width: 850px; margin: 0 auto; text-align: center; }
.mission .label { color: var(--primary); margin-bottom: 20px; display: block; }
.mission-quote { font-family: var(--font-heading); font-size: clamp(1.15rem,2.2vw,1.5rem); color: var(--plum-mid); line-height: 1.75; font-style: italic; margin-bottom: 14px; }
.mission-attribution { color: var(--primary); font-size: 0.88rem; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; margin-top: 64px; padding-top: 64px; border-top: 1px solid var(--neutral-dark); }
.pillar-number { font-family: var(--font-heading); font-size: 2.6rem; color: var(--primary-pale); line-height: 1; margin-bottom: 12px; }
.pillar h2 { color: var(--text-dark); margin-bottom: 10px; }
.pillar p { color: var(--plum-mid); font-size: 0.9rem; line-height: 1.7; }
.home-cta { padding: var(--section-pad) 0; background: var(--neutral); text-align: center; }
.home-cta h2 { color: var(--text-dark); margin-bottom: 16px; }
.home-cta p { color: var(--plum-mid); max-width: 500px; margin: 0 auto 32px; font-size: 0.95rem; }
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 110px; } .hero-certs { grid-template-columns: 1fr 1fr; gap: 10px; } }
@media (max-width: 700px) { .pillars { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 480px) { .hero-certs { grid-template-columns: 1fr; } .hero-buttons { flex-direction: column; } .btn { width: 100%; justify-content: center; } }

/* ============================================================ ABOUT PAGE ============================================================ */
.about-section { padding: var(--section-pad) 0; }
.about-section.bg-neutral { background: var(--neutral); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-grid--reversed { direction: rtl; }
.about-grid--reversed > * { direction: ltr; }
.about-image { width: 100%; border-radius: 16px; object-fit: cover; }
.section-float-image { border-radius: 14px; max-width: 42%; height: auto; }
.section-float-image--right { float: right; margin: 0 0 24px 36px; }
.section-float-image--left  { float: left;  margin: 0 36px 24px 0; }
@media (max-width: 640px) { .section-float-image { float: none !important; max-width: 100%; margin: 0 0 24px; } }
.rich-text img.richtext-image.left  { float: left;  margin: 0 28px 20px 0; max-width: 42%; height: auto; border-radius: 10px; }
.rich-text img.richtext-image.right { float: right; margin: 0 0 20px 28px; max-width: 42%; height: auto; border-radius: 10px; }
.rich-text img.richtext-image.fullwidth { display: block; width: 100%; max-width: 100%; margin: 0 0 24px; border-radius: 10px; }
@media (max-width: 640px) { .rich-text img.richtext-image { float: none !important; max-width: 100% !important; margin: 0 0 20px !important; } }
.about-section h2 { color: var(--text-dark); margin-bottom: 20px; }
.about-section p { color: var(--plum-mid); margin-bottom: 16px; font-size: 0.92rem; line-height: 1.8; }
.about-visual-box { background: linear-gradient(135deg, var(--plum), var(--plum-mid)); border-radius: 20px; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.section-float-image.about-visual-box { aspect-ratio: 3/4; width: 38%; }
.about-visual-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(155,176,153,0.15), transparent 55%); }
.about-visual-inner { position: relative; z-index: 1; text-align: center; padding: 40px; }
.about-visual-inner .big-quote { font-family: var(--font-heading); font-size: 5rem; color: var(--primary-pale); line-height: 1; opacity: 0.4; }
.about-visual-inner p { color: rgba(255,255,255,0.8); font-family: var(--font-heading); font-size: 1.25rem; font-style: italic; line-height: 1.6; margin: 0; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================ TESTIMONIALS ============================================================ */
.testimonials { padding: var(--section-pad) 0; background: var(--neutral); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .label { color: var(--primary); display: block; margin-bottom: 16px; }
.testimonials-header h2 { color: var(--text-dark); }
.testimonial-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: 18px; padding: 36px 28px; border: 1px solid rgba(0,0,0,0.03); transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.05); }
.testimonial-quote-mark { font-family: var(--font-heading); font-size: 3.5rem; color: var(--primary-pale); line-height: 1; opacity: 0.5; }
.testimonial-card blockquote { font-size: 0.88rem; line-height: 1.75; color: var(--plum-mid); margin-bottom: 20px; }
.testimonial-author { border-top: 1px solid var(--neutral-dark); padding-top: 16px; }
.testimonial-author strong { display: block; color: var(--text-dark); font-weight: 500; font-size: 0.85rem; margin-bottom: 2px; }
.testimonial-author span { color: var(--primary); font-size: 0.75rem; }

/* ============================================================ TEAM PAGE ============================================================ */
.team-section { padding: var(--section-pad) 0; background: var(--white); }
.team-featured { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; margin-bottom: 80px; }
.team-featured-avatar { background: linear-gradient(135deg, var(--plum), var(--plum-mid)); border-radius: 20px; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.team-featured-avatar span { font-family: var(--font-heading); font-size: 5rem; color: var(--primary-pale); opacity: 0.6; }
.team-featured-info h2 { color: var(--text-dark); margin-bottom: 4px; }
.team-featured-info .team-role { color: var(--primary); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; display: block; margin-bottom: 20px; }
.team-featured-info p { color: var(--plum-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.team-grid-section { padding: 80px 0; background: var(--neutral); }
.team-grid-header { text-align: center; margin-bottom: 48px; }
.team-grid-header .label { color: var(--primary); display: block; margin-bottom: 12px; }
.team-grid-header h2 { color: var(--text-dark); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: 18px; padding: 36px 28px; border: 1px solid rgba(0,0,0,0.03); transition: all 0.3s; }
.team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.05); }
.team-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-pale)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); flex-shrink: 0; }
.team-card h3 { color: var(--text-dark); font-size: 1.15rem; margin-bottom: 2px; }
.team-card .team-role { color: var(--secondary-dark); font-size: 0.78rem; font-weight: 500; display: block; }
.team-card p { color: var(--plum-mid); font-size: 0.85rem; line-height: 1.75; }
@media (max-width: 800px) { .team-featured { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================ CAPABILITIES PAGE ============================================================ */
.cap-intro { padding: var(--section-pad) 0; background: var(--white); }
.cap-intro-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cap-intro h2 { color: var(--text-dark); margin-bottom: 16px; }
.cap-intro p { color: var(--plum-mid); font-size: 0.95rem; line-height: 1.8; }
.cap-section { padding: 80px 0; }
.cap-section.bg-white { background: var(--white); }
.cap-section.bg-neutral { background: var(--neutral); }
.cap-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.cap-section h2 { color: var(--text-dark); margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cap-desc { color: var(--plum-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; }
.cap-services { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cap-service-item { border: 1px solid var(--neutral-dark); border-radius: 14px; padding: 24px 20px; transition: all 0.3s; background: var(--white); }
.cap-section.bg-white .cap-service-item { background: var(--neutral); border-color: transparent; }
.cap-service-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); border-color: var(--secondary); }
.cap-service-item h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
.cap-service-item p { color: var(--taupe); font-size: 0.8rem; }
.cap-service-item .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; }
.dot-primary { background: var(--primary); }
.dot-secondary { background: var(--secondary-dark); }
.cap-cta { padding: 80px 0; background: linear-gradient(135deg, var(--plum-dark), var(--plum)); text-align: center; }
.cap-cta h2 { color: var(--white); margin-bottom: 12px; }
.cap-cta p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 28px; font-size: 0.92rem; }
@media (max-width: 800px) { .cap-section-grid { grid-template-columns: 1fr; gap: 40px; } .cap-services { grid-template-columns: 1fr; } }

/* ============================================================ CONTACT PAGE ============================================================ */
.contact-section { padding: var(--section-pad) 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-section h2 { color: var(--text-dark); margin-bottom: 16px; }
.contact-text { color: var(--plum-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.contact-info-item { display: flex; align-items: center; gap: 14px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--neutral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 19px; height: 19px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.contact-info-item span { font-size: 0.9rem; color: var(--text-dark); }
.contact-info-item a { color: var(--primary); transition: color 0.3s; }
.contact-info-item a:hover { color: var(--primary-light); }
.contact-certs { padding: 28px; background: var(--neutral); border-radius: 16px; }
.contact-certs h3 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--text-dark); margin-bottom: 16px; }
.cert-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cert-badge { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--white); border-radius: 10px; }
.cert-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary-dark); flex-shrink: 0; }
.cert-badge span { font-size: 0.8rem; color: var(--plum-mid); }
.contact-form { background: var(--neutral); border-radius: 20px; padding: 40px; }
.contact-form h3 { font-family: var(--font-heading); color: var(--text-dark); font-size: 1.45rem; margin-bottom: 6px; }
.contact-form > p { color: var(--plum-mid); font-size: 0.85rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--neutral-dark); border-radius: 10px; background: var(--white); font-family: var(--font-body); font-size: 0.88rem; color: var(--text-dark); transition: border-color 0.3s; outline: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--taupe); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--primary); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-submit .btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-feedback { margin-top: 16px; padding: 13px 16px; border-radius: 10px; font-size: 0.88rem; line-height: 1.5; display: none; }
.form-feedback--success { display: block; background: rgba(155,176,153,0.15); border: 1px solid var(--secondary); color: var(--secondary-dark); }
.form-feedback--error   { display: block; background: rgba(179,114,99,0.1);  border: 1px solid var(--primary);  color: var(--primary); }
.form-note { color: var(--plum-mid); font-size: 0.73rem; font-style: italic; margin-top: 16px; padding: 14px; background: rgba(155,176,153,0.08); border-radius: 8px; border-left: 3px solid var(--secondary); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .form-row { grid-template-columns: 1fr; } .contact-form { padding: 28px 20px; } .cert-list { grid-template-columns: 1fr; } }

/* ============================================================ BLOG PAGE ============================================================ */
.blog-section { padding: var(--section-pad) 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card { border-radius: 18px; overflow: hidden; border: 1px solid var(--neutral-dark); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.blog-thumb { background: linear-gradient(135deg, var(--plum), var(--plum-mid)); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; }
.blog-thumb .label { position: absolute; top: 16px; left: 16px; background: var(--primary); color: var(--white); padding: 4px 12px; border-radius: 100px; font-size: 0.65rem; }
.blog-card-body { padding: 24px; }
.blog-card-body .date { color: var(--taupe); font-size: 0.78rem; margin-bottom: 8px; display: block; }
.blog-card-body h2 { color: var(--text-dark); margin-bottom: 10px; font-size: 1.15rem; }
.blog-card-body p { color: var(--plum-mid); font-size: 0.85rem; line-height: 1.7; margin-bottom: 14px; }
.blog-card-body .read-more { color: var(--primary); font-size: 0.82rem; font-weight: 500; }

/* ============================================================ MEDIA PAGE ============================================================ */
.media-section { padding: var(--section-pad) 0; background: var(--white); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.media-card { border-radius: 18px; overflow: hidden; border: 1px solid var(--neutral-dark); transition: all 0.3s; }
.media-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.media-thumb { background: var(--neutral); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.media-thumb svg { width: 48px; height: 48px; stroke: var(--taupe); fill: none; stroke-width: 1.5; }
.media-card-body { padding: 24px; }
.media-card-body .label { color: var(--secondary-dark); display: block; margin-bottom: 8px; }
.media-card-body h2 { color: var(--text-dark); margin-bottom: 8px; font-size: 1.15rem; }
.media-card-body p { color: var(--plum-mid); font-size: 0.85rem; line-height: 1.7; }

/* ============================================================ SHARED ============================================================ */
.content-gap { padding: 60px 0; background: var(--neutral); text-align: center; }
.content-gap-box { max-width: 600px; margin: 0 auto; padding: 40px; background: var(--white); border-radius: 18px; border: 2px dashed var(--secondary); }
.content-gap-box h3 { color: var(--text-dark); margin-bottom: 8px; }
.content-gap-box p { color: var(--plum-mid); font-size: 0.88rem; line-height: 1.7; }
.rich-text h2 { color: var(--text-dark); margin-bottom: 20px; }
.rich-text h3 { color: var(--text-dark); margin-bottom: 14px; }
.rich-text p { color: var(--plum-mid); margin-bottom: 16px; font-size: 0.92rem; line-height: 1.8; }
.rich-text ul { list-style: disc; padding-left: 24px; color: var(--plum-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 16px; }
.rich-text a { color: var(--primary); text-decoration: underline; }
.rich-text em { font-style: italic; }
.rich-text strong { font-weight: 500; }
