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

    :root {
      --navy: #0d161c;
      --blue: #234c60;
      --mid: #2d738e;
      --accent: #53a2be;
      --light: #f4f7f9;
      --white: #ffffff;
      --text: #0d161c;
      --muted: #5a7080;
      --border: #dce6ec;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

    h1, h2, h3, h4 { text-wrap: balance; }
    p { text-wrap: pretty; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 3rem; height: 72px;
      background: rgba(13,22,28,0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }

    .nav-logo-text {
      font-family: 'Nunito', sans-serif;
      font-size: 1.15rem; font-weight: 800; color: white;
    }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }

    .nav-links a {
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; transition: color 0.2s;
    }

    .nav-links a:hover, .nav-links a.active { color: white; }

    .nav-contact {
      color: white !important;
      background: var(--accent);
      padding: 0.5rem 1.25rem; border-radius: 3px;
    }

    .nav-contact:hover { background: var(--mid) !important; }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; width: 40px; height: 40px; background: none;
      border: none; cursor: pointer; padding: 4px;
    }

    .nav-hamburger span {
      display: block; height: 2px; background: white; border-radius: 2px;
      transition: all 0.25s;
    }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE NAV ── */
    .mobile-nav {
      display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
      background: rgba(13,22,28,0.98); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      color: rgba(255,255,255,0.8); text-decoration: none;
      font-size: 1.25rem; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; transition: color 0.2s;
    }

    .mobile-nav a:hover { color: white; }

    .mobile-nav .mobile-contact {
      background: var(--accent); color: white !important;
      padding: 0.75rem 2rem; border-radius: 3px;
    }

    /* ── PAGE HERO ── */
    .page-hero {
      height: 52vh; min-height: 340px;
      background: var(--navy);
      position: relative; overflow: hidden;
      display: flex; align-items: flex-end; justify-content: flex-start;
      padding: 0 3rem 3.5rem;
    }
    @supports (height: 52dvh) {
      .page-hero { height: 52dvh; }
    }

    .page-hero-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      z-index: 0;
    }

    .page-hero-gradient {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(13,22,28,0.4) 0%, rgba(13,22,28,0.3) 55%, rgba(13,22,28,0.75) 100%);
    }

    .page-hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 2;
      background-image:
        linear-gradient(rgba(83,162,190,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83,162,190,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
    }

    .page-hero::after {
      content: '';
      position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; z-index: 4;
      background: var(--white);
      clip-path: polygon(0 100%, 100% 100%, 100% 0);
    }

    .page-hero-content { position: relative; z-index: 3; max-width: 760px; }

    .page-hero-eyebrow {
      display: inline-block;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
    }

    .page-hero h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800; color: white;
      line-height: 1.1; letter-spacing: -1.5px;
    }

    /* ── SHARED SECTION STYLES ── */
    section { padding: 6rem 3rem; }

    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800; color: var(--navy); letter-spacing: -1px; margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .section-lead {
      font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 640px;
    }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── STORY SECTION ── */
    .story { background: var(--white); padding: 6rem 3rem; }

    .story-inner {
      max-width: 1100px; margin: 0 auto;
      display: block;
    }

    .story-text p {
      font-size: 1.05rem; color: #2a3f4e; line-height: 1.8; margin-bottom: 1.25rem;
    }

    .story-text p:last-child { margin-bottom: 0; }

    .story-image {
      border-radius: 6px; overflow: hidden; position: relative;
      box-shadow: 0 24px 64px rgba(13,22,28,0.15);
    }

    .story-image img { width: 100%; height: 420px; object-fit: cover; display: block; }

    .story-image-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(13,22,28,0.75));
      color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.5px; padding: 1.5rem 1.25rem 1rem;
    }

    /* ── FOUNDER CARD ── */
    .founder-card {
      display: flex; align-items: center; gap: 1rem;
      margin-top: 2.5rem; padding: 1.25rem 1.5rem;
      background: var(--light); border-radius: 6px;
      border-left: 3px solid var(--accent);
    }

    .founder-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 800; color: white;
    }

    .founder-info .name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
    .founder-info .role { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

    /* ── TEAM ── */
    .team { background: var(--white); }

    .team-inner { max-width: 1100px; margin: 0 auto; }

    .team-header { margin-bottom: 3.5rem; }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem 2.5rem;
    }

    .team-member { text-align: left; }

    .team-photo {
      width: 100%; aspect-ratio: 1;
      border-radius: 8px; overflow: hidden;
      background: var(--light); margin-bottom: 1rem;
      box-shadow: 0 4px 20px rgba(13,22,28,0.1);
    }

    .team-photo img {
      width: 100%; height: 100%; object-fit: cover; object-position: top;
      display: block; transition: transform 0.3s;
    }

    .team-member:hover .team-photo img { transform: scale(1.04); }

    .team-photo-placeholder {
      width: 100%; aspect-ratio: 1; border-radius: 8px;
      background: linear-gradient(135deg, var(--accent), var(--mid));
      display: flex; align-items: flex-end; justify-content: center;
      margin-bottom: 1rem; overflow: hidden;
    }
    .team-photo-placeholder svg { display: block; }

    .team-member .member-name {
      font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.2rem;
    }

    .team-member .member-role {
      font-size: 0.82rem; color: var(--muted); line-height: 1.4;
    }

    .member-since {
      font-size: 0.75rem; color: var(--accent); font-weight: 600;
      letter-spacing: 0.5px; margin-top: 0.3rem;
    }

    @media (max-width: 900px) {
      .team-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 600px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    }

    /* ── VALUES ── */
    .values { background: var(--light); }

    .values-inner { max-width: 1200px; margin: 0 auto; }

    .values-header { margin-bottom: 3.5rem; }

    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    }

    .value-card {
      background: var(--white); border-radius: 6px; padding: 2.25rem 2rem;
      border: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(13,22,28,0.05);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,22,28,0.1); }

    .value-icon {
      width: 48px; height: 48px; border-radius: 10px;
      background: linear-gradient(135deg, var(--accent), var(--mid));
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }

    .value-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }

    .value-card h3 {
      font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem;
    }

    .value-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

    /* ── PHOTO GRID ── */
    .photo-grid-section { background: var(--white); padding: 5rem 3rem; }

    .photo-grid-section .section-header { max-width: 1200px; margin: 0 auto 3rem; }

    .photo-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
    }

    .photo-grid .photo-item {
      position: relative; overflow: hidden; border-radius: 6px;
      background: var(--navy);
    }

    .photo-grid .photo-item.wide { grid-column: span 1; }

    .photo-grid .photo-item img {
      width: 100%; height: auto; display: block;
      transition: transform 0.4s ease;
    }

    .photo-grid .photo-item:hover img { transform: scale(1.04); }

    .photo-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(13,22,28,0.8));
      color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.5px; padding: 2rem 1rem 0.85rem;
      opacity: 0; transition: opacity 0.3s;
    }

    .photo-item:hover .photo-caption { opacity: 1; }

    @media (max-width: 768px) {
      .photo-grid-section { padding: 4rem 1.25rem; }
    }
    @media (max-width: 600px) {
      .photo-grid { grid-template-columns: 1fr; }
      .photo-caption { opacity: 1; }
    }

    /* ── WORK BAND ── */
    .work-band {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      padding: 5rem 3rem; text-align: left; position: relative; overflow: hidden;
    }

    .work-band::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(83,162,190,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83,162,190,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .work-band-inner { position: relative; z-index: 1; max-width: 760px; }

    .work-band h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800; color: white; margin-bottom: 1rem; letter-spacing: -1px;
    }

    .work-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

    .btn {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.95rem 2.25rem; border-radius: 3px;
      font-weight: 600; font-size: 0.9rem; text-decoration: none;
      letter-spacing: 0.5px; transition: all 0.2s;
    }

    .btn-primary { background: var(--accent); color: white; }
    .btn-primary:hover { background: #6ab8d0; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(83,162,190,0.3); }
    .btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy); color: rgba(255,255,255,0.5);
      padding: 2.5rem 3rem; font-size: 0.82rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }

    footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
    footer a:hover { color: white; }
    footer p a { text-decoration: underline; }

    .footer-links { display: flex; gap: 2rem; }

    .footer-social { display: flex; gap: 1rem; align-items: center; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 4px;
      background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
      transition: background 0.2s, color 0.2s; text-decoration: none;
    }
    .footer-social a:hover { background: var(--accent); color: white; }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }

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

      nav { padding: 0 1.25rem; }

      .page-hero {
        height: 46vh; min-height: 360px; padding: 0 1.25rem 3rem;
      }
      @supports (height: 46dvh) {
        .page-hero { height: 46dvh; }
      }
      .page-hero-gradient {
        background: linear-gradient(to bottom, rgba(13,22,28,0.45) 0%, rgba(13,22,28,0.4) 55%, rgba(13,22,28,0.7) 100%) !important;
      }
      /* Image keeps the ORIGINAL (narrower) box ratio, pinned to the bottom of the
         now-taller hero, so full width still shows (no side cropping). The extra
         space this opens up at the top just shows navy/gradient behind the nav bar,
         instead of the photo, so nothing important sits under the nav. */
      .page-hero-img {
        top: auto; right: 0; bottom: 0; left: 0;
        height: 42vh; min-height: 300px;
        object-position: center top !important;
      }
      @supports (height: 42dvh) {
        .page-hero-img { height: 42dvh; }
      }
      .page-hero::after { height: 40px !important; }
      .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }

      section { padding: 4rem 1.25rem; }

      .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .story-image { order: -1; }
      .story-image img { height: 280px; }

      .values-grid { grid-template-columns: 1fr; }

      .work-band { padding: 4rem 1.25rem; }
      .work-band h2 { font-size: 1.7rem; }

      footer { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    }

/* extracted inline styles */
.gen-f38a951c { flex-shrink: 0 !important; }
.gen-640610f0 { font-size: 0.55em !important; font-weight: 700 !important; margin-left: 2px !important; vertical-align: super !important; }
