/* ==== RESET & BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F3EC;
  color: #2a2a2a;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
a {
  color: #255A3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #c8aa57;
  outline-offset: 2px;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #255A3A;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 15px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  color: #313131;
  margin-bottom: 8px;
}
strong, b {
  color: #255A3A;
  font-weight: 600;
}
/* ==== BUTTONS ==== */
.cta-btn, .cookie-btn, .cookie-settings-btn {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #255A3A;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 14px 36px;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px 0 rgba(37,90,58,0.08);
  cursor: pointer;
  position: relative;
  transition: background 0.25s, box-shadow 0.25s, color 0.2s;
  margin-top: 10px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #c8aa57;
  color: #255A3A;
  box-shadow: 0 8px 24px 0 rgba(37, 90, 58, 0.12);
}
.cookie-btn {
  background: #c8aa57;
  color: #255A3A;
  margin-right: 14px;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #255A3A;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  color: #255A3A;
  border: 1px solid #c8aa57;
  margin-right: 14px;
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #F6F3EC;
}
/* ==== HEADER ==== */
header {
  box-shadow: 0 1px 12px 0 rgba(37, 90, 58, .06);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 12px;
}
header img {
  height: 32px;
  width: auto;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #255A3A;
  font-size: 1.07em;
  font-weight: 500;
  padding: 8px 5px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #c8aa57;
  border-bottom: 2px solid #c8aa57;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  display: none;
  color: #255A3A;
  cursor: pointer;
  margin-left: 14px;
  z-index: 112;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(246, 243, 236, 0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.9,0,0.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 26px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #c8aa57;
  cursor: pointer;
  padding: 0;
  z-index: 1201;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #255A3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 50px;
  width: 100%;
}
.mobile-nav a {
  color: #255A3A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25em;
  padding: 10px 5px;
  border-radius: 9px;
  transition: background 0.19s, color 0.19s;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #c8aa57;
  color: #fff;
}
@media (max-width:768px) {
  .mobile-menu {
    padding-top: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .mobile-nav a {
    font-size: 1.11em;
  }
}
/* Ensure menu overlay covers everything */
.mobile-menu {
  box-shadow: 0 0 0 100vmax rgba(37,90,58,.12);
}

/* ==== HERO & SECTION FLEX PATTERNS ==== */
.hero {
  background: #255A3A;
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 32px 0 rgba(37,90,58,.09);
  padding-top: 48px; padding-bottom: 40px;
  margin-bottom: 36px;
}
.hero h1,
.hero h2,
.hero p {
  color: #fff;
}
.hero .cta-btn {
  background: #c8aa57;
  color: #255A3A;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #fff;
  color: #255A3A;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 620px;
}

/* ==== FLEX LAYOUTS ==== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(200,170,87, 0.09), 0 1.5px 6px 0 rgba(37,90,58,0.03);
  padding: 28px 22px;
  min-width: 250px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #ece7d9;
  transition: box-shadow 0.22s, border 0.18s;
}
.feature img {
  width: 48px;
  height: 48px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 24px 0 rgba(200,170,87, 0.13);
  border: 1.5px solid #c8aa57;
}
.services-list {
  margin: 0 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding-left: 0;
}
.services-list li {
  position: relative;
  padding-left: 16px;
  font-size: 1.1rem;
}
.services-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c8aa57;
}
.text-section a {
  color: #255A3A;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.18s;
}
.text-section a:hover {
  color: #c8aa57;
}
.social-section {
  margin-top: 12px;
}
.social-section ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.social-section img {
  height: 18px; width: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(51,49,32,0.04);
  padding: 20px 26px;
  margin-bottom: 20px;
  border-left: 4px solid #c8aa57;
  font-size: 1.11em;
  min-width: 230px;
  max-width: 600px;
}
.testimonial-card p {
  color: #222;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #6FAB87;
  font-size: 0.98em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* ==== CARDS, FLEX CONTAINERS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(37,90,58,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #ece7d9;
  transition: box-shadow 0.22s, border 0.18s;
}
.card:hover, .card:focus-within {
  border-color: #c8aa57;
  box-shadow: 0 6px 24px 0 rgba(200,170,87,0.11);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 10px;
}

/* ==== LISTS ==== */
ul li, ol li {
  margin-bottom: 6px;
}

/* ==== FOOTER ==== */
footer {
  background: #255A3A;
  color: #fff;
  padding: 40px 0 18px 0;
  box-shadow: 0 -2px 12px 0 rgba(37,90,58,0.06);
  border-radius: 32px 32px 0 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
footer img {
  height: 32px;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.18s, border 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #c8aa57;
  border-bottom: 2px solid #c8aa57;
}
footer p {
  color: #d5dbc8;
  font-size: 0.96em;
  margin-top: 12px;
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffdf7;
  border-top: 2px solid #c8aa57;
  box-shadow: 0 -2px 14px 0 rgba(37,90,58,0.07);
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 16px;
  animation: cookieSlideIn 0.5s cubic-bezier(0.8,0,0.25,1);
}
@keyframes cookieSlideIn {
  0% {transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner__text {
  color: #3d3721;
  font-size: 1em;
  max-width: 430px;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 10px;
  }
  .cookie-banner__text {
    max-width: 98vw;
    font-size: 0.93em;
  }
}
/* Cookie modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,90,58,0.69);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.33s cubic-bezier(.7,0,.2,1);
}
@keyframes cookieModalIn {
  from { opacity: .36; }
  to { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 22px;
  max-width: 430px;
  width: 95vw;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 7px 36px 0 rgba(200,170,87,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalDialogIn 0.4s cubic-bezier(.8,0,.23,1);
}
@keyframes cookieModalDialogIn {
  0% {transform: translateY(50px); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-modal__title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.45rem;
  color: #255A3A;
  margin-bottom: 4px;
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #c8aa57;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover { color: #255A3A; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-category__toggle {
  appearance: none;
  width: 42px;
  height: 24px;
  background: #e7e1d1;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
  border: 1.3px solid #c8aa57;
}
.cookie-category__toggle:checked {
  background: #c8aa57;
}
.cookie-category__toggle::after {
  content: '';
  display: block;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.23s cubic-bezier(.6,0,.4,1);
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.08);
}
.cookie-category__toggle:checked::after {
  left: 19px;
}
.cookie-category__essential {
  color: #6FAB87;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1200px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .card {
    min-width: 0;
    width: 100%;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer .container {
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 26px;
    border-radius: 0 0 20px 20px;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .testimonial-card,
  .feature, .card {
    padding: 18px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .card, .feature {
    font-size: 0.97em;
  }
  .section {
    margin-bottom: 42px;
    padding: 22px 8px;
  }
}
@media (max-width: 540px) {
  .hero .content-wrapper {
    padding-left: 0; padding-right: 0;
    max-width: 97vw;
  }
}
/* ==== MICRO-INTERACTIONS, HOVER ==== */
.card, .feature, .testimonial-card {
  transition: box-shadow 0.18s, border 0.15s, transform 0.15s;
}
.card:hover, .feature:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 6px 28px 0 rgba(200,170,87,0.13);
}

.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.97);
}
/* ==== FOCUS STATES ==== */
.card:focus-within, .feature:focus-within,
.cta-btn:focus, .cookie-btn:focus, .cookie-settings-btn:focus {
  outline: 2px solid #c8aa57;
  outline-offset: 2px;
}

/* ==== GOLD ACCENTS (Luxury) ==== */
.feature h3, .card h3, .services-list strong {
  color: #c8aa57;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.section > h2 {
  border-left: 4px solid #c8aa57;
  padding-left: 14px;
  color: #255A3A;
  margin-bottom: 24px;
}

/* ==== MISC CLASSES FOR FLEX ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ==== LUXURY DETAILS ==== */
.card, .feature, .testimonial-card {
  border-radius: 18px;
  background-clip: padding-box;
  border-top: 1.5px solid #c8aa572244;
  border-bottom: 1.5px solid #ece1c18c;
}

/* ==== FORM ELEMENTS ==== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border-radius: 9px;
  border: 1px solid #c8aa57;
  padding: 11px 13px;
  margin-bottom: 10px;
  outline: none;
  background: #f6f3ec;
  color: #255A3A;
  transition: border-color 0.17s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #255A3A;
  background: #fff;
}

/* ==== OVERRIDES & UTILITY ==== */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}

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