    :root {
      --bg: #f6f2e8;
      --bg-soft: #fffdf8;
      --panel: #fff9f0;
      --line: #d7cab4;
      --text: #253329;
      --muted: #5f695f;
      --brand: #2f6a50;
      --brand-2: #a3793e;
      --accent: #deccb1;
      --shadow: 0 20px 48px rgba(76, 69, 52, 0.14);
      --radius: 18px;
    }

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

    html {
      scroll-behavior: smooth;
    }

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
      background:
        radial-gradient(circle at 85% 0, rgba(172, 137, 85, 0.13), transparent 32%),
        radial-gradient(circle at 4% 90%, rgba(47, 106, 80, 0.12), transparent 34%),
        linear-gradient(160deg, #fbf8f2 0%, #f6f1e8 52%, #f3ecdf 100%);
      line-height: 1.55;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

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

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
      background: rgba(251, 247, 240, 0.82);
      border-bottom: 1px solid rgba(163, 121, 62, 0.2);
    }

    .nav {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

.brand {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 3.85rem;
  height: 3.85rem;
  object-fit: contain;
  border-radius: 0;
}

.brand-logo-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
}

.brand span:last-child {
  font-family: "Anton", "Space Grotesk", sans-serif;
  font-size: 2.7rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  background: linear-gradient(120deg, #2f6a50 0%, #3d7e62 52%, #a3793e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.brand-logo-wrap::before {
  display: none;
}

.brand-logo-wrap::after {
  display: none;
}

.brand-logo-wrap .brand-logo {
  position: relative;
  z-index: 2;
  animation: brandLogoFloat 2.6s ease-in-out infinite;
}

.brand:hover .brand-logo-wrap::before {
  animation-duration: 2.6s;
}

.brand-mark {
  width: 1.85rem;
  height: 1.85rem;
      border-radius: 0.45rem;
      background: linear-gradient(135deg, var(--brand), #5e9577 48%, var(--brand-2));
      position: relative;
      box-shadow: 0 0 0 4px rgba(47, 106, 80, 0.14);
      overflow: hidden;
    }

.brand-mark::before {
      content: "";
      position: absolute;
      width: 1rem;
      height: 1rem;
      border-radius: 0.2rem;
      right: -0.15rem;
      bottom: -0.25rem;
      border: 2px solid rgba(255, 255, 255, 0.65);
  transform: rotate(36deg);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(160, 122, 61, 0.14), transparent 35%),
    linear-gradient(160deg, #fbf8f2 0%, #f6f1e8 52%, #f3ecdf 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  display: grid;
  place-items: center;
  gap: 0.55rem;
}

.preloader-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 0;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.preloader p {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

    .menu {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      color: var(--muted);
    }

    .menu a {
      font-size: 0.92rem;
      font-weight: 500;
      padding: 0.45rem 0.68rem;
      border-radius: 10px;
      transition: background 0.25s ease;
    }

    .menu a:hover {
      background: rgba(255, 255, 255, 0.86);
    }

    .btn {
      border: 1px solid transparent;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
      padding: 0.7rem 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(130deg, var(--brand), #4b7f65);
      box-shadow: 0 10px 24px rgba(47, 106, 80, 0.25);
    }

    .btn-light {
      color: var(--text);
      background: rgba(255, 255, 255, 0.78);
      border-color: rgba(47, 106, 80, 0.38);
    }

    .hero {
      padding: 3.4rem 0 2.7rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 1fr;
      gap: 1rem;
      align-items: stretch;
    }

    .hero-copy,
    .hero-media {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(160deg, #fffef9, #f8f1e3);
      box-shadow: var(--shadow);
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .hero-copy {
      padding: 2.1rem;
      position: relative;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      right: -80px;
      top: -70px;
      background: radial-gradient(circle, rgba(163, 121, 62, 0.2), transparent 67%);
    }

    .eyebrow {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.11em;
      color: #8d6a38;
      font-weight: 700;
      display: inline-flex;
      margin-bottom: 0.7rem;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: "Space Grotesk", sans-serif;
      line-height: 1.14;
    }

    h1 {
      font-size: clamp(2rem, 4.2vw, 3.7rem);
      margin-bottom: 0.75rem;
    }

    .lead {
      color: var(--muted);
      font-size: 1rem;
      max-width: 56ch;
    }

    .hero-actions {
      margin-top: 1.3rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .hero-facts {
      margin-top: 1.2rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.55rem;
    }

    .fact {
      border: 1px solid rgba(215, 202, 180, 0.9);
      background: rgba(255, 255, 255, 0.75);
      border-radius: 10px;
      padding: 0.62rem;
    }

    .fact strong {
      display: block;
      color: var(--brand);
      font-family: "Space Grotesk", sans-serif;
      margin-bottom: 0.12rem;
    }

    .fact span {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .hero-media {
      min-height: 470px;
      position: relative;
      background: linear-gradient(150deg, rgba(80, 122, 100, 0.13), rgba(163, 121, 62, 0.14));
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      transform-origin: center;
    }

    section {
      padding: 1.2rem 0 2.35rem;
      perspective: 1300px;
    }

    .section-title {
      font-size: clamp(1.6rem, 2.7vw, 2.55rem);
      margin-bottom: 0.32rem;
    }

    .section-sub {
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .split {
      display: inline-block;
      overflow: hidden;
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 1rem;
    }

    .panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .about-story {
      padding: 1.3rem;
      background: linear-gradient(165deg, #fffef8, #f7f0e3);
    }

    .about-story p {
      color: var(--muted);
      margin-top: 0.7rem;
    }

    .about-story p + p {
      margin-top: 0.8rem;
    }

    .about-highlights {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.6rem;
    }

    .highlight {
      border: 1px solid rgba(215, 202, 180, 0.9);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.8);
      padding: 0.72rem;
      min-height: 90px;
    }

    .highlight strong {
      display: block;
      margin-bottom: 0.2rem;
      font-size: 0.9rem;
      color: var(--brand);
    }

    .highlight span {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .about-side {
      display: grid;
      gap: 0.45rem;
    }

    .about-side img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }

    .mission-card {
      padding: 1rem;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: linear-gradient(160deg, #fffef9, #f6ecdc);
      box-shadow: var(--shadow);
      min-height: 180px;
    }

    .mission-card p {
      margin-top: 0.55rem;
      color: var(--muted);
      font-size: 0.93rem;
    }

    .values-row {
      margin-top: 0.85rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .value {
      border: 1px solid rgba(215, 202, 180, 0.9);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.8);
      padding: 0.7rem;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .value strong {
      display: block;
      font-size: 0.88rem;
      color: var(--text);
      margin-bottom: 0.18rem;
    }

    .materials-overview {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.55rem;
      margin-bottom: 0.9rem;
    }

    .chip {
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      padding: 0.5rem 0.7rem;
      font-size: 0.83rem;
      text-align: center;
      color: var(--muted);
    }

    .material-section {
      margin-top: 0.8rem;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow: hidden;
      background: var(--panel);
    }

    .material-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 0;
    }

    .material-media {
      position: relative;
      overflow: hidden;
      min-height: 330px;
    }

    .material-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      transition: transform 0.55s ease;
    }

    .material-section:hover .material-media img {
      transform: scale(1.07);
    }

    .material-content {
      padding: 1.2rem;
      background: linear-gradient(165deg, #fffef8, #f6ecdc);
    }

    .material-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 1rem;
      margin-bottom: 0.6rem;
    }

    .material-head small {
      color: #86683d;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 0.72rem;
    }

    .material-content p {
      color: var(--muted);
      font-size: 0.94rem;
      margin-bottom: 0.8rem;
    }

    .material-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      list-style: none;
      margin-bottom: 0.85rem;
    }

    .material-points li {
      border: 1px solid rgba(215, 202, 180, 0.95);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.8);
      padding: 0.6rem 0.65rem;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .material-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.4rem;
    }

    .material-meta div {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(215, 202, 180, 0.95);
      border-radius: 10px;
      padding: 0.52rem;
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
    }

    .material-meta strong {
      display: block;
      color: var(--brand);
      font-size: 0.82rem;
      margin-bottom: 0.1rem;
    }

    .services-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .service-stack {
      display: grid;
      gap: 0.68rem;
    }

    .service {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: linear-gradient(160deg, #fffef9, #f7efdf);
      box-shadow: var(--shadow);
      padding: 1rem;
      transform-style: preserve-3d;
    }

    .service h3 {
      margin-bottom: 0.35rem;
      font-size: 1.16rem;
    }

    .service p {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .process {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      background: linear-gradient(165deg, #fffef8, #f4e9d6);
      padding: 1rem;
      overflow: hidden;
    }

    .process-lead {
      color: var(--muted);
      font-size: 0.91rem;
      margin-bottom: 0.75rem;
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.55rem;
    }

    .process-step {
      border: 1px solid rgba(215, 202, 180, 0.95);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.85);
      padding: 0.72rem;
      min-height: 112px;
    }

    .step-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.75rem;
      height: 1.75rem;
      border-radius: 999px;
      margin-bottom: 0.38rem;
      font-size: 0.74rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(120deg, var(--brand), #5e9577);
      box-shadow: 0 6px 14px rgba(47, 106, 80, 0.24);
    }

    .process-step h4 {
      font-size: 0.92rem;
      margin-bottom: 0.18rem;
    }

    .process-step p {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .domains-grid {
      margin-top: 0.9rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.62rem;
    }

    .domain {
      border: 1px solid rgba(215, 202, 180, 0.95);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.8);
      padding: 0.72rem;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .domain strong {
      display: block;
      color: var(--text);
      margin-bottom: 0.1rem;
      font-size: 0.88rem;
    }

    .capability-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .cap-card {
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: var(--shadow);
      overflow: hidden;
      background: #fff;
      transform-style: preserve-3d;
    }

    .cap-card img {
      width: 100%;
      height: 195px;
      object-fit: cover;
      border-radius: 0;
    }

    .cap-card .body {
      padding: 0.88rem;
    }

    .cap-card p {
      margin-top: 0.34rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .stats {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.6rem;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: linear-gradient(160deg, #fffef8, #f7edde);
      box-shadow: var(--shadow);
      padding: 0.88rem;
    }

    .stat strong {
      font-size: clamp(1.4rem, 2.8vw, 2.2rem);
      color: var(--brand);
      font-family: "Space Grotesk", sans-serif;
      display: block;
      margin-bottom: 0.14rem;
    }

    .stat span {
      color: var(--muted);
      font-size: 0.85rem;
    }

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 1rem;
}

    .contact-card,
    .form-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      background: linear-gradient(165deg, #fffef8, #f5ebdb);
      overflow: hidden;
    }

.contact-card {
  padding: 1.15rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
}

    .contact-card p,
    .contact-card li {
      color: var(--muted);
      font-size: 0.93rem;
    }

    .contact-card ul {
      list-style: none;
      margin-top: 0.7rem;
      display: grid;
      gap: 0.52rem;
    }

    .contact-card strong {
      color: var(--text);
      display: block;
      margin-bottom: 0.1rem;
    }

.address {
  white-space: pre-line;
}

.contact-inline strong {
  display: inline;
  margin-bottom: 0;
}

.map-wrap {
  border: 1px solid rgba(174, 154, 118, 0.5);
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
  background: #efe5d5;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

    .form-card {
      padding: 1.15rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.62rem;
    }

    .field {
      display: grid;
      gap: 0.22rem;
    }

    .field label {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(174, 154, 118, 0.6);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.9);
      padding: 0.66rem 0.7rem;
      font-family: inherit;
      color: var(--text);
      outline: none;
    }

    .field textarea {
      min-height: 115px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(47, 106, 80, 0.15);
    }

    .full {
      grid-column: 1 / -1;
    }

    .status {
      margin-top: 0.6rem;
      color: var(--brand);
      font-size: 0.9rem;
      min-height: 1.2rem;
    }

    .marquee {
      margin-top: 1.5rem;
      border-top: 1px dashed rgba(145, 122, 84, 0.55);
      border-bottom: 1px dashed rgba(145, 122, 84, 0.55);
      background: rgba(255, 255, 255, 0.65);
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      gap: 1.5rem;
      animation: ticker 24s linear infinite;
      padding: 0.62rem 0;
      font-size: 0.84rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: #6d5837;
      font-weight: 700;
    }

    .site-footer {
      padding: 1.05rem 0 1.5rem;
      text-align: center;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .gsap-reveal {
      will-change: transform, opacity, filter;
    }

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 6px 12px rgba(47, 106, 80, 0.18));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 22px rgba(47, 106, 80, 0.25));
  }
}

@keyframes brandRingSpin {
  to {
    transform: rotate(360deg);
  }
}

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

    @media (max-width: 1120px) {
      .materials-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .domains-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 960px) {
      .hero-grid,
      .about-layout,
      .services-layout,
      .contact-layout,
      .material-grid {
        grid-template-columns: 1fr;
      }

      .hero-media {
        min-height: 360px;
      }

      .about-highlights,
      .values-row {
        grid-template-columns: 1fr 1fr;
      }

      .material-media {
        min-height: 250px;
      }
    }

    @media (max-width: 760px) {
      .menu {
        display: none;
      }

      .hero-facts,
      .about-highlights,
      .mission-grid,
      .values-row,
      .materials-overview,
      .material-points,
      .material-meta,
      .capability-grid,
      .stats,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding: 1.3rem 1rem;
      }

      .hero {
        padding-top: 2.2rem;
      }

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

    }
