/* =================== RESET & BASE =================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8f7f4;
  color: #222;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
  font-weight: 400;
}

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

ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
a {
  color: #1E3A34;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: none;
  color: #FCB900;
}
a:hover {
  color: #C09609;
}

strong {
  font-weight: 600;
  color: #1E3A34;
}

/* =================== BRAND COLORS =================== */
:root {
  --primary: #1E3A34;
  --secondary: #FCB900;
  --secondary-dark: #c09609;
  --accent: #ffffff;
  --text: #1E3A34;
  --background: #f8f7f4;
  --card-bg: #fff;
  --shadow: 0 6px 24px -8px rgba(30,58,52,0.09);
  --radius: 18px;
  --gold-gradient: linear-gradient(90deg, #FCB900 0%, #E8C677 100%);
}

/* =================== TYPOGRAPHY =================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

p, ul, ol, dl {
  margin-bottom: 16px;
}

/* =================== LAYOUT =================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.text-section {
  max-width: 650px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.21s cubic-bezier(.5,1.5,.5,1), box-shadow 0.21s;
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px -6px rgba(30,58,52,0.12);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 28px;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--secondary);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.testimonial-card:hover {
  border-color: var(--secondary-dark);
  box-shadow: 0 12px 32px -6px rgba(30,58,52,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}
.eco-highlight {
  margin-top: 21px;
  background: #f9f4e6;
  color: var(--primary);
  border-radius: 12px;
  padding: 20px 24px;
  border-left: 4px solid var(--secondary);
  font-weight: 600;
}

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 38px;
  min-width: 120px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--text);
  background: var(--gold-gradient);
  border: none;
  border-radius: 36px;
  cursor: pointer;
  box-shadow: 0 7px 24px -9px rgba(252,185,0,0.09);
  transition: background 0.18s, box-shadow 0.16s, color 0.12s, transform 0.13s;
  text-shadow: 0 1px 0 rgba(255,255,255,0.05);
  letter-spacing: 0.03em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #E8C677 0%, #FCB900 100%);
  color: #1E3A34;
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 16px 36px -12px rgba(252,185,0,0.12);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  font-size: 1rem;
  background: #f9f4e6;
  color: var(--primary);
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background .14s, color .16s;
}
.btn-secondary:hover {
  background: #fae2ac;
  color: var(--secondary-dark);
}

/* =================== HEADER + NAV =================== */
header {
  background: #fff;
  border-bottom: 1.5px solid #E9E4D3;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  height: 90px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.92;
  letter-spacing: 0.02em;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a.active {
  background: #f9f4e6;
  color: var(--secondary-dark);
}
header img {
  height: 48px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 2px 12px 3px 12px;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 2px 8px -3px rgba(252,185,0,0.10);
  transition: background 0.14s, transform 0.13s, color 0.11s;
  z-index: 1101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary-dark);
  color: #fff;
}

/* =================== MOBILE NAV =================== */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 2000;
  box-shadow: 0 4px 30px 0 rgba(30,58,52,0.15);
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.33,1.7,.42,1);
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin: 26px 30px 8px 0;
  z-index: 2200;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 36px 38px 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.95;
  padding: 10px 6px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9F4E6;
  color: var(--secondary-dark);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .mobile-nav {
    padding-left: 20px;
    padding-right: 20px; 
  }
}

/* =================== MAIN CONTENT/SECTIONS =================== */
main section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 50px;
}

main ul {
  margin-bottom: 12px;
  padding-left: 18px;
  list-style: disc;
}
main ul li {
  margin-bottom: 9px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 30px;
    padding: 24px 7px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* =================== FOOTER =================== */
footer {
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  padding: 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 38px;
  padding-bottom: 30px;
  min-height: 180px;
}
footer img {
  height: 40px; width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.96;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.11s, text-decoration 0.18s;
}
.footer-nav a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-info p {
  margin-bottom: 7px;
  opacity: 0.92;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    padding-top: 26px;
    padding-bottom: 16px;
    align-items: flex-start;
  }
}

/* =================== COOKIE CONSENT BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  bottom: 0;
  z-index: 3000;
  width: 97vw;
  max-width: 540px;
  background: #fffbea;
  color: var(--primary);
  box-shadow: 0 -2px 16px -5px rgba(252,185,0,0.12);
  border-radius: 20px 20px 0 0;
  padding: 24px 22px 17px 22px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.27s, transform 0.36s, visibility 0.13s;
}
.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.cookie-banner p {
  color: var(--primary);
  margin-bottom: 2px;
}
.cookie-banner .btn-primary {
  font-size: 1.02rem;
  min-width: 100px;
}
.cookie-banner .btn-secondary {
  padding: 10px 18px;
  font-size: 0.96rem;
}

/* =================== COOKIE PREFERENCES MODAL =================== */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,58,52,0.16);
  z-index: 4000;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.29s cubic-bezier(.42,1.5,.53,1);
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 36px 0 rgba(252,185,0,0.18);
  max-width: 430px;
  min-width: 270px;
  width: 92vw;
  padding: 35px 30px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--primary);
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 2px;
  color: var(--primary);
}
.cookie-modal-content label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cookie-modal-content input[type='checkbox'] {
  width: 19px;
  height: 19px;
  accent-color: var(--secondary);
}
.cookie-modal-content .cookie-switch[disabled] {
  opacity: 0.5;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.7rem;
  cursor: pointer;
  opacity: 0.85;
}
.cookie-modal-content .btn-primary, .cookie-modal-content .btn-secondary {
  width: auto;
}

@media (max-width: 700px) {
  .cookie-modal-content {
    padding: 20px 11px 15px 11px;
  }
}

/* =================== INTERACTIVE STATES =================== */
.btn-primary:active {
  color: #1E3A34;
  background: var(--secondary-dark);
}
.btn-secondary:active {
  background: #e3d8b0;
}
.footer-nav a:active {
  color: var(--secondary-dark);
}
.mobile-menu .mobile-nav a:active {
  background: #fae2ac;
  color: var(--secondary-dark);
}

/* =================== UTILITIES & RESPONSIVENESS =================== */
@media (max-width: 840px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
.text-section {
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  .section, main section {
    padding: 14px 4px;
    margin-bottom: 20px;
    border-radius: 13px;
    box-shadow: 0 3px 8px -2px rgba(30,58,52,0.05);
  }
  .content-wrapper, .text-image-section {
    gap: 11px;
  }
  .testimonial-card {
    padding: 17px 11px;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .eco-highlight {
    padding: 10px 9px;
    border-radius: 6px;
    font-size: 0.95rem;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.99rem;
    padding: 10px 18px;
  }
  footer .container {
    gap: 13px;
    min-height: 80px;
    padding-top: 11px;
    padding-bottom: 8px;
  }
}

/* =================== MICRO-ANIMATIONS =================== */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.13s, background 0.13s, box-shadow 0.16s, transform 0.14s;
}
.testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card {
  transition: transform 0.18s cubic-bezier(.5,1.5,.5,1), box-shadow 0.18s;
}
/* =================== FORM ELEMENTS =================== */
input, textarea, select {
  font-family: inherit;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #e2e0e0;
  font-size: 1rem;
  color: #222;
  background: #fff;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
}

/* =================== ACCESSIBILITY/FOCUS =================== */
.btn-primary:focus, .btn-secondary:focus, .main-nav a:focus, .mobile-menu-close:focus, .footer-nav a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  background: #f9f4e6;
  color: var(--secondary-dark);
}

/* =================== Z-INDEX MANAGEMENT =================== */
.mobile-menu,
.mobile-menu.open { z-index: 2000; }
.cookie-modal { z-index: 4000; }
.cookie-banner { z-index: 3000; }

/* =================== CUSTOM LUXURY/PREMIUM ACCENTS =================== */
.card, .testimonial-card, .eco-highlight, .cookie-modal-content {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.btn-primary, .cookie-banner .btn-primary {
  background-image: var(--gold-gradient);
  color: var(--primary);
  border: none;
  font-family: 'Montserrat';
  font-weight: bold;
  border-radius: 36px;
  letter-spacing: 0.03em;
}
.btn-primary::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 18px;
  height: 18px;
  background: url('../assets/icon-arrow-right.svg') no-repeat center center / contain;
  vertical-align: middle;
  opacity: 0.17;
}

/* Hide arrow if not available */
.btn-primary:empty::after { display: none; }

/* Gold border accent for card containers */
.card, .testimonial-card {
  border-left: 4px solid var(--secondary);
}

/* =================== PRINT STYLES =================== */
@media print {
  header, nav, footer, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  main section, .section {
    box-shadow: none;
    padding: 0.5em !important;
  }
}
