/* NorthQuinn — page-about.css */

    :root{--navy:#1a2744;--navy-deep:#08111f;--navy-mid:#243154;--navy-light:#2e3f6b;--gold:#c9a96e;--gold-light:#e2c48d;--cream:#f5f0e8;--cream-warm:#ede7d9;--cream-deep:#d9d0be;--white:#fdfaf5;--text-dark:#1a2744;--text-mid:#3d4f6b;--text-muted:#7a8499;}
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
    html{scroll-behavior:smooth;overflow-x:hidden;scroll-padding-top:80px;}
    body{font-family:'Jost',sans-serif;background:var(--cream);color:var(--text-dark);overflow-x:hidden;}

    /* ── NAV ── */
    .nq-nav-wrap{position:fixed;top:0;left:0;right:0;z-index:9999;isolation:isolate;}
    .nq-topbar{display:flex;align-items:center;justify-content:space-between;padding:0 60px;height:72px;transition:background .35s,box-shadow .35s,height .35s;}
    .nq-topbar.cream{background:rgba(245,240,232,.98);box-shadow:0 1px 0 #d9d0be;height:64px;}
    .nq-topbar.solid{background:rgba(8,17,31,.97);box-shadow:0 1px 0 rgba(201,169,110,.15);height:64px;}
    .nq-topbar.hero{background:transparent;}
    .nq-logo{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0;}
    .nq-logo svg{width:38px;height:38px;transition:transform .3s;}
    .nq-logo:hover svg{transform:rotate(15deg);}
    .nq-logo-name{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:600;letter-spacing:.03em;transition:color .3s;}
    .nq-topbar.cream .nq-logo-name{color:#1a2744;}
    .nq-topbar.hero .nq-logo-name,.nq-topbar.solid .nq-logo-name{color:#f5f0e8;}
    .nq-items{display:flex;align-items:stretch;list-style:none;height:100%;}
    .nq-item{position:relative;display:flex;align-items:stretch;}
    .nq-link{display:flex;align-items:center;gap:6px;font-size:.72rem;font-weight:500;letter-spacing:.13em;text-transform:uppercase;text-decoration:none;padding:0 16px;border-bottom:2px solid transparent;transition:color .2s,border-color .2s;white-space:nowrap;cursor:pointer;}
    .nq-topbar.cream .nq-link{color:#1a2744;}
    .nq-topbar.hero .nq-link,.nq-topbar.solid .nq-link{color:rgba(245,240,232,.8);}
    .nq-link:hover,.nq-link.active{color:#c9a96e!important;border-bottom-color:#c9a96e;}
    .nq-item.has-drop:hover>.nq-link{color:#c9a96e!important;border-bottom-color:#c9a96e;}
    .nq-caret{display:inline-block;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid currentColor;opacity:.55;transition:transform .22s;}
    .nq-item.has-drop:hover .nq-caret{transform:rotate(180deg);opacity:1;}
    .nq-drop{position:absolute;top:100%;left:0;min-width:240px;background:#08111f;border:1px solid rgba(201,169,110,.18);border-top:2px solid #c9a96e;opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .2s,transform .2s,visibility .2s;pointer-events:none;z-index:300;}
    .nq-item.has-drop:hover .nq-drop{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto;}
    .nq-drop-item{display:flex;align-items:center;gap:10px;padding:12px 18px;font-size:.7rem;font-weight:400;letter-spacing:.1em;text-transform:uppercase;color:rgba(245,240,232,.5);text-decoration:none;border-bottom:1px solid rgba(201,169,110,.07);transition:color .15s,padding-left .15s,background .15s;position:relative;}
    .nq-drop-item:last-child{border-bottom:none;}
    .nq-drop-item::before{content:'';position:absolute;left:0;top:0;bottom:0;width:2px;background:#c9a96e;transform:scaleY(0);transition:transform .15s;}
    .nq-drop-item:hover{color:#f5f0e8;background:rgba(201,169,110,.05);padding-left:24px;}
    .nq-drop-item:hover::before{transform:scaleY(1);}
    .nq-drop-item.accent{color:#c9a96e;}
    .nq-drop-item.accent:hover{color:#e2c48d;}
    .nq-drop-icon{width:15px;height:15px;color:#c9a96e;opacity:.5;flex-shrink:0;}
    .nq-drop-sep{height:1px;background:rgba(201,169,110,.15);margin:3px 0;}
    .nq-live-dot{width:6px;height:6px;border-radius:50%;background:#c9a96e;flex-shrink:0;animation:nqlive 1.8s ease-in-out infinite;}
    @keyframes nqlive{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.3;transform:scale(.65);}}
    .nq-cta-btn{font-size:.72rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:#08111f;background:#c9a96e;padding:11px 24px;text-decoration:none;transition:background .2s,transform .15s;white-space:nowrap;flex-shrink:0;}
    .nq-cta-btn:hover{background:#e2c48d;transform:translateY(-1px);}
    .nq-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none;}
    .nq-hamburger span{display:block;width:24px;height:2px;transition:background .3s;}
    .nq-topbar.cream .nq-hamburger span{background:#1a2744;}
    .nq-topbar.hero .nq-hamburger span,.nq-topbar.solid .nq-hamburger span{background:#f5f0e8;}
    .nq-mobile{display:none;position:fixed;inset:0;background:#08111f;z-index:199;flex-direction:column;align-items:flex-start;justify-content:center;padding:60px 40px;overflow-y:auto;}
    .nq-mobile.open{display:flex;}
    .nq-mobile-close{position:absolute;top:24px;right:28px;font-size:2.2rem;color:#f5f0e8;cursor:pointer;background:none;border:none;line-height:1;}
    .nq-mobile-item{width:100%;border-bottom:1px solid rgba(201,169,110,.1);}
    .nq-mobile-link{display:flex;align-items:center;justify-content:space-between;font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:600;color:#f5f0e8;text-decoration:none;padding:14px 0;cursor:pointer;transition:color .2s;}
    .nq-mobile-link:hover{color:#c9a96e;}
    .nq-mobile-toggle{font-family:'Jost',sans-serif;font-size:.85rem;color:#c9a96e;transition:transform .25s;display:inline-block;}
    .nq-mobile-toggle.open{transform:rotate(180deg);}
    .nq-mobile-sub{display:none;flex-direction:column;padding-bottom:10px;}
    .nq-mobile-sub.open{display:flex;}
    .nq-mobile-sub a{font-size:.75rem;font-weight:400;letter-spacing:.12em;text-transform:uppercase;color:rgba(245,240,232,.5);text-decoration:none;padding:8px 0 8px 16px;border-left:1px solid rgba(201,169,110,.2);margin-left:8px;margin-top:4px;transition:color .2s,padding-left .15s;}
    .nq-mobile-sub a:hover{color:#c9a96e;padding-left:22px;}
    @media(max-width:1100px){.nq-topbar{padding:0 32px;}.nq-link{padding:0 12px;}}
    
    
    
/* ── NAV MOBILE ── */
@media(max-width:900px){
  .nq-topbar{padding:0 24px;height:60px;}
  .nq-items,.nq-cta-btn{display:none;}
  .nq-hamburger{display:flex;}
}

    /* PAGE HERO */
    .page-hero { background: var(--navy-deep); padding: 180px 60px 100px; position: relative; overflow: hidden; }
    .page-hero-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,169,110,0.05) 1px,transparent 1px), linear-gradient(90deg,rgba(201,169,110,0.05) 1px,transparent 1px); background-size: 60px 60px; }
    .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
    .page-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
    .page-eyebrow span { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
    .eyebrow-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
    .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; line-height: 1.08; color: var(--cream); max-width: 800px; margin-bottom: 24px; }
    .page-hero h1 em { font-style: italic; color: var(--gold-light); }
    .page-hero-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; line-height: 1.7; color: rgba(245,240,232,0.65); max-width: 600px; }

    /* SHARED SECTION */
    .section-label { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
    .section-label span { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
    .label-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.4; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
    .section-title em { font-style: italic; color: var(--navy-light); }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    /* MISSION */
    .mission-section { background: var(--white); padding: 100px 60px; }
    .mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
    .mission-visual { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
    .mission-ring { position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(26,39,68,0.08); }
    .mission-ring::before { content: ''; position: absolute; inset: 40px; border-radius: 50%; border: 1px solid rgba(26,39,68,0.05); }
    .mission-ring::after { content: ''; position: absolute; inset: 80px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.12); }
    .mission-compass { width: 200px; height: 200px; position: relative; z-index: 2; }
    .mission-tag { position: absolute; background: var(--navy); padding: 20px 26px; }
    .mission-tag.t1 { bottom: 50px; right: 10px; }
    .mission-tag.t2 { top: 60px; left: 10px; }
    .tag-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .tag-value { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--cream); }

    /* VALUES */
    .values-section { background: var(--cream); padding: 100px 60px; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
    .value-card { background: var(--white); padding: 48px 36px; position: relative; overflow: hidden; }
    .value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
    .value-card:hover::before { transform: scaleX(1); }
    .value-num { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; color: rgba(26,39,68,0.04); position: absolute; top: 16px; right: 24px; line-height: 1; }
    .value-icon { width: 44px; height: 44px; color: var(--navy); opacity: 0.8; margin-bottom: 24px; }
    .value-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
    .value-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: var(--text-mid); }

    /* TEAM / LEADERSHIP */
    .leadership-section { background: var(--navy-deep); padding: 100px 60px; }
    .leadership-section .section-title { color: var(--cream); }
    .leader-card { margin-top: 60px; display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,110,0.12); padding: 48px; }
    .leader-photo-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; border: 1px solid rgba(201,169,110,0.2); position: relative; }
    .leader-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: contrast(1.03) brightness(0.97); transition: transform 0.6s ease; }
    .leader-photo-wrap:hover .leader-photo { transform: scale(1.02); }
    .leader-role { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .leader-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--cream); margin-bottom: 20px; }
    .leader-bio { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; line-height: 1.85; color: rgba(245,240,232,0.65); margin-bottom: 28px; }
    .leader-tags { display: flex; flex-wrap: wrap; gap: 10px; }
    .leader-tag { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(201,169,110,0.25); color: rgba(245,240,232,0.5); }

    /* ORIGINS */
    .origins-section { background: var(--cream-warm); padding: 100px 60px; }
    .origins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .origins-timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
    .timeline-item { display: grid; grid-template-columns: 72px 20px 1fr; gap: 0 16px; padding-bottom: 40px; position: relative; }
    .timeline-year { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600; color: var(--gold); padding-top: 1px; text-align: right; }
    .timeline-spine { display: flex; flex-direction: column; align-items: center; }
    .timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .timeline-line { width: 1px; flex: 1; background: rgba(201,169,110,0.25); margin-top: 6px; }
    .timeline-item:last-child .timeline-line { display: none; }
    .timeline-.timeline-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .timeline-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--text-mid); }

    /* STATS */
    .stat-strip { background: #0d1728; padding: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
    .stat-item { padding: 0 40px; border-right: 1px solid rgba(201,169,110,0.15); }
    .stat-item:first-child { padding-left: 0; }
    .stat-item:last-child { border-right: none; }
    .stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
    .stat-label { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.5); }

    /* CTA */
    .cta-section { background: var(--navy-deep); padding: 100px 60px; text-align: center; }
    .cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); margin-bottom: 20px; }
    .cta-section h2 em { font-style: italic; color: var(--gold-light); }
    .cta-section p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; color: rgba(245,240,232,0.6); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .btn-primary { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); padding: 16px 36px; text-decoration: none; display: inline-block; transition: background 0.2s; }
    .btn-primary:hover { background: var(--gold-light); }

    /* FOOTER */


    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: none; }

    

    
  
    
    /* Top bar */

    /* Logo */

    /* Nav items */

    /* Dropdown */
    @keyframes livepulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.35;transform:scale(0.7);} }

    /* CTA */

    /* Hamburger */

    /* Mobile menu */

    
    

    /* Top bar */

    /* Logo */

    /* Nav items */

    /* Dropdown */
    @keyframes livepulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.35;transform:scale(0.7);} }

    /* CTA */

    /* Hamburger */

    /* Mobile menu */

    
    

  
    /* Logo */
    /* Nav items list */
    /* Nav links */
    /* Caret */
    /* Dropdown */
    /* Live dot */
    50%{opacity:0.3;transform:scale(0.65);}}

    /* CTA button */
    /* Hamburger — hidden by default on desktop */
    /* Mobile full-screen menu */
    /* Responsive breakpoints */
    
    

  
    /* Anchor scroll offset */
    [id] { scroll-margin-top: 72px; }
  
    
    .skip-nav:focus{top:8px;}

/* ── GRID OVERLAY ON NAVY SECTIONS ── */
.leadership-section::before,
.stat-strip::before,
.cta-section::before,
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.leadership-section,
.stat-strip,
.cta-section,

.leadership-section > *,
.stat-strip > *,
.cta-section > *,
footer > * { position: relative; z-index: 1; }


/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 72px 60px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.45);
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.3);
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold); }
@media (max-width: 900px) {
  footer { padding: 60px 24px 32px; }
  .footer-top {grid-template-columns:1fr;gap:28px;}
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-socials { justify-content: center; }
}
@media (max-width: 480px) {
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-socials { justify-content: center; }
}

/* ── ABOUT PAGE MOBILE ── */
@media (max-width: 900px) {
  .page-hero { padding: 120px 24px 72px; }
  .page-hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .mission-section { padding: 72px 24px; }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-visual { display: none; }

  .stat-strip { padding: 40px 24px; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.1); padding: 20px 0; }
  .stat-item:last-child { border-bottom: none; }

  .values-section { padding: 72px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 2px; }

  .leadership-section { padding: 72px 24px; }
  .leader-card { grid-template-columns: 1fr; gap: 32px; }
  .leader-photo-wrap { width: 160px; height: 160px; }

  .origins-section { padding: 72px 24px; }
  .origins-grid { grid-template-columns: 1fr; gap: 48px; }

  .timeline-item { grid-template-columns: 48px 16px 1fr; gap: 0 12px; }
  .timeline-year { font-size: 1rem; }

  .cta-section { padding: 72px 24px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 3rem); }
}

@media (max-width: 480px) {
  .page-hero { padding: 100px 24px 60px; }
  .page-hero h1 { font-size: 2rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(201,169,110,0.1); border-right: none; padding: 20px 0; }
  .section-title { font-size: 1.8rem; }
  .leader-tags { gap: 8px; }
  .mission-tag { padding: 12px 16px; }
  .tag-value { font-size: 0.9rem; }
}
