:root {
      --ink: #1c1b1b;
      --muted: #404a3a;
      --line: #c0cab5;
      --paper: #fcf8f8;
      --soft: #f6f3f2;
      --white: #ffffff;
      --primary: #266d00;
      --primary-2: #6ac043;
      --primary-dark: #062100;
      --night: #12182e;
      --deep: #0a0e1a;
      --radius: 8px;
      --shadow: 0 24px 58px rgba(0, 0, 0, 0.15);
    }

    * {
      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,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

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

    .nav {
      position: fixed;
      z-index: 50;
      inset: 0 0 auto;
      background: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
    }

    .nav-inner {
      width: min(100% - 48px, 1200px);
      min-height: 80px;
      margin: 0 auto;
      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: 34px;
    }

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

    .nav-links a:hover {
      color: var(--primary-2);
      transform: translateY(-1px);
    }

    .nav-links .active {
      color: var(--primary-2);
      border-bottom: 2px solid var(--primary-2);
      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(--primary-2);
      background: rgba(255, 255, 255, 0.06);
    }

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

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

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

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

    .btn-primary {
      background: var(--primary-2);
      color: var(--white);
    }

    main {
      padding-top: 0 !important;
    }

    .hero {
      position: relative;
      min-height: 870px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      isolation: isolate;
      padding: 120px 0 70px;
      color: var(--white);
    }

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

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%) !important;
    }

    .hero h1 {
      margin: 0 0 20px;
      font-size: clamp(3rem, 8vw, 5.5rem);
      line-height: 1.04;
      letter-spacing: -0.05em;
    }

    .hero p {
      max-width: 700px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.12rem;
    }

    section {
      padding: 70px 0;
    }

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

    .contact-grid {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 64px;
      align-items: start;
    }

    .contact-info h2,
    .form-panel h2 {
      margin-bottom: 12px;
      font-size: clamp(2rem, 4vw, 2.8rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
    }

    .contact-info h2 {
      color: var(--primary);
    }

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

    .details {
      display: grid;
      gap: 28px;
    }

    .detail {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .detail-icon,
    .socials a {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: var(--radius);
      background: rgba(106, 192, 67, 0.12);
      color: var(--primary);
      font-weight: 900;
    }

    .detail h4 {
      margin-bottom: 4px;
      font-size: 1rem;
    }

    .detail p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .social-block {
      margin-top: 48px;
      padding-top: 34px;
      border-top: 1px solid rgba(192, 202, 181, 0.55);
    }

    .social-block h3 {
      margin-bottom: 18px;
      font-size: 1.35rem;
    }

    .socials {
      display: flex;
      gap: 14px;
    }

    .socials a {
      border-radius: 50%;
      color: var(--muted);
      background: var(--soft);
      transition: background 220ms ease, color 220ms ease, transform 220ms ease;
    }

    .socials a:hover {
      color: var(--white);
      background: var(--primary-2);
      transform: translateY(-2px);
    }

    .form-panel {
      padding: 44px;
      border: 1px solid rgba(192, 202, 181, 0.35);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
    }

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

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

    label {
      display: block;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

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

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

    .map-section {
      height: 500px;
      padding: 0;
      overflow: hidden;
      background: var(--soft);
    }

    .map-wrap {
      position: relative;
      height: 100%;
    }

    .map-wrap img {
      filter: grayscale(1);
      opacity: 0.8;
    }

    .marker {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: var(--primary);
      transform: translate(-50%, -50%);
      font-weight: 900;
      box-shadow: 0 0 0 18px rgba(38, 109, 0, 0.16);
    }

    .marker::after {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      border: 2px solid rgba(38, 109, 0, 0.25);
      animation: pulse 1.7s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(0.85); opacity: 1; }
      100% { transform: scale(1.45); opacity: 0; }
    }

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

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

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

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

    .footer-links {
      display: grid;
      gap: 10px;
    }

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

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      margin-top: 58px;
      padding-top: 28px;
      border-top: 1px solid #1e293b;
      color: #64748b;
      font-size: 0.9rem;
    }

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

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

      .nav-links,
      .nav-cta {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

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

      .hero {
        min-height: 480px;
        padding-top: 100px;
      }

      section {
        padding: 60px 0;
      }

      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .hero {
        min-height: 440px;
        padding-top: 88px;
      }

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

      section {
        padding: 48px 0;
      }

      .form-panel {
        padding: 28px;
      }

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

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .logo img {
        height: 36px;
      }
    }