/* ==================================
   STANDARD PAGE WIDTH + TYPOGRAPHY
   ================================== */

.page-container {
  max-width: 1100px;       /* overall content width */
  margin: 0 auto;
  padding: 0 20px;
}

/* Prevent horizontal overflow on mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Headings */
h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--accent);
}

h2 {
  font-size: 22px;
  margin: 30px 0 18px;  /* was 70px */
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Body text */
p,
ul {
  font-size: 17px;
  line-height: 1.7;        /* improved readability */
  color: var(--subtext);
}

/* Hero / Intro text */
.subtitle {
  font-size: 17px;
  color: var(--subtext);
  margin-bottom: 16px;
  max-width: 850px;        /* wider than 720px */
}

/* Blog + Case content width */
.project,
.blog-post {
  margin-bottom: 24px;
  max-width: 850px;        /* more balanced on desktop */
}

/* About page should stretch normally */
#about p,
#about ul {
  max-width: none;
}

.btn-linkedin{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:10px;font-weight:600;color:#fff;background:#0A66C2;border:1px solid rgba(255,255,255,.18);text-decoration:none;transition:transform .08s ease,filter .15s ease,box-shadow .15s ease;box-shadow:0 2px 10px rgba(0,0,0,.08);line-height:1}
.btn-linkedin:hover{filter:brightness(1.05)}
.btn-linkedin:active{transform:translateY(1px)}
.btn-linkedin .li-icon{width:20px;height:20px;flex:0 0 20px;display:block;object-fit:contain;border:2px solid #fff;border-radius:6px;background:transparent;box-sizing:border-box}

.contact-cta{margin:16px 0 8px}
.contact-email{color:var(--subtext)}
.mobile-cta .btn-linkedin{width:100%;justify-content:center}

body[data-lock="true"]{height:100svh;overflow:hidden}

/* Strategic Focus Areas Grid */
.focus-grid .grid{display:grid;gap:28px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.focus-grid .card{background:var(--bg);border:1px solid var(--border);border-radius:14px;padding:16px;box-shadow:0 4px 14px rgba(0,0,0,.06)}
.focus-grid .card img{width:100%;height:180px;object-fit:cover;border-radius:10px;margin-bottom:14px}
.focus-grid .card h3{margin:6px 0 6px;font-size:18px;line-height:1.35;color:var(--text)}
.focus-grid .card p{margin:0;max-width:none;color:var(--subtext);font-size:15.5px}
@media (max-width:480px){.focus-grid .card img{height:160px}.focus-grid .card h3{font-size:17px}.focus-grid .card p{font-size:15px}}

/* Focus Areas informational only */
.focus-grid .card{transition:none;cursor:default}
.focus-grid .card:hover{transform:none;box-shadow:0 4px 14px rgba(0,0,0,.06);border-color:var(--border)}

/* Strategic Initiatives */
.case-grid-compact .grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.case-link{display:block;border:1px solid var(--border);background:var(--bg);border-radius:14px;padding:14px 14px 12px;text-align:left;color:var(--text);text-decoration:none;box-shadow:0 4px 14px rgba(0,0,0,.06);min-height:124px}
.case-link:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.10);border-color:rgba(14,165,233,.85)}
.case-link:focus-visible{outline:var(--focus);outline-offset:3px}
.case-link .case-title{margin:0 0 6px;font-size:16.25px;line-height:1.25;color:var(--text)}
.case-link .case-desc{margin:0;color:var(--subtext);font-size:14.5px;line-height:1.55;max-width:none}
.case-cta{display:inline-flex;margin-top:12px;color:var(--accent);font-weight:700;font-size:14px}
.section-note{margin:-10px 0 20px;font-size:14px;color:var(--subtext)}

/* Insights */
.insights-grid .grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.insights-grid .case-link:hover{transform:translateY(-1px);box-shadow:0 8px 18px rgba(0,0,0,.09);border-color:rgba(14,165,233,.65)}

/* Case Study Pages */
.case-back{display:inline-flex;gap:8px;align-items:center;margin-top:8px}
.case-tags{display:flex;flex-wrap:wrap;gap:8px;margin:14px 0 6px}
.case-tag{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.02);color:var(--subtext);font-size:12.5px;font-weight:600}
.case-page h1{margin-top:10px}

/* Case Study Navigation */
.case-nav{display:flex;justify-content:space-between;gap:12px;margin-top:26px;padding-top:16px;border-top:1px solid var(--border)}
.case-nav a{flex:1;display:block;border:1px solid var(--border);background:var(--bg);border-radius:14px;padding:12px 14px;text-decoration:none;color:var(--text);box-shadow:0 4px 14px rgba(0,0,0,.06)}
.case-nav a:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.10);border-color:rgba(14,165,233,.85)}
.case-nav a:focus-visible{outline:var(--focus);outline-offset:3px}
.case-nav .nav-kicker{display:block;font-size:12px;font-weight:800;letter-spacing:.10em;text-transform:uppercase;color:var(--subtext);margin-bottom:6px}
.case-nav .nav-title{display:block;font-size:15.5px;font-weight:700;line-height:1.25}
.case-nav .nav-spacer{flex:1}
@media (max-width:700px){.case-nav{flex-direction:column}}

/* ===============================
   CONTACT FORM (Underline style)
   =============================== */

.contact-form-wrap { max-width: 720px; }

.contact-form { margin-top: 22px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.field { display: flex; flex-direction: column; gap: 10px; }

.field.full { grid-column: 1 / -1; }

.field label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0.95;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 15px;
  line-height: 1.5;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--subtext);
  opacity: 0.65;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
  box-shadow: 0 2px 0 0 var(--accent);
}

.field textarea { resize: vertical; min-height: 150px; }

/* Submit button + spinner */
.btn-submit {
  margin-top: 24px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .08s ease, filter .15s ease, background .15s ease;
}

.btn-submit:hover { filter: brightness(1.06); background: rgba(255,255,255,0.16); }

.btn-submit:active { transform: translateY(1px); }

.btn-submit[disabled] { opacity: 0.6; cursor: not-allowed; }

.btn-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: var(--text);
  display: none;
  animation: spin 0.8s linear infinite;
}

.btn-submit.is-loading .btn-spinner { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-note { margin-top: 16px; font-size: 13px; color: var(--subtext); }

/* ===============================
   SUCCESS/ERROR TOAST ANIMATION
   =============================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  pointer-events: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);

  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);

  color: var(--text);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);

  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 9999;
}

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #22c55e;
}

.toast.is-error .toast-icon {
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.35);
  color: #ef4444;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .toast { transition: none; }
  .btn-spinner { animation: none; }
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}
/* ===============================
   CONTACT PAGE – CARD LAYOUT
   =============================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}

.contact-card--side {
  padding: 22px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
  border: 0;            /* avoids your global h2 underline rule */
  padding: 0;
}

.card-subtitle {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--subtext);
  max-width: none;
  opacity: 0.9;
}

/* Make underline inputs look “inside card” */
.contact-card .field input,
.contact-card .field textarea {
  border-bottom-color: rgba(255,255,255,0.22);
}

.contact-card .field input:focus,
.contact-card .field textarea:focus {
  border-bottom-color: var(--accent);
}

/* ===============================
   LINKEDIN CARD BUTTON
   =============================== */

.btn-linkedin-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(10,102,194,0.45);
  background: linear-gradient(135deg, rgba(10,102,194,0.18), rgba(10,102,194,0.08));
  color: var(--text);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-linkedin-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.22);
  filter: brightness(1.05);
}

.li-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(10,102,194,0.20);
  color: #0A66C2;
  border: 1px solid rgba(10,102,194,0.35);
  flex: 0 0 auto;
}

.li-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.li-title {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
}

.li-subtitle {
  font-size: 12.5px;
  color: var(--subtext);
  opacity: 0.9;
}

.li-arrow {
  margin-left: auto;
  font-weight: 900;
  opacity: 0.75;
}

/* Small email block inside side card */
.contact-mini {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  color: var(--subtext);
}

.contact-mini .mini-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}

/* Mobile stacking */
@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Contact page: Light-mode contrast upgrades
   ========================================= */

/* Card surface: slightly stronger border in light mode */
html.theme-light .contact-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.10);
}

/* Labels: increase contrast in light mode */
html.theme-light .contact-card .field label {
  color: var(--text);
  opacity: 0.92;
}

/* Underline dividers: make them visible in light mode */
html.theme-light .contact-card .field input,
html.theme-light .contact-card .field textarea {
  border-bottom-color: rgba(2, 6, 23, 0.22);
}

html.theme-light .contact-card .field input::placeholder,
html.theme-light .contact-card .field textarea::placeholder {
  color: rgba(2, 6, 23, 0.45);
  opacity: 1;
}

/* Focus state: stronger accent */
html.theme-light .contact-card .field input:focus,
html.theme-light .contact-card .field textarea:focus {
  border-bottom-color: var(--accent);
  box-shadow: 0 3px 0 0 var(--accent);
}

/* Submit button: convert from ghost to primary-looking in light mode */
html.theme-light .btn-submit {
  background: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(99,102,241,0.14));
  border: 1px solid rgba(14,165,233,0.55);
  color: var(--text);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.10);
}

html.theme-light .btn-submit:hover {
  background: linear-gradient(135deg, rgba(14,165,233,0.24), rgba(99,102,241,0.18));
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.14);
}

html.theme-light .btn-submit:active {
  box-shadow: 0 8px 14px rgba(2, 6, 23, 0.12);
}

/* Spinner visibility in light mode */
html.theme-light .btn-spinner {
  border: 2px solid rgba(2, 6, 23, 0.25);
  border-top-color: rgba(2, 6, 23, 0.85);
}

/* Side card email divider: visible in light mode */
html.theme-light .contact-mini {
  border-top: 1px solid rgba(2, 6, 23, 0.12);
}

/* LinkedIn card button: clearer contrast in light mode */
html.theme-light .btn-linkedin-card {
  background: linear-gradient(135deg, rgba(10,102,194,0.12), rgba(10,102,194,0.06));
  border: 1px solid rgba(10,102,194,0.35);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}

html.theme-light .li-icon-wrap {
  background: rgba(10,102,194,0.14);
  border: 1px solid rgba(10,102,194,0.28);
}

/* ===== Footer forced center ===== */
.site-footer {
  width: 100%;
  text-align: center !important;
  display: block;
}

.site-footer p {
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}
/* Give contact layout more presence on large screens */
.contact-layout {
  max-width: 1000px;
  margin: 18px auto 0;
}

/* MOBILE MENU DROPDOWN */
.site-header{position:sticky;top:0;z-index:1000}
.mobile-menu{position:fixed;top:64px;left:0;width:100%;display:flex;justify-content:center;z-index:999}
.mobile-menu-scrim{position:fixed;inset:0;background:rgba(0,0,0,.35);backdrop-filter:blur(4px)}
.mobile-panel{width:92%;max-width:420px;max-height:75vh;overflow-y:auto;background:linear-gradient(180deg,#0b1220,#0a0f1a);border-radius:18px;padding:22px;margin-top:12px;box-shadow:0 20px 60px rgba(0,0,0,.45);display:flex;flex-direction:column}
.mobile-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.mobile-title{font-size:20px;font-weight:700}
.mobile-close{background:none;border:none;font-size:26px;color:white;cursor:pointer}
.mobile-nav{display:flex;flex-direction:column;gap:14px}
.mobile-nav a{display:block;padding:14px 16px;border-radius:12px;font-size:18px;text-decoration:none;color:#e5e7eb;background:rgba(255,255,255,.04)}
.mobile-footer{margin-top:auto;padding-top:18px}
.linkedin-btn{display:block;text-align:center;padding:14px;border-radius:12px;font-weight:600;text-decoration:none;color:white;background:linear-gradient(90deg,#0077b5,#0ea5e9)}
/* ===============================
   HEADER RESPONSIVE FIX
   =============================== */

.site-header {
  width: 100%;
  max-width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  width: 100%;
  max-width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0; /* allows shrinking */
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 45vw; /* prevents pushing menu off screen */
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0; /* keeps icons visible */
}
/* ===============================
   HEADER VISIBILITY CONTROLS
   =============================== */

/* Home icon always visible */
.home-icon {
  display: flex;
}

/* Theme toggle always visible */
.theme-btn {
  display: flex;
}

/* Menu button hidden on desktop */
.menu-btn {
  display: flex;
}

/* Hide menu button on larger screens */
@media (min-width: 900px) {
  .menu-btn {
    display: none;
  }
}

/* Desktop nav links visible only on desktop */
@media (max-width: 899px) {
  .nav-links {
    display: none;
  }
}
/* ===============================
   HOME ICON VISIBILITY FIX
   =============================== */

.home-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  color: white;              /* ensures icon is visible */
  text-decoration: none;
  margin-right: 8px;         /* space before profile pic */
  flex-shrink: 0;
  opacity: 0.95;
}

.home-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;      /* force stroke to be visible */
}

.home-icon:hover {
  background: rgba(255,255,255,0.12);
}
/* ===============================
   HEADER ICON BUTTONS (Rounded Square Version)
   =============================== */

.icon-btn {
  width: 42px;                     /* slightly tighter */
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;             /* rounded square instead of circle */

  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: white;
  text-decoration: none;

  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .15s ease;
}

.icon-btn svg {
  width: 18px;                     /* slightly smaller icon */
  height: 18px;
}

.icon-btn:hover {
  background: rgba(255,255,255,0.12);
}

.icon-btn:active {
  transform: scale(0.96);
}
/* Spacing */
.home-btn {
  margin-right: 6px;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* =========================================================
   HEADER LAYOUT PATCH (Desktop + Mobile behavior)
   Paste at END of components.css
   ========================================================= */

/* 0) Fix the stray leading character at file start if present
   If your CSS starts with: 5/* ... *\/  remove the "5"
   (otherwise the first rule can be parsed unreliably) */

/* 1) Ensure header has 3 zones: Brand (left), Nav (middle), Actions (right) */
.site-header .header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* Brand always left */
.site-header .brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
  min-width:0;
}

/* Nav in the middle on desktop */
@media (min-width: 900px){
  .site-header .nav-links{
    display:flex !important;
    justify-content:center;
    gap:18px;
    flex:1 1 auto;
  }
}

/* Actions always right */
.site-header .header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

/* 2) Home icon styling: your element is .home-btn (not .home-icon) */
.site-header .home-btn{
  margin-right:0;     /* remove old left-side spacing behavior */
  margin-left:0;
}

/* 3) Mobile menu button MUST be mobile-only */
@media (min-width: 900px){
  .site-header .menu-btn{
    display:none !important;   /* force hide on desktop */
  }
}

/* 4) Optional: let brand text expand more on desktop */
@media (min-width: 900px){
  .brand-text{
    max-width:none;
  }
}
/* =========================================================
   MOBILE MENU: CENTERING + FULL VISIBILITY FIX
   Paste at END of components.css
   ========================================================= */

.mobile-menu{
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;              /* ensure it spans the viewport */
  width: auto;           /* avoid weird width calc issues */
  padding: 0 14px;       /* gives breathing room on small screens */
  display: flex;
  justify-content: center;
  z-index: 999;          /* keep as you already have */
}

.mobile-panel{
  width: 100%;           /* take full available width inside padding */
  max-width: 420px;      /* keep your design cap */
  margin: 12px auto 0;   /* force horizontal centering */
  box-sizing: border-box;
}

/* Prevent any header child from forcing horizontal overflow */
.site-header,
.header-inner{
  max-width: 100%;
}

.header-inner > *{
  min-width: 0; /* allows flex children (brand/nav/actions) to shrink */
}
.focus-grid .card > img{
  width: 100%;
  aspect-ratio: 16 / 9;   /* consistent hero-ish slot */
  height: auto;           /* aspect-ratio controls height */
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  padding: 12px;
}

/* Strategic Focus Card */
.focus-card {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

.focus-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.focus-card .card-body {
  padding: 24px;
}

/* CTA Button */
.cta-focus {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-focus:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}


.focus-card {
  padding: 0 !important;
  border-radius: 16px;
  overflow: hidden;
}

.focus-card img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-focus {
  display: inline-block;
  margin: 24px auto 0 auto;
}

/* Center CTA and prevent wrapping */
.cta-focus {
  display: block;
  width: fit-content;
  margin: 24px auto 0 auto;
  padding: 14px 28px;
  white-space: nowrap;
  font-size: 0.95rem;
}

/* Optional: slightly tighter on very small screens */
@media (max-width: 400px) {
  .cta-focus {
    font-size: 0.9rem;
    padding: 12px 22px;
  }
}


/* ================================
   HERO + FOCUS MOBILE REFINEMENT
   ================================ */

@media (max-width: 600px) {

  /* Hero Section */
  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1rem;
    opacity: 0.85;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
  }

  /* Focus Section Title */
  .focus-grid h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* Focus Card */
  .focus-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .focus-card ul {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .focus-card .card-body {
    padding: 20px;
  }
}

/* ================================
   CTA CENTERING + NO WRAP
   ================================ */

.cta-focus {
  display: block;
  width: fit-content;
  margin: 24px auto 0 auto;
  padding: 14px 28px;
  white-space: nowrap;
  font-size: 0.95rem;
}
/* =====================================
   FULL-HEIGHT BRAND BLOCK HEADER
   ===================================== */

.site-header {
  height: 72px;
  padding: 0 !important;
}

.header-inner {
  display: flex;
  align-items: stretch !important; /* critical */
  justify-content: space-between;
  padding: 0 !important; /* remove side padding */
  height: 100%;
}

/* BRAND WRAPPER */
.brand {
  display: flex;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
  gap: 0; /* remove spacing */
}

/* FULL HEIGHT LOGO BOX */
.brand-box {
  width: 72px;
  height: 100%;
  background: #0b1220; /* darker than gradient */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image inside */
.brand-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Name block */
.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14px;
}

.brand-name .line1 {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.brand-name .line2 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}
/* =====================================
   FULL-HEIGHT BRAND BLOCK HEADER
   ===================================== */

.site-header {
  height: 72px;
  padding: 0 !important;
}

.header-inner {
  display: flex;
  align-items: stretch !important; /* critical */
  justify-content: space-between;
  padding: 0 !important; /* remove side padding */
  height: 100%;
}

/* BRAND WRAPPER */
.brand {
  display: flex;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
  gap: 0; /* remove spacing */
}
/* =========================================
   FINAL HEADER – TIGHT BRAND ALIGNMENT
   ========================================= */

.site-header {
  min-height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

/* Brand container */
.brand {
  display: flex;
  align-items: center;
  gap: 0;                 /* remove flex gap entirely */
  height: 100%;
}

/* Vertical logo */
.brand-vertical {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;

  margin-right: -8px;     /* pull name closer to visible logo */
}

/* Name block */
.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;

  margin-left: -10px;       /* controlled spacing instead of gap */
}

.brand-name .line1 {
  font-size: 15px;
  font-weight: 600;
}

.brand-name .line2 {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
}
/* ==================================
   Logo Image – Subtle Curve Only
   ================================== */

.brand-vertical {
  height: 56px;
  width: auto;
  display: block;

  border-radius: 3px;                 /* very slight curve */
  border: 1px solid rgba(255,255,255,0.25);
}
/* =========================================
   FINAL CLEAN EXECUTIVE FOOTER
   ========================================= */

/* Remove excessive spacing from last section */
main > section:last-of-type {
  margin-bottom: 40px;
}

/* Footer container */
.site-footer {
  margin-top: 40px;
  padding: 28px 20px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* Inner wrapper */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* LinkedIn icon */
.footer-linkedin {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-linkedin img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-linkedin:hover img {
  transform: translateY(-2px);
  opacity: 1;
}

/* Name — single line always */
.footer-name {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  white-space: nowrap;     /* 🔥 prevents breaking */
}

/* Tagline */
.footer-tagline {
  margin-top: 10px;
  font-size: 13px;
  color: var(--subtext);
}


/* =========================
   Signature Statement Block
   ========================= */

.signature-quote {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  margin: 32px 0;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}

/* =========================================
   Strategic Focus – Premium Bullet Styling
   ========================================= */

.focus-list {
  list-style: none;        /* remove default bullets */
  padding-left: 0;
  margin-top: 12px;
}

.focus-list li {
  position: relative;
  padding-left: 20px;      /* space for custom bullet */
  margin-bottom: 12px;
  line-height: 1.6;
}

.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}



