    :root {
      --green-dark: #143326;
      --green: #1f5a3d;
      --green-soft: #e8f2ec;
      --wood: #9b6a3c;
      --coal: #1d1d1b;
      --sand: #f4efe5;
      --white: #ffffff;
      --text: #24302a;
      --muted: #66736b;
      --radius: 24px;
      --shadow: 0 18px 45px rgba(20, 51, 38, 0.14);
    }

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

    html {
      scroll-behavior: smooth;
    }

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

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

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

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section {
      padding: 90px 0;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--green);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.08em;
    }

    .eyebrow::before {
      content: "";
      width: 32px;
      height: 2px;
      background: var(--wood);
      border-radius: 2px;
    }

    h1, h2, h3 {
      line-height: 1.15;
      color: var(--green-dark);
    }

    h1 {
      font-size: 32px;
      max-width: 1040px;
      color: var(--white);
      margin-bottom: 24px;
    }

    h2 {
      font-size: 28px;
      margin-bottom: 18px;
    }

    h3 {
      font-size: 18px;
      margin-bottom: 12px;
    }

    p {
      color: var(--muted);
      font-size: 17px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      cursor: pointer;
    }

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

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

    .btn-primary:hover {
      background: #7f552f;
    }

    .btn-outline {
      border-color: rgba(255,255,255,.55);
      color: var(--white);
      backdrop-filter: blur(8px);
    }

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

    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 18px 0;
      transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
    }

    .header.scrolled {
      background: rgba(20, 51, 38, .94);
      box-shadow: 0 12px 32px rgba(0,0,0,.15);
      padding: 12px 0;
      backdrop-filter: blur(14px);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      font-weight: 800;
      line-height: 1.2;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2d7a52, #9b6a3c);
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 22px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 24px;
      color: rgba(255,255,255,.88);
      font-weight: 600;
      font-size: 15px;
    }

    .menu a:hover {
      color: var(--white);
    }

    .phone-link {
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      color: var(--white);
      border: 1px solid rgba(255,255,255,.18);
    }

    .phone-link:hover {
      background: rgba(255,255,255,.22);
      color: var(--white);
    }

    .burger {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 12px;
      background: transparent;
      color: var(--white);
      font-size: 24px;
      cursor: pointer;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(10, 30, 21, .88) 0%, rgba(10, 30, 21, .65) 48%, rgba(10, 30, 21, .28) 100%),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 160px;
      background: linear-gradient(to bottom, transparent, var(--sand));
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 130px 0 90px;
    }

    .hero-subtitle {
      max-width: 760px;
      color: rgba(255,255,255,.9);
      font-size: clamp(18px, 2vw, 24px);
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 48px;
    }

    .hero-scroll {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-top: 50px;
    }

    .scroll-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      text-decoration: none;
      transition: transform .2s ease;
      font-size: 48px;
      color: rgba(255,255,255,.85);
      font-weight: 300;
      letter-spacing: -8px;
      animation: v-pulse 1.4s infinite ease-in-out;
    }

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

    .hero-scroll p {
      color: rgba(255,255,255,.84);
      font-size: 15px;
      text-align: center;
      max-width: 280px;
    }

    @keyframes v-pulse {
      0%, 100% {
        opacity: .65;
        transform: translateY(0);
      }
      50% {
        opacity: 1;
        transform: translateY(8px);
      }
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(160px, 1fr));
      max-width: 830px;
      gap: 14px;
    }

    .stat-card {
      padding: 22px;
      border-radius: 20px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      color: var(--white);
    }

    .stat-card strong {
      display: block;
      font-size: 28px;
      margin-bottom: 6px;
    }

    .stat-card span {
      color: rgba(255,255,255,.82);
      font-size: 14px;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 36px;
      align-items: stretch;
    }

    .mission-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 38px;
      box-shadow: var(--shadow);
    }

    .mission-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 26px;
    }

    .mission-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      padding: 24px;
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--green-soft);
      color: var(--green);
      font-size: 22px;
    }

    .image-card {
      min-height: 0;
      border-radius: var(--radius);
      overflow: hidden;
      background:
        linear-gradient(to bottom, rgba(20,51,38,.15), rgba(20,51,38,.72)),
        url('https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
      display: flex;
      align-items: flex-end;
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .image-card-box {
      background: rgba(255,255,255,.92);
      border-radius: 20px;
      padding: 24px;
      max-width: 390px;
    }

    .about-gallery {
      margin-top: 34px;
    }

    .about-gallery-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .about-gallery-head h3 {
      margin-bottom: 0;
    }

    .about-gallery-controls {
      display: flex;
      gap: 10px;
    }

    .gallery-button {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(31, 90, 61, 0.18);
      border-radius: 50%;
      background: var(--white);
      color: var(--green-dark);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(20, 51, 38, 0.1);
      transition: transform .2s ease, opacity .2s ease, background .2s ease;
    }

    .gallery-button:hover:not(:disabled) {
      transform: translateY(-2px);
      background: var(--green-soft);
    }

    .gallery-button:disabled {
      opacity: .4;
      cursor: default;
    }

    .about-gallery-track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 2px 2px 8px;
    }

    .about-gallery-track::-webkit-scrollbar {
      display: none;
    }

    .about-video {
      flex: 0 0 calc((100% - 36px) / 3);
      scroll-snap-align: start;
    }

    .about-video video {
      width: 100%;
      aspect-ratio: 9 / 16;
      display: block;
      border-radius: 24px;
      object-fit: cover;
      background: #000;
      box-shadow: var(--shadow);
    }

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

    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      min-height: 250px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 55px rgba(20, 51, 38, 0.18);
    }

    .card-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: var(--green-soft);
      display: grid;
      place-items: center;
      font-size: 28px;
      margin-bottom: 22px;
    }

    .products {
      background: var(--green-dark);
      color: var(--white);
    }

    .products h2,
    .products h3 {
      color: var(--white);
    }

    .products p,
    .products .section-title p {
      color: rgba(255,255,255,.74);
    }

    .products .eyebrow {
      color: #d9b483;
    }

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

    .product-card {
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .product-photo {
      height: 210px;
      background-size: cover;
      background-position: center;
    }

    .product-content {
      padding: 24px;
    }

    .ovens {
      background: var(--white);
    }

    .oven-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 32px;
      align-items: center;
    }

    .oven-media {
      display: flex;
      justify-content: center;
    }

    .oven-photo {
      width: 100%;
      min-height: 440px;
      border-radius: var(--radius);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .oven-content {
      max-width: 620px;
    }

    .oven-content .eyebrow {
      color: var(--green);
    }

    .oven-content h2 {
      margin-bottom: 22px;
    }

    .oven-content p {
      margin-bottom: 18px;
      color: var(--muted);
    }

    .oven-features {
      margin-top: 24px;
      padding: 0;
      color: var(--muted);
      font-size: 16px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
      list-style: none;
    }

    .oven-feature {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      border-radius: 24px;
      background: rgba(31, 90, 61, 0.06);
      border: 1px solid rgba(31, 90, 61, 0.12);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      font-size: 24px;
      background: rgba(31, 90, 61, 0.12);
      border-radius: 16px;
    }

    .oven-feature strong {
      display: block;
      margin-bottom: 6px;
      color: var(--green-dark);
    }

    .oven-feature p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .oven-safety-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 22px;
    }

    .oven-safety-card {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 18px;
      align-items: flex-start;
      padding: 28px;
      border-radius: var(--radius);
      background: var(--green-dark);
      box-shadow: var(--shadow);
    }

    .oven-safety-card .feature-icon {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.12);
    }

    .oven-safety-card h3 {
      color: var(--white);
    }

    .oven-safety-card p {
      color: rgba(255, 255, 255, 0.76);
      margin: 0;
    }

    .oven-videos {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
    }

    .oven-video video {
      width: 100%;
      aspect-ratio: 9 / 16;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: var(--shadow);
      background: #000;
    }

    .future-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .future-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 18px;
      align-items: start;
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .investment {
      background:
        linear-gradient(135deg, rgba(232,242,236,.95), rgba(244,239,229,.98)),
        url('https://images.unsplash.com/photo-1473773508845-188df298d2d1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    .investment-box {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 32px;
      align-items: stretch;
    }

    .invest-left {
      background: var(--green-dark);
      color: var(--white);
      border-radius: var(--radius);
      padding: 42px;
      box-shadow: var(--shadow);
    }

    .invest-left h2,
    .invest-left p {
      color: var(--white);
    }

    .invest-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .invest-point {
      background: var(--white);
      border-radius: 22px;
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .process {
      background: var(--white);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding: 30px;
      border-radius: var(--radius);
      background: var(--sand);
      min-height: 230px;
    }

    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-flex;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: var(--white);
      font-weight: 800;
      margin-bottom: 22px;
    }

    .licenses {
      background: var(--sand);
    }

    .licenses .section-title {
      margin-bottom: 30px;
    }

    .licenses-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      max-width: 760px;
      margin: 0 auto;
    }

    .license-card {
      display: block;
      padding: 14px;
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .license-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 55px rgba(20, 51, 38, 0.18);
    }

    .license-card img {
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 16px;
      object-fit: contain;
      background: #f8f8f4;
    }

    .contact {
      background: var(--green-dark);
      color: var(--white);
    }

    .contact h2,
    .contact h3 {
      color: var(--white);
    }

    .contact p {
      color: rgba(255,255,255,.76);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 760px);
      justify-content: start;
      align-items: start;
    }

    .contact-info {
      display: grid;
      gap: 18px;
      margin-top: 28px;
    }

    .contact-item {
      padding: 24px;
      border-radius: 20px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .footer {
      padding: 28px 0;
      background: #0d2118;
      color: rgba(255,255,255,.68);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .menu {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border-radius: 20px;
        background: rgba(20,51,38,.97);
        box-shadow: var(--shadow);
      }

      .menu.active {
        display: flex;
      }

      .menu a {
        padding: 14px;
      }

      .burger {
        display: grid;
        place-items: center;
      }

      .hero-stats,
      .mission-grid,
      .cards-grid,
      .product-grid,
      .future-grid,
      .investment-box,
      .invest-list,
      .licenses-grid,
      .steps,
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .oven-videos {
        grid-template-columns: 1fr;
      }

      .oven-safety-grid {
        grid-template-columns: 1fr;
      }

      .about-video {
        flex-basis: calc((100% - 18px) / 2);
      }

      .mission-grid,
      .investment-box,
      .contact-grid,
      .oven-grid {
        grid-template-columns: 1fr;
      }

      .mission-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 22px, 1180px);
      }

      .section {
        padding: 64px 0;
      }

      .logo span {
        display: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 116px 0 80px;
      }

      .hero-stats,
      .cards-grid,
      .product-grid,
      .future-grid,
      .invest-list,
      .licenses-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      .mission-card,
      .invest-left {
        padding: 26px;
      }

      .image-card {
        min-height: 390px;
        padding: 18px;
      }

      .about-gallery-head {
        align-items: flex-start;
      }

      .about-video {
        flex-basis: 100%;
      }

      .future-item {
        grid-template-columns: 1fr;
      }

      .oven-safety-card {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        flex-direction: column;
      }
    }
