/* ─── RESET & BASE ─────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green-deep:   #0f1f0f;
    --green-dark:   #1a2e1a;
    --green-mid:    #2d4a1e;
    --green-accent: #5a8a3a;
    --green-lime:   #a8c97a;
    --off-white:    #f2f0e8;
    --cream:        #e8e4d8;
    --text-dark:    #1a1a18;
    --text-mid:     #555550;
    --text-light:   #888880;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  img { display: block; max-width: 100%; }

  /* ─── SCROLL ANIMATIONS ────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── NAVIGATION ───────────────────────────────── */
  #nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  #nav.scrolled {
    background: rgba(10, 20, 10, 0.96);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--green-lime);
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green-lime); }
  .nav-cta {
    background: var(--green-lime) !important;
    color: var(--green-deep) !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.1s !important;
  }
  .nav-cta:hover { background: #bada8e !important; transform: translateY(-1px); }

  /* Hamburger */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--green-lime);
    transition: all 0.3s;
  }

  /* ─── HERO ─────────────────────────────────────── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--green-deep);
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(168,201,122,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(168,201,122,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(90,138,58,0.18) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px 80px;
    width: 100%;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-lime);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--green-lime);
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 130px);
    line-height: 0.9;
    color: #fff;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
  }
  .hero-title em {
    font-style: normal;
    color: var(--green-lime);
  }

  .hero-sub {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 48px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
  }
  .btn-primary {
    display: inline-block;
    background: var(--green-lime);
    color: var(--green-deep);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #bada8e; transform: translateY(-2px); }
  .btn-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    padding: 14px 32px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--green-lime); color: var(--green-lime); }

  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s forwards;
    flex-wrap: wrap;
  }
  .hero-stat-val {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--green-lime);
    letter-spacing: 1px;
  }
  .hero-stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.25);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease infinite 2s;
  }
  .hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(168,201,122,0.4));
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
  }

  /* ─── SECTION SHARED ───────────────────────────── */
  .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px;
  }
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--green-accent);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
  .section-title-dark {
    color: #fff;
  }

  /* ─── RÓLUNK ───────────────────────────────────── */
  #rolunk { background: var(--off-white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }
  .about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 16px;
  }
  .about-text p:last-child { margin-bottom: 0; }

  .about-visual {
    position: relative;
  }
  .about-card {
    background: var(--green-dark);
    border-radius: 4px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .about-card-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .about-card-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .about-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(168,201,122,0.12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }
  .about-card-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-lime);
    margin-bottom: 4px;
  }
  .about-card-value {
    font-family: var(--font-display);
    font-size: 28px;
    color: #fff;
    letter-spacing: 1px;
  }

  /* ─── TERMÉKEK ─────────────────────────────────── */
  #termekek { background: var(--cream); }

  .products-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
  }
  .products-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-mid);
    font-weight: 300;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #c8c4b4;
    border-radius: 4px;
    overflow: hidden;
  }
  .product-card {
    background: var(--off-white);
    padding: 40px;
    transition: background 0.3s;
    cursor: default;
  }
  .product-card:hover { background: var(--green-dark); }
  .product-card:hover .card-title { color: #fff; }
  .product-card:hover .card-desc  { color: rgba(255,255,255,0.5); }
  .product-card:hover .card-tag   { background: rgba(168,201,122,0.15); color: var(--green-lime); }
  .product-card:hover .card-num   { color: rgba(255,255,255,0.1); }

  .card-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
  }
  .card-icon-wrap {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .card-title {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.3s;
  }
  .card-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 20px;
    transition: color 0.3s;
  }
  .card-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-accent);
    background: rgba(90,138,58,0.1);
    padding: 4px 12px;
    border-radius: 1px;
    transition: all 0.3s;
  }

  /* ─── MIÉRT MI ─────────────────────────────────── */
  #miert {
    background: var(--green-dark);
    padding: 80px 0;
  }
  .why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    align-items: center;
  }
  .why-heading .section-title { color: #fff; }
  .why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .why-feature {
    padding: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    transition: background 0.3s, border-color 0.3s;
  }
  .why-feature:hover {
    background: rgba(168,201,122,0.06);
    border-color: rgba(168,201,122,0.2);
  }
  .why-feature-icon {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .why-feature-title {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
  }
  .why-feature-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
  }

  /* ─── GALÉRIA ──────────────────────────────────── */
  #galeria { background: var(--green-deep); }
  #galeria .section-title { color: #fff; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
    gap: 4px;
    margin-top: 48px;
    border-radius: 4px;
    overflow: hidden;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--green-mid);
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 0.5s ease;
    filter: brightness(0.8);
  }
  .gallery-item:hover img {
    transform: scale(1.13);
    filter: brightness(0.9);
  }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,10,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay-text {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
  }

  /* Gallery placeholder (no real images) */
  .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green-mid);
    transition: background 0.3s;
  }
  .gallery-item:hover .gallery-placeholder { background: #3a5a28; }
  .gallery-placeholder span { font-size: 28px; }
  .gallery-placeholder p {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
  }

  #lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-prev { left: 24px; }
#lightbox-next { right: 24px; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(255,255,255,0.2); }

  /* ─── REFERENCIÁK ──────────────────────────────── */
  #referenciak { background: var(--cream); }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 48px;
    background: #c8c4b4;
    border-radius: 4px;
    overflow: hidden;
  }
  .partner-cell {
    background: var(--off-white);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.2s;
    flex-direction: column;
    gap: 12px;
  }
  .partner-cell span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .partner-cell img {
    max-width: 400px;
    max-height: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s;
  }
  .partner-cell:hover img {
    filter: grayscale(0%) brightness(1);
  }
  .partner-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ─── KAPCSOLAT ────────────────────────────────── */
  #kapcsolat { background: var(--green-deep); padding-bottom: 0; }
  #kapcsolat .section-title { color: #fff; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 56px;
  }

  .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }
  .contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background: rgba(168,201,122,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .contact-info-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-lime);
    margin-bottom: 4px;
  }
  .contact-info-value {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
  }

  .map-embed {
    margin-top: 32px;
    border-radius: 4px;
    overflow: hidden;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  .map-embed p { color: rgba(255,255,255,0.3); font-size: 12px; }

  /* Contact form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .form-intro {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-bottom: 8px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }
  .form-input, .form-textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input:focus, .form-textarea:focus {
    border-color: rgba(168,201,122,0.5);
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255,255,255,0.2);
  }
  .form-textarea {
    resize: vertical;
    min-height: 140px;
  }
  .form-btn {
    background: var(--green-lime);
    color: var(--green-deep);
    border: none;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
    letter-spacing: 0.3px;
  }
  .form-btn:hover { background: #bada8e; transform: translateY(-1px); }

  /* ─── FOOTER ───────────────────────────────────── */
  footer {
    background: var(--green-deep);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 100%;
  }
  .footer-left {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
  }
  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
  }
  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--green-lime); }

  /* ─── LIGHTBOX ─────────────────────────────────── */
  #lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  #lightbox.open { display: flex; }
  #lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
  }
  #lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: rgba(255,255,255,0.5);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
  }
  #lightbox-close:hover { color: #fff; }

  /* ─── RESPONSIVE ───────────────────────────────── */
  @media (max-width: 900px) {
    #nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      inset: 64px 0 0;
      background: rgba(10,20,10,0.98);
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .nav-links.open a { font-size: 18px; }
    .nav-toggle { display: flex; }

    .section { padding: 72px 24px; }

    .hero-content { padding: 120px 24px 60px; }
    .hero-stats { gap: 24px; }

    .about-grid,
    .products-intro,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .cards-grid { grid-template-columns: 1fr; }

    .why-inner { grid-template-columns: 1fr; gap: 40px; }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .gallery-item:first-child { grid-column: span 2; height: 220px; }
    .gallery-item { height: 160px; }

    .partners-grid { grid-template-columns: repeat(3, 1fr); }

    footer { padding: 24px; flex-direction: column; align-items: flex-start; gap: 8px; }

    .form-row { grid-template-columns: 1fr; }
  }