/* ========== CSS RESET & CORE ================== */
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 { box-sizing:border-box; font-size:16px; scroll-behavior:smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #faf7f2;
  color: #23415a;
  line-height: 1.6;
  min-height:100vh;
  font-size: 1rem;
  position:relative;
}
a { color: #23415a; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #c69c37; outline: none; }
ul, li { list-style-type: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight:700; color: #23415a;}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -0.02em; }
h2 { font-size: 2rem; margin-bottom: 18px; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }
section { margin-bottom: 60px; padding: 40px 20px; }

/* === Container and Core Layouts === */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

/* ========== HEADER & NAV ============= */
header {
  background: #fff;
  border-bottom: 1px solid #eee2ce;
  box-shadow: 0 4px 24px -12px rgba(36,36,36,0.07);
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
}
header img {
  height: 46px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 5px;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f2c572;
  color: #23415a;
}
.cta-btn {
  background: #f2c572;
  color: #23415a;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 30px;
  border-radius: 32px;
  box-shadow: 0 2px 8px -2px #dfb95044;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 0;
  outline:none;
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.23s, color 0.23s;
  border: 2px solid #f2c572;
  margin-left: 18px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #23415a;
  color: #f2c572;
  box-shadow: 0 2px 14px -2px #23415a22;
  border-color: #23415a;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #23415a;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
  z-index: 200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f2c57244;
}

/* ========== MOBILE NAV ============= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 41, 58, 0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.86,0,.07,1);
  z-index: 9999;
  padding: 0;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #f2c572;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 22px 24px 8px 0;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 34px 32px;
  width: 100%;
  max-width: 350px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  padding: 10px 0;
  border-radius: 3px;
  font-weight:600;
  letter-spacing: 0.02em;
  transition: color .17s, background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #f2c572;
  background: #23415a77;
}
@media (max-width:1150px) {
  .container { max-width: 1000px; }
}
@media (max-width: 960px) {
  .container { max-width: 800px; }
}
@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 830px) {
  .main-nav { gap: 6px; }
  header img { height:38px; }
  .cta-btn { font-size:1rem; padding:9px 20px; margin-left:10px; }
}
@media (max-width: 768px) {
  header .main-nav,
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size:1.09rem; }
  section {padding: 28px 8px; margin-bottom: 32px;}
}
@media (max-width: 550px) {
  h1 { font-size: 1.45rem; }
  .mobile-nav { padding: 24px 16px; }
}

/* ========== HERO HEADER ============= */
.hero {
  background: #23415a;
  background-image: none;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 56px;
  box-shadow: 0 6px 24px -8px #23415a17;
}
.hero h1, .hero h2, .hero h3 {
  color: #f2c572;
  text-shadow: 0 2px 16px #23415a44;
}
.hero p, .hero .subheadline {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 400;
  margin-bottom: 18px;
  opacity: .94;
  text-shadow: 0 2px 12px #23415a22;
}
.hero .cta-btn {
  background: #fff;
  color: #23415a;
  border: 2px solid #f2c572;
}
.hero .cta-btn:hover {
  background: #f2c572;
  color: #23415a;
}
@media (max-width: 768px) {
  .hero {border-radius:0 0 20px 20px; margin-bottom:32px;padding:22px 12px;}
  .hero p, .hero .subheadline {font-size:1.08rem}
}

/* ========== FLEX/GRID SUPPORT CLASSES ========= */
.feature-grid, .tips-grid, .post-teasers, .story-list, .inspiration-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.feature-grid, .tips-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.post-teasers, .story-list, .inspiration-teasers {
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
}
.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: 14px;
  padding: 21px 32px 18px 32px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px -6px #23415a15;
  border: 1.5px solid #eedca8;
  font-size: 1.14rem;
  max-width:640px;
}
.testimonial-card span {
  color: #a3862a;
  font-family: 'Montserrat',sans-serif;
  font-size: .96rem;
  font-weight: 600;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 1000px) {
  .feature-grid, .tips-grid, .post-teasers, .story-list, .inspiration-teasers, .card-container {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .feature-grid, .tips-grid, .post-teasers, .story-list, .inspiration-teasers {
    gap: 10px;
  }
  .testimonial-card { padding: 16px 12px 13px 12px; }
}
@media (max-width: 768px) {
  .feature-grid, .tips-grid, .post-teasers, .story-list, .inspiration-teasers, .card-container {
    gap: 10px;
    flex-direction: column;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========== FEATURE CARDS/TILES ============= */
.feature {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 14px -7px #23415a11;
  border: 1.5px solid #eedca8;
  padding: 24px 32px 22px 32px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .25s, border-color .23s;
  position: relative;
  overflow: hidden;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px #f2c57233);
}
.feature h3 {
  font-size: 1.19rem;
  color: #23415a;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 28px -9px #23415a26;
  border-color: #f2c572;
  cursor: pointer;
}
/* For clickable cards with links */
.feature a { display: contents; color: inherit; }

/* ========== POST AND STORY TEASERS ============= */
.post-teasers article, .story-list article, .inspiration-teasers article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px -5px #23415a18;
  border: 1.5px solid #eedca8;
  flex: 1 1 230px;
  min-width: 200px;
  padding: 20px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .24s, border-color .2s;
}
.post-teasers article:hover, .story-list article:hover, .inspiration-teasers article:hover {
  box-shadow: 0 5px 18px -5px #f2c57250;
  border-color: #f2c572;
}
.post-teasers h3, .story-list h3, .inspiration-teasers h3 {
  font-size: 1.09rem;
  color: #23415a;
  margin-bottom: 6px;
}
.post-teasers a,
.story-list a,
.inspiration-teasers a {
  color: #a3862a;
  text-decoration: underline;
  font-family:'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight:600;
  margin-top: 10px;
  transition: color .16s;
}
.post-teasers a:hover,
.story-list a:hover,
.inspiration-teasers a:hover { color: #23415a; }

/* ========== TIPS CARDS ============= */
.tips-grid {
  flex-wrap: wrap;
}
.tip-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px -6px #23415a1a;
  border: 1.5px solid #eedca8;
  flex: 1 1 220px;
  min-width: 200px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .23s, border-color .19s;
}
.tip-card img {
  width: 35px; height: 35px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 7px #f2c5721c);
}
.tip-card h3 {margin-bottom:8px;}
.tip-card:hover, .tip-card:focus {
  box-shadow: 0 8px 28px -9px #23415a26;
  border-color: #f2c572;
}

/* ========== TAGS/CATEGORIES ============= */
.tags-filter, .category-tags, .topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  margin-top: 10px;
}
.tags-filter span, .category-tags span {
  background: #23415a;
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-size: .96rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 16px;
  border: 1px solid #f2c572;
  letter-spacing: .02em;
}
.topic-links a {
  color: #23415a;
  font-family: 'Montserrat',sans-serif;
  font-weight:600;
  font-size:1.02rem;
  margin: 0 5px;
  border-bottom: 1.5px solid #f2c572;
  transition: color .19s;
}
.topic-links a:hover { color: #a3862a;}

/* ========== TEXT BLOCKS ============= */
.text-section {
  font-size: 1.14rem;
  color: #23415a;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.7;
}
.text-section ul {
  margin: 8px 0 12px 20px;
  padding-left: 14px;
  list-style-type: disc;
}
.text-section li {
  margin-bottom: 4px;
  font-size:1.06rem;
}
.text-section strong {color:#a3862a;}

.address-details {
  margin-top:18px;
  font-size:1rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap:7px;
  margin-top:12px;
}
.contact-info img {
  vertical-align:middle;
  width:22px; height:22px; margin-right:6px; margin-bottom:-5px;
}

/* ========== CTA SECTION ============= */
.cta-section {
  background: #23415a;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px -8px #23415a18;
  margin-bottom: 40px;
  text-align: center;
}
.cta-section h2 {color: #f2c572;}
.cta-section p {font-size:1.14rem;color: #fff; margin:10px auto 30px auto;max-width:440px;}
.cta-section .cta-btn {
  background: #f2c572;
  color: #23415a;
  margin: 0 auto;
  display: inline-block;
  box-shadow:0 1px 7px -2px #eedca8;
}
.cta-section .cta-btn:hover {
  background: #fff; color: #23415a;
}
@media (max-width:768px) {
  .cta-section {border-radius:11px; margin-bottom:19px;}
}

/* ======= PAGINATION ======== */
.pagination {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-start;
  align-items:center;
  margin-top: 12px;
}
.pagination a {
  background: #fff;
  color: #23415a;
  border-radius: 50%;
  font-family:'Montserrat',sans-serif;
  border: 1.5px solid #eedca8;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size:1rem;
  box-shadow:0 2px 10px -6px #eedca822;
  transition: background .19s, color .18s, border-color .19s;
}
.pagination a:hover, .pagination a:focus {
  background: #f2c572;
  color: #23415a;
  border-color: #f2c572;
}

/* ======== FOOTER =========== */
footer {
  background: #fffaf3;
  border-top: 1px solid #eedca8;
  padding: 32px 0 20px 0;
  margin-top: 30px;
  position:relative;
  z-index:4;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-menu a {
  color: #a3862a;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color .18s, text-decoration .17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #23415a;
  text-decoration: underline;
}
.contact-short {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 4px;
}
.contact-short img {
  width: 52px;
  height: 52px;
}
.contact-short p, .contact-short a {
  font-size: 1.02rem;
  color: #23415a;
}
.social-links {
  display: flex;
  gap: 15px;
  align-items:center;
}
.social-links img {
  width:32px; height:32px; transition:filter .17s; cursor:pointer;
}
.social-links img:hover { filter: brightness(1.4) drop-shadow(0 2px 8px #f2c57233);
}
.copyright {
  color: #b6a375;
  font-size:.92rem;
  letter-spacing:.015em;
}
@media (max-width:700px) {
  .footer-menu {
    flex-direction: column;
    gap:8px;
    align-items:flex-start;
  }
  .contact-short {
    flex-direction: column;
    align-items:flex-start;
    gap:10px;
  }
  .social-links {gap:8px;}
}

/* ========== COOKIE CONSENT BANNER ============= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right:0;
  width: 100vw;
  max-width:100vw;
  background: #fff;
  border-top: 2px solid #eedca8;
  box-shadow: 0 -2px 15px -7px #23415a13;
  padding: 18px 18px 24px 18px;
  z-index: 14000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  transition: transform .32s;
}
.cookie-consent-banner.hide { transform:translateY(120%); pointer-events:none; opacity:0; }
.cookie-consent-banner span {
  font-size: 1.06rem;
  color: #23415a;
  font-family: 'Open Sans',sans-serif;
  line-height:1.45;
  max-width: 540px;
  margin-right:16px;
}
.cookie-consent-banner button {
  background: #f2c572;
  color: #23415a;
  font-family: 'Montserrat',sans-serif;
  font-weight:700;
  font-size: 1rem;
  border: 0;
  margin-right:10px;
  padding:9px 22px;
  border-radius: 20px;
  cursor:pointer;
  transition: background .18s, color .18s, box-shadow .17s;
  box-shadow:0 2px 8px -2px #eedca844;
  border:1.5px solid #eedca8;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #23415a;
  color: #f2c572;
  outline: none;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #fff;
  color: #a3862a;
  border: 2px solid #f2c572;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #f2c572;
  color: #23415a; 
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 10px 18px 10px;
  }
  .cookie-consent-banner span {font-size:.99rem; margin-right:0;}
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 20000;
  top: 0; left:0; right:0; bottom:0;
  background: rgba(35, 41, 58, 0.74);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
  opacity:1;
  transition: opacity .33s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 32px -12px #eedca844, 0 1px 20px -8px #e4be5f33;
  width: 100%;
  max-width: 440px;
  padding: 32px 30px 24px 30px;
  z-index: 21005;
  margin-bottom:0;
  animation: slideUpCookie .41s cubic-bezier(.71,0,.2,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(140px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.13rem;
  color: #23415a;
  margin-bottom:15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1.06rem;
}
.cookie-modal .category-name {
  font-weight: 600;
  color: #23415a;
  font-family: 'Montserrat',sans-serif;
}
.cookie-modal .category-toggle {
  margin-left: 10px;
}
.cookie-modal .toggle-switch {
  display:inline-flex; align-items:center;
}
.cookie-modal .toggle-switch input {
  display:none;
}
.cookie-modal .toggle-slider {
  width:36px; height:20px;
  background:#eedca8; border-radius:20px;
  position:relative; transition:.2s;
  cursor:pointer;
  margin-left:2px;
}
.cookie-modal .toggle-slider:before {
  content:''; position:absolute; left:2px; top:2px; width:16px; height:16px; background:#fff; border-radius:50%; transition:.2s; box-shadow:0 1px 2px #e7b62618;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #f2c572;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  left:18px;
}
.cookie-modal .category-description {
  font-size: .98rem;
  color: #816411;
  margin-bottom: 10px;
  margin-left: 2px;
}
.cookie-modal .cookie-modal-actions {
  display: flex; flex-direction: row; gap: 15px; justify-content: flex-end; margin-top: 22px;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1.01rem;
  padding:7px 22px;
  border-radius: 16px;
  font-weight: 700;
  border: 2px solid #f2c572;
  background: #f2c572;
  color: #23415a;
  font-family: 'Montserrat',sans-serif;
  transition: background .18s, color .18s;
}
.cookie-modal .cookie-modal-actions .cancel-btn {
  background: #fff;
  color: #23415a;
}
.cookie-modal .cookie-modal-actions .cancel-btn:hover {
  background: #eee2ce;
}
.cookie-modal .cookie-modal-actions .save-btn:hover {
  background: #23415a;
  color: #f2c572;
}
@media (max-width:470px) {
  .cookie-modal { max-width:94vw; padding:18px 8px 16px 8px; }
  .cookie-modal .cookie-modal-actions button {
    font-size:.99rem; padding:7px 13px;
  }
}

/* ========== RESPONSIVENESS ============= */
@media (max-width:768px) {
  .feature, .tip-card, .post-teasers article, .story-list article, .inspiration-teasers article {
    padding: 16px 10px;
    min-width: 0; flex: 1 1 110px;
  }
  .testimonial-card {
    padding: 13px 8px 10px 8px;
    max-width:100vw;
  }
  .content-wrapper, .text-section {gap:14px;}
}

/* ========== BUTTONS =============*/
button, .cta-btn {
  outline: none;
}
button:focus, .cta-btn:focus { box-shadow: 0 0 0 2px #eedca855; }

/* ========== TYPOGRAPHY SCALE & HIERARCHY ========== */
@media (max-width:550px){
  body, .text-section { font-size:.98rem; }
}

/* ========== VISUAL MICRO-INTERACTIONS ============= */
.feature, .tip-card, .post-teasers article, .story-list article, .inspiration-teasers article, .testimonial-card, .cta-btn, .pagination a {
  transition: box-shadow .19s, border-color .14s, background .14s, color .13s;
}
.feature:hover, .tip-card:hover, .post-teasers article:hover, .story-list article:hover, .inspiration-teasers article:hover {
  box-shadow: 0 8px 32px -10px #dfb95030;
  border-color: #c69c37;
}

/* ====== Utility Spacing Classes (Optional) ======= */
.mb-20 { margin-bottom:20px; }
.mb-32 { margin-bottom:32px; }
.mb-40 { margin-bottom:40px; }
.pt-20 { padding-top:20px; }
.pb-20 { padding-bottom:20px; }

/* ============= END =========== */
