:root {
      --olive: #6B7A3A;
      --olive-dark: #4F5D2A;
      --olive-deep: #29321A;
      --cream: #F8F4EA;
      --cream-2: #F1EBDD;
      --beige: #EDE6D3;
      --sand: #A39B78;
      --white: #FFFFFF;
      --ink: #20251A;
      --muted: #68705A;
      --border: rgba(107, 122, 58, .16);
      --shadow: 0 22px 60px rgba(45, 52, 28, .10);
      --radius: 24px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: Inter, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }

    .container {
      width: min(1160px, calc(100% - 40px));
      margin: auto;
    }

    /* ---------- NAVBAR ---------- */

    header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      background: rgba(248, 244, 234, .82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid transparent;
      transition: .3s ease;
    }

    header.scrolled {
      border-color: var(--border);
      box-shadow: 0 8px 30px rgba(40, 48, 24, .05);
    }

    nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .brand-logo {
      width: 58px;
      height: 58px;
      flex: 0 0 58px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-logo img {
      width: 58px;
      height: 58px;
      display: block;
      object-fit: contain;
    } 

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .brand-name {
      font-family: Poppins, sans-serif;
      font-size: 25px;
      font-weight: 800;
      color: var(--olive-dark);
      letter-spacing: -.7px;
    }

    .brand-sub {
      margin-top: 5px;
      font-size: 7px;
      font-weight: 600;
      letter-spacing: 1.25px;
      color: olive;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      font-weight: 600;
      color: #555D45;
    }

    .nav-links a {
      position: relative;
      transition: color .25s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 0;
      height: 2px;
      background: var(--olive);
      transition: width .25s ease;
    }

    .nav-links a:hover { color: var(--olive-dark); }
    .nav-links a:hover::after { width: 100%; }

    /* Active section navigation */
    .nav-links a.active {
      color: var(--olive-dark);
    }

    .nav-links a.active::after {
      width: 100%;
    }

    .nav-cta.active {
      color: white !important;
    }

    .nav-cta.active::after {
      display: none;
    }

    .nav-cta {
      padding: 11px 18px;
      border-radius: 999px;
      background: var(--olive);
      color: white !important;
      box-shadow: 0 8px 22px rgba(107, 122, 58, .20);
    }

    .nav-cta::after { display: none; }

    .menu-btn {
      display: none;
      border: 0;
      background: transparent;
      font-size: 26px;
      color: var(--olive-dark);
      cursor: pointer;
    }

    /* ---------- HERO ---------- */

    .hero {
      min-height: 100vh;
      padding: 150px 0 90px;
      position: relative;
      display: flex;
      align-items: center;
      isolation: isolate;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 650px;
      height: 650px;
      border-radius: 50%;
      right: -250px;
      top: 40px;
      background: radial-gradient(circle, rgba(107,122,58,.16), rgba(107,122,58,0) 68%);
      z-index: -1;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      left: -260px;
      bottom: -160px;
      background: radial-gradient(circle, rgba(237,230,211,.9), rgba(237,230,211,0) 70%);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 70px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--olive-dark);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--olive);
    }

    h1 {
      font-family: Poppins, sans-serif;
      font-size: clamp(45px, 6vw, 76px);
      line-height: 1.02;
      letter-spacing: -3px;
      max-width: 720px;
      color: var(--olive-deep);
    }

    h1 span { color: var(--olive); }

    .hero-copy {
      max-width: 610px;
      margin: 25px 0 32px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 14px 22px;
      border-radius: 999px;
      border: 1px solid var(--border);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .btn-primary {
      color: white;
      background: var(--olive);
      border-color: var(--olive);
      box-shadow: 0 12px 28px rgba(107,122,58,.22);
    }

    .btn-secondary {
      color: var(--olive-dark);
      background: rgba(255,255,255,.55);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(40,48,24,.12);
    }

    .hero-visual {
      position: relative;
      min-height: 500px;
      display: grid;
      place-items: center;
    }

    .orb {
      width: min(430px, 85vw);
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 28%, rgba(255,255,255,.95), rgba(255,255,255,.15) 28%, transparent 29%),
        linear-gradient(145deg, #EEF0E2, #DCE2C6);
      box-shadow:
        inset -25px -25px 60px rgba(79,93,42,.10),
        0 30px 80px rgba(79,93,42,.13);
      position: relative;
      display: grid;
      place-items: center;
      animation: float 6s ease-in-out infinite;
    }

    .orb-ring {
      position: absolute;
      inset: 38px;
      border: 1px solid rgba(107,122,58,.25);
      border-radius: 50%;
    }

    .orb-core {
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(107,122,58,.28);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 7px;
      box-shadow: inset 0 0 35px rgba(107,122,58,.06);
    }

    .hero-logo-name {
      font-family: Poppins, sans-serif;
      font-size: 46px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -2px;
      color: var(--olive-dark);
    }

    .floating-chip {
      position: absolute;
      padding: 10px 14px;
      border: 1px solid rgba(107,122,58,.17);
      border-radius: 14px;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(14px);
      box-shadow: 0 15px 35px rgba(45,52,28,.09);
      color: var(--olive-dark);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .8px;
      text-transform: uppercase;
    }

    .chip-1 { top: 11%; right: 5%; animation: float2 5s ease-in-out infinite; }
    .chip-2 { left: 4%; top: 48%; animation: float2 6s ease-in-out infinite reverse; }
    .chip-3 { right: 9%; bottom: 12%; animation: float2 5.5s ease-in-out infinite; }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-12px) rotate(1deg); }
    }

    @keyframes float2 {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-9px); }
    }

    /* ---------- SECTIONS ---------- */

    section { padding: 105px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 42px;
    }

    .section-kicker {
      color: var(--olive);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    h2 {
      font-family: Poppins, sans-serif;
      font-size: clamp(31px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -1.8px;
      color: var(--olive-deep);
    }

    .section-intro {
      max-width: 480px;
      color: var(--muted);
      font-size: 15px;
    }

    /* ---------- SERVICE CARDS ---------- */

    .services {
      background: var(--white);
      position: relative;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      perspective: 1200px;
    }

    .tilt-card {
      min-height: 300px;
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: linear-gradient(145deg, #FFFFFF, #F8F5ED);
      box-shadow: 0 12px 35px rgba(45,52,28,.055);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      transition: transform .18s ease-out, box-shadow .25s ease, border-color .25s ease;
      will-change: transform;
    }

    .tilt-card:hover {
      box-shadow: 0 28px 65px rgba(45,52,28,.15);
      border-color: rgba(107,122,58,.32);
    }

    .tilt-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      right: -90px;
      top: -90px;
      background: rgba(107,122,58,.08);
      transition: transform .5s ease;
    }

    .tilt-card:hover::before { transform: scale(1.35); }

    .card-icon {
      width: 55px;
      height: 55px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: var(--beige);
      color: var(--olive-dark);
      font-size: 24px;
      margin-bottom: 45px;
      transform: translateZ(35px);
    }

    .tilt-card h3 {
      font-family: Poppins, sans-serif;
      font-size: 21px;
      color: var(--olive-deep);
      margin-bottom: 10px;
      transform: translateZ(25px);
    }

    .tilt-card p {
      color: var(--muted);
      font-size: 14px;
      transform: translateZ(18px);
    }

    .card-number {
      position: absolute;
      right: 24px;
      bottom: 20px;
      font-family: Poppins, sans-serif;
      font-size: 12px;
      font-weight: 800;
      color: rgba(107,122,58,.5);
      letter-spacing: 1px;
    }

    /* ---------- ABOUT / WHY ---------- */

    .about-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 70px;
      align-items: center;
    }

    .about-panel {
      padding: 44px;
      border-radius: 32px;
      background: var(--olive-deep);
      color: white;
      position: relative;
      overflow: hidden;
      min-height: 380px;
    }

    .about-panel::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 50%;
      right: -90px;
      bottom: -100px;
    }

    .about-panel::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 50%;
      right: -30px;
      bottom: -40px;
    }

    .mini-mark {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(237,230,211,.28);
      border-radius: 22px;
      color: var(--beige);
      margin-bottom: 75px;
      transform: rotate(45deg);
    }

    .mini-gem {
      display: block;
      font-family: Georgia, serif;
      font-size: 55px;
      line-height: 1;
      transform: rotate(-45deg);
    }

    .about-panel strong {
      display: block;
      font-family: Poppins, sans-serif;
      font-size: 23px;
      max-width: 310px;
      line-height: 1.25;
      position: relative;
      z-index: 2;
    }

    .about-copy p {
      color: var(--muted);
      margin: 20px 0;
      max-width: 620px;
    }

    .feature-list {
      list-style: none;
      display: grid;
      gap: 16px;
      margin-top: 25px;
    }

    .feature-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: #454C3B;
      font-size: 14px;
    }

    .check {
      width: 23px;
      height: 23px;
      flex: 0 0 23px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--beige);
      color: var(--olive-dark);
      font-size: 12px;
      font-weight: 900;
    }

    /* ---------- PROCESS ---------- */

    .process {
      background: var(--cream-2);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .process-step {
      padding: 25px;
      border-top: 2px solid var(--olive);
    }

    .step-no {
      color: var(--sand);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
      margin-bottom: 35px;
    }

    .process-step h3 {
      font-family: Poppins, sans-serif;
      color: var(--olive-deep);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .process-step p {
      color: var(--muted);
      font-size: 13px;
    }

    /* ---------- TECH ---------- */

    .tech-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }

    .tech-pill {
      padding: 10px 15px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.55);
      color: var(--olive-dark);
      font-size: 12px;
      font-weight: 700;
      transition: transform .2s ease, background .2s ease;
    }

    .tech-pill:hover {
      transform: translateY(-3px);
      background: white;
    }

    /* ---------- CTA ---------- */

    .cta {
      padding: 35px 0 105px;
    }

    .cta-box {
      border-radius: 34px;
      padding: 65px;
      background:
        radial-gradient(circle at 90% 20%, rgba(237,230,211,.18), transparent 28%),
        linear-gradient(135deg, var(--olive-deep), #3C4724);
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      overflow: hidden;
      position: relative;
    }

    .cta-box h2 { color: white; max-width: 650px; }
    .cta-box p { color: rgba(255,255,255,.72); margin-top: 13px; max-width: 560px; }

    .cta-box .btn-primary {
      background: var(--beige);
      color: var(--olive-deep);
      border-color: var(--beige);
      white-space: nowrap;
    }

    /* ---------- FOOTER ---------- */

    footer {
      padding: 35px 0;
      background: #202617;
      color: rgba(255,255,255,.68);
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 25px;
    }

    .footer-brand {
      color: var(--beige);
      font-family: Poppins, sans-serif;
      font-weight: 800;
      font-size: 20px;
    }

    .footer-copy { font-size: 12px; }

    /* ---------- SCROLL REVEAL ---------- */

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ---------- MOBILE ---------- */

    @media (max-width: 900px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(248,244,234,.97);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
      }

      .nav-links.open { display: flex; }
      .nav-cta { text-align: center; }

      .menu-btn { display: block; }

      .hero-grid,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .hero { padding-top: 130px; }
      .hero-visual { min-height: 410px; }

      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }

      .cta-box {
        padding: 45px;
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 28px, 1160px); }
      nav { height: 74px; }

      .brand-logo {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
      }

      .brand-logo img {
        width: 48px;
        height: 48px;
      }
      .brand-name { font-size: 22px; }
      .brand-sub { font-size: 6px; }

      .hero { padding: 115px 0 70px; }
      h1 { font-size: 45px; letter-spacing: -2px; }
      .hero-copy { font-size: 15px; }

      section { padding: 75px 0; }
      .section-head { display: block; }
      .section-intro { margin-top: 15px; }

      .service-grid,
      .process-grid { grid-template-columns: 1fr; }

      .about-panel { padding: 32px; }
      .cta { padding-bottom: 75px; }
      .cta-box { padding: 35px 28px; }
      .footer-row { flex-direction: column; align-items: flex-start; }

      .hero-logo-name { font-size: 38px; }
    }

/* ---------- START A CONVERSATION — FORM MODAL ---------- */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(32, 37, 26, .55);
  backdrop-filter: blur(4px);
  padding: 24px;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-box {
  position: relative;
  width: min(640px, 100%);
  margin: 40px 0;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  animation: modalIn .25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.modal-close:hover {
  background: var(--olive);
  color: white;
  border-color: var(--olive);
}

.modal-head {
  margin-bottom: 26px;
}

.modal-head h3 {
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--olive-deep);
  margin: 8px 0 6px;
}

.modal-head p {
  color: var(--muted);
  font-size: 14.5px;
}

.project-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--olive-dark);
}

.form-field label span {
  font-weight: 400;
  color: var(--sand);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: Inter, sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107, 122, 58, .15);
}

.form-submit {
  border: none;
  cursor: pointer;
  margin-top: 6px;
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

.form-status {
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

.form-status.success { color: var(--olive-dark); }
.form-status.error { color: #A8402E; }

@media (max-width: 620px) {
  .modal-box { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}
