/* --------------------------------------------------
   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 {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F1EEEA;
  color: #232323;
  font-family: 'Open Sans', Georgia, serif;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
a {
  color: #14305A;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #65A603;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  font-size: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  transition: all 0.2s;
}

/* --------------------------------------------------
   VARIABLE ROOTS (CLASSIC ELEGANT PALETTE)
---------------------------------------------------*/
:root {
  --primary: #14305A;
  --secondary: #65A603;
  --accent: #F1EEEA;
  --bg: #F1EEEA;
  --neutral: #E0DED9;
  --muted: #C6C3BD;
  --white: #fff;
  --black: #232323;
  --serif: 'Georgia', 'Times New Roman', serif;
  --sans: 'Open Sans', Arial, Helvetica, sans-serif;
  --display: 'Montserrat', 'Georgia', serif;
}

/* --------------------------------------------------
   LAYOUT STRUCTURE & CONTAINERS
---------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEX PATTERNS */
.card-container, .feature-grid, .blog-post-grid, .inspiration-list, .resources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.card-container {
  margin-bottom: 20px;
}
.card, .feature, .inspiration-card, .blog-post {
  margin-bottom: 20px;
  position: relative;
}
.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: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(20,48,90,0.05), 0 1.5px 8px 0 rgba(101,166,3,0.02);
  margin-bottom: 20px;
  border: 1px solid var(--neutral);
  min-width: 260px;
  max-width: 410px;
  flex: 1 1 320px;
}
.feature-item, .faq-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------*/
header {
  background: var(--white);
  border-bottom: 1px solid var(--neutral);
  padding: 0;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--primary);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  padding: 12px 32px;
  border-radius: 26px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  margin-left: 16px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 16px 0 rgba(20,48,90,0.03);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 16px 0 rgba(20,48,90,0.10);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--white);
}

/* -----------------------
  MOBILE MENU
------------------------*/
.mobile-menu-toggle {
  background: none;
  color: var(--primary);
  font-size: 2rem;
  display: none;
  border: none;
  z-index: 51;
  margin-left: 8px;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--bg);
  box-shadow: 0 0 32px 0 rgba(20,48,90,0.12);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,.16,.29,.93);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--primary);
  z-index: 1001;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding: 0 28px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: var(--display);
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral);
  width: 100%;
  transition: color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: #eaf4db;
}

@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 970px) {
  header .container {
    gap: 12px;
  }
}
@media (max-width: 890px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 820px) {
  .main-nav a {
    font-size: 0.96rem;
  }
  .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    padding: 10px 18px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
    background: none;
  }
}

@media (max-width: 500px) {
  .logo img { height: 40px; }
  .btn { font-size: 0.98rem; padding: 9px 13px; }
  .mobile-nav a { font-size: 1.06rem; }
}

/* --------------------------------------------------
   HERO SECTION
---------------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #F1EEEA 69%, #eaf4db 109%);
  padding: 44px 0 52px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  max-width: 640px;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.21rem;
  font-family: var(--serif);
  color: #313131;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .hero {
    padding: 24px 0 24px 0;
  }
  .hero h1 { font-size: 1.55rem; }
  .hero .content-wrapper { gap: 12px; }
}

/* --------------------------------------------------
   FEATURES & CARDS
---------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature {
  background: #fff;
  border: 1px solid var(--neutral);
  border-radius: 15px;
  box-shadow: 0 1.5px 14px rgba(20,48,90,0.06);
  padding: 28px 22px 22px 22px;
  flex: 1 1 190px;
  min-width: 185px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.21s;
  margin-bottom: 20px;
}
.feature img {
  height: 34px;
  width: 34px;
  margin-bottom: 6px;
}
.feature h3 {
  font-family: var(--serif);
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.feature p {
  font-size: 0.98rem;
  color: #444;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 32px 0 rgba(20,48,90,0.08), 0 4px 12px 0 rgba(101,166,3,0.04);
  transform: translateY(-3px) scale(1.03);
}

.card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--neutral);
  box-shadow: 0 1.5px 14px rgba(20,48,90,0.08);
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(20,48,90,0.10);
  transform: translateY(-2px) scale(1.02);
}

.inspiration-list {
  margin-top: 10px;
}
.inspiration-card {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 12px;
  padding: 20px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 370px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 14px rgba(20,48,90,0.05);
  transition: box-shadow 0.22s, transform 0.15s;
}
.inspiration-card:hover {
  box-shadow: 0 7px 22px rgba(20,48,90,0.08);
  transform: translateY(-2px) scale(1.022);
}

.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.blog-post {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 11px;
  padding: 18px 15px 16px 15px;
  flex: 1 1 280px;
  min-width: 200px;
  max-width: 340px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(20,48,90,0.04);
  transition: box-shadow 0.18s, transform 0.14s;
}
.blog-post:hover {
  box-shadow: 0 7px 22px rgba(20,48,90,0.08);
  transform: translateY(-1px) scale(1.015);
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.category-tags span {
  background: var(--neutral);
  color: var(--primary);
  font-family: var(--serif);
  padding: 6px 20px;
  border-radius: 18px;
  font-size: 1rem;
}

/* --------------------------------------------------
   CTA SECTIONS
---------------------------------------------------*/
.cta-section, .cta-share-project {
  background: #fffbe6;
  border-radius: 24px;
  box-shadow: 0 3px 36px rgba(101,166,3,0.09);
  margin-bottom: 60px;
  padding: 32px 18px 32px 18px;
}
.cta-section h2, .cta-share-project h2 {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 7px;
}
.cta-section p, .cta-share-project p {
  font-size: 1.06rem;
  color: #333;
  margin-bottom: 21px;
}

/* --------------------------------------------------
   TESTIMONIALS
---------------------------------------------------*/
.testimonials {
  background: #eaf4db;
  padding: 48px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #232323;
  border: 1px solid var(--neutral);
  border-radius: 18px;
  box-shadow: 0 3px 22px rgba(20,48,90,0.13);
  min-width: 240px;
  max-width: 420px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.16s, transform 0.11s;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.13rem;
  color: var(--primary);
  line-height: 1.54;
  quotes: '“' '”';
  padding-left: 4px;
  position: relative;
}
.testimonial-card blockquote:before {
  content: '“';
  font-size: 2.1em;
  color: var(--secondary);
  position: absolute;
  left: -17px;
  top: -13px;
}
.testimonial-meta span {
  font-size: 0.98rem;
  color: #777;
  font-family: var(--display);
  letter-spacing: 0.04em;
}
.testimonial-card:hover {
  box-shadow: 0 9px 26px rgba(101,166,3,0.12), 0 8px 22px rgba(20,48,90,0.09);
  transform: translateY(-1px) scale(1.019);
}

/* --------------------------------------------------
   BLOG & LISTS
---------------------------------------------------*/
.latest-blog-posts {
  margin-top: 8px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.latest-blog-posts li {
  font-size: 1.02rem;
  color: var(--primary);
  font-family: var(--serif);
  padding-left: 1px;
}
.latest-blog-posts a {
  color: var(--secondary);
  font-weight: 600;
}
.latest-blog-posts a:hover {
  color: var(--primary);
}

.categories-list, .top-guides {
  margin-top: 9px;
  margin-bottom: 7px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.categories-list li, .top-guides li {
  font-size: 1.04rem;
  font-family: var(--serif);
  color: #444;
}
.categories-list b {
  color: var(--primary);
}

.resources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.tools-list, .materials-list, .supplier-links {
  background: #fff;
  border: 1px solid var(--neutral);
  border-radius: 13px;
  padding: 15px 19px;
  flex: 1 1 210px;
  min-width: 170px;
  max-width: 340px;
}
.tools-list h3, .materials-list h3, .supplier-links h3 {
  font-family: var(--serif);
  color: var(--primary);
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.tools-list ul, .materials-list ul, .supplier-links ul {
  list-style: disc inside;
  color: #444;
  padding-left: 0;
  font-size: 0.98rem;
}
.tools-list li, .materials-list li, .supplier-links li {
  margin-bottom: 7px;
  line-height: 1.32;
}
.supplier-links a {
  color: var(--secondary);
}
.supplier-links a:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.faq-item h3 {
  font-family: var(--serif);
  color: var(--primary);
  font-size: 1.11rem;
  margin-bottom: 3px;
}
.faq-item p {
  font-size: 0.99rem;
}

/* --------------------------------------------------
   TEXT SECTIONS
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--primary);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.2rem; margin-bottom: 18px; }
h2 { font-size: 1.6rem; margin-bottom: 14px; }
h3 { font-size: 1.22rem; margin-bottom: 6px; }
h4 { font-size: 1rem; }
h5, h6 { font-size: 0.95rem; }
p, li, ul, ol {
  color: #2E2C28;
  font-family: var(--serif);
  font-size: 1rem;
  margin-bottom: 5px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 3px;
}
.text-section ul {
  margin-left: 14px;
  list-style: disc inside;
  gap: 7px;
}
.text-section li {
  padding-left: 4px;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #444;
}

/* --------------------------------------------------
   CONTACT DETAILS
---------------------------------------------------*/
.contact-details {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: var(--serif);
  color: #384254;
  margin-top: 12px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.map {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 7px;
}
.map img {
  width: 60px;
  height: auto;
}

/* --------------------------------------------------
   FOOTER
---------------------------------------------------*/
footer {
  background: #fff;
  border-top: 1px solid var(--neutral);
  padding: 36px 0 24px 0;
  color: #484848;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 22px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--serif);
  margin-bottom: 8px;
}
.footer-nav a {
  font-size: 0.96rem;
  color: var(--primary);
  transition: color 0.22s;
}
.footer-nav a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.98rem;
  font-family: var(--serif);
  color: #898989;
  margin-top: 12px;
}
.footer-brand img {
  width: 36px;
  height: auto;
}

@media (max-width: 960px) {
  .content-wrapper {
    gap: 20px;
  }
  .footer-nav { gap: 13px; }
  footer .content-wrapper { gap: 18px 12px; }
}
@media (max-width: 700px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-brand { margin-top: 7px; }
}

/* --------------------------------------------------
   RESPONSIVE FLEX LAYOUTS
---------------------------------------------------*/
@media (max-width: 900px) {
  .feature-grid, .testimonial-slider, .card-container,
  .inspiration-list, .blog-post-grid, .resources-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature, .testimonial-card, .card, .inspiration-card, .blog-post, .tools-list, .materials-list, .supplier-links {
    min-width: unset;
    max-width: 100%;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cta-section, .cta-share-project {
    border-radius: 12px;
    padding: 20px 8px;
  }
  .card-container, .feature-grid, .testimonial-slider, .inspiration-list, .blog-post-grid, .resources-list {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .contact-details {
    flex-direction: column;
    gap: 10px;
  }
  .map img { width: 38px; }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  color: #232323;
  border-top: 1px solid var(--neutral);
  box-shadow: 0 -2px 28px rgba(20,48,90,0.08);
  z-index: 2000;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100vw;
  min-height: 64px;
  font-family: var(--serif);
  animation: cookieBannerSlideIn .54s cubic-bezier(.75,.16,.09,.83);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #4e4e4e;
  margin-right: 15px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  font-size: 0.98rem;
  padding: 8px 20px;
  border-radius: 7px;
  font-family: var(--display);
  background: var(--primary);
  color: #fff;
  border: none;
  margin-left: 0;
}
.cookie-banner .btn:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #dfd9c6;
  color: #333;
  border: none;
}
.cookie-banner .btn-reject:hover {
  background: #beb8a2;
  color: #232323;
}
.cookie-banner .btn-settings {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--neutral);
}
.cookie-banner .btn-settings:hover {
  background: #edeae4;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,37,42,0.63);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 13px;
  max-width: 420px;
  min-width: 270px;
  width: 92vw;
  box-shadow: 0 9px 42px rgba(20,48,90,0.22);
  padding: 32px 18px 24px 24px;
  animation: cookieModalAnim .44s cubic-bezier(.84,.04,.17,1.01);
}
@keyframes cookieModalAnim {
  from { transform: scale(0.94); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal-title {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cookie-category-label {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--secondary);
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--neutral);
  border-radius: 17px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .15s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  transition: left .16s;
}
.cookie-toggle:checked::after {
  left: 18px;
}
.cookie-category-desc {
  font-size: 0.97rem;
  color: #777;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  position: absolute;
  right: 16px;
  top: 9px;
  z-index: 1;
  cursor: pointer;
}
.cookie-modal-close:focus {
  outline: 2px solid var(--secondary);
}

@media (max-width: 520px) {
  .cookie-banner { flex-direction: column; gap: 13px; padding: 10px 5px; }
  .cookie-modal-inner { padding: 19px 4px 21px 8px; max-width: 99vw; }
}

/* --------------------------------------------------
   TRANSITIONS & MICRO-INTERACTIONS
---------------------------------------------------*/
.btn, .feature, .card, .testimonial-card, .cookie-banner .btn, .category-tags span, .inspiration-card, .blog-post {
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

a, .btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.18s, border-color 0.18s, background 0.16s;
}


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

.show { display: block !important; }

/* --------------------------------------------------
   PRINT STYLES (Optional)
---------------------------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .btn { display: none !important; }
  main { padding: 0 !important; }
  body { color: #111 !important; background: #fff !important; }
}

/* --------------------------------------------------
   FONT LOADING (Fallback)
---------------------------------------------------*/
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
  unicode-range: U+0000-00FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular');
  unicode-range: U+0000-00FF;
}
