/* -----------------------------------------------------
   CSS RESET & NORMALIZE
----------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(123deg, #FAF6F1 60%, #E6B655 100%);
  color: #2A604B;
  min-height: 100vh;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2A604B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #E6B655;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 18px;
}
ul:last-child, ol:last-child { margin-bottom: 0; }

blockquote {
  font-style: italic;
  color: #1C2C28;
  background: #fff;
  border-left: 5px solid #2A604B;
  margin: 0 0 10px 0;
  padding: 15px 20px;
  border-radius: 10px 0 0 10px;
}

strong {
  font-weight: 600;
}

/* -----------------------------------------------------
   FONT IMPORTS
----------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C2C28;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-weight: 600;
}

p, address {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2A604B;
}

address {
  font-style: normal;
}

/* -----------------------------------------------------
   LAYOUT STRUCTURE
----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main > section:last-child {
  margin-bottom: 0;
}
.content-wrapper,
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  align-items: flex-start;
}

.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;
}
.card-container,
.card-grid,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(42,96,75,0.10);
  transition: box-shadow 0.3s, transform 0.3s;
  padding: 24px;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(42,96,75,0.14);
  transform: translateY(-4px) scale(1.015);
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(42,96,75,0.08);
  padding: 24px 20px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(42,96,75,0.18);
  transform: translateY(-4px) scale(1.025);
}

.inspiration-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(42,96,75,0.09);
  padding: 24px 18px;
  flex: 1 1 290px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.inspiration-card:hover {
  box-shadow: 0 8px 28px 0 rgba(230,182,85,0.17);
  transform: scale(1.02);
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FAF6F1;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(42,96,75,0.10);
  flex-direction: row;
}
.testimonial-card blockquote {
  margin: 0;
  background: transparent;
  border-left: 4px solid #E6B655;
  color: #1C2C28;
  padding: 0 0 0 18px;
  border-radius: 0;
  font-size: 1.1rem;
}
.testimonial-meta {
  font-weight: 500;
  font-size: 1rem;
  color: #2A604B;
  margin-left: 14px;
  margin-bottom: 0;
}

/* Feature List Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -----------------------------------------------------
   BUTTONS & CTA
----------------------------------------------------- */
.cta, .primary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #2A604B 60%, #E6B655 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 1.1rem;
  box-shadow: 0 2px 14px rgba(42,96,75,0.10);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  letter-spacing: 0.04em;
  display: inline-block;
  text-align: center;
  margin-top: 16px;
}
.cta:hover, .primary-cta:hover,
.cta:focus, .primary-cta:focus {
  background: linear-gradient(100deg, #E6B655 20%, #2A604B 90%);
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 4px 16px rgba(42,96,75,0.18);
}

button,
.mobile-menu-close,
.mobile-menu-toggle {
  font-family: inherit;
  background: none;
  cursor: pointer;
  border: none;
  box-shadow: none;
  outline: none;
}

/* -----------------------------------------------------
   NAVIGATION
----------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #FAF6F1cc;
  backdrop-filter: blur(8px);
  z-index: 20;
  box-shadow: 0 2px 16px rgba(42,96,75,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 14px 16px 10px 16px;
  flex: 1 1 auto;
}
header nav a {
  color: #2A604B;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
  position: relative;
  padding: 6px 10px;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #E6B655;
  transition: width 0.22s;
  margin: 2px 0 0 0;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
.primary-cta {
  margin: 10px 14px 10px auto;
  background: linear-gradient(90deg, #2A604B 60%, #E6B655 100%);
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  z-index: 201;
  background: #2A604B;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(42,96,75,0.13);
  transition: background 0.2s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E6B655;
  color: #2A604B;
  box-shadow: 0 4px 14px rgba(230,182,85,0.20);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2A604B;
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.39,.575,.565,1.000);
  box-shadow: 0 8px 32px 0 rgba(42,96,75,0.29);
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 8px 0;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E6B655;
  color: #2A604B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  padding: 12px 8px;
  border-radius: 4px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #fff2dc;
  color: #2A604B;
}

/* Hide mobile menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  header nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -----------------------------------------------------
   TABLES
----------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(42,96,75,0.07);
  border-radius: 12px;
  overflow: hidden;
}
thead {
  background: #2A604B;
  color: #fff;
}
th, td {
  padding: 13px 17px;
  text-align: left;
  font-size: 1rem;
}
tr {
  border-bottom: 1px solid #E6B65522;
}
tr:last-child {
  border-bottom: none;
}
thead tr {
  border-bottom: none;
}
tfoot {
  background: #FAF6F1;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
footer {
  background: #2A604B;
  color: #fff;
  padding: 0 0 0 0;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 16px 18px 16px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #E6B655;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-links a:hover {
  color: #fff;
}
footer address {
  color: #fff;
  font-size: 0.98rem;
  margin: 0;
  font-style: normal;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.footer-social img {
  width: 32px;
  height: 32px;
  filter: brightness(1.2);
  transition: filter 0.18s;
}
.footer-social img:hover {
  filter: brightness(1.5) drop-shadow(0 0 6px #E6B655);
}

/* -----------------------------------------------------
   RESPONSIVE DESIGN
----------------------------------------------------- */
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 8px;
  }
  .content-grid, .card-container, .service-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    align-items: flex-start;
  }
  .inspiration-card, .service-card, .card {
    max-width: 100%;
    min-width: 0;
  }
  .footer-wrapper {
    padding: 20px 8px 8px 8px;
  }
}
@media (max-width: 520px) {
  .section {
    padding: 20px 2px;
    margin-bottom: 30px;
  }
  .content-wrapper, .text-section {
    gap: 10px;
  }
}

/* Mobile: force col alignment for image/text */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* -----------------------------------------------------
   COOKIE CONSENT BANNER
----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9003;
  background: linear-gradient(90deg, #FAF6F1 80%, #E6B655 100%);
  padding: 20px 10px 16px 10px;
  box-shadow: 0 -2px 16px 0 #2A604B14;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  transition: transform 0.3s;
}
.cookie-banner__content {
  font-size: 1rem;
  color: #2A604B;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 10px;
}
.cookie-banner button {
  margin-left: 8px;
  min-width: 124px;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  margin-right: 8px;
  background: #2A604B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, transform 0.22s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #E6B655;
  color: #2A604B;
}
.cookie-banner .cookie-settings {
  background: #E6B655;
  color: #2A604B;
  margin-left: 4px;
}
.cookie-banner .cookie-settings:hover {
  background: #2A604B;
  color: #fff;
}

/* Hide cookie banner when dismissed */
.cookie-banner.hide {
  transform: translateY(120%);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 9100;
  left: 0;
  top: 0; right: 0; bottom: 0;
  background: #2A604Bcc;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
}
.cookie-modal__dialog {
  background: #FAF6F1;
  max-width: 420px;
  width: 90vw;
  padding: 36px 22px 22px 22px;
  border-radius: 22px;
  box-shadow: 0 6px 34px #2A604B48;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #E6B655;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.3rem;
  color: #2A604B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.16s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: #2A604B;
  color: #fff;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.cookie-modal__category input[type=checkbox] {
  accent-color: #E6B655;
  width: 18px; height: 18px;
}
.cookie-modal__label {
  font-weight: 500;
  color: #2A604B;
}
.cookie-modal__label[disabled] {
  opacity: 0.7;
}
.cookie-modal__actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal__actions button {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 22px;
  background: #2A604B;
  color: #fff;
  font-weight: 600;
  transition: background 0.18s;
}
.cookie-modal__actions button:hover,
.cookie-modal__actions button:focus {
  background: #E6B655;
  color: #2A604B;
}

/* Hide cookie modal by default */
.cookie-modal.hide { display: none; }

/* -----------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
----------------------------------------------------- */
.card, .service-card, .inspiration-card, .testimonial-card, .cta, .primary-cta {
  transition: box-shadow 0.3s, transform 0.3s, background 0.28s, color 0.18s;
}

/* -----------------------------------------------------
   OTHER ELEMENTS
----------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #E6B65511;
}
::-webkit-scrollbar-thumb {
  background: #E6B65590;
  border-radius: 12px;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Icon List Items */
li img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
li {
  margin-bottom: 9px;
  font-size: 1rem;
  color: #1C2C28;
  padding-left: 0px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
li:last-child {
  margin-bottom: 0;
}

ol > li {
  list-style-position: inside;
}

/* Accessibility focus style */
a:focus,
button:focus,
.cookie-modal__close:focus {
  outline: 2px solid #E6B655;
  outline-offset: 1px;
}

/* -----------------------------------------------------
   VISUAL HIERARCHY & WHITE SPACE
----------------------------------------------------- */
.section, .content-wrapper, .card-container, .service-grid, .testimonial-card, .inspiration-card {
  margin-bottom: 24px;
}
.section:last-child, .content-wrapper:last-child, .card-container:last-child { margin-bottom: 0; }

/* -----------------------------------------------------
   END OF STYLES
----------------------------------------------------- */
