/* ===================================================
   NATURE ORGANIC / AEIGIS INTERIORS BRAND CSS RESET
=================================================== */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background-color: #EEEBE4;
  color: #233457;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: inline-block;
}
a {
  color: #233457;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #698578;
  outline: none;
}
ul, ol {
  margin: 16px 0 16px 24px;
  padding: 0;
}
li {
  margin-bottom: 10px;
}
address {
  font-style: normal;
  color: #233457;
}
p, blockquote {
  margin-bottom: 16px;
  color: #25382E;
}
blockquote {
  font-style: italic;
  color: #375139;
  background: #e5ede8;
  padding: 18px 24px;
  border-left: 4px solid #698578;
  border-radius: 8px;
  margin: 0 0 16px 0;
}

/* =====================
   TYPOGRAPHY SCALE
====================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #233457;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #233457;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #375139;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #375139;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  h1, .h1 {
    font-size: 1.75rem;
  }
  h2, .h2 {
    font-size: 1.4rem;
  }
}

/***************************
  LAYOUT BASICS & CONTAINERS
****************************/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* MANDATORY SPACING & FLEX PATERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(100, 120, 100, 0.07), 0 1.5px 3px 0 rgba(100, 120, 100, 0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 34px;
    border-radius: 18px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(100, 120, 100, 0.11);
  padding: 28px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(100, 120, 100, 0.19);
  transform: translateY(-4px) scale(1.012);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f5f8f4;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(125,163,143,0.08);
  margin-bottom: 24px;
  width: 100%;
  border-left: 6px solid #7da38f;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(125,163,143,0.14);
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #233457;
  margin-top: -8px;
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f5f8f4;
  padding: 22px 18px;
  border-radius: 22px;
  gap: 15px;
  min-width: 230px;
  flex: 1 0 250px;
  margin: 0;
  box-shadow: 0 1.5px 6px 0 rgba(125,163,143,0.10);
  border: 1px solid #e6efe5;
  transition: box-shadow 0.18s, border 0.18s, transform 0.16s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 12px 24px 8px 18px;
  background: #eeebe4;
  box-shadow: 0 2px 6px 0 rgba(109,166,119,0.09);
}
.feature-item:hover {
  box-shadow: 0 4px 20px 0 rgba(125,163,143,0.18);
  border-color: #698578;
  transform: translateY(-2px) scale(1.018);
}

/* ===============
   NAVIGATION BAR
================= */
header {
  background: #fff;
  border-bottom: 1.5px solid #e5ede8;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  min-height: 72px;
  gap: 18px;
}
.logo-link img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.008em;
  color: #233457;
  padding: 6px 2px;
  border-radius: 8px;
  transition: background 0.13s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #7DA38F;
  background: #f1f5f2;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 32px;
  background: #698578;
  color: #fff;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 8px 0 rgba(109,166,119,0.11);
  cursor: pointer;
  margin-left: 18px;
  margin-right: 10px;
  transition: background 0.2s, box-shadow 0.2s, color 0.11s, transform 0.08s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7DA38F;
  color: #FFFFFF;
  box-shadow: 0 4px 20px 0 rgba(125,163,143,0.17);
  transform: translateY(-2px) scale(1.015);
}

/***************
 MOBILE NAV MENU
****************/
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  background: none;
  color: #698578;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  border-radius: 7px;
  padding: 6px 12px;
  transition: background 0.13s;
  z-index: 130;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(125,163,143,0.09);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 24px 0 rgba(109,166,119,0.12);
  z-index: 200;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(0.6,0.5,0.23,1), opacity 0.19s;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #698578;
  align-self: flex-end;
  margin: 24px 32px 0 0;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 9px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e8eee5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin: 60px 32px 0 32px;
  width: calc(100% - 64px);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #233457;
  padding: 16px 14px;
  margin: 0;
  border-radius: 16px;
  background: #f5f8f4;
  transition: background 0.16s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #dbeadd;
  color: #7DA38F;
}

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .btn-primary {
    margin-left: auto;
  }
}
@media (min-width: 1051px) {
  .mobile-menu,
  .mobile-menu.active,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/********************
    FOOTER AREA
********************/
footer {
  background: #f5f8f4;
  border-top: 1.5px solid #dbead7;
  padding: 32px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #698578;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #233457;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: #46694d;
}
.footer-brand img {
  height: 42px;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/********************
    PAGES LAYOUT
********************/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 16px;
}
.service-item {
  background: #f5f8f4;
  border-radius: 18px;
  padding: 28px 20px 18px 20px;
  box-shadow: 0 1.5px 6px 0 rgba(125,163,143,0.10);
  min-width: 230px;
  flex: 1 0 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e6efe5;
  transition: box-shadow 0.2s, border 0.14s, transform 0.11s;
}
.service-item strong {
  color: #698578;
}
.service-item:hover {
  box-shadow: 0 4px 18px 0 rgba(125,163,143,0.13);
  border-color: #7da38f;
  transform: translateY(-2px) scale(1.012);
}
.team-bio {
  background: #f1f5f2;
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px 0 rgba(125,163,143,0.08);
}
.author-info {
  color: #698578;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 10px;
}

/***************************
 CTA SECTIONS, ABOUT, TEXTS
****************************/
.cta-section {
  background: #e5ede8;
  border-radius: 32px;
  padding: 48px 20px 38px 20px;
  box-shadow: 0 2px 16px 0 rgba(109,166,119,0.11);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

/*********************
      GALLERY, BLOG
**********************/
article {
  background: #fff;
  border-radius: 13px;
  padding: 22px 16px 15px 16px;
  margin-bottom: 24px;
  box-shadow: 0 1.5px 5px 0 rgba(109,166,119,0.07);
}
article h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
article a {
  color: #698578;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.17s;
}
article a:hover, article a:focus {
  color: #375139;
}

/***************************************************
 COOKIE CONSENT BANNER & MODAL (high contrast, organic)
***************************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #233457;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99999;
  padding: 26px 16px 20px 16px;
  box-shadow: 0 -2px 22px 0 rgba(100,120,110,0.11);
  font-size: 1rem;
  gap: 15px;
  animation: slideBannerUp 0.7s cubic-bezier(0.5, 0.18, 0.23, 1);
}
@keyframes slideBannerUp {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: #f3f3ed;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #7DA38F;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(109,166,119,0.13);
  transition: background 0.18s, transform 0.14s;
}
.cookie-btn.reject {
  background: #e36c54;
  color: #fff;
}
.cookie-btn.settings {
  background: #f5f8f4;
  color: #233457;
  border: 1.5px solid #698578;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #25382E;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e5ede8;
  color: #233457;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 52, 87, 0.30);
  align-items: center;
  justify-content: center;
  animation: fadeinModalBg 0.31s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeinModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  min-width: 325px;
  max-width: 90vw;
  box-shadow: 0 6px 36px 0 rgba(35,52,87,0.17);
  padding: 32px 20px 26px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: scaleinModal 0.25s cubic-bezier(0.47,1.54,0.36,0.9);
}
@keyframes scaleinModal {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: #233457;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e5ede8;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #7DA38F;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  transition: transform 0.21s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #698578;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  background: #e5ede8;
}

/**********************************************************
  UTILITIES & VISUALS FOR NATURE ORGANIC AMBIENCE & SHAPES
**********************************************************/
.organic-separator {
  width: 62px;
  height: 10px;
  border-radius: 100vw 33px / 52px 40%;
  background: #D4DECE;
  margin: 18px auto 24px auto;
  display: block;
}
.rounded {
  border-radius: 999px !important;
}
.earth-shadow {
  box-shadow: 0 4px 48px 0 rgba(221,210,170,0.16);
}
.green-accent {
  color: #698578;
}
.bg-accent {
  background: #e5ede8 !important;
}
.bg-earth {
  background: #E2D2B8 !important;
}

/**********************************
   RESPONSIVE ADJUSTMENTS
***********************************/
@media (max-width: 900px) {
  .features-grid, .services-list {
    flex-direction: column;
    gap: 14px;
  }
  .service-item, .feature-item {
    min-width: unset;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .testimonial-card {
    padding: 14px 12px;
    border-radius: 13px;
  }
  .feature-item, .service-item {
    padding: 14px 12px;
    border-radius: 13px;
    font-size: 0.99rem;
  }
}
@media (max-width: 700px) {
  .container, .content-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }
  header .btn-primary, .btn-primary {
    padding: 10px 20px;
    font-size: 0.98rem;
  }
}

/**************************************
   FOCUS, ACCESSIBILITY & MICRO ANIMS
***************************************/
a, button, .btn-primary, .cookie-btn {
  outline: none;
}
a:focus-visible, .btn-primary:focus-visible, .cookie-btn:focus-visible {
  box-shadow: 0 0 0 3px #7da38faa;
}

::-webkit-input-placeholder  { color: #37513988; }
::-moz-placeholder           { color: #37513988; }
:-ms-input-placeholder       { color: #37513988; }
::placeholder               { color: #37513988; }

/**************************************/
/****** END of Aegis Interiors CSS *****/
/**************************************/
