/* ===== HUSHED GLOW CSS RESET & BASE ===== */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #ffffff;
  color: #184153;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}
a {
  color: #184153;
  text-decoration: none;
  transition: color .2s;
  font-weight: 600;
}
a:focus {
  outline: 2px solid #B37A2B;
  outline-offset: 2px;
}
a:hover {
  color: #B37A2B;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -.03em;
  color: #184153;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 32px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 700;
}
p, li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #184153;
}
strong {
  font-weight: 800;
}
em {
  font-style: italic;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== CONTAINERS & GLOBAL LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(24,65,83,.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== HEADER ===== */
header {
  background: #184153;
  padding: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px 20px 20px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  gap: 32px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #B37A2B;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: width .2s;
  border-radius: 8px;
}
header nav a:hover,
header nav a.active {
  color: #B37A2B;
}
header nav a:hover::after,
header nav a.active::after {
  width: 100%;
}
.cta-btn {
  background: #B37A2B;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  transition: background .18s, color .18s, box-shadow .2s;
  box-shadow: 0 2px 12px 0 rgba(179,122,43,.08);
  cursor: pointer;
  margin-left: 20px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #184153;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(24,65,83,.20);
  outline: none;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: #B37A2B;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 18px;
  border-radius: 10px;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #184153;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #184153;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.76,.1,.24,.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 201;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 16px 36px;
  border-radius: 6px;
  transition: background .1s, color .1s;
}
.mobile-nav a:hover {
  background: #B37A2B;
  color: #184153;
}
/* Hide desktop nav/cta on mobile, show burger */
@media (max-width: 1020px){
  header nav,
  header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== FLEXBOX KNOWN PATTERNS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(24,65,83,.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 24px 24px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow .23s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(179,122,43,.18);
}
.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: 20px;
  background: #F2E6C7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,65,83,.07);
  padding: 20px 28px;
  margin-bottom: 20px;
  max-width: 720px;
  color: #184153;
}
.testimonial-card p {
  font-size: 1.125rem;
  font-weight: 700;
  color: #184153;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #184153;
  font-size: 1rem;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HERO + LANDING BOLD ===== */
.hero {
  background: #184153;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
}
.hero h1 {
  color: #fff;
}
.hero .cta-btn {
  background: #fff;
  color: #184153;
  margin-top: 20px;
}
.hero .cta-btn:hover {
  background: #B37A2B;
  color: #fff;
}

/* ===== FEATURE GRID (INDEX) ===== */
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 240px;
  min-width: 210px;
  background: #F2E6C7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,65,83,.07);
  padding: 32px 20px 28px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .18s;
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 6px 22px 0 rgba(179,122,43,.18);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.feature h3 {
  color: #184153;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.feature p {
  color: #184153;
}

/* ===== CTA LINKS & BUTTONS ===== */
.cta-link {
  color: #B37A2B;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 2px solid #B37A2B;
  transition: color .15s, border-bottom-color .15s;
  padding-bottom: 2px;
  display: inline-block;
}
.cta-link:hover {
  color: #184153;
  border-bottom-color: #184153;
}

/* ===== FOOTER ===== */
footer {
  background: #184153;
  color: #fff;
  width: 100%;
  padding: 48px 0 24px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #fff;
  opacity: .85;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 16px;
  transition: color .15s, opacity .15s;
}
.footer-menu a:hover {
  color: #B37A2B;
  opacity: 1;
}
.contact-info {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-top: 10px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
  margin-right: 5px;
}

/* ===== SECTION SPACING & ALIGNMENTS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
@media (max-width: 768px) {
  section {
    padding: 28px 0;
    margin-bottom: 36px;
  }
}

/* == GENERAL SPACING for CARDS/WRAPPERS == */
.card-container,
.feature-grid,
.content-grid,
.section,
.text-image-section {
  gap: 20px;
}
.card, .feature, .testimonial-card {
  margin-bottom: 20px;
}

/* ===== BLOG PAGE ARTICLE LIST ===== */
.text-section ul > li > p {
  margin: 4px 0 8px 0;
}
.text-section ul li strong {
  color: #B37A2B;
}

/* ===== SCALES & RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 10px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
}

/* ===== RESPONSIVE FLEX LAYOUTS ===== */
@media (max-width: 900px) {
  .card-container,
  .feature-grid,
  .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  header .container {
    padding: 18px 10px 18px 10px;
    gap: 8px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .contact-info {
    margin-top: 12px;
    font-size: 0.95rem;
  }
  .feature, .card, .testimonial-card {
    padding: 16px 10px 12px 10px;
  }
}


/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #184153;
  color: #fff;
  z-index: 9999;
  padding: 20px 16px 20px 16px;
  box-shadow: 0 -2px 32px 0 rgba(24,65,83,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  animation: slideup-banner .6s cubic-bezier(.76,.1,.24,.9);
}
@keyframes slideup-banner {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: #B37A2B;
  color: #fff;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .17s;
  font-size: 1rem;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #184153;
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: #184153;
  color: #B37A2B;
  border: 1.5px solid #B37A2B;
  font-weight: 700;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #B37A2B;
  color: #fff;
}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 65, 83, 0.80);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fade-cookie-modal .2s;
}
@keyframes fade-cookie-modal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #184153;
  border-radius: 16px;
  padding: 34px 24px 28px 24px;
  width: 94vw;
  max-width: 370px;
  box-shadow: 0 2px 36px 0 rgba(24,65,83,.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #184153;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B37A2B;
  width: 19px;
  height: 19px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 700;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #B37A2B;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.5rem;
  padding: 2px 10px;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #184153;
  color: #fff;
}

/* ====== ANIMATION: BUTTON ====== */
.cta-btn, .cookie-btn {
  transition: transform .15s, box-shadow .19s;
}
.cta-btn:hover, .cta-btn:focus, .cookie-btn:active {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px 0 rgba(179,122,43,.22);
}

/* MICRO-INTERACTION: Feature/card/testimonial */
.card:hover, .feature:hover, .testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(24,65,83,.14);
}

/* ===== ACCESSIBLE FOCUS ===== */
.card:focus-within, .feature:focus-within, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid #B37A2B;
  outline-offset: 1px;
}

/* ===== HIGH CONTRAST FOR TESTIMONIALS/REVIEWS ===== */
.testimonial-card {
  background: #F2E6C7;
  color: #184153;
  border-left: 7px solid #B37A2B;
  font-size: 1.05rem;
}

/* ====== UTILITY: HIDE ====== */
.hide {
  display: none !important;
}

/* ===== PRINT ==== */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  section, .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}

/* ===== EXTRA UTILITY CLASSES/OVERRIDES ===== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }
.text-center, .center { text-align: center; align-items: center !important; }

/* ===== SPECIAL: Hushed Glow Geometric Accents ===== */
.section::before, .section::after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section {
  position: relative;
  overflow: visible;
}
.section::before {
  width: 72px;
  height: 72px;
  background: #B37A2B;
  opacity: 0.13;
  border-radius: 16px 70% 80% 30%/70% 50% 80% 55%;
  top: -28px;
  left: -32px;
}
.section::after {
  width: 46px;
  height: 46px;
  background: #184153;
  opacity: 0.07;
  border-radius: 50% 50% 40% 60%/52% 42% 68% 65%;
  bottom: -16px;
  right: -24px;
}
/* Hide for mobile */
@media (max-width:600px) {
  .section::before, .section::after {
    display: none !important;
  }
}

/* ===== OPEN SANS & MONTSERRAT FALLBACKS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
}

h1, h2, h3, h4, .cta-btn, .footer-menu a, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
}
