 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
    --navy: #0a1628;
    --navy-mid: #102040;
    --navy-light: #1a3260;
    --teal: #00b4d8;
    --teal-light: #48cae4;
    --teal-pale: #e0f7fc;
    --gold: #c9a84c;
    --gold-light: #e8c97e;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --gray-100: #eef0f4;
    --gray-200: #d6d9e0;
    --gray-500: #7a8396;
    --gray-700: #3a4254;
    --text-dark: #0d1b2a;
    --text-mid: #3a4254;
    --text-muted: #6b7585;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --nav-h: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.15);
    display: flex; align-items: center;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    gap: 2rem;
  }

  .nav-brand {
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none; flex-shrink: 0;
  }

  .nav-logo-mark {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--navy-light));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
    color: var(--white); letter-spacing: -1px;
    border: 1px solid rgba(0, 180, 216, 0.4);
    flex-shrink: 0;
  }

  .nav-brand-text { display: flex; flex-direction: column; }
  .nav-brand-text .name {
    font-family: var(--serif); font-size: 1rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.04em; line-height: 1.1;
  }
  .nav-brand-text .tag {
    font-size: 0.65rem; font-weight: 300; color: var(--teal);
    letter-spacing: 0.15em; text-transform: uppercase; line-height: 1;
  }

  .nav-links {
    display: flex; align-items: center; gap: 0.25rem;
    margin-left: auto; list-style: none;
  }

  .nav-links a {
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase; color: rgba(255,255,255,0.72);
    text-decoration: none; padding: 0.5rem 0.85rem;
    border-radius: 4px; transition: color var(--transition), background var(--transition);
    white-space: nowrap;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--teal-light);
    background: rgba(0, 180, 216, 0.08);
  }

  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 0.5rem; margin-left: auto;
    background: none; border: none;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--white); transition: var(--transition);
  }

  .nav-drawer {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy); border-bottom: 1px solid rgba(0,180,216,0.15);
    padding: 1rem 1.5rem; z-index: 999;
    flex-direction: column; gap: 0.25rem;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a {
    font-size: 0.88rem; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase; color: rgba(255,255,255,0.75);
    text-decoration: none; padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition);
  }
  .nav-drawer a:hover { color: var(--teal-light); }

  /* ── PAGES ── */
  .page { display: none; padding-top: var(--nav-h); min-height: 100vh; }
  .page.active { display: block; }

  /* ── HERO ── */
  .hero {
    position: relative; overflow: hidden;
    min-height: calc(100vh - var(--nav-h));
    display: flex; align-items: center;
    background: var(--navy);
  }

  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://static.wixstatic.com/media/7abc3a_225d1e442cad4c48b92168312ce9ae4c~mv2.png/v1/fill/w_980,h_653,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/7abc3a_225d1e442cad4c48b92168312ce9ae4c~mv2.png');
    background-size: cover; background-position: center;
    opacity: 0.18;
  }

  .hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
      rgba(10,22,40,0.98) 0%,
      rgba(10,22,40,0.85) 50%,
      rgba(16,32,64,0.7) 100%);
  }

  .hero-glow {
    position: absolute; top: -30%; right: -10%;
    width: 70vw; height: 70vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
    max-width: 900px;
  }

  .hero-eyebrow {
    font-size: 0.72rem; font-weight: 400; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--teal);
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 36px; height: 1px;
    background: var(--teal);
  }

  .hero h1 {
    font-family: var(--serif); font-size: clamp(2.6rem, 6.5vw, 5rem);
    font-weight: 300; line-height: 1.08; color: var(--white);
    margin-bottom: 1.5rem;
  }
  .hero h1 em { font-style: italic; color: var(--teal-light); }

  .hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 300;
    color: rgba(255,255,255,0.65); max-width: 580px;
    line-height: 1.8; margin-bottom: 2.5rem;
  }

  .hero-stats {
    display: flex; flex-wrap: wrap; gap: 2.5rem;
    margin-bottom: 3rem;
  }
  .stat { display: flex; flex-direction: column; gap: 0.2rem; }
  .stat-num {
    font-family: var(--serif); font-size: 2.4rem; font-weight: 600;
    color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-weight: 400;
  }

  .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--teal); color: var(--navy);
    padding: 0.85rem 2rem; border-radius: 4px;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
    transition: background var(--transition), transform var(--transition);
  }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: transparent; color: var(--white);
    padding: 0.85rem 2rem; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none; cursor: pointer;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
  }
  .btn-outline:hover {
    border-color: var(--teal); color: var(--teal-light);
    transform: translateY(-1px);
  }

  /* ── SECTION SHELLS ── */
  section { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem); }

  .section-label {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal); font-weight: 400; margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-label::before {
    content:''; display: block; width: 24px; height: 1px; background: var(--teal);
  }

  .section-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; line-height: 1.15; color: var(--text-dark);
    margin-bottom: 1.25rem;
  }
  .section-title em { font-style: italic; color: var(--navy-light); }

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

  /* ── HOME: SERVICES ── */
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px; background: var(--gray-200);
    border: 1.5px solid var(--gray-200); border-radius: 12px; overflow: hidden;
    margin-top: 3rem;
  }

  .service-card {
    background: var(--white); padding: 2.5rem 2rem;
    transition: background var(--transition);
  }
  .service-card:hover { background: var(--off-white); }

  .service-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
  }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.5; }

  .service-card h3 {
    font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.75rem; line-height: 1.2;
  }
  .service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

  /* ── HOME: COMMITMENT ── */
  .commitment {
    background: var(--navy); color: var(--white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
  }

  @media (max-width: 768px) { .commitment { grid-template-columns: 1fr; gap: 2rem; } }

  .commitment-visual {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/3;
  }
  .commitment-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
  .commitment-visual::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(0,180,216,0.25);
    border-radius: 12px; pointer-events: none;
  }

  .commitment .section-title { color: var(--white); }
  .commitment .section-title em { color: var(--teal-light); }
  .commitment .section-label { color: var(--teal-light); }
  .commitment .section-label::before { background: var(--teal-light); }

  .commitment-body {
    font-size: 0.98rem; color: rgba(255,255,255,0.65);
    line-height: 1.85; font-weight: 300; margin-bottom: 2rem;
  }

  /* ── PAGE HERO BANNER ── */
  .page-banner {
    position: relative; overflow: hidden;
    background: var(--navy);
    min-height: 280px;
    display: flex; align-items: flex-end;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  }
  .page-banner-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.12;
  }
  .page-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.6) 0%, rgba(10,22,40,0.95) 100%);
  }
  .page-banner-content { position: relative; z-index: 2; }
  .page-banner h1 {
    font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300; color: var(--white); line-height: 1.1;
  }
  .page-banner p {
    font-size: 0.92rem; color: rgba(255,255,255,0.55);
    margin-top: 0.5rem; font-weight: 300;
  }

  /* ── FOUNDERS ── */
  .founders-section { background: var(--off-white); }

  .founder-card {
    display: grid; grid-template-columns: 220px 1fr;
    gap: 3rem; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: 12px;
    padding: 2.5rem; margin-bottom: 2rem;
    transition: box-shadow var(--transition);
  }
  .founder-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); }

  @media (max-width: 680px) {
    .founder-card { grid-template-columns: 1fr; gap: 1.5rem; }
  }

  .founder-photo {
    width: 100%; aspect-ratio: 3/4; border-radius: 8px;
    overflow: hidden; background: var(--gray-100);
    border: 1px solid var(--gray-200);
  }
  .founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

  .founder-meta { display: flex; flex-direction: column; }

  .founder-name {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
    color: var(--navy); line-height: 1.1; margin-bottom: 0.3rem;
  }
  .founder-title {
    font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); font-weight: 400; margin-bottom: 1.25rem;
  }
  .founder-bio {
    font-size: 0.93rem; color: var(--text-muted); line-height: 1.85;
    font-weight: 300; flex: 1;
  }
  .founder-bio p { margin-bottom: 0.85rem; }
  .founder-contact {
    margin-top: 1.25rem; padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.82rem; color: var(--teal); text-decoration: none;
    transition: color var(--transition);
  }
  .founder-contact:hover { color: var(--navy); }

  /* ── ABOUT ── */
  .about-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  @media (max-width: 768px) { .about-intro { grid-template-columns: 1fr; } }

  .about-img { border-radius: 12px; overflow: hidden; }
  .about-img img { width: 100%; height: 380px; object-fit: cover; }

  .services-detailed { background: var(--navy); }
  .services-detailed .section-title { color: var(--white); }
  .services-detailed .section-title em { color: var(--teal-light); }
  .services-detailed .section-label { color: var(--teal); }
  .services-detailed .section-label::before { background: var(--teal); }

  .services-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem; margin-top: 2.5rem;
  }

  .service-detail-card {
    border: 1px solid rgba(0,180,216,0.15);
    border-radius: 10px; padding: 2rem;
    background: rgba(255,255,255,0.04);
    transition: background var(--transition), border-color var(--transition);
  }
  .service-detail-card:hover {
    background: rgba(0,180,216,0.06);
    border-color: rgba(0,180,216,0.35);
  }

  .service-detail-card h3 {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.75rem;
  }
  .service-detail-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; font-weight: 300; }

  /* ── MISSION ── */
  .story-section { background: var(--off-white); }

  .story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
  }
  @media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; } }

  .story-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; font-weight: 300; }
  .story-text p { margin-bottom: 1.2rem; }

  .mv-cards { display: flex; flex-direction: column; gap: 1.5rem; }

  .mv-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 12px; padding: 2rem;
    border-left: 3px solid var(--teal);
  }
  .mv-card h3 {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.75rem;
  }
  .mv-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

  .pillars { background: var(--navy); }
  .pillars-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px; background: rgba(255,255,255,0.06);
    border-radius: 12px; overflow: hidden;
    margin-top: 2.5rem;
  }
  .pillar {
    background: var(--navy-mid); padding: 2rem 1.5rem;
    text-align: center;
    transition: background var(--transition);
  }
  .pillar:hover { background: rgba(0,180,216,0.08); }
  .pillar-num {
    font-family: var(--serif); font-size: 2.5rem; font-weight: 600;
    color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
  }
  .pillar h4 {
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); font-weight: 400; margin-bottom: 0.5rem;
  }
  .pillar p { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-weight: 300; }

  /* ── CAREERS ── */
  .careers-hero { background: var(--off-white); }

  .careers-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem; margin-top: 2.5rem;
  }

  .career-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 12px; padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .career-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }

  .career-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--navy); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
  }
  .career-icon svg { width: 22px; height: 22px; stroke: var(--teal-light); fill: none; stroke-width: 1.5; }

  .career-card h3 {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.6rem;
  }
  .career-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

  .careers-cta { background: var(--navy); text-align: center; }
  .careers-cta .section-title { color: var(--white); }
  .careers-cta p { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 500px; margin: 0.75rem auto 2rem; }

  /* ── CONTACT ── */
  .contact-layout {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
  }
  @media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

  .contact-info .section-title { margin-bottom: 2rem; }

  .contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .contact-detail-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
  .contact-detail h4 {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); font-weight: 400; margin-bottom: 0.25rem;
  }
  .contact-detail a, .contact-detail p {
    font-size: 0.95rem; color: var(--text-dark); text-decoration: none; font-weight: 300;
  }
  .contact-detail a:hover { color: var(--teal); }

  .contact-form-wrap {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 12px; padding: 2.5rem;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

  .form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
  .form-group label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 400; }
  .form-group input, .form-group textarea, .form-group select {
    font-family: var(--sans); font-size: 0.93rem; font-weight: 300;
    color: var(--text-dark); background: var(--off-white);
    border: 1px solid var(--gray-200); border-radius: 6px;
    padding: 0.7rem 1rem; outline: none;
    transition: border-color var(--transition);
  }
  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--teal); background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }

  .newsletter-strip {
    background: var(--gray-100); border-top: 1px solid var(--gray-200);
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .newsletter-strip h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--navy); }
  .newsletter-strip p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }
  .newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .newsletter-form input {
    font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
    padding: 0.7rem 1.25rem; border: 1px solid var(--gray-200);
    border-radius: 4px; outline: none; min-width: 220px;
    transition: border-color var(--transition);
  }
  .newsletter-form input:focus { border-color: var(--teal); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.5);
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem; font-weight: 300;
  }
  footer .footer-brand {
    font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
    color: var(--white);
  }
  footer a { color: var(--teal); text-decoration: none; }
  footer a:hover { color: var(--teal-light); }

  /* ── DIVIDERS ── */
  .teal-divider { width: 48px; height: 2px; background: var(--teal); margin: 1.5rem 0; }

  /* ── RESPONSIVE NAV ── */
  @media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .page.active > * { animation: fadeUp 0.5s ease both; }
  .page.active > *:nth-child(2) { animation-delay: 0.05s; }
  .page.active > *:nth-child(3) { animation-delay: 0.1s; }
  .page.active > *:nth-child(4) { animation-delay: 0.15s; }