/* css/style.css */
/* Reset */
.html-root {
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background-color: #f6f6f4;
  /* Sophisticated warm light grey */
  color: #1a1c1b;
}

.box-sizing-reset,
.box-sizing-reset::before,
.box-sizing-reset::after {
  box-sizing: inherit;
}

.body-root {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography */
.heading-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #0b1c14;
}

.text-gold {
  color: #c09b5a;
}

.text-silver {
  color: #8c8c8c;
}

.text-green {
  color: #0b1c14;
}

/* Layout Classes */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

/* Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 246, 244, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.brand-logo {
  font-size: 28px;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
}

.nav-link-item {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: #c09b5a;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0b1c14;
  /* Deep luxury green */
  color: #ffffff;
  padding: 18px 45px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #0b1c14;
  cursor: pointer;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: #c09b5a;
  border-color: #c09b5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(192, 155, 90, 0.2);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #0b1c14;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  transition: all 0.4s ease;
  border: 1px solid rgba(11, 28, 20, 0.3);
  font-size: 11px;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: #0b1c14;
  color: #ffffff;
  border-color: #0b1c14;
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  flex: 0 0 55%;
  padding-right: 60px;
  z-index: 2;
  position: relative;
}

.hero-image-wrap {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  /* MAGICAL TRICK: removes the grey background from Zalando image */
  transform: translateX(5%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateX(5%) translateY(0px);
  }

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

  100% {
    transform: translateX(5%) translateY(0px);
  }
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  color: #c09b5a;
  display: block;
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}

.hero-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #c09b5a;
}

.hero-title {
  font-size: 60px;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -1px;
  color: #0b1c14;
}

.hero-subtitle {
  font-size: 16px;
  color: #5a6660;
  margin-bottom: 45px;
  max-width: 420px;
  font-weight: 300;
  line-height: 1.8;
}

.price-tag {
  font-size: 32px;
  font-weight: 400;
  color: #0b1c14;
  margin-bottom: 45px;
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Image Grid Section */
.gallery-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 80px;
}

.grid-img-large,
.grid-img-small {
  width: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  background: #f6f6f4;
}

.grid-img-large {
  height: 700px;
  grid-row: span 2;
}

.grid-img-small {
  height: 340px;
}

/* Content Sections */
.section-padding {
  padding: 140px 0;
}

.section-bg-light {
  background-color: #f6f6f4;
}

.section-title {
  font-size: 52px;
  margin-top: 0;
  margin-bottom: 25px;
  color: #0b1c14;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 80px;
  color: #5a6660;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

/* Minimal Features */
.feature-row {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 120px;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-text-box {
  flex: 1;
}

.feature-img-box {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: transform 0.6s ease;
}

.feature-img-box:hover .feature-img {
  transform: scale(1.05);
}

.feature-title {
  font-size: 36px;
  margin-bottom: 25px;
}

.feature-desc {
  color: #5a6660;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

/* Legal Text Container */
.legal-container {
  max-width: 800px;
  margin: 150px auto 100px;
  background: #ffffff;
  padding: 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.legal-title {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 42px;
}

.legal-text {
  color: #5a6660;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 300;
}

.legal-subtitle {
  color: #0b1c14;
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 24px;
}

/* Footer */
.site-footer {
  background-color: #0b1c14;
  color: #ffffff;
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-col-title {
  font-size: 14px;
  color: #c09b5a;
  margin-top: 0;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: 18px;
}

.footer-link {
  color: #8a9690;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  font-weight: 300;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #5a6660;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-bottom .text-gold {
  color: #c09b5a;
  text-decoration: none;
}

/* Specs Section */
.specs-section {
  padding: 120px 0;
  background-color: #0b1c14;
  color: #ffffff;
}

.specs-title {
  color: #c09b5a;
  text-align: center;
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 60px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 60px;
}

.spec-item {
  text-align: center;
}

.spec-lbl {
  color: #8a9690;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.spec-val {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  margin: 0;
}

/* Review Page */
.review-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.review-content {
  max-width: 750px;
  margin: 0 auto;
}

.review-paragraph {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 40px;
  color: #4a4a4a;
  font-weight: 300;
}

.review-highlight {
  font-size: 32px;
  color: #0b1c14;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin: 70px 0;
  text-align: center;
  position: relative;
  line-height: 1.4;
}

.review-img {
  width: 100%;
  margin-bottom: 60px;
  mix-blend-mode: multiply;
}

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.form-group {
  margin-bottom: 35px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: #0b1c14;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  color: #0b1c14;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: #c09b5a;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f6f6f4;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-circle {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(192, 155, 90, 0.1);
  border-top-color: #c09b5a;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- MOBILE RESPONSIVE OVERRIDES --- */

/* This section only affects mobile screens to ensure desktop remains untouched */

@media (max-width: 768px) {
  /* Global Resets for Mobile */
  html, body {
    overflow-x: hidden !important; /* Prevent horizontal scroll */
    width: 100% !important;
  }

  .container {
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Header Fix */
  .header-nav {
    position: relative !important; 
    padding: 25px 0 !important;
    width: 100% !important;
  }
  
  .header-nav .container {
    flex-direction: column !important;
    gap: 15px;
    text-align: center;
    display: flex !important;
    align-items: center !important;
  }

  .brand-logo {
    font-size: 24px !important;
    letter-spacing: 4px !important;
    margin-bottom: 5px;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 10px 0 !important;
  }

  .nav-link-item {
    font-size: 11px !important;
  }

  /* Hero Section Fix */
  .hero-section {
    padding: 30px 0 !important;
    min-height: auto !important;
    width: 100% !important;
  }

  .hero-section .container {
    flex-direction: column !important;
    text-align: center !important;
  }

  .hero-content {
    order: 1 !important;
    margin-bottom: 20px !important;
    width: 100% !important;
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }

  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 25px !important;
  }

  .hero-image-wrap {
    order: 2 !important;
    margin-bottom: 30px !important;
    width: 100% !important;
  }

  .hero-image {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  /* Feature Rows Fix (The Gaps) */
  .feature-row {
    margin-bottom: 60px !important; /* Fixed the huge gap */
    gap: 20px !important;
  }

  .feature-img-box img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* Gallery Fix */
  .image-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .grid-img-large {
    height: 300px !important;
  }

  /* Specs Section Fix (The alignment/width) */
  .specs-section {
    padding: 60px 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .specs-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .specs-title {
    font-size: 26px !important;
    margin-bottom: 30px !important;
  }

  /* Footer Fix */
  .site-footer {
    padding: 60px 0 30px !important;
    width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 30px !important;
  }

  /* Cookie Banner Fix */
  .cookie-banner {
    padding: 15px !important;
    gap: 10px !important;
  }
}

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



/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b1c14;
  color: #ffffff;
  padding: 25px 40px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: #d0d0d0;
}

.cookie-text a {
  color: #c09b5a;
  text-decoration: none;
}

.cookie-btn {
  background: #ffffff;
  color: #0b1c14;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  transition: background 0.3s ease;
}

.cookie-btn:hover {
  background: #c09b5a;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    padding-top: 120px;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-kicker::before {
    display: none;
  }

  .hero-kicker {
    padding-left: 0;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-image-wrap {
    margin-top: 40px;
  }

  .hero-image {
    width: 100%;
    transform: none;
    animation: none;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .grid-img-large {
    grid-row: span 1;
    height: 400px;
  }

  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }
}