:root {
      --ink: #1c1b1b;
      --muted: #4f5a48;
      --paper: #fcf8f8;
      --soft: #f0edec;
      --soft-2: #e5e2e1;
      --brand: #266d00;
      --brand-light: #6ac043;
      --brand-pale: #9ff974;
      --night: #12182e;
      --deep: #0a0e1a;
      --white: #ffffff;
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Manrope, Inter, Segoe UI, Arial, sans-serif;
      line-height: 1.6;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

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

    .nav {
      position: fixed;
      z-index: 50;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 24, 46, 0.92);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(16px);
    }

    .nav-inner {
      width: min(100% - 48px, 1200px);
      margin: 0 auto;
      min-height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

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

    .logo img {
      width: auto;
      height: 46px;
      object-fit: contain;
    }

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

    .nav-links a {
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: color 220ms ease;
    }

    .nav-links a:hover,
    .nav-links .active {
      color: var(--brand-light);
    }

    .nav-links .active {
      border-bottom: 2px solid var(--brand-light);
      padding-bottom: 4px;
    }

    .mobile-menu {
      display: none;
      position: relative;
    }

    .mobile-menu summary {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--radius);
      color: var(--white);
      cursor: pointer;
      list-style: none;
      position: relative;
      z-index: 90;
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .menu-lines,
    .menu-lines::before,
    .menu-lines::after {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .menu-lines {
      position: relative;
    }

    .menu-lines::before,
    .menu-lines::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-lines::before {
      top: -7px;
    }

    .menu-lines::after {
      top: 7px;
    }

    .mobile-panel {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 80;
      width: min(84vw, 340px);
      height: 100vh;
      display: grid;
      align-content: start;
      gap: 8px;
      padding: 88px 18px 24px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 0;
      background: rgba(18, 24, 46, 0.98);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .mobile-menu[open]::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 70;
      background: rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(3px);
    }

    .mobile-panel a {
      color: var(--white);
      padding: 10px 12px;
      border-radius: var(--radius);
      font-weight: 800;
    }

    .mobile-panel a:hover,
    .mobile-panel .active {
      color: var(--brand-light);
      background: rgba(255, 255, 255, 0.06);
    }

    .mobile-panel .mobile-cta {
      margin-top: 6px;
      color: var(--white);
      background: var(--brand-light);
      text-align: center;
    }

    .nav-cta {
      color: var(--white);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 24px;
      border-radius: var(--radius);
      font-weight: 800;
      transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      background: var(--brand-light);
      color: #123500;
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--ink);
    }

    .btn-ghost {
      color: var(--brand);
      background: transparent;
      border: 2px solid var(--brand);
    }

    .btn-ghost:hover {
      background: var(--brand);
      color: var(--white);
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      place-items: center;
      overflow: hidden;
      isolation: isolate;
      padding: 100px 24px 70px;
      text-align: center;
    }

    .hero-media,
    .hero-media::after {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-media::after {
      content: "";
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      max-width: 980px;
      color: var(--white);
    }

    .hero h1 {
      margin: 0 0 32px;
      font-size: clamp(2.65rem, 8vw, 5.3rem);
      line-height: 1.05;
      letter-spacing: -0.05em;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 34px;
      width: 36px;
      height: 48px;
      transform: translateX(-50%);
      color: var(--white);
      font-size: 2rem;
      animation: bounce 1.7s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, 10px); }
    }

    section {
      padding: 80px 0;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 72px;
      align-items: center;
    }

    .image-stack {
      position: relative;
      min-height: 500px;
    }

    .image-stack::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      top: -34px;
      left: -34px;
      border-radius: 50%;
      background: rgba(110, 190, 106, 0.22);
      filter: blur(32px);
    }

    .image-stack img,
    .project-card,
    .director-card,
    .gallery-item,
    .contact-panel {
      border-radius: var(--radius);
    }

    .image-stack img {
      position: relative;
      z-index: 1;
      min-height: 500px;
      box-shadow: var(--shadow);
    }

    .experience-badge {
      position: absolute;
      z-index: 2;
      right: -26px;
      bottom: -26px;
      background: var(--white);
      padding: 26px 30px;
      border-radius: var(--radius);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    }

    .experience-badge strong {
      display: block;
      color: var(--brand);
      font-size: 3.25rem;
      line-height: 1;
    }

    .eyebrow {
      display: block;
      margin-bottom: 14px;
      color: var(--brand);
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h2 {
      margin-bottom: 28px;
      font-size: clamp(2.1rem, 5vw, 3.25rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .lead {
      color: var(--muted);
      font-size: 1.1rem;
      margin-bottom: 22px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      color: var(--brand);
      font-weight: 900;
    }

    .video-band {
      position: relative;
      height: 600px;
      padding: 0;
      overflow: hidden;
    }

    .video-band::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(28, 27, 27, 0.4);
    }

    .play-button {
      position: absolute;
      z-index: 2;
      top: 50%;
      left: 50%;
      width: 96px;
      height: 96px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.36);
      color: var(--white);
      backdrop-filter: blur(14px);
    }

    .play-button::before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      transform: translateX(3px);
      border-top: 16px solid transparent;
      border-bottom: 16px solid transparent;
      border-left: 24px solid var(--white);
    }

    .video-caption {
      position: absolute;
      z-index: 2;
      left: max(24px, calc((100vw - 1200px) / 2));
      bottom: 42px;
      color: var(--white);
    }

    .video-caption h3 {
      margin-bottom: 4px;
      font-size: 2rem;
      line-height: 1.15;
    }

    .stats {
      background: #f6f3f2;
      padding: 60px 0;
    }

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

    .stat {
      position: relative;
      overflow: hidden;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 28px 18px 34px;
      border: 1px solid rgba(192, 202, 181, 0.35);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.58);
      text-align: center;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
      transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    }

    .stat::before {
      content: "";
      position: absolute;
      inset: auto 18px 16px;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      transform: scaleX(0.34);
      transform-origin: left;
      transition: transform 420ms ease;
    }

    .stat::after {
      content: "";
      position: absolute;
      top: -70px;
      right: -70px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(106, 192, 67, 0.11);
      transition: transform 420ms ease;
    }

    .stat:hover {
      transform: translateY(-8px);
      border-color: rgba(106, 192, 67, 0.45);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    }

    .stat:hover::before,
    .stat.is-visible::before {
      transform: scaleX(1);
    }

    .stat:hover::after {
      transform: scale(1.25);
    }

    .stat-icon {
      min-width: 90px;
      height: 70px;
      margin: 0 auto 14px;
      padding: 0 16px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: var(--white);
      color: var(--brand);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
      font-size: 2.1rem;
      font-weight: 900;
      position: relative;
      z-index: 1;
    }

    .stat-label {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.09em;
      line-height: 1.25;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }

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

    .under-link {
      color: var(--ink);
      border-bottom: 2px solid currentColor;
      padding-bottom: 4px;
      font-weight: 900;
      transition: color 220ms ease;
    }

    .under-link:hover {
      color: var(--brand);
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    #projects {
      padding-bottom: 30px;
    }

    .project-card {
      position: relative;
      display: block;
      height: 500px;
      overflow: hidden;
      background: var(--soft-2);
    }

    .project-card:nth-child(2) {
      margin-top: 48px;
    }

    .project-card img {
      transition: transform 700ms ease;
    }

    .project-card:hover img {
      transform: scale(1.08);
    }

    .project-info {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      color: var(--white);
      opacity: 1;
      background: linear-gradient(to top, rgba(28, 27, 27, 0.92), rgba(28, 27, 27, 0.12));
      transition: opacity 260ms ease;
    }

    .project-card:hover .project-info {
      opacity: 1;
    }

    .project-info .status {
      color: var(--brand-pale);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .project-info h3 {
      margin: 8px 0 0;
      font-size: 1.55rem;
      line-height: 1.15;
    }

    .project-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin: 12px 0 10px;
    }

    .project-specs span {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 6px 9px;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: var(--radius);
      color: var(--white);
      background: rgba(255, 255, 255, 0.12);
      font-size: 0.72rem;
      font-weight: 900;
      line-height: 1;
      backdrop-filter: blur(8px);
      white-space: nowrap;
    }

    .director {
      background: #f6f3f2;
    }

    .director-card {
      display: grid;
      grid-template-columns: 2fr 3fr;
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .director-image {
      position: relative;
      min-height: 500px;
      height: 500px;
      box-sizing: border-box;
      padding: 10px;
      background: var(--white);
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .director-image img {
      display: block;
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center;
      transform: scale(var(--eshosues-director-scale, 1.06));
      transform-origin: center center;
    }

    .director-copy {
      position: relative;
      padding: 70px;
    }

    .quote-mark {
      position: absolute;
      top: 20px;
      right: 42px;
      color: rgba(38, 109, 0, 0.08);
      font-size: 8rem;
      line-height: 1;
      font-weight: 900;
      user-select: none;
    }

    .director-copy h3 {
      font-size: 2rem;
      line-height: 1.2;
    }

    .quote {
      position: relative;
      z-index: 1;
      color: var(--muted);
      font-size: 1.22rem;
      font-style: italic;
    }

    .gallery-head {
      max-width: 720px;
      margin: 0 auto 52px;
      text-align: center;
    }

    .gallery-head p {
      color: var(--muted);
      font-size: 1.05rem;
    }

    .gallery-coverflow-slider {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 80px;
      position: relative;
    }

    .gallery-coverflow-slider .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 400px; /* Base width of center slide */
      height: 500px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    
    @media (max-width: 768px) {
      .gallery-coverflow-slider .swiper-slide {
        width: 280px;
        height: 380px;
      }
    }

    .gallery-coverflow-slider .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Navigation wrapper */
    .gallery-navigation {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 40px;
      position: relative;
      z-index: 10;
    }

    /* Style the navigation arrows exactly like the image */
    .gallery-btn-next,
    .gallery-btn-prev {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid #333;
      background: transparent;
      color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.2rem;
    }
    
    .gallery-btn-next:hover,
    .gallery-btn-prev:hover {
      background: #333;
      color: #fff;
    }

    .center {
      margin-top: 100px;
      text-align: center;
    }

    #projects .project-grid + .center {
      margin-top: 100px;
    }

    .home-gallery-section .center {
      margin-top: 48px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 72px;
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 24px;
      margin-top: 36px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: rgba(106, 192, 67, 0.18);
      color: var(--brand);
      font-weight: 900;
    }

    .label {
      margin: 0;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-value {
      margin: 0;
      color: var(--ink);
      font-size: 1.08rem;
      font-weight: 800;
    }

    .contact-panel {
      background: var(--soft);
      padding: 38px;
    }

    form {
      display: grid;
      gap: 24px;
    }

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

    label {
      display: block;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 900;
    }

    input,
    textarea {
      width: 100%;
      border: 0;
      border-bottom: 2px solid #c0cab5;
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      padding: 12px 0;
      outline: none;
      resize: vertical;
    }

    input:focus,
    textarea:focus {
      border-bottom-color: var(--brand);
    }

    .footer {
      background: var(--deep);
      color: var(--white);
      padding: 86px 0 42px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 54px;
    }

    .footer h4,
    .footer h5 {
      margin-bottom: 18px;
      color: var(--white);
    }

    .footer p,
    .footer a {
      color: #cbd5e1;
    }

    .footer ul {
      display: grid;
      gap: 12px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer a {
      transition: color 220ms ease, transform 220ms ease;
    }

    .footer a:hover {
      color: var(--brand-light);
      transform: translateX(4px);
    }

    .socials {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .socials a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid #334155;
      border-radius: 50%;
      color: var(--white);
      font-weight: 900;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 68px;
      padding-top: 28px;
      border-top: 1px solid #1e293b;
    }

    .footer-bottom p {
      margin: 0;
      color: #94a3b8;
      font-size: 0.88rem;
    }

    @media (max-width: 900px) {
      .container,
      .nav-inner {
        width: min(100% - 32px, 1200px);
      }

      .nav-inner {
        min-height: 74px;
      }

      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .nav .btn {
        min-height: 40px;
        padding: 10px 14px;
        font-size: 0.86rem;
      }

      section {
        padding: 60px 0;
      }

      #projects {
        padding-bottom: 56px;
      }

      .split,
      .contact-grid,
      .director-card {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .image-stack,
      .image-stack img,
      .director-image {
        min-height: 360px;
      }

      .director-image {
        height: 360px;
      }

      .experience-badge {
        right: 14px;
        bottom: 14px;
      }

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

      .project-card:nth-child(2) {
        margin-top: 0;
      }

      #projects .project-grid + .center {
        margin-top: 100px;
      }

      .project-info {
        opacity: 1;
        background: linear-gradient(to top, rgba(28, 27, 27, 0.92), rgba(28, 27, 27, 0.12));
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
      }

      .director-copy {
        padding: 38px 24px;
      }

      .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
      }
    }

    @media (max-width: 620px) {
      .hero {
        padding-top: 100px;
      }

      .hero-actions,
      .section-head,
      .footer-bottom {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .stats-grid,
      .project-grid,
      .footer-grid,
      .form-row {
        grid-template-columns: 1fr;
      }

      .stats {
        padding: 54px 0;
      }

      .stats .container {
        width: min(100% - 24px, 1200px);
      }

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

      .stat {
        min-height: 124px;
        padding: 20px 10px 26px;
      }

      .stat::before {
        inset: auto 14px 12px;
      }

      .stat-icon {
        min-width: 76px;
        height: 58px;
        margin-bottom: 10px;
        font-size: 1.55rem;
      }

      .stat-label {
        display: block;
        max-width: 130px;
        margin: 0 auto;
        font-size: 0.68rem;
        line-height: 1.2;
        letter-spacing: 0.02em;
      }

      .project-card {
        height: 430px;
      }

      #projects .project-grid + .center {
        margin-top: 72px;
      }

      .project-specs {
        gap: 6px;
      }

      .project-specs span {
        min-height: 26px;
        padding: 5px 7px;
        font-size: 0.66rem;
      }

      .gallery-grid {
        display: block;
      }

      .gallery-item {
        height: 280px;
        margin-bottom: 16px;
      }

      .contact-panel {
        padding: 24px;
      }

      .logo img {
        height: 36px;
      }

      .nav-inner {
        min-height: 64px;
      }

      section {
        padding: 48px 0;
      }

      .hero {
        padding-top: 88px;
        padding-bottom: 56px;
      }

      .hero h1 {
        font-size: clamp(1.8rem, 12vw, 3.2rem);
        margin-bottom: 24px;
      }

      .stats {
        padding: 40px 0;
      }

      .project-card {
        height: 380px;
      }

      h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin-bottom: 20px;
      }

      .gallery-item {
        height: 240px;
        margin-bottom: 12px;
        border-radius: 6px;
      }

      .container {
        width: min(100% - 24px, 1200px);
      }
    }
