 :root {
     --color-bg: #FCFCF9;
     --color-bg-light: #F4F4F1;
     --color-text: #2A2A2A;
     --color-text-light: #666666;
     --color-accent: #A58B6D;
     --color-white: #FFFFFF;
     --color-btn: #b59b7a;
     --font-serif: 'Playfair Display', serif;
     --font-sans: 'Lato', sans-serif;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-sans);
     color: var(--color-text);
     background-color: var(--color-bg);
     line-height: 1.6;
     font-size: 16px;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: var(--font-serif);
     font-weight: 400;
     margin-bottom: 20px;
     color: var(--color-btn);
 }

 h2 {
     font-size: 2.5rem;
     color: var(--color-btn);
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: color 0.3s ease, opacity 0.3s ease;
 }

 .text-center {
     text-align: center;
 }

 .subtitle {
     color: var(--color-text-light);
     margin-bottom: 0px;
     font-size: 1.1rem;
     margin-left: auto;
     margin-right: auto;
 }

 .p-b-10 {
     padding-bottom: 10px;
 }

 .p-b-15 {
     padding-bottom: 15px;
 }

 .p-t-15 {
     padding-top: 15px;
 }

 .p-b-25 {
     padding-bottom: 25px;
 }

 .text-center {
     text-align: center;
 }

 .section {
     width: 100%;
     padding: 30px 0;
 }

 .container {
     max-width: 1500px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .light-bg {
     background-color: var(--color-bg-light);
 }

 .btn {
     display: inline-block;
     padding: 14px 35px;
     font-family: var(--font-sans);
     text-transform: uppercase;
     letter-spacing: 1.5px;
     font-size: 0.85rem;
     transition: all 0.4s ease;
     cursor: pointer;
     border-radius: 2px;
 }

 .btn-outline {
     border: 1px solid var(--color-white);
     color: var(--color-white);
 }

 .btn-outline:hover {
     background-color: var(--color-white);
     color: var(--color-text);
 }

 .btn-outline.dark {
     border-color: var(--color-text);
     color: var(--color-text);
 }

 .btn-outline.dark:hover {
     background-color: var(--color-text);
     color: var(--color-white);
 }

 .btn-solid {
     background-color: var(--color-text);
     color: var(--color-white);
     border: 1px solid var(--color-text);
 }

 .btn-solid.large {
     padding: 18px 45px;
     font-size: 0.95rem;
     font-weight: 700;
 }

 .btn-solid:hover {
     background-color: transparent;
     color: var(--color-text);
 }

 .link-arrow {
     display: inline-block;
     margin-top: 15px;
     font-style: italic;
     font-family: var(--font-serif);
     color: var(--color-text-light);
     font-size: 1.1rem;
 }

 .link-arrow:hover {
     color: var(--color-text);
     padding-left: 5px;
 }

 .main-header {
     width: 100%;
     position: fixed;
     top: 0;
     left: 0;
     z-index: 1000;
     color: var(--color-white);
     padding: 30px 0;
     transition: all 0.4s ease;
 }

 .main-header.scrolled {
     background-color: rgba(26, 26, 26, 0.98);
     padding: 15px 0;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
 }

 .hero-section {
     position: relative;
     height: 100vh;
     min-height: 700px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
     color: var(--color-white);
     padding: 0;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     z-index: 1;
 }

 .hero-container {
     position: relative;
     z-index: 2;
     max-width: 900px;
 }

 .hero-container h1 {
     font-size: 4.5rem;
     font-style: italic;
     margin-bottom: 20px;
     line-height: 1.1;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
 }

 .hero-container p {
     font-size: 1.2rem;
     margin-bottom: 50px;
     font-weight: 300;
     letter-spacing: 1px;
 }

 .hero-trusted {
     margin-top: 80px;
     font-style: italic;
     font-family: var(--font-serif);
     font-size: 1rem;
     opacity: 0.8;
     letter-spacing: 1px;
 }

 .grid-3 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
 }

 .grid-2 {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 60px;
     align-items: center;
 }

 .img-box {
     width: 100%;
     height: 350px;
     background-color: #E0E0E0;
     margin-bottom: 25px;
     background-position: center;
     background-size: cover;
 }

 .img-box.portrait {
     height: 600px;
 }

 .img-box.mini {
     height: 250px;
 }

 .service-card-premium h3 {
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 .service-card-premium p {
     font-size: 1rem;
     color: var(--color-text-light);
     line-height: 1.8;
     margin-bottom: 10px;
 }

 .service-card-premium {
     background: var(--color-white);
     transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     position: relative;
     overflow: hidden;
     border-radius: 4px;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .img-wrapper {
     position: relative;
     overflow: hidden;
     height: 380px;
 }

 .service-card-premium .img-box {
     margin-bottom: 0;
     height: 100%;
     transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
     background-position: center;
     background-size: cover;
 }

 .img-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.03));
     pointer-events: none;
 }

 .card-content {
     padding: 30px 20px;
     text-align: center;
     display: flex;
     flex-direction: column;
     flex: 1;
 }

 .card-content p {
     flex-grow: 1;
 }

 .card-category {
     display: block;
     font-size: 0.65rem;
     text-transform: uppercase;
     letter-spacing: 2.5px;
     color: var(--color-btn);
     margin-bottom: 12px;
     font-weight: 700;
 }


 .service-card-premium:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
 }

 .service-card-premium:hover .img-box {
     transform: scale(1.05);
 }

 .video-placeholder::before {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.3);
 }

 .video-wrapper {
     width: 100%;
     max-width: 1400px;
     margin: 0 auto;
 }

 .video-wrapper video {
     width: 100%;
     height: auto;
     display: block;
 }

 .why-section {
     background: linear-gradient(to bottom, #FCFCF9 0%, #F6F5F2 100%);
 }

 .why-title {
     margin-bottom: 25px;
 }

 .why-grid {
     margin-top: 70px;
     display: grid;
     gap: 40px;
 }

 .why-card {
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: stretch;
     background: var(--color-white);
     border: 1px solid #EAEAEA;
     overflow: hidden;
     position: relative;
     transition: box-shadow 0.4s ease, transform 0.4s ease;
 }

 .why-card:hover {
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
     transform: translateY(-4px);
 }

 .why-content {
     padding: 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .why-content h3 {
     font-size: 1.6rem;
     margin-bottom: 20px;
 }


 .why-image {
     position: relative;
     min-height: 300px;
     overflow: hidden;
 }

 .why-image img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .why-image.left::after,
 .why-image.right::after {
     content: "";
     position: absolute;
     top: 0;
     width: 60%;
     height: 100%;
     pointer-events: none;
 }

 .why-image.left::after {
     right: 0;
     background: linear-gradient(to right,
             rgba(255, 255, 255, 0) 0%,
             rgba(255, 255, 255, 0.6) 40%,
             rgba(255, 255, 255, 0.95) 75%,
             rgba(255, 255, 255, 1) 100%);
 }

 .why-image.right::after {
     left: 0;
     background: linear-gradient(to left,
             rgba(255, 255, 255, 0) 0%,
             rgba(255, 255, 255, 0.6) 40%,
             rgba(255, 255, 255, 0.95) 75%,
             rgba(255, 255, 255, 1) 100%);
 }

 .why-content p {
     font-size: 1.05rem;
     color: var(--color-text-light);
     line-height: 1.9;
 }

 .about-content {
     padding-right: 40px;
 }

 .site-logo {
  max-height: 70px;
  width: auto;
  display: block;
}

 .accent-title {
     color: var(--color-accent);
     font-size: 0.85rem;
     font-family: var(--font-sans);
     letter-spacing: 3px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .about-content h2 {
     font-size: 2.8rem;
     margin-bottom: 30px;
     font-style: italic;
 }

 .about-content p {
     margin-bottom: 20px;
     color: var(--color-text-light);
     font-size: 1.1rem;
 }

 .about-content strong {
     color: var(--color-text);
     font-weight: 700;
 }

 .story-banner {
     width: 100%;

     position: relative;
     color: white;
     padding: 150px 0;
     text-align: center;
     margin-bottom: 80px;
     margin-top: 40px;
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
 }

 .story-banner::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
 }

 .story-banner .container {
     position: relative;
     z-index: 2;
 }

 .story-banner h3 {
     font-size: 3.5rem;
     margin-bottom: 15px;
     font-style: italic;
 }

 .story-banner .quote {
     font-family: var(--font-serif);
     font-size: 1.4rem;
     font-weight: 300;
 }


 .historie-content {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 80px;
     align-items: start;
     padding-bottom: 120px;
 }

 .historie-text {
     position: sticky;
     top: 120px;
 }

 .historie-text p {
     margin-bottom: 20px;
     color: var(--color-text-light);
     font-size: 1.05rem;
     line-height: 1.9;
 }

 p.story-intro {
     font-family: var(--font-serif);
     font-style: italic;
     font-size: 1.4rem;
     margin-bottom: 30px;
     color: var(--color-btn);
 }

 .historie-gallery {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .gallery-item {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .gallery-img {
     width: 100%;
     aspect-ratio: 3 / 4;
     background-size: cover;
     background-position: center;
     margin-bottom: 15px;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .gallery-img:hover {
     transform: scale(1.03);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
 }

 .img-caption {
     font-family: var(--font-serif);
     font-style: italic;
     font-size: 0.95rem;
     text-align: center;
     color: var(--color-text-light);
 }

 .historie-slider {
     position: relative;
     overflow: hidden;
 }

 .historie-slide {
     position: absolute;
     inset: 0;
     opacity: 0;
     transition: opacity 1.2s ease;
     pointer-events: none;
 }

 .historie-slide.active {
     opacity: 1;
     position: relative;
     pointer-events: auto;
 }

 .slider-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.6);
     border: none;
     font-size: 28px;
     width: 50px;
     height: 50px;
     cursor: pointer;
     backdrop-filter: blur(6px);
     transition: all 0.3s ease;
     z-index: 20;
 }

 .slider-arrow.prev {
     left: 0px;
 }

 .slider-arrow.next {
     right: 0px;
 }

 .slider-arrow:hover {
     background: rgba(255, 255, 255, 0.95);
 }

 .slider-dots {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 12px;
     z-index: 10;
 }

 .slider-dot {
     width: 10px;
     height: 10px;
     background: rgba(0, 0, 0, 0.3);
     border-radius: 50%;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .slider-dot.active {
     background: #b59b7a;
     transform: scale(1.3);
 }

 .testimonials-wrapper {
     position: relative;
     overflow: hidden;
 }

 .testimonials-track {
     display: flex;
     gap: 24px;
     transition: transform 0.8s ease;
 }

 .testimonial-card {
     flex: 0 0 33.333%;
     padding: 40px;
     box-sizing: border-box;
     text-align: center;
 }

 .testimonial-card .quote {
     font-size: 1.05rem;
     line-height: 1.8;
     margin-bottom: 25px;
     color: #444;
 }

 .testimonial-card .author {
     font-weight: 600;
 }

 .testimonial-card .author span {
     color: #999;
     font-weight: 400;
     font-size: 0.75rem;
 }

 .testimonial-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.7);
     border: none;
     width: 45px;
     height: 45px;
     cursor: pointer;
     backdrop-filter: blur(6px);
     z-index: 10;
 }

 .testimonial-arrow.prev {
     left: 0;
 }

 .testimonial-arrow.next {
     right: 0;
 }

 .testimonial-dots {
     margin-top: 40px;
     display: flex;
     justify-content: center;
     gap: 10px;
 }

 .testimonial-dot {
     width: 8px;
     height: 8px;
     background: #ccc;
     border-radius: 50%;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .testimonial-dot.active {
     background: #b59b7a;
     transform: scale(1.3);
 }

 @media (max-width: 1024px) {
     .testimonial-card {
         flex: 0 0 50%;
     }
 }

 @media (max-width: 768px) {
     .testimonial-card {
         flex: 0 0 100%;
     }
 }

 .process-luxury {
     padding-top: 50px;
     padding-bottom: 0;
 }

 .experience-block {
     position: relative;
     display: grid;
     grid-template-columns: 1fr 1fr;
 }

 .experience-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     position: absolute;
     inset: 0;
     z-index: 0;
 }


 .experience-block.light {
     background: var(--color-bg-light);
 }

 .experience-bg {
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .experience-bg::after {
     content: "";
     position: absolute;
     inset: 0;
 }

 .experience-block .experience-bg::after {
     background: linear-gradient(to right,
             rgba(252, 252, 249, 0.15),
             rgba(252, 252, 249, 0.9));
 }

 .experience-block.light .experience-bg::after {
     background: linear-gradient(to left,
             rgba(252, 252, 249, 0.15),
             rgba(252, 252, 249, 0.9));
 }

 .experience-content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 80px;
     max-width: 600px;
     margin: auto;
 }


 .experience-label {
     font-family: var(--font-serif);
     font-size: 5rem;
     font-weight: 300;
     color: transparent;
     -webkit-text-stroke: 1px rgba(165, 139, 109, 0.25);
     margin-bottom: 15px;
 }

 .experience-content h3 {
     font-size: 2rem;
     margin-bottom: 25px;
 }

 .experience-content p {
     font-size: 1.1rem;
     line-height: 2;
     color: var(--color-text-light);
 }

 .testimonial-card {
     background: var(--color-bg);
     padding: 50px 40px;
     border: 1px solid #EAEAEA;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .testimonial-card .quote {
     font-family: var(--font-serif);
     font-style: italic;
     font-size: 1.25rem;
     margin-bottom: 30px;
     line-height: 1.7;
 }

 .testimonial-card .author {
     font-size: 0.8rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: var(--color-accent);
     font-weight: 700;
 }

 .contact-cta-section {
     padding: 150px 0;
 }

 .contact-cta-section h2 {
     font-size: 3rem;
     margin-bottom: 30px;
     margin-left: auto;
     margin-right: auto;
 }

 .contact-cta-section p {
     font-size: 1.2rem;
     margin-bottom: 50px;
 }

 .main-footer {
     background-color: #111;
     color: #FFF;
     padding: 80px 0 30px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 60px;
     margin-bottom: 60px;
 }

 .footer-col h4 {
     font-family: var(--font-sans);
     text-transform: uppercase;
     font-size: 0.9rem;
     margin-bottom: 25px;
     letter-spacing: 2px;
     color: #888;
 }

 .footer-col p.logo-text {
     font-family: var(--font-serif);
     font-size: 1.8rem;
     font-style: italic;
     margin-bottom: 10px;
     color: #FFF;
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 15px;
 }

 .footer-col a {
     color: #DDD;
     font-size: 0.95rem;
 }

 .footer-col a:hover {
     color: var(--color-accent);
 }

 .socials {
     margin-top: 20px;
 }

 .socials a {
     margin-right: 20px;
     font-weight: 400;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1px;
 }

 .m-auto {
     margin: auto;
 }

 .copyright {
     text-align: center;
     border-top: 1px solid #222;
     padding-top: 30px;
     font-size: 0.85rem;
     color: var(--color-white);
     display: flex;
     justify-content: space-between;
 }

 .hero-short {
     position: relative;
     height: 50vh;
     min-height: 400px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--color-white);
     padding-top: 80px;
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
 }

 .hero-short::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.45);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     font-style: italic;
     margin-bottom: 15px;
     letter-spacing: 1px;
 }

 .hero-content p {
     font-size: 1.2rem;
     font-weight: 300;
     letter-spacing: 1px;
     font-family: var(--font-serif);
     font-style: italic;
 }

 .contact-title {
     font-family: var(--font-serif);
     font-size: 3rem;
     font-style: italic;
     color: var(--color-btn);
     margin-bottom: 20px;
 }

 .contact-desc {
     font-family: var(--font-sans);
     color: var(--color-text-light);
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto 0px;
     font-weight: 300;
 }

 .section-small-title {
     font-family: var(--font-sans);
     text-transform: uppercase;
     letter-spacing: 3px;
     margin-bottom: 35px;
     color: var(--color-accent);
     border-bottom: 1px solid #eee;
     padding-bottom: 10px;
     display: inline-block;
 }

 .editorial-form {
     display: flex;
     flex-direction: column;
     gap: 35px;
 }

 .form-row {
     display: flex;
     gap: 40px;
 }

 .form-group {
     width: 100%;
     display: flex;
     flex-direction: column;
 }

 .form-group label {
     font-family: var(--font-sans);
     font-size: 0.7rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--color-btn);
 }

 .label-contact {
     color: var(--color-btn);
     font-weight: bold;
 }

 .form-control {
     width: 100%;
     padding: 12px 0;
     font-family: var(--font-sans);
     font-size: 1rem;
     color: var(--color-text);
     background: transparent;
     border: none;
     border-bottom: 1px solid #E2E2E2;
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     border-radius: 0;
 }

 .form-control:focus {
     outline: none;
     border-bottom-color: var(--color-accent);
     padding-left: 8px;
 }

 .form-control::placeholder {
     color: #CCC;
     font-weight: 300;
     font-style: italic;
     font-family: var(--font-serif);
     font-size: 0.95rem;
 }

 select.form-control {
     cursor: pointer;
     color: var(--color-text-light);
 }

 .checkbox-group {
     flex-direction: row !important;
     align-items: flex-start;
     gap: 15px;
     margin-top: 10px;
 }

 .checkbox-group input[type="checkbox"] {
     width: 18px;
     height: 18px;
     margin-top: 2px;
     accent-color: var(--color-accent);
     cursor: pointer;
 }

 .checkbox-label {
     font-family: var(--font-sans);
     font-size: 0.85rem !important;
     line-height: 1.6;
     color: var(--color-text-light) !important;
     text-transform: none !important;
     letter-spacing: 0 !important;
     font-weight: 400 !important;
 }

 .checkbox-label a {
     color: var(--color-text);
     text-decoration: underline;
     transition: color 0.3s ease;
 }

 .checkbox-label a:hover {
     color: var(--color-accent);
 }

 .btn-solid-premium {
     background-color: var(--color-btn);
     color: var(--color-white);
     border: 1px solid var(--color-btn);
     padding: 20px 60px;
     letter-spacing: 4px;
     text-transform: uppercase;
     font-family: var(--font-sans);
     font-size: 0.8rem;
     font-weight: 600;
     transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
     cursor: pointer;
     align-self: flex-start;
     position: relative;
     overflow: hidden;
 }

 .btn-solid-premium:hover {
     background-color: transparent;
     color: var(--color-btn);
     letter-spacing: 6px;
     box-shadow: 0 10px 20px rgba(165, 139, 109, 0.15);
 }

 .btn-solid-premium-whats-app {
     background-color: var(--color-btn);
     color: var(--color-white);
     border: 1px solid var(--color-btn);
     padding: 5px 15px;
     text-transform: uppercase;
     font-family: var(--font-sans);
     font-size: 0.8rem;
     font-weight: 600;
     transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
     cursor: pointer;
     align-self: flex-start;
     position: relative;
     overflow: hidden;
 }

 .btn-solid-premium-whats-app:hover {
     background-color: transparent;
     color: var(--color-btn);
     box-shadow: 0 10px 20px rgba(165, 139, 109, 0.15);
 }

 .img-box-contact {
     width: 100%;
     height: 100%;
     min-height: 800px;
     background-position: center;
     background-size: cover;
     position: relative;
     filter: sepia(10%) contrast(1.05);
 }

 .contact-image {
     padding: 20px;
 }

 .contact-section {
     padding-bottom: 50px;
 }

 .full-story-hero {
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     text-align: center;
     color: var(--color-white);
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
 }

 .hero-overlay {
     position: absolute;
     inset: 0;
     backdrop-filter: blur(6px);
 }

 .full-story-hero::after {
     content: "";
     position: absolute;
     inset: 0;
     opacity: 0.05;
     pointer-events: none;
 }

 .hero-content {
     position: relative;
     max-width: 900px;
     padding: 40px;
 }

 .section-label {
     letter-spacing: 3px;
     font-size: 0.8rem;
     color: #b59b7a;
     text-transform: uppercase;
 }

 h1 {
     font-size: 4rem;
     font-weight: 300;
     margin: 20px 0;
 }

 .hero-subtitle {
     font-size: 1.4rem;
     font-weight: 400;
     margin-bottom: 30px;
 }

 h2.hero-subtitle {
     color: var(--color-white);
 }

 .hero-lead {
     font-size: 1.3rem;
     margin-bottom: 20px;
 }

 .hero-description {
     font-size: 1rem;
     line-height: 1.8;
     max-width: 600px;
     margin: 0 auto 40px;
 }

 .btn-primary {
     display: inline-block;
     padding: 16px 40px;
     background: #b59b7a;
     color: white;
     text-decoration: none;
     letter-spacing: 1px;
     transition: all 0.4s ease;
 }

 .btn-primary:hover {
     background: #9d8468;
     transform: translateY(-3px);
 }

 .story-section {
     padding: 50px 00px;
     position: relative;
     background: #fcfcf9;
 }

 .story-section.alt-bg {
     background: #f5f3ee;
 }

 .story-section::after {
     content: "";
     position: absolute;
     inset: 0;
     opacity: 0.03;
     pointer-events: none;
 }

 .story-container {
     max-width: 1500px;
     margin: auto;
 }

 .split {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .split.reverse {
     direction: rtl;
 }

 .split.reverse .story-text {
     direction: ltr;
 }

 .story-text h2 {
     font-size: 2.4rem;
     font-weight: 300;
     margin-bottom: 40px;
 }

 .story-text p {
     font-size: 1.1rem;
     line-height: 2;
     margin-bottom: 25px;
     color: #555;
 }

 .story-image {
     position: relative;
     overflow: hidden;
 }

 .story-image img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     transition: transform 1.2s ease;
 }

 .story-image::after {
     content: "";
     position: absolute;
     inset: 0;
     mix-blend-mode: lighten;
     pointer-events: none;
 }

 .story-image:hover img {
     transform: scale(1.05);
 }

 .final-cta {
     padding: 140px 20px;
     text-align: center;
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
 }

 .cta-content {
     max-width: 800px;
     margin: auto;
 }

 .fancy-title {
     display: flex;
     align-items: center;
     text-align: center;
     font-size: 2.4rem;
     font-weight: 300;
 }

 .fancy-title::before,
 .fancy-title::after {
     content: "";
     flex: 1;
     height: 2px;
     background: linear-gradient(to right, transparent, #c7b299, transparent);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 0;
     position: relative;
 }

 .main-nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     gap: 20px;
 }

 .main-nav a {
     text-decoration: none;
     color: var(--color-white);
     font-family: var(--font-sans);
     font-weight: 300;
     font-size: 0.80rem;
     text-transform: uppercase;
     letter-spacing: 2.5px;
     transition: all 0.4s ease;
     position: relative;
     padding: 10px 0;
 }

 .menu-item-has-children {
     position: relative;
 }

 .sub-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: #fff;
     display: none;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     min-width: 200px;
     flex-direction: column !important;
     padding: 10px 0;
     z-index: 100;
 }

 .main-nav .sub-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: #fff;
     min-width: 220px;
     display: none;
     flex-direction: column !important;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     padding: 10px 0;
     z-index: 100;
 }

 .menu-item-has-children:hover>.sub-menu {
     display: flex;
 }

 .sub-menu li a {
     color: var(--color-text) !important;
     padding: 12px 20px !important;
     text-transform: none !important;
     letter-spacing: 1px !important;
     font-size: 0.8rem !important;
 }

 .sub-menu li a:hover {
     background-color: var(--color-bg-light);
     color: var(--color-accent) !important;
 }

 .menu-toggle {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 10px;
     z-index: 1001;
 }

 .hamburger {
     display: block;
     width: 25px;
     height: 3px;
     background: var(--color-white);
     position: relative;
 }

 .hamburger::before,
 .hamburger::after {
     content: '';
     position: absolute;
     width: 25px;
     height: 3px;
     background: var(--color-white);
     left: 0;
     transition: 0.3s;
 }

 .hamburger::before {
     top: -8px;
 }

 .hamburger::after {
     bottom: -8px;
 }

 .menu-toggle.is-active .hamburger {
     background: transparent;
 }

 .menu-toggle.is-active .hamburger::before {
     transform: rotate(45deg);
     background: #333;
     top: 0;
 }

 .menu-toggle.is-active .hamburger::after {
     transform: rotate(-45deg);
     background: #333;
     bottom: 0;
 }

 .toast {
     position: fixed;
     top: 80px;
     left: 50%;
     right: auto;
     transform: translateX(-50%) translateY(-20px);
     max-width: calc(100% - 32px);
     background: #333;
     color: #fff;
     padding: 15px 25px;
     border-radius: 10px;
     z-index: 9999;
     opacity: 0;
     animation: toast-in 0.4s forwards, toast-out 0.4s 10s forwards;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

 .toast.success {
     background: #28a745;
 }

 .toast.error {
     background: #dc3545;
 }

 @keyframes toast-in {
     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
     }
 }

 @keyframes toast-out {
     to {
         opacity: 0;
         transform: translateX(-50%) translateY(-20px);
     }
 }

 @media (min-width: 769px) {
     .main-nav .sub-menu {
         position: absolute;
         display: none;
     }

     .menu-item-has-children:hover>.sub-menu {
         display: flex;
     }
 }

 @media (max-width: 768px) {
     .contact-image {
         display: none;
     }

     .menu-toggle {
         display: block;
     }

     .main-nav {
         position: fixed;
         top: 0;
         right: -100%;
         width: 100%;
         max-width: 500px;
         height: 100vh;
         background: #fff;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
         transition: 0.4s ease-in-out;
         padding-top: 80px;
         z-index: 1000;
         overflow-y: auto;
     }

     .main-nav.is-open {
         right: 0;
     }

     .main-nav ul {
         flex-direction: column;
         gap: 0;
         display: flex;
     }

     .main-nav ul li a {
         padding: 15px 25px;
         border-bottom: 1px solid #eee;
         display: block;
         color: #333 !important;
     }

     .main-nav .sub-menu {
         position: static;
         width: 100%;
         background: #f9f9f9;
         padding: 0;
         box-shadow: none;
         display: none !important;
         flex-direction: column !important;
     }

     .main-nav .sub-menu.is-active {
         display: flex !important;
     }

     .main-nav .sub-menu li a {
         padding: 12px 40px !important;
         font-size: 0.9rem !important;
         border-bottom: 1px solid #f0f0f0;
     }

     .menu-item-has-children>a::after {
         content: '+';
         float: right;
         transition: transform 0.3s ease;
     }

     .menu-item-has-children>a.submenu-open::after {
         content: '-';
         transform: rotate(180deg);
     }
 }

 @media (max-width: 1200px) {
     .historie-content {
         gap: 50px;
     }
 }

 @media (max-width: 992px) {
     .grid-3 {
         grid-template-columns: repeat(2, 1fr);
     }

     .hero-container h1 {
         font-size: 3.5rem;
     }

     .about-content {
         padding-right: 0;
     }

     .historie-content {
         grid-template-columns: 1fr;
     }

     .historie-text {
         position: static;
     }

     .historie-gallery {
         grid-template-columns: repeat(2, 1fr);
     }

     .why-card {
         grid-template-columns: 1fr;
     }

     .why-image::after {
         display: none;
     }

     .why-content {
         padding: 40px;
     }

     .grid-2 {
         gap: 40px;
     }

     .split {
         grid-template-columns: 1fr;
         gap: 0px;
     }

     .split.reverse {
         direction: ltr;
     }

     .story-image img {
         height: 400px;
     }

     .experience-block {
         grid-template-columns: 1fr;
     }

     .experience-bg {
         min-height: 300px;
         order: 1;
     }

     .experience-content {
         padding: 10px 30px 50px 30px;
         order: 2;
     }

     .experience-bg::after {
         display: none;
     }
 }

 @media (max-width: 768px) {

     .grid-3,
     .grid-2 {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .header-container {
         flex-direction: row !important;
         justify-content: space-between;
         align-items: center;
         padding: 10px 20px;
     }

     .logo {
         z-index: 1002;
     }

     .site-logo {
         max-height: 40px;
         width: auto;
     }

     .main-nav ul {
         flex-wrap: wrap;
         justify-content: center;
         gap: 20px;
     }

     .hero-container h1 {
         font-size: 2.8rem;
     }

     .section {
         padding: 30px 0;
     }

     .feature-box:nth-child(2) {
         border-top: 1px solid #EAEAEA;
         padding-top: 40px;
     }

     .story-banner h3 {
         font-size: 2.5rem;
     }

     .footer-container {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 40px;
     }

     .copyright {
         flex-direction: column;
         gap: 10px;
         align-items: center;
     }

     .historie-gallery {
         grid-template-columns: 1fr;
     }

     .form-row {
         flex-direction: column;
         gap: 30px;
     }

     .img-box {
         min-height: 500px;
         margin-top: 40px;
     }

     .hero-short h1 {
         font-size: 2.8rem;
     }

     .gallery-item:nth-child(n+4) {
         display: none;
     }

     .gallery-img {
         aspect-ratio: 4/5;
     }

     .story-text h2 {
         display: flex;
         align-items: center;
         text-align: center;
         font-size: 2.4rem;
         font-weight: 300;
         margin-bottom: 15px;
     }

     .story-text h2::before,
     .story-text h2::after {
         content: "";
         flex: 1;
         height: 2px;
         background: linear-gradient(to right, transparent, #c7b299, transparent);
     }

     .story-section {
         padding: 15px 0px;
     }

     h2.section-small-title {
         font-size: 1.5rem;
     }
 }