/* --------------------------------------
   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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background-color: #FBF9F3;
  color: #3A4F41;
  font-family: 'Roboto', Arial, sans-serif;
}
*, *::before, *::after { box-sizing: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button { background: none; border: none; font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid #E3CDA4; outline-offset: 3px; }

/* --------------------------------------
   BRAND FONTS & COLORS
-----------------------------------------*/
:root {
  --color-primary: #3A4F41;
  --color-secondary: #E3CDA4;
  --color-accent: #FFFFFF;
  --color-bg: #FBF9F3;
  --color-dark: #22261E;
  --color-body: #484B31;

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-base: 18px;
  --shadow-regular: 0 3px 16px rgba(76, 71, 52, 0.09), 0 1.5px 6px rgba(50, 70, 41, 0.08);
  --shadow-card: 0 6px 26px rgba(58,79,65,0.12), 0 1.5px 8px rgba(227,205,164,0.04);
}

/* --------------------------------------
   TYPOGRAPHY
-----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 6px; font-weight: 500; }
p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--color-body);
  margin-bottom: 18px;
  line-height: 1.7;
}
strong { color: var(--color-primary); font-weight: 700; }
b { font-weight: 600; color: var(--color-primary); }
ul, ol {
  font-family: var(--font-body);
  color: var(--color-body);
  margin-bottom: 20px;
  padding-left: 20px;
}
ul li, ol li { margin-bottom: 10px; line-height: 1.7; }
li b { font-family: var(--font-display); font-size: 1.01em; }

/* Artistic font and accents */
.hero h1, .content-wrapper > h1, .featured-articles h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.005em;
  color: var(--color-secondary);
  text-shadow: 1px 1px 0 #3A4F41, 0 1px 12px rgba(227,205,164,0.09);
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--color-secondary);
  margin-bottom: 18px;
  padding-left: 12px;
  color: var(--color-primary);
}

/* --------------------------------------
   HEADER & NAVIGATION
-----------------------------------------*/
header {
  width: 100%;
  background: var(--color-bg);
  box-shadow: 0 2px 12px rgba(58,79,65,0.06);
  position: relative;
  z-index: 20;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
header a img {
  height: 46px;
  width: auto;
  margin-right: 16px;
  border-radius: 10px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--color-primary);
  position: relative;
  padding: 6px 2px;
  transition: color .22s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  text-shadow: 0 0 2px var(--color-accent);
}
header nav a.cta-primary {
  background: var(--color-primary);
  color: var(--color-accent)!important;
  border-radius: 25px;
  padding: 7px 23px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-regular);
  transition: background .2s, color .2s, transform .2s;
  border: 2px solid var(--color-primary);
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary)!important;
  border-color: var(--color-secondary);
  transform: translateY(-2px) scale(1.04);
}


/* MOBILE BURGER NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: var(--color-secondary);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: var(--shadow-regular);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: var(--color-primary);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.8,0,.23,1);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 28px 16px 38px;
  box-shadow: 0 0 18px 0 rgba(58,79,65,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  padding: 4px 10px;
  margin-bottom: 18px;
  border-radius: 14px;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 10px 0;
  border-bottom: 1px solid rgba(227,205,164,.11);
  transition: color .24s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(227,205,164,0.10);
  border-radius: 6px;
}

/* Overlay for mobile menu */
.mobile-menu.open::before {
  content: "";
  position: fixed;
  left: 100vw; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.10);
  display: block;
  z-index: -1;
}

@media (max-width: 600px) {
  .mobile-menu {
    padding: 18px 12px 8px 17px;
  }
  .mobile-nav a {
    font-size: 1.08rem;
  }
}

/* --------------------------------------
   HERO SECTION
-----------------------------------------*/
.hero {
  background: linear-gradient(120deg, #E3CDA4 0%, #FFFFFF 60%, #FBF9F3 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  box-shadow: 0 10px 34px 0 rgba(58,79,65,0.075);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  z-index: 2;
  max-width: 670px;
  padding-top: 34px;
  padding-bottom: 32px;
}
.hero h1 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px #E3CDA4, 0 1px 6px rgba(58,79,65,0.04);
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-dark);
  margin-bottom: 20px;
}

/* --------------------------------------
   GENERIC SECTIONS & WRAPPERS
-----------------------------------------*/
main {
  width: 100%;
  background: transparent;
  padding-bottom: 32px;
  min-height: 70vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 10px;
  align-items: flex-start;
}

/* --------------------------------------
   FLEXBOX LAYOUTS (MANDATORY SPACING)
-----------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.24s;
  padding: 24px 24px 18px 24px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 30px 0 rgba(58,79,65,0.17), 0 1.5px 8px rgba(227,205,164,0.1);
  transform: translateY(-4px) scale(1.02);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #FFF8ED;
  border-left: 6px solid var(--color-secondary);
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(58,79,65,0.10);
  flex: 1 1 320px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 26px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 26px 20px 24px 20px;
  width: 270px;
  min-width: 220px;
  max-width: 99vw;
  transition: box-shadow .16s, transform .18s;
  margin-bottom: 24px;
  gap: 14px;
  border: 2px solid #f2e4c8;
}
.feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 32px 0 rgba(58,79,65,0.14);
  border-color: var(--color-secondary);
  transform: translateY(-2px) scale(1.03);
}

/* --------------------------------------
   TESTIMONIALS
-----------------------------------------*/
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.testimonial-card p {
  font-family: var(--font-display);
  color: var(--color-dark);
  font-size: 1.14rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}
.testimonial-name {
  font-family: var(--font-body);
  color: #8C8566;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* --------------------------------------
   ARTICLE/BLOG
-----------------------------------------*/
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}
.post-preview {
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-regular);
  padding: 26px 24px 18px 24px;
  transition: box-shadow .22s, transform .22s;
}
.post-preview:hover {
  box-shadow: 0 8px 34px 0 rgba(58,79,65,0.12);
  transform: scale(1.015);
}
.featured-articles {
  background: #F1EBDB;
  padding: 24px 20px; border-radius: 18px; margin-bottom: 30px;
}
.featured-articles ul {
  padding-left: 8px;
}
.featured-articles li {
  margin-bottom: 9px;
  font-size: 1.06rem;
  font-family: var(--font-body);
}

/* --------------------------------------
   BUTTONS & CTAs
-----------------------------------------*/
.cta-primary {
  background: var(--color-primary);
  color: var(--color-accent) !important;
  border-radius: 32px;
  padding: 11px 31px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-primary);
  transition: background .21s, color .21s, border .21s, transform .18s;
  margin-top: 18px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary)!important;
  border-color: var(--color-secondary);
  transform: translateY(-2px) scale(1.06);
}
.cta-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 25px;
  padding: 10px 27px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 1.5px 8px rgba(227,205,164,0.06);
  transition: background .19s, color .19s, border .21s;
  margin-top: 18px;
  cursor: pointer;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-primary);
  color: var(--color-secondary)!important;
  border-color: var(--color-secondary);
}

/* --------------------------------------
   CONTACT DETAILS
-----------------------------------------*/
.contact-details-short {
  margin-top: 23px;
  background: #f7f3eb;
  border-radius: 14px;
  box-shadow: 0 1.5px 12px rgba(227,205,164,0.05);
  padding: 20px 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details-short p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: var(--color-dark);
  font-size: 1.02rem;
  font-family: var(--font-body);
}
.contact-details-short img {
  width: 28px; height: 28px; object-fit: contain;
}
.contact-info-extra {
  margin-top: 14px;
  background: #faeed9;
  border-radius: 10px;
  padding: 12px 10px;
  font-size: 1rem;
  color: var(--color-body);
}

/* --------------------------------------
   FOOTER
-----------------------------------------*/
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 36px 0 20px 0;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  box-shadow: 0 -5px 24px 0 rgba(58,79,65,0.08);
  margin-top: 24px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo { margin-bottom: 8px; }
.footer-logo img {
  width: 58px; height: auto;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 9px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.01rem;
}
footer nav a {
  color: var(--color-secondary);
  opacity: 0.9;
  transition: color .20s, opacity .18s;
  padding: 3px 7px;
  border-radius: 6px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
  opacity: 1;
  background: rgba(227,205,164,0.12);
}
.footer-info p {
  font-family: var(--font-body);
  font-size: 0.99rem;
  color: #f4f1ed;
  opacity: 0.77;
  text-align: center;
}

/* --------------------------------------
   COOKIES BANNER & MODAL
-----------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 120;
  background: #fff8ed;
  color: var(--color-primary);
  box-shadow: 0 -4px 26px rgba(58,79,65,0.13);
  padding: 22px 14px 20px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.02rem;
  border-top: 5px solid var(--color-secondary);
  animation: cookie-slide-in 0.7s cubic-bezier(.9,0,.25,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-left: 15px;
}
.cookie-banner button {
  padding: 8px 19px;
  font-size: 1.03rem;
  font-family: var(--font-display);
  border-radius: 20px;
  border: 2px solid var(--color-primary);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  transition: background .17s, color .17s, border .17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-secondary);
}
.cookie-banner button.cookie-accept {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-primary);
}
.cookie-banner button.cookie-accept:hover, .cookie-banner button.cookie-accept:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 8px 19px 8px;
  }
  .cookie-banner .cookie-btns { margin-left: 0; }
}

/* COOKIES MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(47,41,24,0.42);
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-backdrop-fade .5s;
}
@keyframes cookie-backdrop-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fffefa;
  border-radius: 24px;
  box-shadow: 0 12px 40px 0 rgba(58,79,65,0.19);
  padding: 36px 26px 22px 26px;
  min-width: 320px;
  max-width: 92vw;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-appear .44s cubic-bezier(0.78,0,0.26,1);
}
@keyframes cookie-modal-appear {
  from { transform: scale(.85) translateY(70px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 18px 0 8px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
  font-size: 1rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-secondary);
  border-radius: 22px;
  border: 1.5px solid #AE9B62;
  transition: background .19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 1.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform .26s cubic-bezier(.68,-0.6,0.32,1.6);
  box-shadow: 0 1px 5px #ccc;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(22px);
  background: var(--color-accent);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 19px;
  background: var(--color-secondary);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  transition: background .14s, color .13s, border .16s;
  margin: 0;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-secondary);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.36rem;
  color: var(--color-secondary);
  cursor: pointer;
  padding: 0 8px 0 0;
  transition: color .14s;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 19px 7px 12px 7px;
    min-width: 0;
  }
}

/* --------------------------------------
   TEXT SECTION FORMATTING
-----------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.07rem;
  font-family: var(--font-body);
  color: var(--color-body);
}
.text-section h2 { margin-bottom: 8px; }
.text-section ul, .text-section ol {
  margin-left: 22px;
  margin-bottom: 0;
  padding-left: 9px;
}

/* --------------------------------------
   RESPONSIVE DESIGN (MOBILE FIRST)
-----------------------------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  header .container {
    padding: 0 8px;
  }
  .features-grid {
    gap: 26px 10px;
  }
  .feature {
    min-width: 170px;
    padding: 16px 8px 16px 8px;
    width: 210px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.64rem; }
  h2 { font-size: 1.15rem; }
  .section {
    padding: 26px 6px 25px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .features-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 13px 10px 14px 13px;
  }
  .testimonials-list {
    gap: 15px;
    flex-direction: column;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
}

@media (max-width: 460px) {
  .feature, .card {
    padding: 12px 4px 10px 6px;
    width: 98vw;
    min-width: 0;
  }
  .hero { border-radius: 0 0 20px 20px; }
}

/* --------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
-----------------------------------------*/
a, button, .cta-primary, .cta-secondary, .feature, .card, .post-preview, .cookie-btns button {
  transition: all .19s cubic-bezier(.6,0,.23,1);
}
section, .section {
  animation: fade-in-section .8s;
}
@keyframes fade-in-section {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* --------------------------------------
   ARTISTIC DECORATIVE ACCENTS
-----------------------------------------*/
.hero:before {
  content: '';
  position: absolute;
  top: -70px;
  right: -120px;
  width: 320px; height: 320px;
  background: rgba(227,205,164,0.22);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 1;
}
.hero:after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 240px; height: 240px;
  background: rgba(58,79,65,0.07);
  border-radius: 50%;
  filter: blur(32px);
  z-index: 1;
}
footer::before {
  content: '';
  position: absolute;
  top: -30px; left: 0;
  width: 160px; height: 80px;
  border-top-left-radius: 60px;
  background: linear-gradient(120deg,#E3CDA4 0%,transparent 100%);
  filter: blur(14px);
  z-index: 0;
}
footer::after {
  content: '';
  position: absolute;
  top: -28px; right: 0;
  width: 100px; height: 75px;
  background: linear-gradient(120deg,#3A4F41 0%,transparent 100%);
  filter: blur(10px);
  z-index: 0;
}

/* --------------------------------------
   MISCELLANEOUS
-----------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  background: #efe6cf;
}
::-webkit-scrollbar-thumb {
  background: #d5c397;
  border-radius: 8px;
}

/* Selection style for artistic touch */
::selection {
  background: var(--color-secondary);
  color: var(--color-primary);
}
