/* ARCHON PULSE - ELEGANT CLASSIC STYLE CSS */

/* -----------------------
   CSS RESET & NORMALIZE
------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #f8f7f4;
  color: #1a271d;
  font-family: 'Roboto', 'Georgia', serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205726;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #6BA872;
}
ul, ol {
  margin-left: 1.6em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.4em;
}
section, footer, header, main, nav {
  display: block;
}
button, [type="button"], [type="submit"] {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* -----------------------
   TYPOGRAPHY
------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Georgia, serif;
  font-weight: 700;
  color: #18381A;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.8rem;
  margin-top: 0;
}
h2 {
  font-size: 2rem;
  margin-top: 24px;
}
h3 {
  font-size: 1.5rem;
  margin-top: 18px;
}

p, blockquote {
  font-size: 1.12rem;
  color: #2D3E2C;
  margin-bottom: 1.15em;
  line-height: 1.7;
}
blockquote {
  font-family: "Georgia", serif;
  color: #18381A;
  font-style: italic;
  border-left: 3px solid #205726;
  padding-left: 16px;
  margin-bottom: 0.7em;
}
strong {
  font-weight: bold;
}
.tag {
  background: #6BA872;
  color: #fff;
  font-size: 0.9rem;
  padding: 2px 12px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: 'Montserrat', serif;
}

/* ---------------------
   CONTAINER & SECTION
---------------------- */
.container {
  width: 95%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}
.section {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 16px 0 rgba(33,40,24,0.06);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 28px;
  }
}

/* --------------
   FLEX LAYOUTS
--------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,40,24,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 285px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 6px 26px 2px rgba(32, 87, 38, 0.11);
  transform: translateY(-3px) scale(1.04);
  z-index: 1;
}
.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: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* -------------------
   HEADER + NAVIGATION
-------------------- */
header {
  background: #F2E2CE;
  box-shadow: 0 1px 10px rgba(32,87,38,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px 0;
  gap: 18px 20px;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.1rem;
  color: #205726;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  margin-right: 2px;
}
header nav a:hover, header nav a:focus {
  background: #e4dac8;
  color: #18381A;
}
header nav a.cta {
  background: #205726;
  color: #fff;
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 rgba(32,87,38, 0.05);
  transition: background 0.18s, color 0.18s, transform 0.17s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #6BA872;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
header nav img {
  height: 36px;
  margin-right: 14px;
  vertical-align: middle;
}

/* ----- MOBILE MENU ----- */
.mobile-menu-toggle {
  display: none;
  background: #205726;
  color: #fff;
  font-size: 2em;
  border-radius: 10px;
  padding: 6px 18px;
  margin-left: auto;
  z-index: 60;
  transition: background 0.2s;
  border: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #6BA872;
}
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F2E2CE;
  z-index: 80;
  transform: translateX(-102vw);
  transition: transform 0.3s cubic-bezier(0.68,0.02,0.29,0.93);
  display: flex;
  flex-direction: column;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 5px 0 32px 0 rgba(32,87,38,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 0 0;
  padding: 0 10px;
  background: #205726;
  color: #fff;
  font-size: 2.3em;
  border-radius: 10px;
  line-height: 1;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #6BA872;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: 36px;
  gap: 0;
}
.mobile-nav a {
  color: #18381A;
  font-family: 'Montserrat', serif;
  font-size: 1.48rem;
  font-weight: 600;
  padding: 20px 38px;
  border-bottom: 1px solid #e6d7ba;
  transition: background 0.16s, color 0.14s;
  border-radius: 0;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #e9e0cf;
  color: #205726;
}
@media (min-width: 1020px) {
  .mobile-menu { display: none!important; }
}

/* -------------------
   FOOTER
-------------------- */
footer {
  background: #FFF8F1;
  border-top: 1px solid #ebdfc5;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container { padding-bottom: 32px; }
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
}
footer nav a {
  color: #6BA872;
  font-family: 'Montserrat', serif;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 1.02rem;
}
footer nav a:hover, footer nav a:focus {
  color: #205726;
  background: #ece2d2;
}
footer img {
  height: 48px;
  margin-bottom: 5px;
}
footer address {
  font-style: normal;
  color: #4d5c43;
  margin-top: 9px;
  font-size: 1rem;
}
footer a img {
  margin-right: 10px;
  margin-bottom: 0;
  vertical-align: middle;
}
footer div > a {
  display: inline-block;
}
@media (min-width: 900px) {
  footer .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
  }
}

/* --------- 
   BUTTONS 
---------- */
.cta, .btn {
  display: inline-block;
  background: #205726;
  color: #fff;
  font-family: 'Montserrat',serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  border-radius: 9px;
  padding: 13px 38px;
  margin-top: 8px;
  box-shadow: 0 3px 13px 0 rgba(0,0,0,0.09);
  transition: background 0.17s, color 0.14s, transform 0.13s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: #6BA872;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px 0 rgba(32,87,38, 0.08);
}

/* -----------
   LISTS & ICONS 
------------ */
ul {
  list-style-type: disc;
  padding-left: 32px;
  margin-bottom: 0;
}
ul li {
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #263B28;
}
ul li img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 7px;
}
.section ul {
  margin-bottom: 0;
}

/* ---------------
   TESTIMONIALS
---------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8f7f4;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(32,87,38,0.07);
  padding: 20px;
  margin-bottom: 20px;
  border: 1.5px solid #eae2d2;
  font-family: Georgia, 'Times New Roman', serif;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #205726;
  margin-bottom: 2px;
  border-left: none;
  padding-left: 0;
}
.testimonial-card span {
  font-size: 1.02rem;
  color: #3d5b44;
  font-style: normal;
  font-family: 'Montserrat', serif;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 16px;
  }
}

/* -------------
   MAP PLACEHOLDER
--------------- */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #e9e6de;
  border-radius: 10px;
  padding: 16px;
  margin: 16px 0 12px 0;
  font-size: 1rem;
  color: #1e281c;
}
@media (max-width: 600px) {
  .map-placeholder {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }
}

/* -------------
   RESPONSIVE
--------------- */
@media (max-width: 900px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.35rem; }
  section, .section { padding: 26px 5px; }
  .container { max-width: 97vw; padding: 0 2vw; }
}
@media (max-width: 600px) {
  .section { padding: 18px 2vw; }
  h2 { font-size: 1.13rem; }
  p, blockquote, ul li { font-size: 0.97rem; }
}

/* -------------
   MICRO EFFECTS
--------------- */
.card, .testimonial-card, .cta, .btn, .section {
  transition: box-shadow 0.18s, background 0.16s, border-color 0.14s, transform 0.12s;
}
li img, .testimonial-card img {
  filter: grayscale(10%) contrast(0.97);
  transition: filter 0.14s;
}
li img:hover, .testimonial-card img:hover { filter: none; }

/* -------------
   COOKIES BANNER
--------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #f9f4eb;
  color: #205726;
  border-top: 2px solid #d6b57e;
  box-shadow: 0 0 18px 2px rgba(32,87,38,0.10);
  padding: 24px 18px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  animation: slideupBanner 0.38s cubic-bezier(0.68,0.02,0.29,0.93);
}
@keyframes slideupBanner {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .btn {
  padding: 8px 26px;
  margin: 0 2px;
  font-size: 1rem;
  background: #205726;
  border-radius: 7px;
}
.cookie-banner .btn.alt {
  background: #eae2d2;
  color: #205726;
}
.cookie-banner .btn.alt:hover {
  background: #e2ccb1;
  color: #18381A;
}
.cookie-banner .btn.settings {
  background: #6BA872;
  color: #fff;
}
.cookie-banner .btn.settings:hover {
  background: #205726;
  color: #fff;
}

/* -------------
   COOKIE MODAL
--------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,87,38,0.18);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.22s cubic-bezier(.68,.02,.29,.93);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #FFF8F1;
  border-radius: 15px;
  box-shadow: 0 8px 36px 0 rgba(32,87,38,0.19);
  padding: 38px 22px 22px 22px;
  width: 95vw;
  max-width: 400px;
  min-width: 240px;
  color: #1a271d;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: popupModal 0.26s cubic-bezier(.68,.02,.29,.93);
}
@keyframes popupModal {
  from { transform: scale(0.80); opacity: 0; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: #205726;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', serif;
}
.cookie-modal .switch {
  display: inline-block;
  width: 38px;
  height: 22px;
  background: #e8e6de;
  border-radius: 16px;
  position: relative;
  transition: background 0.17s;
  margin-left: 5px;
}
.cookie-modal .switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #6BA872;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-modal .switch input:checked + .slider {
  transform: translateX(16px);
  background: #205726;
}
.cookie-modal .btn {
  background: #205726;
  color: #fff;
  margin-top: 12px;
}
.cookie-modal .btn:hover, .cookie-modal .btn:focus {
  background: #6BA872;
  color: #fff;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 11px; right: 12px;
  font-size: 1.7rem;
  color: #6BA872;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 12;
}
.cookie-modal .close-btn:focus, .cookie-modal .close-btn:hover {
  color: #205726;
}

/* ----------
   MISC UTILS
----------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* Accessible focus */
a:focus-visible, .btn:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 3px solid #6BA872;
  outline-offset: 3px;
}


/* Hide visually */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}


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