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

/* Global image safety net - prevents images from breaking layouts */
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }

    :root {
      --white: #ffffff;
      --off-white: #f8f9fb;
      --light-gray: #f1f3f6;
      --mid-gray: #e2e6ec;
      --ink: #0a1628;
      --ink-soft: #2d3a4e;
      --ink-muted: #6b7a8d;
      --azure: #0284c7;
      --azure-light: #38bdf8;
      --azure-dim: rgba(2,132,199,0.08);
      --gold: #c8953d;
      --gold-light: #e0b86a;
      --gold-dim: rgba(200,149,61,0.1);
      --radius: 12px;
      --radius-lg: 20px;
      --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
      --shadow-md: 0 4px 20px rgba(10,22,40,0.08);
      --shadow-lg: 0 12px 40px rgba(10,22,40,0.1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0.8rem 4vw;
      transition: all 0.4s;
    }
    nav .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0.5rem 1.5rem;
      border-radius: 60px;
      transition: all 0.4s;
    }
    nav.scrolled .nav-inner {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: var(--shadow-md);
    }
    .nav-logo img { height: 36px; width: auto; }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--ink-soft);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--azure); }
    .nav-cta {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--ink);
      background: var(--gold);
      padding: 0.6rem 1.6rem;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* Hamburger button — hidden on desktop, shown on mobile via media query */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 100;
      position: relative;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    nav.scrolled .nav-toggle span { background: var(--ink); }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: var(--ink);
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.5;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,22,40,0.4) 0%, transparent 35%),
        linear-gradient(to top, rgba(10,22,40,0.75) 0%, transparent 55%),
        linear-gradient(to right, rgba(10,22,40,0.2) 0%, transparent 40%),
        linear-gradient(to left, rgba(10,22,40,0.2) 0%, transparent 40%);
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 780px;
      padding: 0 2rem;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 0.4rem 1.2rem;
      border-radius: 60px;
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 1.8rem;
      opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
    }
    .hero-badge .dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    .hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
    }
    .hero-title .highlight { color: var(--gold); }
    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
      opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
    }
    .hero-actions {
      display: flex; gap: 1rem; justify-content: center; align-items: center;
      margin-top: 5.5rem;
      opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
    }
    .hero-actions .btn-fill { background: var(--gold); color: var(--ink); }
    .hero-actions .btn-fill:hover { background: var(--gold-light); }
    .hero-actions .btn-outline {
      color: rgba(255,255,255,0.7);
      border-color: rgba(255,255,255,0.2);
    }
    .hero-actions .btn-outline:hover { color: var(--white); border-color: var(--gold); }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
      opacity: 0; animation: fadeUp 0.8s 1s forwards;
    }
    .hero-scroll span {
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.5rem;
    }
    .scroll-line {
      width: 1px; height: 36px;
      background: var(--gold);
      margin: 0 auto;
      animation: scrollPulse 2s infinite;
    }
    .btn-fill {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--white);
      background: var(--ink);
      padding: 0.85rem 2rem;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-fill:hover { background: var(--azure); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-fill .arrow { transition: transform 0.2s; }
    .btn-fill:hover .arrow { transform: translateX(3px); }
    .btn-outline {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--ink-soft);
      border: 1px solid var(--mid-gray);
      padding: 0.85rem 2rem;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-outline:hover { border-color: var(--azure); color: var(--azure); }

    /* ── SECTIONS ── */
    .section { padding: 6rem 4vw; }
    .section-white { background: var(--white); }
    .section-light { background: var(--off-white); }
    .section-accent { background: var(--ink); color: var(--white); }
    .container { max-width: 1200px; margin: 0 auto; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1rem;
    }
    .section-label .line { width: 24px; height: 2px; background: var(--azure); border-radius: 2px; }
    .section-accent .section-label .line { background: var(--gold); }
    .section-accent .section-label { color: var(--gold); }

    .section-heading {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }
    .section-text {
      font-size: 0.92rem;
      color: var(--ink-muted);
      max-width: 560px;
      line-height: 1.9;
    }
    .section-accent .section-text { color: rgba(255,255,255,0.6); }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-image {
      aspect-ratio: 5/4;
      width: 100%;
      border-radius: var(--radius-lg);
      display: block;
      overflow: hidden;
    }
    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-top: 2rem;
    }
    .about-feature {
      background: var(--off-white);
      padding: 1.2rem;
      border-radius: var(--radius);
      border: 1px solid var(--mid-gray);
    }
    .about-feature h4 {
      font-family: 'DM Serif Display', serif;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .about-feature p { font-size: 0.78rem; color: var(--ink-muted); }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--mid-gray);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--azure);
    }
    .service-card-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
    }
    .icon-blue { background: var(--azure-dim); color: var(--azure); }
    .icon-gold { background: var(--gold-dim); color: var(--gold); }
    .service-card h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }
    .service-card p {
      font-size: 0.85rem;
      color: var(--ink-muted);
      line-height: 1.8;
    }
    .service-card .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--azure);
      margin-top: 1rem;
      text-decoration: none;
      transition: gap 0.2s;
    }
    .service-card:hover .learn-more { gap: 0.7rem; }

    /* ── BANNER ── */
    .banner {
      background: var(--ink);
      color: var(--white);
      padding: 5rem 4vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .banner::before {
      content: '';
      position: absolute;
      top: -50%; left: 50%; transform: translateX(-50%);
      width: 800px; height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(2,132,199,0.12) 0%, transparent 70%);
    }
    .banner .container { position: relative; z-index: 1; }
    .banner h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 400;
      margin-bottom: 1rem;
    }
    .banner p {
      color: rgba(255,255,255,0.6);
      max-width: 500px;
      margin: 0 auto 2rem;
      font-size: 0.92rem;
    }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--ink);
      background: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

    /* ── PROCESS ── */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    .process-card {
      text-align: center;
      padding: 2rem 1.5rem;
      position: relative;
    }
    .process-num {
      font-family: 'DM Serif Display', serif;
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1;
      -webkit-text-stroke: 0px; color: var(--azure); opacity: 0.2;
      
      margin-bottom: 1rem;
    }
    .section-accent .process-num {
      -webkit-text-stroke: 0px; color: var(--gold); opacity: 0.25;
    }
    .process-card h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }
    .process-card p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.8; }
    .section-accent .process-card p { color: rgba(255,255,255,0.55); }

    /* ── TEAM ── */
    .team-wrapper {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
      align-items: center;
    }
    .team-photo {
      width: 100%;
      aspect-ratio: 3/2;
      border-radius: var(--radius-lg);
      display: block;
      overflow: hidden;
    }
    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .team-info h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 0.3rem;
    }
    .team-role {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--azure);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
    }
    .team-bio {
      font-size: 0.9rem;
      color: var(--ink-muted);
      line-height: 1.9;
    }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }
    .contact-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
    }
    .form-group { margin-bottom: 1.2rem; }
    .form-label {
      display: block;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--ink-soft);
      margin-bottom: 0.4rem;
    }
    .form-input, .form-textarea {
      width: 100%;
      background: var(--off-white);
      border: 1px solid var(--mid-gray);
      padding: 0.8rem 1rem;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      color: var(--ink);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--azure); background: var(--white); }
    .form-textarea { min-height: 120px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-submit {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--white);
      background: var(--ink);
      border: none;
      padding: 0.85rem 2rem;
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: var(--azure); }
    .contact-info-block { margin-bottom: 2rem; }
    .contact-info-title {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ink-muted);
      margin-bottom: 0.4rem;
    }
    .contact-info-value { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      color: var(--white);
      padding: 3rem 4vw;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── SELECT ── */
    select.form-input { appearance: none; cursor: pointer; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: 1fr; }
      .team-wrapper { grid-template-columns: 1fr; }

      /* Feature photos fill available width on mobile, centered */
      .about-image, .team-photo {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      /* Show hamburger, transform nav-links into mobile drawer */
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(85vw, 360px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 6rem 2rem 2rem;
        background: var(--ink);
        box-shadow: -8px 0 40px rgba(0,0,0,0.35);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 90;
      }
      .nav-links.open { transform: translateX(0); }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--white);
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }
      .nav-links a:hover { color: var(--gold); }
      .nav-links .nav-cta {
        margin-top: 1.5rem;
        background: var(--gold);
        color: var(--ink);
        text-align: center;
        border-radius: 999px;
        padding: 1rem 1.5rem;
        border-bottom: none;
      }
      .nav-links .nav-cta:hover { background: var(--gold-light); color: var(--ink); }

      /* Backdrop overlay when menu is open */
      .nav-backdrop {
        position: fixed; inset: 0;
        background: rgba(10,22,40,0.5);
        opacity: 0; pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 80;
      }
      .nav-backdrop.open { opacity: 1; pointer-events: auto; }

      /* Lock body scroll when menu open */
      body.menu-open { overflow: hidden; }
    }
    @media (max-width: 600px) {
      .process-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
    }