/* ==============================
   Shared variables, resets, and index page styles
   ============================== */
    /* ==============================
       THEME VARIABLES
    ============================== */
    :root {
      --bg: #e3efe0;
      --bg2: #cfe2cb;
      --bg3: #d4e3d1;
      --panel: rgba(255, 255, 255, 0.72);
      --text: #1f2a22;
      --muted: #5f7063;
      --green: #5f7f62;
      --green-dark: #456248;
      --line: rgba(69, 98, 72, 0.14);
      --shadow: 0 18px 55px rgba(25, 41, 29, 0.1);
      --max: 1200px;
    }

    /* ==============================
       RESET / BASE
    ============================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: transparent;
      overflow-x: hidden;
      line-height: 1.6;
    }


    a,
    a:hover,
    .logo,
    .logo:hover,
    .btn,
    .btn:hover,
    .nav-links a,
    .nav-links a:hover,
    .footer-links a,
    .footer-links a:hover {
      color: inherit;
      text-decoration: none;
    }

    img,
    video {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    }

    .section {
      position: relative;
      padding: 110px 0;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      font-size: 1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--green-dark);
    }

    .section-title {
      max-width: none;
      margin-bottom: 16px;
      font-size: clamp(2.2rem, 5vw, 4.4rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      color: var(--green-dark);
    }

    .decorative-background-type {
      font-family: "Arial Black", Arial, Helvetica, sans-serif;
      font-weight: 900;
      line-height: 0.86;
      letter-spacing: -0.045em;
      text-transform: uppercase;
      color: rgba(69, 98, 72, 0.06);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    .section-subtitle {
      max-width: 720px;
      color: var(--muted);
      font-size: 1.05rem;
    }

    /* ==============================
       ANIMATED BACKGROUND
    ============================== */
    .scroll-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      will-change: transform, filter;
      animation: backgroundDrift 22s ease-in-out infinite alternate;
      background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72), transparent 18%),
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.52), transparent 22%),
        radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.26), transparent 28%),
        radial-gradient(circle at 78% 22%, rgba(47, 79, 54, 0.42), transparent 28%),
        radial-gradient(circle at 28% 78%, rgba(95, 127, 98, 0.36), transparent 32%),
        radial-gradient(circle at 72% 70%, rgba(122, 156, 126, 0.28), transparent 24%),
        radial-gradient(circle at 50% 52%, rgba(62, 95, 68, 0.18), transparent 36%),
        linear-gradient(to bottom, #edf6ea 0%, #d8e8d4 30%, #bfd5bc 68%, #dbe8d8 100%);
    }

    @keyframes backgroundDrift {
      0% {
        transform: scale(1);
        filter: saturate(1) brightness(1);
      }

      50% {
        transform: scale(1.03);
        filter: saturate(1.08) brightness(1.03);
      }

      100% {
        transform: scale(1.05);
        filter: saturate(1.12) brightness(1.05);
      }
    }

    /* ==============================
       BUTTONS
    ============================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 999px;
      padding: 15px 24px;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .btn-primary {
      background: var(--green);
      color: #ffffff;
      box-shadow: 0 10px 28px rgba(69, 98, 72, 0.18);
    }

    .btn-primary:hover {
      background: #ffffff;
      color: var(--green-dark);
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(69, 98, 72, 0.16);
    }

    /* ==============================
       HEADER / NAVIGATION
    ============================== */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(238, 244, 236, 0.6);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(69, 98, 72, 0.08);
    }

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

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 64px;
      width: auto;
      object-fit: contain;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .logo:hover img {
      transform: scale(1.03);
      opacity: 0.92;
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .nav-page-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .nav-links a {
      font-weight: 600;
      color: var(--muted);
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a.nav-contact-btn {
      background: var(--green);
      color: #ffffff !important;
      box-shadow: 0 10px 28px rgba(69, 98, 72, 0.18);
    }

    .nav-links a.nav-contact-btn:hover {
      background: #ffffff;
      color: var(--green-dark) !important;
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(69, 98, 72, 0.16);
    }

    /* =========================================
       HERO + SOCIAL ICONS + PHONE
    ========================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 10px 0 160px;
      overflow: hidden;
    }

    .hero-bg-word {
      --word-offset: 0px;
      position: absolute;
      left: 30%;
      top: 60%;
      transform: translate3d(calc(-50% + var(--word-offset)), 0, 0);
      font-size: clamp(5rem, 16vw, 16rem);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      will-change: transform;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      align-items: center;
      gap: 42px;
    }

    .hero-social-stack {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: fit-content;
      margin-bottom: 36px;
      position: relative;
      top: 0;
    }

    .social-pill {
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      gap: 12px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.62);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.42);
      box-shadow: 0 12px 30px rgba(25, 41, 29, 0.1);
      color: var(--green-dark);
      font-weight: 800;
      white-space: nowrap;
      line-height: 1;
      transition: width 0.3s ease, transform 0.25s ease, background 0.25s ease;
    }

    .social-pill:hover {
      width: 320px;
      transform: translateX(4px) scale(1.03);
      background: rgba(255, 255, 255, 0.9);
    }

    .social-pill img {
      display: block;
      width: 34px;
      height: 34px;
      object-fit: contain;
      flex: 0 0 34px;
      margin-left: 10px;
    }

    .social-pill span {
      display: block;
      opacity: 0;
      transform: translateX(0);
      line-height: 1;
      padding-top: 1px;
      transition: opacity 0.25s ease;
    }

    .social-pill:hover span {
      opacity: 1;
    }

    .hero h1 {
      max-width: 700px;
      margin-bottom: 20px;
      font-size: clamp(4rem, 8vw, 7.5rem);
      line-height: 0.86;
      letter-spacing: -0.045em;

      /* APPLE FONT FIX */
      font-family: "Arial Black", Arial, Helvetica, sans-serif;
      font-weight: 900;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;

      text-transform: uppercase;
      color: var(--green-dark);
    }

    .hero p {
      max-width: 610px;
      margin-bottom: 28px;
      color: var(--muted);
      font-size: 1.1rem;
      font-weight: 600;
    }

    .hero-actions,
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-actions {
      margin-bottom: 26px;
    }

    .hero-tags span {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.66);
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .hero-right {
      position: relative;
      min-height: 760px;
    }

    .hero-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1;
      width: 620px;
      height: 620px;
      transform: translate(-50%, -50%) rotate(0deg);
      transform-origin: center;
      border-radius: 50%;
      border: 2px dashed rgba(255, 255, 255, 0.42);
      opacity: 0.7;
      transition: transform 0.1s linear;
    }

    .orbit-spinner {
      --orbit-rotation: 0deg;
      position: absolute;
      inset: 0;
      transform-origin: center;
      transform: translateZ(0) rotate(0deg);
      transition: none;
      will-change: transform;
    }

    .hero-orbit-front {
      display: none;
    }

    .orbit-icon {
      position: absolute;
      width: 80px;
      height: 80px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(69, 98, 72, 0.14);
      box-shadow: 0 14px 28px rgba(25, 41, 29, 0.12);
      color: var(--green-dark);
      font-size: 28px;
      transform-origin: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .orbit-icon:hover {
      transform: scale(1.12) translateY(-2px);
    }

    .hero-orbit .orbit-icon i {
      transform: rotate(calc(-1 * var(--orbit-rotation)));
      transform-origin: center;
    }

    .orbit-icon.ig {
      top: 6px;
      left: 90%;
      transform: translateX(-50%);
    }

    .orbit-icon.ig:hover {
      transform: translateX(-50%) translateY(-2px) scale(1.12);
    }

    .orbit-icon.tt {
      bottom: 18px;
      left: -10px;
    }

    .orbit-icon.fb {
      right: -10px;
      bottom: 18px;
    }

    .orbit-dot {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(69, 98, 72, 0.14);
      box-shadow: 0 10px 20px rgba(25, 41, 29, 0.12);
    }

    .dot1 {
      top: 10%;
      left: 22%;
    }

    .dot2 {
      top: 20%;
      right: 8%;
    }

    .dot3 {
      right: 14%;
      bottom: 18%;
    }

    .dot4 {
      bottom: 8%;
      left: 28%;
    }

    .dot5 {
      top: 50%;
      left: -8%;
    }

    .phone-stage {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 3;
      width: 330px;
      height: 700px;
      perspective: 1400px;
      transform: translate(-50%, -50%);
    }

    .phone {
      position: relative;
      isolation: isolate;
      width: 100%;
      height: 100%;
      padding: 14px;
      border-radius: 44px;
      background: linear-gradient(145deg, #1d241f, #0f1411);
      box-shadow: 0 35px 80px rgba(21, 31, 23, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      transform-style: preserve-3d;
      transition: transform 0.18s ease;
    }

    @media (min-width: 761px) {
      .phone {
        rotate: 0deg;
        transform-origin: 50% 50%;
      }
    }

    .phone::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 50%;
      z-index: 10;
      width: 110px;
      height: 22px;
      border-radius: 0 0 18px 18px;
      background: #0a0d0b;
      pointer-events: none;
      transform: translate3d(-50%, 0, 1px);
    }

    .phone-screen {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 34px;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.22)), #d8e4d5;
    }

    .phone-screen video {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
    }

    .screen-ui {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.16), transparent 22%), linear-gradient(to top, rgba(0, 0, 0, 0.16), transparent 24%);
      pointer-events: none;
    }

    /* ==============================
       WHY IT MATTERS
    ============================== */
    .story-section {
      padding: 0 0 120px;
    }

    .story-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      align-items: center;
      gap: 48px;
    }

    .story-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .story-image {
      width: 100%;
      max-width: 460px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: var(--shadow);
    }

    .story-wrap {
      max-width: 950px;
      margin: 0 auto;
    }

    .story-block {
      padding: 50px 0;
    }

    .story-block h2 {
      max-width: 820px;
      margin-bottom: 16px;
      font-size: clamp(2rem, 5vw, 4.2rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      color: var(--green-dark);
    }

    .story-block p {
      max-width: 720px;
      color: var(--muted);
      font-size: 1.08rem;
    }

    /* ==============================
       PROJECTS
    ============================== */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .projects-carousel-indicator {
      display: none;
    }

    .project-card {
      position: relative;
      height: 480px;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: var(--shadow);
    }

    .project-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .project-overlay {
      position: absolute;
      right: 12px;
      bottom: 12px;
      left: 12px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: var(--green-dark);
      font-weight: 600;
      font-size: 0.9rem;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .project-overlay p {
      margin: 0;
    }

    .project-card:hover .project-overlay {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.75);
    }

    /* ==============================
       RESULTS / STATS
    ============================== */
    .results-section {
      position: relative;
    }

    .results-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 42px;
    }

    .result-metric,
    .results-card {
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.42);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.38);
      box-shadow: 0 12px 35px rgba(25, 41, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    .result-metric {
      min-height: 170px;
      padding: 28px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .result-metric span {
      display: block;
      margin-bottom: 10px;
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 800;
      color: var(--green-dark);
    }

    .result-metric p {
      color: var(--muted);
      font-size: 1rem;
      font-weight: 700;
      text-align: center;
    }

    .results-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: start;
      gap: 22px;
      margin-top: 24px;
    }

    .results-card {
      height: fit-content;
      padding: 28px;
      overflow: hidden;
    }

    .results-card.large {
      grid-row: span 2;
    }

    .results-card h3 {
      margin-bottom: 12px;
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
      color: var(--green-dark);
    }

    .results-card p {
      margin-bottom: 22px;
      color: var(--muted);
    }

    .results-card img {
      width: 100%;
      border-radius: 22px;
      border: 1px solid rgba(69, 98, 72, 0.1);
      box-shadow: 0 12px 30px rgba(25, 41, 29, 0.08);
    }

    /* ==============================
       SERVICES
    ============================== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 40px;
    }

    .service-card {
      min-height: 250px;
      padding: 28px 22px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.42);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.38);
      box-shadow: 0 12px 35px rgba(25, 41, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(25, 41, 29, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.28);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.32);
      color: var(--green-dark);
      font-size: 1.2rem;
      font-weight: 900;
    }

    .service-toggle {
      width: 100%;
      display: block;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
    }

    .service-title {
      display: block;
      margin-bottom: 12px;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green-dark);
    }

    .service-toggle-icon {
      display: none;
    }

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

    /* ==============================
       CTA
    ============================== */
    .cta-section {
      padding: 110px 0 120px;
    }

    .cta-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      padding: 42px;
      border-radius: 34px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(231, 239, 230, 0.82));
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: var(--shadow);
      color: var(--green-dark);
    }

    .cta-box h2 {
      max-width: 650px;
      margin-bottom: 10px;
      font-size: clamp(2rem, 4vw, 3.6rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
    }

    .cta-box p {
      max-width: 620px;
      color: var(--muted);
    }

    /* ==============================
       FOOTER
    ============================== */
    footer {
      padding: 30px 0 50px;
      border-top: 1px solid rgba(69, 98, 72, 0.08);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    /* ==============================
       REVEAL ANIMATION
    ============================== */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      will-change: opacity, transform;
    }

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

    /* ==============================
       RESPONSIVE
    ============================== */
    @media (max-width: 1080px) {

      .hero-grid,
      .story-layout,
      .results-grid {
        grid-template-columns: 1fr;
      }

      .projects-grid,
      .results-metrics,
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .story-visual {
        justify-content: flex-start;
      }

      .hero-right {
        min-height: 640px;
      }

      .results-card.large {
        grid-row: auto;
      }
    }

    @media (max-width: 720px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
      }

      .section {
        padding: 80px 0;
      }

      .hero {
        min-height: auto;
        padding-top: 46px;
      }

      .hero h1 {
        font-size: 3.6rem;
      }

      .hero-social-stack {
        top: 0;
        margin-bottom: 36px;
      }

      .hero-right {
        min-height: 560px;
      }

      .projects-grid,
      .results-metrics,
      .results-grid,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .cta-box {
        padding: 30px 24px;
      }

      .story-block {
        padding: 56px 0;
      }
    }

    @media (max-width: 760px) {
      .nav {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "logo contact"
          "links links";
        align-items: center;
        gap: 8px 12px;
        padding: 10px 0 11px;
      }

      .logo {
        grid-area: logo;
        min-width: 0;
        width: clamp(175px, 44vw, 190px);
        justify-self: start;
      }

      .logo img {
        width: 100%;
        height: auto;
        max-width: 100%;
      }

      .nav-links {
        display: contents;
      }

      .nav-page-links {
        grid-area: links;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: clamp(8px, 2vw, 14px);
      }

      .nav-page-links a {
        font-size: clamp(0.78rem, 3.1vw, 0.92rem);
        white-space: nowrap;
      }

      .nav-links a.nav-contact-btn {
        grid-area: contact;
        height: 46px;
        min-height: 0;
        padding: 0 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        white-space: nowrap;
      }

      .hero {
        display: block;
        padding-top: 28px;
        padding-bottom: 64px;
      }

      .hero-social-stack {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: auto;
        margin-bottom: 14px;
        top: auto;
      }

      .social-pill,
      .social-pill:hover {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        gap: 0;
        transform: none;
      }

      .social-pill img {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
        margin: auto;
      }

      .social-pill span {
        display: none;
      }

      .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 0 10px;
        font-size: clamp(0.94rem, 3.7vw, 1rem);
        white-space: nowrap;
      }

      .hero-tags {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
      }

      .hero-tags span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        padding: 8px 4px;
        font-size: clamp(0.78rem, 3.2vw, 0.9rem);
        text-align: center;
        white-space: nowrap;
      }

      .hero-orbit {
        --mobile-orbit-size: min(86vw, 360px);
        --mobile-orbit-radius: calc(var(--mobile-orbit-size) / 2);
        --mobile-icon-size: 64px;
        --mobile-dot-size: 16px;
        width: var(--mobile-orbit-size);
        height: var(--mobile-orbit-size);
        transform: translate3d(-50%, -50%, 0);
        transition: none;
        overflow: visible;
      }

      .orbit-spinner {
        transition: none;
      }

      .hero-orbit {
        z-index: 1;
      }

      .hero-orbit-front {
        display: none;
      }

      .orbit-icon {
        width: var(--mobile-icon-size);
        height: var(--mobile-icon-size);
        font-size: 23px;
        box-shadow: 0 10px 22px rgba(25, 41, 29, 0.11);
        transition: box-shadow 0.25s ease;
      }

      .hero-orbit .orbit-icon,
      .hero-orbit .orbit-dot {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        transform:
          translate(-50%, -50%) rotate(var(--angle)) translateX(var(--mobile-orbit-radius)) rotate(calc(-1 * var(--angle)));
        transform-origin: center;
      }

      .hero-orbit .orbit-icon i {
        transform: rotate(calc(-1 * var(--orbit-rotation)));
        transform-origin: center;
      }

      .hero-orbit .orbit-dot {
        width: var(--mobile-dot-size);
        height: var(--mobile-dot-size);
      }

      .orbit-icon:hover,
      .orbit-icon.ig:hover {
        transform:
          translate(-50%, -50%) rotate(var(--angle)) translateX(var(--mobile-orbit-radius)) rotate(calc(-1 * var(--angle)));
      }

      .hero-orbit .orbit-icon.ig {
        --angle: 35deg;
        z-index: 1;
      }

      .hero-orbit .orbit-icon.tt {
        --angle: 148deg;
        z-index: 1;
      }

      .hero-orbit .orbit-icon.fb {
        --angle: 295deg;
        z-index: 1;
      }

      .hero-orbit .dot1 {
        --angle: 25deg;
      }

      .hero-orbit .dot2 {
        --angle: 70deg;
      }

      .hero-orbit .dot3 {
        --angle: 115deg;
      }

      .hero-orbit .dot4 {
        --angle: 205deg;
      }

      .hero-orbit .dot5 {
        --angle: 250deg;
      }

      .phone-stage {
        z-index: 3;
        width: 252px;
        height: 504px;
        transform: translate3d(-50%, -50%, 0);
        transition: none;
        will-change: transform;
      }

      .phone {
        box-shadow: 0 24px 52px rgba(21, 31, 23, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        transition: none;
      }

      .hero-bg-word {
        position: relative;
        left: auto;
        top: auto;
        z-index: 2;
        display: block;
        width: max-content;
        max-width: none;
        margin: 16px 0 0;
        transform: translate3d(var(--word-offset), 0, 0);
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        opacity: 1;
      }

      .story-wrap {
        order: 1;
      }

      .story-visual {
        order: 2;
      }

      .projects-grid {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 8vw 8px 0;
        scrollbar-width: none;
      }

      .projects-grid::-webkit-scrollbar {
        display: none;
      }

      .projects-grid:focus-visible {
        outline: 2px solid var(--green-dark);
        outline-offset: 6px;
      }

      .project-card {
        flex: 0 0 84vw;
        width: 84vw;
        max-width: 360px;
        height: auto;
        aspect-ratio: 4 / 5;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      .project-card video {
        display: block;
        object-fit: cover;
      }

      .project-overlay {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 12px 13px;
        border-radius: 14px;
        font-size: 0.84rem;
        line-height: 1.35;
      }

      .projects-carousel-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 14px;
        color: var(--green-dark);
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.08em;
      }

      .results-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 32px;
      }

      .result-metric {
        min-height: 142px;
        padding: 22px 14px;
        border-radius: 24px;
      }

      .result-metric span {
        margin-bottom: 8px;
        font-size: clamp(2rem, 8vw, 2.75rem);
        letter-spacing: -0.045em;
      }

      .result-metric p {
        font-size: 0.9rem;
        line-height: 1.25;
      }

      .results-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 34px;
      }

      .results-card {
        height: auto;
        padding: 24px 18px;
        border-radius: 26px;
      }

      .results-card h3 {
        margin-bottom: 18px;
        font-size: clamp(1.45rem, 7vw, 2rem);
        line-height: 1;
      }

      .results-card img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        border-radius: 18px;
      }

      .results-heading-second-line {
        display: block;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
      }

      .service-card {
        min-height: 0;
        padding: 18px 20px;
        border-radius: 24px;
      }

      .service-card:hover {
        transform: none;
      }

      .service-toggle {
        min-height: 56px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px;
        cursor: pointer;
      }

      .service-toggle:focus-visible {
        outline: 2px solid var(--green-dark);
        outline-offset: 6px;
        border-radius: 18px;
      }

      .service-icon {
        width: 56px;
        height: 56px;
        margin: 0;
        border-radius: 18px;
        font-size: 1rem;
      }

      .service-title {
        margin: 0;
        font-size: clamp(0.98rem, 4vw, 1.08rem);
        line-height: 1.15;
      }

      .service-toggle-icon {
        width: 26px;
        height: 26px;
        display: grid;
        place-items: center;
        color: var(--green-dark);
        font-size: 1.55rem;
        font-weight: 700;
        line-height: 1;
        transition: transform 0.22s ease;
      }

      .service-toggle-icon::before {
        content: "+";
      }

      .service-card.is-open .service-toggle-icon {
        transform: rotate(180deg);
      }

      .service-card.is-open .service-toggle-icon::before {
        content: "-";
      }

      .service-panel {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        transition: grid-template-rows 0.24s ease, opacity 0.2s ease;
      }

      .service-card.is-open .service-panel {
        grid-template-rows: 1fr;
        opacity: 1;
      }

      .service-panel-inner {
        overflow: hidden;
      }

      .service-panel p {
        margin-top: 18px;
        font-size: 0.94rem;
        line-height: 1.55;
      }
    }

/* ==============================
   About page styles
   ============================== */
    /* ================================
       THEME VARIABLES
    ================================= */
    :root {
      --bg: #e3efe0;
      --bg2: #cfe2cb;
      --bg3: #d4e3d1;
      --text: #1f2a22;
      --muted: #5f7063;
      --green: #5f7f62;
      --green-dark: #456248;
      --line: rgba(69, 98, 72, 0.14);
      --shadow: 0 18px 55px rgba(25, 41, 29, 0.10);
      --max: 1200px;
    }

    /* ================================
       RESET + BASE STYLES
    ================================= */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: transparent;
      overflow-x: hidden;
      line-height: 1.6;
    }

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

    img {
      display: block;
      max-width: 100%;
    }

    .decorative-background-type {
      font-family: "Arial Black", Arial, Helvetica, sans-serif;
      font-weight: 900;
      letter-spacing: -0.045em;
      text-transform: uppercase;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    }

    /* ================================
       BUTTONS
    ================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 15px 24px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
    }

    .btn-primary {
      background: var(--green);
      color: #ffffff;
      box-shadow: 0 10px 28px rgba(69, 98, 72, 0.18);
    }

    .btn-primary:hover {
      background: #ffffff;
      color: var(--green-dark);
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(69, 98, 72, 0.16);
    }

    /* ================================
       ANIMATED BACKGROUND
    ================================= */
    .scroll-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      will-change: transform, filter;
      animation: backgroundDrift 22s ease-in-out infinite alternate;
      background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72), transparent 18%),
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.52), transparent 22%),
        radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.26), transparent 28%),
        radial-gradient(circle at 78% 22%, rgba(47, 79, 54, 0.42), transparent 28%),
        radial-gradient(circle at 28% 78%, rgba(95, 127, 98, 0.36), transparent 32%),
        radial-gradient(circle at 72% 70%, rgba(122, 156, 126, 0.28), transparent 24%),
        radial-gradient(circle at 50% 52%, rgba(62, 95, 68, 0.18), transparent 36%),
        linear-gradient(to bottom, #edf6ea 0%, #d8e8d4 30%, #bfd5bc 68%, #dbe8d8 100%);
    }

    @keyframes backgroundDrift {
      0% {
        transform: scale(1);
        filter: saturate(1) brightness(1);
      }

      50% {
        transform: scale(1.03);
        filter: saturate(1.08) brightness(1.03);
      }

      100% {
        transform: scale(1.05);
        filter: saturate(1.12) brightness(1.05);
      }
    }

    /* ================================
       HEADER + NAVIGATION
    ================================= */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(238, 244, 236, 0.42);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(69, 98, 72, 0.08);
    }

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

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

    .logo img {
      height: 64px;
      width: auto;
      display: block;
      object-fit: contain;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .logo:hover img {
      transform: scale(1.03);
      opacity: 0.92;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .nav-page-links {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .nav-links a {
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
    }

    .nav-links a:hover {
      color: var(--text);
      text-decoration: none;
    }

    .nav-links a.nav-contact-btn {
      background: var(--green);
      color: #ffffff !important;
      padding: 15px 24px;
      border-radius: 999px;
      box-shadow: 0 10px 28px rgba(69, 98, 72, 0.18);
      transition: background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
    }

    .nav-links a.nav-contact-btn:hover {
      background: #ffffff;
      color: var(--green-dark) !important;
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(69, 98, 72, 0.16);
    }

    /* ================================
       HERO SECTION
    ================================= */
    .about-hero {
      min-height: 88vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 70px 0 90px;
      overflow: hidden;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 48px;
      align-items: center;
    }

    .portrait-card {
      border-radius: 38px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: var(--shadow);
      padding: 10px;
      transform: rotate(-2deg);
    }

    .portrait-card img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      border-radius: 28px;
      background: #dfeadb;
    }

    h1 {
      font-size: clamp(3.6rem, 8vw, 7rem);
      line-height: 0.88;
      letter-spacing: -0.075em;
      color: var(--green-dark);
      margin-bottom: 22px;
    }

    .about-copy {
      max-width: 720px;
      color: var(--muted);
      font-size: 1.12rem;
      margin-bottom: 28px;
    }

    /* ================================
       DETAIL STORY SECTION
    ================================= */
    .detail-section {
      padding: 80px 0 130px;
    }

    .centered-story-layout {
      position: relative;
      min-height: 850px;
      display: grid;
      place-items: center;
    }

    .detail-copy.centered {
      position: relative;
      z-index: 5;
      max-width: 640px;
      padding: 44px;
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: var(--shadow);
    }

    .detail-copy.centered h2 {
      font-size: clamp(2.1rem, 4.5vw, 4rem);
      line-height: 0.94;
      letter-spacing: -0.055em;
      margin-bottom: 18px;
      color: var(--green-dark);
    }

    .detail-copy.centered p {
      color: var(--muted);
      font-size: 1.05rem;
      margin-bottom: 16px;
    }

    .story-img {
      position: absolute;
      display: grid;
      place-items: center;
      overflow: hidden;
      width: 250px;
      height: 320px;
      border-radius: 38px;
      background: #f4f8f2;
      border: 1px solid rgba(69, 98, 72, 0.12);
      box-shadow: var(--shadow);
      color: var(--muted);
      font-weight: 700;
      z-index: 2;
    }

    .story-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-img-1 {
      left: -20px;
      top: 110px;
    }

    .story-img-2 {
      right: -20px;
      top: 110px;
    }

    .story-img-3 {
      left: -20px;
      bottom: 110px;
    }

    .story-img-4 {
      right: -20px;
      bottom: 110px;
    }

    /* ================================
       MISSION STATEMENT
    ================================= */
    .mission-section {
      padding: 140px 0 120px;
      text-align: center;
      position: relative;
    }

    .mission-text {
      font-size: clamp(3.5rem, 9vw, 7rem);
      line-height: 0.9;
    }

    .mission-text span {
      display: block;
      color: var(--green-dark);
      transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .mission-text span:nth-child(1) {
      transform: translateY(40px);
      opacity: 0;
    }

    .mission-text span:nth-child(2) {
      transform: translateY(60px);
      opacity: 0;
    }

    .mission-text span:nth-child(3) {
      transform: translateY(80px);
      opacity: 0;
    }

    .mission-wrap.visible .mission-text span {
      transform: translateY(0);
      opacity: 1;
    }

    .mission-wrap.visible .mission-text span:nth-child(1) {
      transition-delay: 0.1s;
    }

    .mission-wrap.visible .mission-text span:nth-child(2) {
      transition-delay: 0.25s;
    }

    .mission-wrap.visible .mission-text span:nth-child(3) {
      transition-delay: 0.4s;
    }

    /* ================================
       FOOTER
    ================================= */
    footer {
      padding: 30px 0 50px;
      border-top: 1px solid rgba(69, 98, 72, 0.08);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    /* ================================
       REVEAL ANIMATION
    ================================= */
    .reveal {
      opacity: 0;
      transform: translateY(55px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    /* ================================
       RESPONSIVE STYLES
    ================================= */
    @media (max-width: 980px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .portrait-card img {
        height: 480px;
      }

      .centered-story-layout {
        min-height: auto;
        display: grid;
        gap: 20px;
      }

      .detail-copy.centered,
      .story-img {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
      }

      .story-img {
        height: 260px;
        border-radius: 32px;
      }
    }

    @media (max-width: 720px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
      }

      .about-hero {
        min-height: auto;
        padding-top: 46px;
      }

      h1 {
        font-size: 3.6rem;
      }

      .detail-copy.centered {
        padding: 28px;
      }
    }

    @media (max-width: 760px) {
      .nav {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "logo contact"
          "links links";
        align-items: center;
        gap: 8px 12px;
        padding: 10px 0 11px;
      }

      .logo {
        grid-area: logo;
        min-width: 0;
        width: clamp(175px, 44vw, 190px);
        justify-self: start;
      }

      .logo img {
        width: 100%;
        height: auto;
        max-width: 100%;
      }

      .nav-links {
        display: contents;
      }

      .nav-page-links {
        grid-area: links;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: clamp(8px, 2vw, 14px);
      }

      .nav-page-links a {
        font-size: clamp(0.78rem, 3.1vw, 0.92rem);
        white-space: nowrap;
      }

      .nav-links a.nav-contact-btn {
        grid-area: contact;
        height: 46px;
        min-height: 0;
        padding: 0 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        white-space: nowrap;
      }

      .detail-section {
        padding: 64px 0 44px;
      }

      .centered-story-layout {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
      }

      .detail-copy.centered {
        order: 1;
        grid-column: 1 / -1;
        padding: 28px;
        margin-bottom: 24px;
      }

      .story-img {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        padding: 0;
        border-radius: 24px;
        line-height: 0;
      }

      .story-img-1,
      .story-img-2,
      .story-img-3,
      .story-img-4 {
        order: 2;
      }

      .story-img img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      .mission-section {
        padding: 72px 0 78px;
      }

      .mission-text {
        font-size: clamp(3.5rem, 15vw, 6rem);
        line-height: 0.88;
      }
    }

/* ==============================
   Contact page styles
   ============================== */
    /* ==============================
       THEME VARIABLES
    ============================== */
    :root {
      --text: #1f2a22;
      --muted: #5f7063;
      --green: #5f7f62;
      --green-dark: #456248;
      --line: rgba(69, 98, 72, 0.14);
      --shadow: 0 18px 55px rgba(25, 41, 29, 0.1);
      --max: 1200px;
    }

    /* ==============================
       RESET / BASE
    ============================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: transparent;
      overflow-x: hidden;
      line-height: 1.6;
    }

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

    img {
      display: block;
      max-width: 100%;
    }

    .decorative-background-type {
      font-family: "Arial Black", Arial, Helvetica, sans-serif;
      font-weight: 900;
      line-height: 0.86;
      letter-spacing: -0.045em;
      text-transform: uppercase;
      color: rgba(69, 98, 72, 0.06);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    }

    /* ==============================
       ANIMATED BACKGROUND
    ============================== */
    .scroll-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      will-change: transform, filter;
      animation: backgroundDrift 22s ease-in-out infinite alternate;
      background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72), transparent 18%),
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.52), transparent 22%),
        radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.26), transparent 28%),
        radial-gradient(circle at 78% 22%, rgba(47, 79, 54, 0.42), transparent 28%),
        radial-gradient(circle at 28% 78%, rgba(95, 127, 98, 0.36), transparent 32%),
        radial-gradient(circle at 72% 70%, rgba(122, 156, 126, 0.28), transparent 24%),
        radial-gradient(circle at 50% 52%, rgba(62, 95, 68, 0.18), transparent 36%),
        linear-gradient(to bottom, #edf6ea 0%, #d8e8d4 30%, #bfd5bc 68%, #dbe8d8 100%);
    }

    @keyframes backgroundDrift {
      0% {
        transform: scale(1);
        filter: saturate(1) brightness(1);
      }

      50% {
        transform: scale(1.03);
        filter: saturate(1.08) brightness(1.03);
      }

      100% {
        transform: scale(1.05);
        filter: saturate(1.12) brightness(1.05);
      }
    }

    /* ==============================
       BUTTONS
    ============================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 999px;
      padding: 15px 24px;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .btn-primary {
      background: var(--green);
      color: #ffffff;
      box-shadow: 0 10px 28px rgba(69, 98, 72, 0.18);
    }

    .btn-primary:hover {
      background: #ffffff;
      color: var(--green-dark);
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(69, 98, 72, 0.16);
    }

    /* ==============================
       HEADER / NAVIGATION
    ============================== */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(238, 244, 236, 0.6);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(69, 98, 72, 0.08);
    }

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

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 64px;
      width: auto;
      object-fit: contain;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .logo:hover img {
      transform: scale(1.03);
      opacity: 0.92;
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .nav-page-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a.nav-contact-btn {
      background: var(--green);
      color: #ffffff !important;
      box-shadow: 0 10px 28px rgba(69, 98, 72, 0.18);
    }

    .nav-links a.nav-contact-btn:hover {
      background: #ffffff;
      color: var(--green-dark) !important;
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(69, 98, 72, 0.16);
    }

    /* ==============================
       CONTACT HERO
    ============================== */
    .contact-hero {
      position: relative;
      padding: 80px 0 40px;
      overflow: visible;
    }

    .contact-bg-word {
      position: absolute;
      top: 27%;
      left: 50%;
      transform: translateX(-50%);
      font-size: clamp(4rem, 14vw, 13rem);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .eyebrow {
      position: relative;
      z-index: 2;
      display: inline-block;
      margin-bottom: 14px;
      font-size: 1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--green-dark);
    }

    .contact-heading {
      position: relative;
      z-index: 2;
      max-width: none;
      margin-bottom: 18px;
      font-size: clamp(3rem, 7vw, 5.6rem);
      line-height: 0.92;
      letter-spacing: -0.06em;
      color: var(--green-dark);
    }

    .contact-subtitle {
      position: relative;
      z-index: 2;
      max-width: 700px;
      color: var(--muted);
      font-size: 1.08rem;
    }

    /* ==============================
       CONTACT LAYOUT
    ============================== */
    .contact-section {
      padding: 40px 0 110px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: start;
      gap: 34px;
    }

    .contact-info {
      position: sticky;
      top: 110px;
      padding: 34px;
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.42);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.38);
      box-shadow: 0 12px 35px rgba(25, 41, 29, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    .contact-info h2 {
      margin-bottom: 14px;
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 0.96;
      letter-spacing: -0.04em;
      color: var(--green-dark);
    }

    .info-list {
      display: grid;
      gap: 14px;
    }

    .info-item {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(69, 98, 72, 0.08);
    }

    .info-item strong {
      display: block;
      margin-bottom: 6px;
      color: var(--green-dark);
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .info-item span {
      color: var(--muted);
      font-size: 0.98rem;
    }

    .contact-form-wrap {
      padding: 34px;
      border-radius: 30px;
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: var(--shadow);
    }

    /* ==============================
       FORM FIELDS
    ============================== */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

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

    label {
      color: var(--text);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .required-label::after {
      content: " *";
      color: #d64c4c;
      font-weight: 700;
    }

    input,
    textarea {
      width: 100%;
      margin-bottom: 26px;
      padding: 15px 16px;
      border: 1px solid rgba(69, 98, 72, 0.14);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.9);
      font: inherit;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    input:focus,
    textarea:focus {
      border-color: rgba(69, 98, 72, 0.35);
      box-shadow: 0 0 0 4px rgba(95, 127, 98, 0.08);
      background: #ffffff;
    }

    textarea {
      min-height: 170px;
      resize: vertical;
    }

    input[type="date"] {
      min-height: 52px;
      appearance: none;
      -webkit-appearance: none;
      color: var(--muted);
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      opacity: 0.75;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    input[type="date"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
      transform: scale(1.08);
    }

    .bot-field {
      display: none;
    }

    /* ==============================
       BUSINESS STAGE RADIO CARDS
    ============================== */
    .radio-group {
      display: grid;
      gap: 12px;
      margin-top: 6px;
    }

    .radio-card {
      display: grid;
      grid-template-columns: 24px 1fr;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      border-radius: 18px;
      border: 1px solid rgba(69, 98, 72, 0.14);
      background: rgba(255, 255, 255, 0.9);
      color: var(--muted);
      cursor: pointer;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }

    .radio-card:hover {
      border-color: rgba(69, 98, 72, 0.35);
      box-shadow: 0 8px 18px rgba(25, 41, 29, 0.08);
      transform: translateY(-2px);
    }

    .radio-card input[type="radio"] {
      width: 18px;
      height: 18px;
      margin: 0;
      cursor: pointer;
      accent-color: var(--green);
    }

    .radio-text {
      color: var(--muted);
      font-weight: 600;
      line-height: 1.45;
    }

    .radio-card input[type="radio"]:checked + .radio-text {
      color: var(--green-dark);
    }

    .radio-card:has(input[type="radio"]:checked) {
      border-color: rgba(69, 98, 72, 0.55);
      background: rgba(223, 234, 219, 0.6);
      box-shadow: 0 10px 22px rgba(69, 98, 72, 0.12);
    }

    /* ==============================
       SUBMIT / RESPONSE
    ============================== */
    .submit-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 10px;
    }

    .form-response {
      min-height: 24px;
      margin-top: 16px;
      color: var(--green-dark);
      font-weight: 700;
    }

    /* ==============================
       FOOTER
    ============================== */
    footer {
      padding: 30px 0 50px;
      border-top: 1px solid rgba(69, 98, 72, 0.08);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    /* ==============================
       RESPONSIVE
    ============================== */
    @media (max-width: 1080px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }

      .contact-info {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 720px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
      }

      .contact-hero {
        padding-top: 46px;
        overflow: hidden;
      }

      .contact-bg-word {
        top: 42%;
      }

      .contact-form-wrap,
      .contact-info {
        padding: 24px;
      }

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

      .radio-card {
        grid-template-columns: 20px 1fr;
        padding: 16px 18px;
      }
    }

    @media (max-width: 760px) {
      .nav {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "logo contact"
          "links links";
        align-items: center;
        gap: 8px 12px;
        padding: 10px 0 11px;
      }

      .logo {
        grid-area: logo;
        min-width: 0;
        width: clamp(175px, 44vw, 190px);
        justify-self: start;
      }

      .logo img {
        width: 100%;
        height: auto;
        max-width: 100%;
      }

      .nav-links {
        display: contents;
      }

      .nav-page-links {
        grid-area: links;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: clamp(8px, 2vw, 14px);
      }

      .nav-page-links a {
        font-size: clamp(0.78rem, 3.1vw, 0.92rem);
        white-space: nowrap;
      }

      .nav-links a.nav-contact-btn {
        grid-area: contact;
        height: 46px;
        min-height: 0;
        padding: 0 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        white-space: nowrap;
      }
    }
