      /* =========================================================
ROOT
========================================================= */

      :root {
        /* COLORS */

        --color-black: #050505;
        --color-dark: #0b0b0c;
        --color-graphite: #141414;
        --color-gold: #c8a15a;
        --color-gold-light: #e0bb76;
        --color-orange: #ff5b1f;
        --color-orange-light: #ff8a3d;
        --color-white: #f5f5f5;
        --color-gray: #bdbdbd;
        --color-gray-light: #d8d8d8;
        --color-border: rgba(255, 255, 255, 0.12);

        /* SHADOWS */

        --shadow-gold: 0 0 25px rgba(200, 161, 90, 0.35);

        --shadow-orange: 0 0 35px rgba(255, 91, 31, 0.35);

        /* TRANSITIONS */

        --transition: 0.4s ease;

        /* CONTAINER */

        --container: 1400px;

        /* RADIUS */

        --radius: 6px;
      }

      /* =========================================================
RESET
========================================================= */

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", sans-serif;
        background: var(--color-black);
        color: var(--color-white);
        overflow-x: hidden;
      }

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

      a {
        text-decoration: none;
      }

      button {
        border: none;
        background: none;
        cursor: pointer;
        font-family: inherit;
      }

      /* =========================================================
CONTAINER
========================================================= */

      .container {
        width: 100%;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 40px;
      }

      /* =========================================================
HERO
========================================================= */

      .hero {
        position: relative;
        width: 100%;
        min-height: 100vh;
        overflow: hidden;
        background: var(--color-black);
      }

      /* =========================================================
LEFT SIDE
========================================================= */

      .hero-left {
        position: absolute;

        top: 0;
        left: 0;

        width: 58%;
        height: 100%;
        background-color: #0d0d0d;
        background:
          linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.82)),
          url("hero-left-1.png");

        background-size: cover;
        background-position: center;

        z-index: 1;
      }

      /* =========================================================
RIGHT SIDE
========================================================= */

      .hero-right {
        position: absolute;

        top: 0;
        right: 0;

        width: 51%;
        height: 100%;

        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
        background-color: #1a1008;
        /* теплий темний тон під фото */
        background:
          linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55)),
          url("forged-handrails.png");

        background-size: cover;
        background-position: center;

        animation: heroZoom 14s ease-in-out infinite alternate;

        z-index: 2;
      }

      @keyframes heroZoom {
        from {
          transform: scale(1);
        }

        to {
          transform: scale(1.06);
        }
      }

      /* =========================================================
DIVIDER LINE
========================================================= */

      .hero-divider {
        position: absolute;

        top: -10%;
        left: 53%;

        width: 0.37px;
        height: 120%;

        background: linear-gradient(to bottom,
            transparent,
            var(--color-gold),
            transparent);

        transform: rotate(11deg);

        z-index: 5;

        box-shadow: var(--shadow-gold);
      }

      /* =========================================================
OVERLAY
========================================================= */

      .hero-overlay {
        position: absolute;
        inset: 0;

        background: radial-gradient(circle at center,
            rgba(255, 91, 31, 0.08),
            transparent 50%);

        z-index: 3;
      }

      .scroll-down {
        animation: bounce 2s infinite;
      }

      @keyframes bounce {

        0%,
        100% {
          transform: translateX(-50%) translateY(0);
        }

        50% {
          transform: translateX(-50%) translateY(8px);
        }
      }

      @keyframes fireAnimation {
        from {
          transform: translateY(0);
        }

        to {
          transform: translateY(-15px);
        }
      }

      /* =========================================================
SPARKS
========================================================= */

      .sparks {
        position: absolute;
        inset: 0;

        overflow: hidden;

        z-index: 4;
      }

      .sparks span {
        position: absolute;

        width: 3px;
        height: 3px;

        border-radius: 50%;

        background: var(--color-orange);

        box-shadow: 0 0 10px var(--color-orange);

        animation: sparks 5s linear infinite;
      }

      .sparks span:nth-child(1) {
        left: 10%;
        bottom: 0;
        animation-delay: 0s;
      }

      .sparks span:nth-child(2) {
        left: 20%;
        bottom: 0;
        animation-delay: 1s;
      }

      .sparks span:nth-child(3) {
        left: 30%;
        bottom: 0;
        animation-delay: 2s;
      }

      .sparks span:nth-child(4) {
        left: 40%;
        bottom: 0;
        animation-delay: 3s;
      }

      .sparks span:nth-child(5) {
        left: 50%;
        bottom: 0;
        animation-delay: 1.5s;
      }

      .sparks span:nth-child(6) {
        left: 60%;
        bottom: 0;
        animation-delay: 2.5s;
      }

      .sparks span:nth-child(7) {
        left: 70%;
        bottom: 0;
        animation-delay: 3.5s;
      }

      .sparks span:nth-child(8) {
        left: 80%;
        bottom: 0;
        animation-delay: 4s;
      }

      @keyframes sparks {
        0% {
          transform: translateY(0) translateX(0) scale(1);

          opacity: 0;
        }

        15% {
          opacity: 1;
        }

        100% {
          transform: translateY(-900px) translateX(140px) scale(0);

          opacity: 0;
        }
      }

      /* =========================================================
HEADER
========================================================= */

      .header {
        position: relative;
        z-index: 20;
        width: 100%;
        padding: 28px 0;
      }

      .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* =========================================================
LOGO
========================================================= */

      .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 57.99px;
        height: auto;
      }

      /* =========================================================
NAVIGATION
========================================================= */

      .navigation {
        display: flex;
        align-items: center;
        gap: 50px;
      }

      .navigation a {
        position: relative;

        color: var(--color-gray-light);

        font-size: 14px;

        letter-spacing: 2px;

        text-transform: uppercase;

        transition: var(--transition);
      }

      .navigation a::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: -8px;

        width: 0;
        height: 1px;

        background: var(--color-gold);

        transition: var(--transition);
      }

      .navigation a:hover {
        color: var(--color-gold);
      }

      .navigation a:hover::after {
        width: 100%;
      }

      /* =========================================================
HEADER BUTTON
========================================================= */

      .header-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        height: 58px;

        padding: 0 34px;

        border: 1px solid var(--color-gold);

        color: var(--color-gold);

        font-size: 13px;
        font-weight: 500;

        letter-spacing: 2px;

        text-transform: uppercase;

        transition: var(--transition);

        backdrop-filter: blur(10px);
      }

      .header-button:hover {
        background: var(--color-gold);

        color: var(--color-black);

        box-shadow: var(--shadow-gold);
      }

      /* =========================================================
BURGER
========================================================= */

      .burger {
        display: none;

        width: 40px;
        height: 40px;

        position: relative;

        z-index: 100;
      }

      .burger span {
        position: absolute;

        left: 0;

        width: 100%;
        height: 2px;

        background: var(--color-white);

        transition: var(--transition);
      }

      .burger span:nth-child(1) {
        top: 10px;
      }

      .burger span:nth-child(2) {
        top: 19px;
      }

      .burger span:nth-child(3) {
        top: 28px;
      }

      /* =========================================================
HERO CONTENT
========================================================= */

      .hero-content {
        position: relative;

        z-index: 10;

        min-height: calc(100vh - 122px);

        display: flex;
        align-items: center;
      }

      .hero-box {
        max-width: 760px;
      }

      /* =========================================================
SUBTITLE
========================================================= */

      .hero-subtitle {
        margin-bottom: 18px;

        color: var(--color-gray-light);

        font-size: 24px;

        letter-spacing: 7px;

        text-transform: uppercase;
      }

      /* =========================================================
TITLE
========================================================= */
      .hero-title span {
        color: var(--color-gold);
      }

      /* =========================================================
TEXT
========================================================= */

      .hero-text {
        margin-top: 30px;

        max-width: 620px;

        color: var(--color-gray-light);

        font-size: 18px;

        line-height: 1.8;
      }

      /* =========================================================
BUTTONS
========================================================= */

      .hero-buttons {
        display: flex;
        align-items: center;
        gap: 25px;
        margin: 20px 0;
      }

      .hero-button-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        height: 64px;

        padding: 0 38px;

        background: var(--color-gold);

        color: var(--color-black);

        font-size: 14px;
        font-weight: 600;

        letter-spacing: 2px;

        text-transform: uppercase;

        transition: var(--transition);
      }

      .hero-button-primary:hover {
        transform: translateY(-5px);

        box-shadow: var(--shadow-gold);
      }

      .hero-button-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        height: 64px;

        padding: 0 38px;

        border: 1px solid var(--color-border);

        color: var(--color-white);

        font-size: 14px;

        letter-spacing: 2px;

        text-transform: uppercase;

        transition: var(--transition);

        backdrop-filter: blur(12px);
      }

      .hero-button-secondary:hover {
        border-color: var(--color-gold);

        color: var(--color-gold);
      }

      /* =========================================================
SCROLL
========================================================= */

      .scroll-down {
        position: absolute;

        left: 50%;
        bottom: 35px;

        transform: translateX(-50%);

        z-index: 20;

        color: var(--color-gray);

        font-size: 12px;

        letter-spacing: 5px;

        text-transform: uppercase;
      }

      /* =========================================================
MOBILE MENU
========================================================= */

      .mobile-menu {
        position: fixed;

        top: 0;
        right: -100%;

        width: 100%;
        height: 100vh;

        background: rgba(69, 69, 69, 0.98);

        backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 35px;

        transition: 0.5s ease;

        z-index: 90;
      }

      .mobile-menu.active {
        right: 0;
      }

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

        font-size: 22px;

        text-transform: uppercase;

        letter-spacing: 3px;
      }

      /* =========================================================
TABLET
========================================================= */

      @media (max-width: 1100px) {
        .navigation {
          display: none;
        }

        .burger {
          display: block;
        }

        .hero-right {
          width: 100%;

          clip-path: none;

          opacity: 0.55;
        }

        .hero-left {
          display: none;
        }

        .hero-divider {
          display: none;
        }

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

        .hero-box {
          max-width: 100%;
        }

        .sparks {
          display: none;
        }

        /* =========================================================
FIRE EFFECT
========================================================= */

        .fire {
          position: absolute;

          left: 0;
          bottom: -40px;

          width: 100%;
          height: 5rem;

          background:
            radial-gradient(circle at 20% 100%,
              rgba(255, 120, 0, 0.95),
              transparent 30%),
            radial-gradient(circle at 40% 100%,
              rgba(255, 70, 0, 0.9),
              transparent 30%),
            radial-gradient(circle at 60% 100%,
              rgba(255, 140, 0, 0.8),
              transparent 35%),
            radial-gradient(circle at 80% 100%,
              rgba(255, 60, 0, 0.9),
              transparent 30%);

          filter: blur(65px);

          animation: fireAnimation 4s ease-in-out infinite alternate;

          z-index: 4;
        }
      }

      /* =========================================================
MOBILE
========================================================= */

      @media (max-width: 768px) {
        .container {
          padding: 0 24px;
        }

        .header {
          padding: 24px 0;
        }

        .hero-subtitle {
          font-size: 14px;

          letter-spacing: 4px;
        }

        .hero-title {
          font-size: 64px;

          line-height: 0.92;
        }

        .hero-text {
          margin-top: 22px;

          font-size: 15px;

          line-height: 1.7;
        }

        .hero-buttons {
          flex-direction: column;

          align-items: stretch;

          gap: 16px;
        }

        .hero-button-primary,
        .hero-button-secondary {
          width: 100%;
        }

        .header-button {
          display: none;
        }

        .scroll-down {
          display: none;
        }

        .sparks span:nth-child(n + 5) {
          display: none;
        }
      }

      /* =========================================================
SMALL MOBILE
========================================================= */

      @media (max-width: 480px) {
        .hero-title {
          font-size: 52px;
        }

        .hero-subtitle {
          font-size: 12px;
        }

        .hero-text {
          font-size: 14px;
        }
      }

      /* =========================================================
WORKS SECTION
========================================================= */

      .works {
        padding: 120px 0 80px;
        background: var(--color-dark);
        position: relative;
      }

      .works::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right,
            transparent,
            var(--color-gold),
            transparent);
      }

      /* =========================================================
WORKS HEADER
========================================================= */

      .works-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .works-label {
        font-size: 12px;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 16px;
      }

      .works-title {
        font-family: "Oswald", sans-serif;
        font-size: clamp(42px, 6vw, 80px);
        font-weight: 500;
        text-transform: uppercase;
        color: var(--color-white);
        line-height: 1;
        letter-spacing: 3px;
      }

      .works-title span {
        color: var(--color-gold);
      }

      .works-desc {
        margin-top: 18px;
        font-size: 16px;
        color: var(--color-gray);
        letter-spacing: 0.5px;
      }

      /* =========================================================
TABS
========================================================= */

      .works-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 50px;
      }

      .works-tab {
        font-family: "Inter", sans-serif;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-gray);
        padding: 10px 22px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: transparent;
        cursor: pointer;
        transition: var(--transition);
      }

      .works-tab:hover {
        color: var(--color-gold);
        border-color: var(--color-gold);
      }

      .works-tab.active {
        background: var(--color-gold);
        border-color: var(--color-gold);
        color: var(--color-black);
      }

      /* =========================================================
GRID
========================================================= */

      .works-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
        gap: 6px;
      }

      .work-card--wide {
        grid-column: span 2;
      }

      .work-card--tall {
        grid-row: span 2;
      }

      /* =========================================================
CARD
========================================================= */

      .work-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background: var(--color-graphite);
      }

      .work-card.hidden {
        display: none;
      }

      .work-img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.7s ease;
      }

      .work-card:hover .work-img,
      .work-card:focus .work-img {
        transform: scale(1.08);
      }

      /* =========================================================
OVERLAY
========================================================= */

      .work-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
            rgba(5, 5, 5, 0.92) 0%,
            rgba(5, 5, 5, 0.3) 50%,
            transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 22px 20px;
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .work-card:hover .work-overlay,
      .work-card:focus .work-overlay {
        opacity: 1;
      }

      .work-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
      }

      .work-cat-tag {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--color-gold);
        border: 1px solid var(--color-gold);
        padding: 3px 10px;
      }

      .work-price {
        font-size: 13px;
        font-weight: 600;
        color: var(--color-gold-light);
        letter-spacing: 0.5px;
      }

      .work-name {
        font-family: "Oswald", sans-serif;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--color-white);
        text-transform: uppercase;
      }

      /* =========================================================
CTA
========================================================= */

      .works-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 60px;
        padding: 36px 48px;
        border: 1px solid rgba(200, 161, 90, 0.3);
        background: rgba(200, 161, 90, 0.04);
      }

      .works-cta-text {
        font-size: 18px;
        color: var(--color-gray-light);
        letter-spacing: 0.5px;
      }

      .works-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 56px;
        padding: 0 36px;
        border: 1px solid var(--color-gold);
        color: var(--color-gold);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
        white-space: nowrap;
      }

      .works-cta-btn:hover {
        background: var(--color-gold);
        color: var(--color-black);
        box-shadow: var(--shadow-gold);
      }

      /* =========================================================
LIGHTBOX
========================================================= */

      .lightbox {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .lightbox[hidden] {
        display: none;
      }

      .lightbox-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(8px);
      }

      .lightbox-inner {
        position: relative;
        z-index: 10;
        display: flex;
        gap: 40px;
        align-items: center;
        max-width: 1200px;
        width: 90%;
        max-height: 90vh;
      }

      .lightbox-img-wrap {
        flex: 0 0 60%;
        max-height: 80vh;
        overflow: hidden;
      }

      .lightbox-img {
        width: 100%;
        height: 80vh;
        object-fit: cover;
        display: block;
        animation: lbFadeIn 0.35s ease;
      }

      @keyframes lbFadeIn {
        from {
          opacity: 0;
          transform: scale(0.97);
        }

        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .lightbox-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .lightbox-cat {
        font-size: 11px;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--color-gold);
      }

      .lightbox-name {
        font-family: "Oswald", sans-serif;
        font-size: clamp(24px, 3vw, 40px);
        font-weight: 400;
        text-transform: uppercase;
        color: var(--color-white);
        line-height: 1.1;
        letter-spacing: 2px;
      }

      .lightbox-desc {
        font-size: 15px;
        line-height: 1.7;
        color: var(--color-gray);
      }

      .lightbox-price {
        font-size: 22px;
        font-weight: 600;
        color: var(--color-gold-light);
        letter-spacing: 1px;
        padding: 14px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .lightbox-counter {
        font-size: 12px;
        letter-spacing: 3px;
        color: var(--color-gray);
      }

      .lightbox-order-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 56px;
        padding: 0 32px;
        background: var(--color-gold);
        color: var(--color-black);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
        align-self: flex-start;
      }

      .lightbox-order-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold);
      }

      /* =========================================================
LIGHTBOX CONTROLS
========================================================= */

      .lightbox-close {
        position: absolute;
        top: 28px;
        right: 32px;
        z-index: 20;
        font-size: 22px;
        color: var(--color-gray);
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.3s;
        line-height: 1;
      }

      .lightbox-close:hover {
        color: var(--color-gold);
      }

      .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        font-size: 28px;
        color: var(--color-gray);
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }

      .lightbox-nav:hover {
        color: var(--color-gold);
        border-color: var(--color-gold);
      }

      .lightbox-prev {
        left: 20px;
      }

      .lightbox-next {
        right: 20px;
      }

      /* =========================================================
WORKS TABLET
========================================================= */

      @media (max-width: 1100px) {
        .works-grid {
          grid-template-columns: repeat(3, 1fr);
          grid-auto-rows: 260px;
        }

        .lightbox-inner {
          flex-direction: column;
          gap: 24px;
          overflow-y: auto;
          padding: 20px 0;
        }

        .lightbox-img-wrap {
          flex: none;
          width: 100%;
        }

        .lightbox-img {
          height: 50vw;
        }

        .works-cta {
          flex-direction: column;
          gap: 24px;
          text-align: center;
        }
      }

      /* =========================================================
WORKS MOBILE
========================================================= */

      @media (max-width: 768px) {
        .works {
          padding: 80px 0 60px;
        }

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

        .work-card--wide {
          grid-column: span 2;
        }

        .work-overlay {
          opacity: 1;
        }

        .works-tabs {
          gap: 8px;
        }

        .works-tab {
          font-size: 10px;
          padding: 8px 14px;
        }

        .lightbox-nav {
          display: none;
        }

        .lightbox-img {
          height: 56vw;
        }
      }

      @media (max-width: 480px) {
        .works-grid {
          grid-template-columns: 1fr;
          grid-auto-rows: 240px;
        }

        .work-card--wide,
        .work-card--tall {
          grid-column: span 1;
          grid-row: span 1;
        }
      }

      /* =========================================================
ABOUT SECTION
========================================================= */

      .about {
        background: var(--color-black);
        position: relative;
        overflow: hidden;
      }

      /* subtle diagonal texture */
      .about::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,
            rgba(200, 161, 90, 0.06) 0%,
            transparent 70%);
        pointer-events: none;
      }

      .about-line-top {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right,
            transparent,
            var(--color-gold),
            transparent);
        margin-bottom: 80px;
      }

      /* =========================================================
LABEL
========================================================= */

      .about-label {
        font-size: 12px;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 60px;
      }

      /* =========================================================
SPLIT
========================================================= */

      .about-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 90px;
      }

      /* =========================================================
VISUAL LEFT
========================================================= */

      .about-visual {
        position: relative;
        height: 620px;
      }

      .about-img-main {
        position: absolute;
        top: 0;
        left: 0;
        width: 80%;
        height: 88%;
        background-size: cover;
        background-position: center;
        filter: brightness(0.85) contrast(1.05);
      }

      .about-img-accent {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 52%;
        height: 42%;
        background-size: cover;
        background-position: center;
        border: 3px solid var(--color-black);
        filter: brightness(0.9);
      }

      .about-badge {
        position: absolute;
        top: 36px;
        right: 0;
        background: var(--color-gold);
        padding: 18px 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        z-index: 5;
      }

      .about-badge-num {
        font-family: "Oswald", sans-serif;
        font-size: 32px;
        font-weight: 600;
        color: var(--color-black);
        line-height: 1;
      }

      .about-badge-text {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-black);
        text-align: center;
        line-height: 1.4;
      }

      /* =========================================================
CONTENT RIGHT
========================================================= */

      .about-title {
        font-family: "Oswald", sans-serif;
        font-size: clamp(36px, 4vw, 60px);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--color-white);
        line-height: 1.1;
        margin-bottom: 32px;
      }

      .about-title span {
        color: var(--color-gold);
      }

      .about-text {
        font-size: 15px;
        line-height: 1.85;
        color: var(--color-gray);
        margin-bottom: 20px;
      }

      /* =========================================================
VALUES
========================================================= */

      .about-values {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 36px 0 40px;
      }

      .about-value {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(200, 161, 90, 0.03);
        transition:
          border-color 0.3s,
          background 0.3s;
      }

      .about-value:hover {
        border-color: rgba(200, 161, 90, 0.35);
        background: rgba(200, 161, 90, 0.06);
      }

      .about-value-icon {
        font-size: 20px;
        line-height: 1;
        margin-top: 2px;
        flex-shrink: 0;
      }

      .about-value-title {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--color-white);
        margin-bottom: 4px;
      }

      .about-value-sub {
        font-size: 12px;
        color: var(--color-gray);
        line-height: 1.5;
      }

      /* =========================================================
ACTIONS
========================================================= */

      .about-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }

      .about-btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 56px;
        padding: 0 32px;
        background: var(--color-gold);
        color: var(--color-black);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
      }

      .about-btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-gold);
      }

      .about-btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 56px;
        padding: 0 32px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--color-gray-light);
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
      }

      .about-btn-secondary:hover {
        border-color: var(--color-gold);
        color: var(--color-gold);
      }

      /* =========================================================
STATS
========================================================= */

      .about-stats {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 0;
      }

      .about-stat {
        text-align: center;
        flex: 1;
      }

      .about-stat-num {
        font-family: "Oswald", sans-serif;
        font-size: clamp(36px, 4vw, 56px);
        font-weight: 300;
        color: var(--color-gold);
        letter-spacing: 2px;
        line-height: 1;
        margin-bottom: 10px;
      }

      .about-stat-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--color-gray);
      }

      .about-stat-divider {
        width: 1px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
      }

      /* =========================================================
LOCATION STRIP
========================================================= */

      .about-location {
        margin-top: 0;
        padding: 22px 0;
        background: rgba(200, 161, 90, 0.07);
        border-top: 1px solid rgba(200, 161, 90, 0.2);
      }

      .about-location-inner {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .about-location-pin {
        font-size: 18px;
        flex-shrink: 0;
      }

      .about-location-text {
        font-size: 14px;
        color: var(--color-gray-light);
        line-height: 1.5;
        flex: 1;
      }

      .about-location-cta {
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-gold);
        white-space: nowrap;
        transition: opacity 0.3s;
      }

      .about-location-cta:hover {
        opacity: 0.75;
      }

      /* =========================================================
ABOUT TABLET
========================================================= */

      @media (max-width: 1100px) {
        .about-split {
          grid-template-columns: 1fr;
          gap: 50px;
        }

        .about-visual {
          height: 420px;
        }

        .about-stats {
          flex-wrap: wrap;
          gap: 30px;
          justify-content: center;
        }

        .about-stat-divider {
          display: none;
        }

        .about-stat {
          flex: 0 0 40%;
        }
      }

      /* =========================================================
ABOUT MOBILE
========================================================= */

      @media (max-width: 768px) {
        .about {
          padding: 80px 0 0;
        }

        .about-line-top {
          margin-bottom: 50px;
        }

        .about-visual {
          height: 300px;
        }

        .about-img-main {
          width: 85%;
        }

        .about-values {
          grid-template-columns: 1fr;
          gap: 12px;
        }

        .about-actions {
          flex-direction: column;
          align-items: stretch;
        }

        .about-btn-primary,
        .about-btn-secondary {
          width: 100%;
        }

        .about-stats {
          padding: 36px 0;
        }

        .about-stat {
          flex: 0 0 45%;
        }

        .about-location-cta {
          margin-top: 6px;
          width: 100%;
        }
      }

      @media (max-width: 480px) {
        .about-visual {
          height: 240px;
        }

        .about-img-accent {
          display: none;
        }

        .about-stat {
          flex: 0 0 100%;
        }
      }

      /* STAT ANIMATION */
      .about-stat-num {
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }

      .about-stat-num.about-stat-visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Stagger */
      .about-stat:nth-child(1) .about-stat-num {
        transition-delay: 0s;
      }

      .about-stat:nth-child(3) .about-stat-num {
        transition-delay: 0.12s;
      }

      .about-stat:nth-child(5) .about-stat-num {
        transition-delay: 0.24s;
      }

      .about-stat:nth-child(7) .about-stat-num {
        transition-delay: 0.36s;
      }

      /* CARD REVEAL ANIMATION */
      .benefit-card {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease,
          border-color 0.4s,
          background-color 0.4s;
      }

      .benefit-card--visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* =========================================================
FIRE VIDEO BACKGROUND
========================================================= */

      .fire-bg {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
      }

      .fire-bg-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        /* показується через JS при скролі */
        transition: opacity 1.2s ease;
      }

      .fire-bg-overlay {
        position: absolute;
        inset: 0;
        background: rgba(5, 5, 5, 0.82);
        /* затемнення поверх відео */
      }

      /* Стан "активний" — керується через JS */
      .fire-bg.is-active .fire-bg-video {
        opacity: 0.55;
      }

      /* =========================================================
Усі секції що мають свій фон — піднімаємо над відео
========================================================= */

      .hero,
      footer {
        position: relative;
        z-index: 2;
        isolation: isolate;
        /* власний stacking context */
      }

      /* Секції що «плавають» над відео-фоном */
      .works,
      .about,
      .benefits {
        position: relative;
        z-index: 1;
        /* напівпрозорий власний фон — відео просвічує знизу */
        background: transparent;
      }

      /* Щоб попередній суцільний фон не перекривав відео */
      /* .works    { background: rgba(11, 11, 12, 0.72); } */
      /* .about    { background: rgba(5,  5,  5,  0.78); } */
      /* .benefits { background: transparent; } */

      /* =========================================================
BENEFITS SECTION
========================================================= */

      .benefits {
        padding: 120px 0 90px;
      }

      .benefits::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right,
            transparent,
            var(--color-gold),
            transparent);
      }

      /* =========================================================
BENEFITS HEADER
========================================================= */

      .benefits-header {
        text-align: center;
        margin-bottom: 70px;
      }

      .benefits-label {
        font-size: 12px;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 18px;
      }

      .benefits-title {
        font-family: "Oswald", sans-serif;
        font-size: clamp(40px, 5.5vw, 76px);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--color-white);
        line-height: 1.05;
        margin-bottom: 20px;
      }

      .benefits-title span {
        color: var(--color-gold);
      }

      .benefits-desc {
        font-size: 16px;
        color: var(--color-gray);
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.7;
      }

      /* =========================================================
BENEFITS GRID
========================================================= */

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        gap: 2px;
        margin-bottom: 2px;
      }

      /* =========================================================
BENEFIT CARD
========================================================= */

      .benefit-card {
        position: relative;
        padding: 42px 36px;
        background: rgba(11, 11, 12, 0.75);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        overflow: hidden;
        transition:
          border-color 0.4s,
          background 0.4s;
      }

      .benefit-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-gold);
        transition: width 0.5s ease;
      }

      .benefit-card:hover {
        border-color: rgba(200, 161, 90, 0.3);
        background: rgba(20, 15, 5, 0.85);
      }

      .benefit-card:hover::after {
        width: 100%;
      }

      /* Розмірні модифікатори */
      .benefit-card--featured {
        grid-column: span 1;
        grid-row: span 2;
        background: rgba(200, 161, 90, 0.08);
        border-color: rgba(200, 161, 90, 0.2);
      }

      .benefit-card--featured:hover {
        background: rgba(200, 161, 90, 0.13);
        border-color: rgba(200, 161, 90, 0.45);
      }

      .benefit-card--wide {
        grid-column: span 2;
      }

      /* =========================================================
CARD ELEMENTS
========================================================= */

      .benefit-card-num {
        font-family: "Oswald", sans-serif;
        font-size: 11px;
        letter-spacing: 4px;
        color: rgba(200, 161, 90, 0.4);
        margin-bottom: 24px;
      }

      .benefit-card-icon {
        width: 44px;
        height: 44px;
        color: var(--color-gold);
        margin-bottom: 22px;
      }

      .benefit-card-icon svg {
        width: 100%;
        height: 100%;
      }

      .benefit-card-title {
        font-family: "Oswald", sans-serif;
        font-size: 22px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--color-white);
        line-height: 1.2;
        margin-bottom: 16px;
      }

      .benefit-card--featured .benefit-card-title {
        font-size: 28px;
      }

      .benefit-card-text {
        font-size: 14px;
        line-height: 1.8;
        color: var(--color-gray);
      }

      .benefit-card-tag {
        display: inline-block;
        margin-top: 24px;
        padding: 6px 14px;
        border: 1px solid rgba(200, 161, 90, 0.4);
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-gold);
      }

      /* =========================================================
PROCESS ROW
========================================================= */

      .benefits-process {
        padding: 60px 0 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
      }

      .benefits-process-title {
        font-size: 11px;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--color-gray);
        margin-bottom: 36px;
        text-align: center;
      }

      .benefits-steps {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
      }

      .benefits-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 24px;
        width: 10.87rem;
      }

      .benefits-step-num {
        width: 52px;
        height: 52px;
        border: 1px solid var(--color-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Oswald", sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: var(--color-gold);
      }

      .benefits-step-label {
        font-size: 12px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--color-gray);
        text-align: center;
        line-height: 1.6;
      }

      .benefits-step-arrow {
        font-size: 20px;
        color: rgba(200, 161, 90, 0.35);
        flex-shrink: 0;
        margin-bottom: 3.75rem;
      }

      /* =========================================================
BENEFITS CTA
========================================================= */

      .benefits-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 44px 52px;
        background: rgba(200, 161, 90, 0.06);
        border: 1px solid rgba(200, 161, 90, 0.25);
        backdrop-filter: blur(6px);
        flex-wrap: wrap;
      }

      .benefits-cta-title {
        font-family: "Oswald", sans-serif;
        font-size: 26px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-white);
        margin-bottom: 8px;
      }

      .benefits-cta-sub {
        font-size: 14px;
        color: var(--color-gray);
      }

      .benefits-cta-right {
        display: flex;
        gap: 16px;
        flex-shrink: 0;
        flex-wrap: wrap;
      }

      .benefits-btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 56px;
        padding: 0 34px;
        background: var(--color-gold);
        color: var(--color-black);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
        white-space: nowrap;
      }

      .benefits-btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-gold);
      }

      .benefits-btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 56px;
        padding: 0 34px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--color-gray-light);
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
        white-space: nowrap;
      }

      .benefits-btn-secondary:hover {
        border-color: var(--color-gold);
        color: var(--color-gold);
      }

      /* =========================================================
BENEFITS TABLET
========================================================= */

      @media (max-width: 1100px) {
        .benefits-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .benefit-card--featured {
          grid-row: span 1;
        }

        .benefit-card--wide {
          grid-column: span 2;
        }
      }

      /* =========================================================
BENEFITS MOBILE
========================================================= */

      @media (max-width: 768px) {
        .benefits {
          padding: 80px 0 60px;
        }

        .benefits-grid {
          grid-template-columns: 1fr;
          gap: 1px;
        }

        .benefit-card--featured,
        .benefit-card--wide {
          grid-column: span 1;
          grid-row: span 1;
        }

        .benefit-card {
          padding: 32px 24px;
        }

        .benefits-steps {
          gap: 16px;
          flex-direction: column;
        }

        .benefits-step-arrow {
          transform: rotate(90deg);
          margin-bottom: 0;
        }

        .benefits-cta {
          flex-direction: column;
          text-align: center;
          padding: 32px 24px;
        }

        .benefits-cta-right {
          flex-direction: column;
          width: 100%;
        }

        .benefits-btn-primary,
        .benefits-btn-secondary {
          width: 100%;
        }
      }

      @media (max-width: 480px) {
        .benefits-grid {
          gap: 0;
        }

        .benefit-card {
          border-left: none;
          border-right: none;
        }
      }

      /* =========================================================
CONTACTS SECTION
========================================================= */

      .contacts {
        padding: 120px 0 0;
        background: var(--color-graphite);
        position: relative;
        z-index: 2;
      }

      .contacts-line-top {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right,
            transparent,
            var(--color-gold),
            transparent);
        margin-bottom: 80px;
      }

      /* =========================================================
CONTACTS HEADER
========================================================= */

      .contacts-header {
        text-align: center;
        margin-bottom: 70px;
      }

      .contacts-label {
        font-size: 12px;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 16px;
      }

      .contacts-title {
        font-family: "Oswald", sans-serif;
        font-size: clamp(42px, 6vw, 80px);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--color-white);
        line-height: 1;
        margin-bottom: 18px;
      }

      .contacts-desc {
        font-size: 16px;
        color: var(--color-gray);
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.7;
      }

      /* =========================================================
CONTACTS GRID
========================================================= */

      .contacts-grid {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 60px;
        align-items: start;
        padding-bottom: 80px;
      }

      /* =========================================================
CONTACT ITEMS
========================================================= */

      .contacts-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 20px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        margin-bottom: 8px;
        transition:
          border-color 0.35s,
          background 0.35s;
        text-decoration: none;
        cursor: pointer;
      }

      .contacts-item:hover {
        border-color: rgba(200, 161, 90, 0.4);
        background: rgba(200, 161, 90, 0.04);
      }

      .contacts-item-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        color: var(--color-gold);
        margin-top: 2px;
      }

      .contacts-item-icon svg {
        width: 100%;
        height: 100%;
      }

      .contacts-item-body {
        flex: 1;
      }

      .contacts-item-label {
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--color-gray);
        margin-bottom: 5px;
      }

      .contacts-item-value {
        font-family: "Oswald", sans-serif;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--color-white);
        margin-bottom: 4px;
      }

      .contacts-item-sub {
        font-size: 12px;
        color: var(--color-gray);
        letter-spacing: 0.5px;
      }

      .contacts-item-arrow {
        font-size: 18px;
        color: rgba(200, 161, 90, 0.5);
        align-self: center;
        transition:
          transform 0.3s,
          color 0.3s;
      }

      .contacts-item:hover .contacts-item-arrow {
        color: var(--color-gold);
        transform: translateX(4px);
      }

      /* =========================================================
DIVIDER
========================================================= */

      .contacts-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.07);
        margin: 24px 0;
      }

      /* =========================================================
SOCIAL
========================================================= */

      .contacts-social-label {
        font-size: 11px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--color-gray);
        margin-bottom: 18px;
      }

      .contacts-socials {
        display: flex;
        gap: 12px;
      }

      .contacts-social {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-gray-light);
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition:
          border-color 0.35s,
          color 0.35s,
          background 0.35s;
        text-decoration: none;
      }

      .contacts-social svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
      }

      .contacts-social:hover {
        border-color: var(--color-gold);
        color: var(--color-gold);
        background: rgba(200, 161, 90, 0.06);
      }

      /* =========================================================
MAP
========================================================= */

      .contacts-map-wrap {
        position: relative;
        margin-bottom: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
      }

      .contacts-map {
        display: block;
        width: 100%;
        height: 280px;
        filter: grayscale(0.6) brightness(0.8) contrast(1.1);
        transition: filter 0.4s;
      }

      .contacts-map-wrap:hover .contacts-map {
        filter: grayscale(0.2) brightness(0.9) contrast(1.05);
      }

      .contacts-map-badge {
        position: absolute;
        bottom: 14px;
        left: 14px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--color-dark);
        border: 1px solid var(--color-gold);
        padding: 7px 14px;
        margin-left: 48px;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-gold);
        backdrop-filter: blur(6px);
        pointer-events: none;
      }

      /* =========================================================
FORM
========================================================= */

      .contacts-form-block {
        padding: 36px;
        background: rgba(11, 11, 12, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(6px);
      }

      .contacts-form-title {
        font-family: "Oswald", sans-serif;
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-white);
        margin-bottom: 28px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }

      .cform-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .cform-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
      }

      .cform-label {
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--color-gray);
      }

      .cform-input {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-white);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        padding: 13px 16px;
        outline: none;
        transition:
          border-color 0.3s,
          background 0.3s;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
      }

      .cform-input::placeholder {
        color: rgba(189, 189, 189, 0.4);
      }

      .cform-input:focus {
        border-color: var(--color-gold);
        background: rgba(200, 161, 90, 0.05);
      }

      .cform-select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a15a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
      }

      .cform-select option {
        background: var(--color-graphite);
        color: var(--color-white);
      }

      .cform-textarea {
        resize: vertical;
        min-height: 88px;
      }

      /* =========================================================
FAQ SECTION
========================================================= */

      .faq {
        padding: 120px 0 90px;
        background: rgba(11, 11, 12, 0.85);
        position: relative;
        z-index: 1;
      }

      .faq-line-top {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right,
            transparent,
            var(--color-gold),
            transparent);
        margin-bottom: 80px;
      }

      /* =========================================================
FAQ HEADER
========================================================= */

      .faq-header {
        text-align: center;
        margin-bottom: 70px;
      }

      .faq-label {
        font-size: 12px;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 16px;
      }

      .faq-title {
        font-family: "Oswald", sans-serif;
        font-size: clamp(42px, 6vw, 80px);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--color-white);
        line-height: 1;
        margin-bottom: 18px;
      }

      .faq-desc {
        font-size: 16px;
        color: var(--color-gray);
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.7;
      }

      /* =========================================================
FAQ GRID — дві колонки
========================================================= */

      .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 40px;
        margin-bottom: 70px;
      }

      /* =========================================================
FAQ ITEM
========================================================= */

      .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .faq-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      /* =========================================================
QUESTION BUTTON
========================================================= */

      .faq-q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 22px 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: var(--color-gray-light);
        text-align: left;
        transition: color 0.3s;
      }

      .faq-q:hover,
      .faq-q[aria-expanded="true"] {
        color: var(--color-white);
      }

      /* =========================================================
ICON — plus / minus
========================================================= */

      .faq-icon {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        border: 1px solid rgba(200, 161, 90, 0.4);
        border-radius: 50%;
        position: relative;
        transition:
          border-color 0.3s,
          background 0.3s,
          transform 0.4s;
      }

      .faq-icon::before,
      .faq-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: var(--color-gold);
        transition:
          transform 0.4s ease,
          opacity 0.3s;
      }

      /* горизонтальна лінія */
      .faq-icon::before {
        width: 10px;
        height: 1px;
        transform: translate(-50%, -50%);
      }

      /* вертикальна лінія */
      .faq-icon::after {
        width: 1px;
        height: 10px;
        transform: translate(-50%, -50%);
      }

      /* При відкритті — вертикальна лінія зникає (стає мінусом) */
      .faq-q[aria-expanded="true"] .faq-icon {
        background: rgba(200, 161, 90, 0.12);
        border-color: var(--color-gold);
        transform: rotate(45deg);
      }

      /* =========================================================
ANSWER PANEL
========================================================= */

      .faq-a {
        overflow: hidden;
        max-height: 0;
        transition:
          max-height 0.45s ease,
          padding 0.3s ease;
      }

      .faq-a p {
        font-size: 14px;
        line-height: 1.85;
        color: var(--color-gray);
        padding-bottom: 22px;
      }

      .faq-a.is-open {
        max-height: 300px;
      }

      /* =========================================================
FAQ CTA
========================================================= */

      .faq-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 40px 52px;
        border: 1px solid rgba(200, 161, 90, 0.25);
        background: rgba(200, 161, 90, 0.04);
        flex-wrap: wrap;
      }

      .faq-cta-text {
        font-family: "Oswald", sans-serif;
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-white);
      }

      .faq-cta-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }

      .faq-btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 54px;
        padding: 0 32px;
        background: var(--color-gold);
        color: var(--color-black);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
        white-space: nowrap;
      }

      .faq-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold);
      }

      .faq-btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 54px;
        padding: 0 32px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--color-gray-light);
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: var(--transition);
        white-space: nowrap;
      }

      .faq-btn-secondary:hover {
        border-color: var(--color-gold);
        color: var(--color-gold);
      }

      /* =========================================================
FAQ TABLET
========================================================= */

      @media (max-width: 1100px) {
        .faq-grid {
          grid-template-columns: 1fr;
          gap: 0;
        }

        /* другій колонці прибираємо дублювання border-top */
        .faq-col:last-child .faq-item:first-child {
          border-top: none;
        }
      }

      /* =========================================================
FAQ MOBILE
========================================================= */

      @media (max-width: 768px) {
        .faq {
          padding: 80px 0 60px;
        }

        .faq-line-top {
          margin-bottom: 50px;
        }

        .faq-q {
          font-size: 14px;
          padding: 18px 0;
        }

        .faq-cta {
          flex-direction: column;
          text-align: center;
          padding: 28px 20px;
        }

        .faq-cta-actions {
          flex-direction: column;
          width: 100%;
        }

        .faq-btn-primary,
        .faq-btn-secondary {
          width: 100%;
        }
      }

      /* =========================================================
FORM VALIDATION STATES
========================================================= */

      /* Зірочка обов'язкового поля */
      .cform-req {
        color: var(--color-orange);
        font-size: 13px;
        margin-left: 2px;
      }

      /* Підказка під формою */
      .cform-required-note {
        font-size: 11px;
        color: var(--color-gray);
        letter-spacing: 0.5px;
        margin-bottom: 6px;
        margin-top: -4px;
      }

      /* Inline повідомлення про помилку */
      .cform-error {
        font-size: 12px;
        color: var(--color-orange);
        letter-spacing: 0.4px;
        min-height: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
          max-height 0.25s ease,
          opacity 0.25s ease,
          margin-top 0.25s ease;
        margin-top: 0;
      }

      .cform-error--visible {
        max-height: 40px;
        opacity: 1;
        margin-top: 6px;
      }

      /* Поле з помилкою */
      .cform-input--error {
        border-color: var(--color-orange) !important;
        background: rgba(255, 91, 31, 0.05) !important;
      }

      /* Поле правильно заповнене */
      .cform-input--ok {
        border-color: rgba(200, 161, 90, 0.55) !important;
        background: rgba(200, 161, 90, 0.04) !important;
      }

      .cform-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        height: 56px;
        background: var(--color-gold);
        color: var(--color-black);
        font-family: "Inter", sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        transition:
          background 0.35s,
          transform 0.3s,
          box-shadow 0.35s;
        margin-top: 4px;
      }

      .cform-submit:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold);
      }

      .cform-submit:active {
        transform: translateY(0);
      }

      .cform-success {
        margin-top: 16px;
        padding: 14px 20px;
        background: rgba(200, 161, 90, 0.1);
        border: 1px solid rgba(200, 161, 90, 0.3);
        color: var(--color-gold);
        font-size: 14px;
        letter-spacing: 0.5px;
        text-align: center;
      }

      /* =========================================================
FOOTER
========================================================= */

      .footer {
        background: var(--color-black);
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 28px 0;
        position: relative;
        z-index: 2;
      }

      .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
      }

      .footer-logo img {
        opacity: 0.75;
        transition: opacity 0.3s;
      }

      .footer-logo img:hover {
        opacity: 1;
      }

      .footer-copy {
        font-size: 12px;
        color: var(--color-gray);
        letter-spacing: 1px;
        text-align: center;
      }

      .footer-back-btn {
        font-family: "Inter", sans-serif;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-gray);
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 18px;
        cursor: pointer;
        transition:
          color 0.3s,
          border-color 0.3s;
      }

      .footer-back-btn:hover {
        color: var(--color-gold);
        border-color: var(--color-gold);
      }

      /* =========================================================
CONTACTS TABLET
========================================================= */

      @media (max-width: 1100px) {
        .contacts-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }

      /* =========================================================
CONTACTS MOBILE
========================================================= */

      @media (max-width: 768px) {
        .contacts {
          padding: 80px 0 0;
        }

        .contacts-line-top {
          margin-bottom: 50px;
        }

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

        .contacts-form-block {
          padding: 24px 20px;
        }

        .contacts-socials {
          flex-wrap: wrap;
        }

        .contacts-social {
          flex: 1 0 auto;
          justify-content: center;
        }

        .footer-inner {
          flex-direction: column;
          text-align: center;
          gap: 14px;
        }
      }