*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Matched to actual Celerity logo: dark navy + silver-gray */
    --navy:        #2c3e55;
    --navy-dark:   #1e2d40;
    --navy-deeper: #152233;
    --navy-light:  #677a97;
    --navy-pale:   #c9d0d8;
    --navy-mist:   #f2f4f7;

    --white:       #ffffff;
    --off-white:   #f8f9fb;
    --gray-bg:     #f3f4f7;
    --gray-border: #dce0e8;
    --rule-light:  rgba(44,62,85,0.15);

    --text-dark:   #1a2535;
    --text-mid:    #4a5568;
    --text-light:  #7a8899;

    /* Aliases so CSS below works unchanged */
    --teal:        var(--navy);
    --teal-dark:   var(--navy-dark);
    --teal-deeper: var(--navy-deeper);
    --teal-light:  var(--navy-light);
    --teal-pale:   var(--navy-pale);
    --teal-mist:   var(--navy-mist);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ======= HEADER ======= */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-border);
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }

  .logo-wrap { display: flex; align-items: center; text-decoration: none; }

  .site-logo { display: block; height: 36px; width: auto; }

  nav { display: flex; gap: 36px; align-items: center; }

  nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--teal); }

  .nav-cta {
    border: 1.5px solid var(--teal) !important;
    color: var(--teal) !important;
    padding: 8px 22px;
    border-radius: 2px;
    transition: all 0.2s !important;
  }
  .nav-cta:hover { background: var(--teal) !important; color: #fff !important; }

  /* ======= HERO ======= */
  .hero {
    min-height: 100vh;
    background: var(--teal-deeper);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 6vw 80px;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(42,122,111,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(42,122,111,0.1) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
  }

  .hero-bg-c {
    position: absolute;
    right: -4vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 56vw;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px rgba(42,122,111,0.1);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .hero-content {
    position: relative;
    max-width: 740px;
    z-index: 2;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s 0.15s forwards;
  }

  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

  .hero-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--teal-light);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(44px, 5.5vw, 74px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 32px;
  }
  .hero h1 em { font-style: italic; color: var(--teal-light); }

  .hero-body {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 56px;
  }

  .hero-stats {
    display: flex;
    gap: 52px;
    padding-top: 44px;
    border-top: 1px solid rgba(42,122,111,0.4);
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }

  /* ======= COMMON SECTION ======= */
  section { padding: 100px 6vw; }

  .section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--teal); }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(32px, 3.5vw, 50px);
    line-height: 1.18;
    color: var(--text-dark);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--teal); }

  .section-intro {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 620px;
  }

  .rule { width: 100%; height: 1px; background: var(--rule-light); margin: 36px 0; }

  /* ======= ABOUT ======= */
  #about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 56px;
  }

  .about-body {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 22px;
  }

  /* ======= APPROACH ======= */
  #approach { background: var(--off-white); padding-top: 80px; padding-bottom: 80px; }

  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
    border: 1px solid var(--gray-border);
  }

  .pillar {
    padding: 44px 36px;
    border-right: 1px solid var(--gray-border);
    transition: background 0.3s;
  }
  .pillar:last-child { border-right: none; }
  .pillar:hover { background: var(--teal-mist); }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--teal-pale);
    line-height: 1;
    margin-bottom: 20px;
  }

  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-weight: 500;
    color: var(--teal-dark);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .pillar-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
  }

  /* ======= TRACK RECORD (dark) ======= */
  #track-record {
    background: var(--teal-deeper);
    position: relative;
    overflow: hidden;
  }

  #track-record .section-label { color: var(--teal-light); }
  #track-record .section-label::before { background: var(--teal-light); }
  #track-record .section-title { color: #fff; }
  #track-record .section-title em { color: var(--teal-light); }
  #track-record .section-intro { color: rgba(255,255,255,0.5); }

  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .testimonial {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(42,122,111,0.3);
    padding: 36px 32px;
    border-radius: 2px;
    transition: border-color 0.3s, background 0.3s;
  }
  .testimonial:hover { border-color: var(--teal-light); background: rgba(42,122,111,0.08); }

  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: var(--teal-light);
    opacity: 0.35;
    line-height: 0.6;
    margin-bottom: 22px;
    display: block;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.72;
    margin-bottom: 28px;
  }

  .quote-rule { width: 32px; height: 1px; background: var(--teal-light); margin-bottom: 20px; opacity: 0.5; }
  .quote-name { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 4px; }
  .quote-role { font-size: 12px; font-weight: 300; color: rgba(255, 255, 255, 0.43); line-height: 1.55; }

  /* ======= CONTACT ======= */
  #contact { background: var(--gray-bg); }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 56px;
    align-items: start;
  }

  .contact-body { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.9; margin-bottom: 22px; }

  .contact-card {
    background: var(--teal-deeper);
    padding: 48px 48px 44px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal-light);
  }

  .contact-person { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: #fff; margin-bottom: 4px; }
  .contact-role-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 36px; }

  .contact-items { display: flex; flex-direction: column; gap: 20px; }

  .contact-item { display: flex; align-items: center; gap: 16px; text-decoration: none; transition: opacity 0.2s; }
  .contact-item:hover { opacity: 0.72; }

  .contact-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(61,158,145,0.4);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: rgba(42,122,111,0.18);
  }
  .contact-icon svg { width: 18px; height: 18px; stroke: var(--teal-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  .ci-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2px; }
  .ci-value { font-size: 15px; font-weight: 400; color: #fff; }

  /* ======= FOOTER ======= */
  footer {
    background: var(--teal-deeper);
    border-top: 1px solid rgba(42,122,111,0.25);
    padding: 32px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; }

  /* ======= REVEAL ======= */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ======= RESPONSIVE ======= */
  @media (max-width: 860px) {
    .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
    .pillars, .testimonials { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid var(--gray-border); }
    .pillar:last-child { border-bottom: none; }
    .hero-stats { flex-wrap: wrap; gap: 28px; }
    nav { display: none; }
    .hero-bg-c { display: none; }
  }