:root {
        --color1: #c5b9aa;
        --color2: #e1e9ca;
        --color3: #080800;
        --color4: #7c7872;
        --color5: #f8f8f8;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Georgia", "Times New Roman", serif;
        background-color: var(--color5);
        color: var(--color3);
        overflow-x: hidden;
      }

      .parallax-container {
        position: relative;
        overflow: hidden;
      }

      .parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        will-change: transform;
        transition: transform 0.1s ease-out;
      }

      .fade-in {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .slide-left {
        opacity: 0;
        transform: translateX(-100px);
        transition: opacity 1s ease, transform 1s ease;
      }

      .slide-left.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .slide-right {
        opacity: 0;
        transform: translateX(100px);
        transition: opacity 1s ease, transform 1s ease;
      }

      .slide-right.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .scale-in {
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .scale-in.visible {
        opacity: 1;
        transform: scale(1);
      }

      .header-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: rgba(248, 248, 248, 0.95);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
      }

      .header-scrolled {
        box-shadow: 0 2px 20px rgba(8, 8, 0, 0.1);
      }

      .nav-link {
        position: relative;
        color: var(--color3);
        text-decoration: none;
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--color1);
        transition: width 0.3s ease;
      }

      .nav-link:hover::after {
        width: 80%;
      }

      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color5);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1001;
        overflow-y: auto;
      }

      .mobile-menu.active {
        right: 0;
      }

      .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(8, 8, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
      }

      .menu-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      .btn-primary {
        background-color: var(--color1);
        color: var(--color5);
        padding: 1rem 2.5rem;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        border: 2px solid var(--color1);
      }

      .btn-primary:hover {
        background-color: transparent;
        color: var(--color1);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(197, 185, 170, 0.3);
      }

      .btn-secondary {
        background-color: transparent;
        color: var(--color3);
        padding: 1rem 2.5rem;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        border: 2px solid var(--color3);
      }

      .btn-secondary:hover {
        background-color: var(--color3);
        color: var(--color5);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(8, 8, 0, 0.2);
      }

      .decorative-line {
        position: relative;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--color1),
          transparent
        );
      }

      .decorative-circle {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 2px solid var(--color2);
        position: absolute;
        opacity: 0.3;
      }

      .image-parallax {
        transition: transform 0.3s ease;
      }

      .image-parallax:hover {
        transform: scale(1.05);
      }

      
      .hero-enhanced {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
      }

      .hero-bg-gradient {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle at 70% 50%,
          var(--color2) 0%,
          var(--color5) 40%,
          transparent 70%
        );
        opacity: 0.4;
        animation: rotateGradient 25s linear infinite;
        will-change: transform;
        z-index: 1;
      }

      @keyframes rotateGradient {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .hero-particles {
        position: absolute;
        width: 50%;
        height: 100%;
        top: 0;
        right: 0;
        pointer-events: none;
        z-index: 2;
      }

      .particle {
        position: absolute;
        background: var(--color1);
        border-radius: 50%;
        opacity: 0.12;
        will-change: transform;
      }

      .hero-floating-shape {
        position: absolute;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        opacity: 0.08;
        will-change: transform;
        animation: morphShape 10s ease-in-out infinite;
        z-index: 2;
      }

      @keyframes morphShape {
        0%,
        100% {
          border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        }
        50% {
          border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        }
      }

      .hero-shape-1 {
        top: 5%;
        right: 5%;
        width: 500px;
        height: 500px;
        background: var(--color1);
        animation-delay: 0s;
      }

      .hero-shape-2 {
        bottom: 10%;
        right: 10%;
        width: 350px;
        height: 350px;
        background: var(--color2);
        animation-delay: 3s;
      }

      .hero-content {
        position: relative;
        z-index: 20;
      }

      .hero-title {
        opacity: 0;
        transform: translateY(30px);
      }

      .hero-title.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 1s ease, transform 1s ease;
      }

      .hero-description {
        opacity: 0;
        transform: translateY(30px);
      }

      .hero-description.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
      }

      .hero-buttons {
        opacity: 0;
        transform: translateY(30px);
      }

      .hero-buttons.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
      }

      .hero-image-wrapper {
        position: relative;
        will-change: transform;
        perspective: 1000px;
        z-index: 15;
        opacity: 0;
        transform: translateX(50px);
      }

      .hero-image-wrapper.visible {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.3s;
      }

      .hero-image-container {
        position: relative;
        will-change: transform;
        transform-style: preserve-3d;
      }

      @media (max-width: 768px) {
        .hero-shape-1,
        .hero-shape-2 {
          width: 200px;
          height: 200px;
        }

        .particle {
          display: none;
        }

        .hero-particles {
          width: 100%;
        }
      }

      .service-item {
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
      }

      .service-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(197, 185, 170, 0.2),
          transparent
        );
        transition: left 0.6s ease;
      }

      .service-item:hover::before {
        left: 100%;
      }

      .floating-element {
        animation: floating 6s ease-in-out infinite;
      }

      @keyframes floating {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-20px);
        }
      }

      .text-gradient {
        background: linear-gradient(135deg, var(--color1), var(--color4));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      @media (max-width: 768px) {
        .decorative-circle {
          width: 150px;
          height: 150px;
        }
      }

      
      .process-enhanced {
        background: linear-gradient(
          135deg,
          var(--color5) 0%,
          var(--color2) 100%
        );
        position: relative;
      }

      .process-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
      }

      .process-item {
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        border: 2px solid transparent;
      }

      .process-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border-color: var(--color1);
      }

      .process-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--color1), var(--color2));
      }

      .process-large {
        grid-column: span 6;
      }

      .process-medium {
        grid-column: span 4;
      }

      .process-small {
        grid-column: span 3;
      }

      .process-number {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 5rem;
        font-weight: bold;
        color: var(--color1);
        opacity: 0.1;
        line-height: 1;
      }

      .process-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--color1), var(--color2));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 30px rgba(197, 185, 170, 0.3);
        position: relative;
        z-index: 2;
      }

      .process-icon {
        width: 40px;
        height: 40px;
        display: block;
      }

      .process-icon svg {
        width: 100%;
        height: 100%;
      }

      .process-title {
        font-size: 1.75rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: var(--color3);
        position: relative;
        z-index: 2;
      }

      .process-text {
        font-size: 1.05rem;
        color: var(--color4);
        line-height: 1.7;
        position: relative;
        z-index: 2;
      }

      .process-connecting-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, var(--color1), transparent);
        top: 50%;
        opacity: 0.3;
      }

      .process-decorative-circle {
        position: absolute;
        border-radius: 50%;
        border: 2px solid var(--color1);
        opacity: 0.15;
      }

      .process-circle-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
      }

      .process-circle-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -100px;
      }

      @media (max-width: 1024px) {
        .process-large,
        .process-medium,
        .process-small {
          grid-column: span 6;
        }
      }

      @media (max-width: 768px) {
        .process-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .process-large,
        .process-medium,
        .process-small {
          grid-column: span 1;
        }

        .process-item {
          padding: 2rem 1.5rem;
        }

        .process-number {
          font-size: 4rem;
        }

        .process-title {
          font-size: 1.5rem;
        }
      }

      
      .wrap {
        background: var(--color5);
        padding: 100px 0;
      }

      .blocks__list {
        max-width: 700px;
        width: 100%;
        margin: auto;
        margin-bottom: 100px;
        padding: 0 1rem;
      }

      .block__item {
        border: 1px solid var(--color1);
        color: var(--color3);
        padding: 45px 25px;
        border-radius: 25px;
        height: 300px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .block__item:not(:last-child) {
        margin-bottom: 50px;
      }

      .block__item:first-child {
        position: sticky;
        top: 100px;
        background: linear-gradient(135deg, var(--color1) 0%, #b5a898 100%);
      }

      .block__item:nth-child(2) {
        position: sticky;
        top: 120px;
        background: linear-gradient(135deg, var(--color2) 0%, #d1d9ba 100%);
      }

      .block__item:nth-child(3) {
        position: sticky;
        top: 140px;
        background: linear-gradient(135deg, #d4cfc7 0%, #c4bfb7 100%);
      }

      .block__item:nth-child(4) {
        position: sticky;
        top: 160px;
        background: linear-gradient(135deg, var(--color4) 0%, #98938a 100%);
      }

      .block__item:nth-child(5) {
        position: sticky;
        top: 180px;
        background: linear-gradient(135deg, #b8b3aa 0%, #a8a39a 100%);
      }

      .block__item:nth-child(6) {
        position: sticky;
        top: 200px;
        background: linear-gradient(135deg, #c5b9aa 0%, #b5a898 100%);
      }

      .block__item:nth-child(7) {
        position: sticky;
        top: 220px;
        background: linear-gradient(135deg, #7c7872 0%, #6c6862 100%);
      }

      .block__item:nth-child(8) {
        position: sticky;
        top: 240px;
        background: linear-gradient(135deg, #a8a39a 0%, #98938a 100%);
      }

      .block__item-number {
        font-size: 3rem;
        font-weight: bold;
        opacity: 0.2;
        line-height: 1;
        margin-bottom: 0.5rem;
      }

      .block__item-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
      }

      .block__item-text {
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.9;
      }

      .other__blocks {
        width: 100%;
        height: 500px;
        background-color: var(--color5);
      }

      @media (max-width: 768px) {
        .block__item {
          height: 350px;
          padding: 35px 20px;
        }

        .block__item:first-child {
          top: 80px;
        }
        .block__item:nth-child(2) {
          top: 95px;
        }
        .block__item:nth-child(3) {
          top: 110px;
        }
        .block__item:nth-child(4) {
          top: 125px;
        }
        .block__item:nth-child(5) {
          top: 140px;
        }
        .block__item:nth-child(6) {
          top: 155px;
        }
        .block__item:nth-child(7) {
          top: 170px;
        }
        .block__item:nth-child(8) {
          top: 185px;
        }

        .block__item-title {
          font-size: 1.25rem;
        }

        .block__item-number {
          font-size: 2.5rem;
        }
      }

      
      .photo-strips-container {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        background: linear-gradient(
          135deg,
          var(--color5) 0%,
          var(--color2) 50%,
          var(--color5) 100%
        );
      }

      .photo-strip {
        position: absolute;
        width: 120%;
        height: 200px;
        overflow: hidden;
        display: flex;
        gap: 20px;
        will-change: transform;
      }

      .photo-strip-1 {
        top: 50px;
        left: -10%;
        transform: rotate(-4deg);
      }

      .photo-strip-2 {
        bottom: 50px;
        left: -10%;
        transform: rotate(4deg);
      }

      .photo-strip-inner {
        display: flex;
        gap: 20px;
        will-change: transform;
        transition: transform 0.1s ease-out;
      }

      .photo-strip-item {
        flex-shrink: 0;
        width: 350px;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
      }

      .photo-strip-item:hover {
        transform: scale(1.05);
        z-index: 10;
      }

      .photo-strip-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      @media (max-width: 768px) {
        .photo-strips-container {
          height: 400px;
        }

        .photo-strip {
          height: 150px;
        }

        .photo-strip-item {
          width: 250px;
          height: 150px;
        }

        .photo-strip-1 {
          top: 30px;
        }

        .photo-strip-2 {
          bottom: 30px;
        }
      }

      
      .cookie-popup {
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        background-color: rgba(8, 8, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transition: bottom 0.5s ease;
      }

      .cookie-popup.show {
        bottom: 0;
      }

      .cookie-popup-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .cookie-popup-text {
        flex: 1;
        min-width: 300px;
      }

      .cookie-popup-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--color1);
        margin-bottom: 0.5rem;
      }

      .cookie-popup-description {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--color5);
        margin: 0;
      }

      .cookie-popup-link {
        color: var(--color1);
        text-decoration: underline;
        transition: opacity 0.3s ease;
      }

      .cookie-popup-link:hover {
        opacity: 0.8;
      }

      .cookie-popup-buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
      }

      .cookie-accept-btn,
      .cookie-decline-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
      }

      .cookie-accept-btn {
        background-color: var(--color1);
        color: var(--color5);
      }

      .cookie-accept-btn:hover {
        background-color: #b5a898;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(197, 185, 170, 0.4);
      }

      .cookie-decline-btn {
        background-color: transparent;
        color: var(--color5);
        border: 2px solid var(--color4);
      }

      .cookie-decline-btn:hover {
        background-color: var(--color4);
        border-color: var(--color4);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(124, 120, 114, 0.3);
      }

      @media (max-width: 768px) {
        .cookie-popup {
          padding: 1.5rem;
        }

        .cookie-popup-content {
          flex-direction: column;
          align-items: stretch;
          gap: 1.5rem;
        }

        .cookie-popup-title {
          font-size: 1.25rem;
        }

        .cookie-popup-description {
          font-size: 0.9rem;
        }

        .cookie-popup-buttons {
          flex-direction: column;
          width: 100%;
        }

        .cookie-accept-btn,
        .cookie-decline-btn {
          width: 100%;
          padding: 1rem;
        }
      }

.scale-in:hover {
          transform: scale(1.02);
        }

article a:hover h2,
        article a:hover h3 {
          color: var(--color1);
        }

.prose-custom h2 {
        scroll-margin-top: 100px;
    }
    
    .prose-custom ul li strong,
    .prose-custom p strong {
        font-weight: 700;
    }

#contactForm input:focus,
        #contactForm textarea:focus {
          box-shadow: 0 0 0 3px rgba(197, 185, 170, 0.1);
        }

        #contactForm button:hover {
          transform: translateY(-2px);
          background-color: var(--color4);
        }

        #contactForm button:active {
          transform: translateY(0);
        }

        @media (max-width: 640px) {
          #successNotification {
            left: 1rem;
            right: 1rem;
            top: 5rem;
          }
        }

article:hover {
          border-color: var(--color1);
        }

.faq-question:hover {
          background-color: var(--color2);
        }

        .faq-item:hover {
          border-color: var(--color1);
        }

article:hover {
          border-color: var(--color1);
        }

.slide-left,
        .slide-right,
        .fade-in,
        .scale-in {
          transition-delay: 0.2s;
        }

article:hover {
          border-color: var(--color1);
        }
