/* ===== 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; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFFFFF;
  color: #2C3A35;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px; /* for cookie banner on mobile */
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #BB4A09;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E37541;
  text-decoration: underline;
  outline: none;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #2C3A35;
  line-height: 1.18;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2C3A35;
  margin-bottom: 16px;
}

strong, b {
  font-weight: bold;
  color: #2C3A35;
}

.subheadline {
  font-size: 1.125rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #33514B;
  margin-bottom: 32px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44,58,53,0.07);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(44,58,53,0.13);
  transform: translateY(-2px) scale(1.01);
}
.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;
  background: #F8F5F0;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44,58,53,0.08);
  margin-bottom: 20px;
  color: #222;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #2C3A35;
  font-style: italic;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

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

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  border-bottom: 2px solid #EFE8DE;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2C3A35;
  padding: 10px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #EFE8DE;
  color: #BB4A09;
  outline: none;
}
.btn-cta {
  background: #bb4a09;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(44,58,53,0.04);
  margin-left: 8px;
  border: 2px solid #bb4a09;
  transition: background 0.22s, color 0.22s, border 0.2s;
  box-shadow: 0 2px 5px 0 rgba(44,58,53,0.08);
}
.btn-cta:hover,
.btn-cta:focus {
  background: #f7c366;
  color: #bb4a09 !important;
  border-color: #f3b940;
  text-decoration: none;
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #BB4A09;
  padding: 8px 14px 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.15s;
  z-index: 50;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #EFE8DE;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,58,53,0.92);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.5,1.85,.3,1);
  will-change: transform;
  box-shadow: -6px 0 30px rgba(44,58,53,0.15);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  margin: 22px 22px 0 auto;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu .mobile-menu-close:focus,
.mobile-menu .mobile-menu-close:hover {
  background: #bb4a09;
  color: #fff;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 20px;
  padding: 48px 0 0 0;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 16px 0;
  width: 80vw;
  text-align: center;
  border-radius: 11px;
  transition: background 0.18s, color 0.18s;
  font-weight: 700;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #bb4a09;
  color: #fff;
  outline: none;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 1000px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO SECTION, BUTTONS, CALLS TO ACTION ===== */
.hero {
  background: #EFE8DE;
  border-radius: 0 0 30px 30px;
  padding: 48px 0;
  margin-bottom: 64px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0;
    border-radius: 0 0 18px 18px;
  }
}

.cta, .final-cta {
  background: #33514B;
  color: #fff;
  border-radius: 26px;
  text-align: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.cta h2, .final-cta h2 { color: #fff; }
.cta p, .final-cta p { color: #ede0cc; }

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 13px 40px;
  border-radius: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.12rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44,58,53,0.11);
  border: none;
  transition: background 0.21s, color 0.2s, box-shadow 0.18s, border 0.21s;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 8px;
}
.btn-primary {
  background: #bb4a09;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD17B;
  color: #bb4a09;
  outline: none;
}
.btn-secondary {
  background: #fff;
  color: #bb4a09;
  border: 2px solid #bb4a09;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #bb4a09;
  color: #fff;
  border-color: #bb4a09;
  outline: none;
}

/* ===== FEATURES & SERVICE CARDS ===== */
.features {
  background: #fff;
  border-radius: 24px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.feature-list li {
  flex: 1 1 210px;
  min-width: 200px;
  background: #F8F5F0;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(44,58,53,0.06);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.15s;
  border: 1px solid #eee4d2;
}
.feature-list li:hover {
  box-shadow: 0 8px 22px 0 rgba(187,74,9,0.07);
  transform: translateY(-2px) scale(1.025);
}
.feature-list img {
  height: 32px;
  filter: drop-shadow(0 1px 2px #cfb991);
  margin-bottom: 12px;
}

.catalog-preview {
  background: #fff;
  border-radius: 24px;
}
.product-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.product-highlights-list li {
  background: #EFE8DE;
  color: #2C3A35;
  border-radius: 12px;
  padding: 11px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  flex: 1 1 240px;
}

.service-overview {
  background: #fff;
}
.service-cards,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-card {
  background: #EFE8DE;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(44,58,53,0.08);
  flex: 1 1 220px;
  min-width: 200px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  transition: box-shadow 0.13s, transform 0.17s;
}
.service-card img {
  height: 32px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 2px #AD9556);
}
.service-card:hover {
  box-shadow: 0 8px 26px 0 rgba(44,58,53,0.08);
  transform: translateY(-2px) scale(1.023);
}
.service-list {
  flex-direction: column;
  gap: 18px;
}
.service-list li {
  background: #F8F5F0;
  border-radius: 10px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.09rem;
}
.service-price {
  margin-left: auto;
  color: #bb4a09;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}

.category-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 24px 0;
}
.category-tiles li {
  background: #EFE8DE;
  color: #2C3A35;
  border-radius: 11px;
  padding: 13px 22px;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  flex: 1 1 160px;
  text-align: center;
  box-shadow: 0 1px 5px rgba(44,58,53,0.06);
}
.category-tiles li:hover {
  background: #FFEDCC;
}

.featured-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 17px;
}
.featured-product-list li {
  flex: 1 1 220px;
  min-width: 200px;
  background: #F8F5F0;
  border-radius: 13px;
  padding: 24px 16px;
  box-shadow: 0 2px 8px rgba(44,58,53,0.08);
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3A35;
  transition: box-shadow 0.18s, transform 0.17s;
}
.featured-product-list li:hover {
  box-shadow: 0 10px 28px 0 rgba(44,58,53,0.08);
  transform: translateY(-3px) scale(1.025);
}

/* ===== BLOG/IDEAS/ARTICLES ===== */
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.article-previews li {
  background: #EFE8DE;
  border-radius: 13px;
  flex: 1 1 230px;
  min-width: 200px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: 0 2px 8px rgba(44,58,53,0.09);
}
.read-more {
  display: inline-block;
  font-size: 1rem;
  color: #bb4a09;
  font-weight: 600;
  margin-top: 8px;
}
.read-more:hover {
  color: #E37541;
  text-decoration: underline;
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.category-tags span {
  background: #FFD17B;
  color: #2C3A35;
  padding: 4px 15px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tip-card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 4px 0 rgba(44,58,53,0.09);
  flex: 1 1 180px;
  min-width: 160px;
  padding: 20px 16px;
  font-size: 1.02rem;
}

/* ======= CONTACTS PAGE ======= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-placeholder, .map-placeholder {
  background: #F8F5F0;
  border-radius: 10px;
  padding: 16px 21px;
  color: #2C3A35;
  font-size: 1.04rem;
  margin-bottom: 16px;
}
.social-links img {
  display: inline-block;
  height: 34px;
  margin-left: 7px;
  vertical-align: middle;
}

/* ======= FOOTER ======= */
footer {
  background: #2C3A35;
  color: #fff;
  padding: 60px 0 26px 0;
  border-top: 4px solid #f7c366;
  margin-top: 60px;
  width: 100%;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 200px;
}
.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-nav a {
  color: #FFD17B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact li {
  font-size: 1rem;
  color: #EFE8DE;
}
.footer-contact a {
  color: #FFD17B;
}
.copyright {
  font-size: 0.95rem;
  color: #daba64;
  padding-top: 25px;
  text-align: left;
  flex-basis: 100%;
}

@media (max-width: 1000px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
  .footer-brand, .footer-contact {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 38px 0 18px 0;
    margin-top: 36px;
  }
  .footer-brand img { height: 38px; }
}

/* ======= COOKIE BANNER & MODAL ======= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C3A35;
  color: #EFE8DE;
  padding: 22px 30px 18px 30px;
  box-shadow: 0 -3px 18px 0 rgba(44,58,53,0.19);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  border-radius: 17px 17px 0 0;
  max-width: 560px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.28s, transform 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%) translateX(-50%);
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  background: #FFD17B;
  color: #2C3A35;
  margin-right: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
  box-shadow: 0 1px 6px rgba(44,58,53,0.13);
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #bb4a09;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #EFE8DE;
  color: #2C3A35;
  border: 1px solid #daba64;
  margin-left: 6px;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #FFD17B;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,58,53,0.74);
  z-index: 1550;
  justify-content: center;
  align-items: center;
  transition: opacity 0.15s;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 440px;
  width: 90vw;
  padding: 30px 25px 24px 25px;
  box-shadow: 0 6px 32px rgba(44,58,53,0.15);
  color: #2C3A35;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalFadeIn 0.22s  cubic-bezier(.47,1.64,.41,.84);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.95);} 
  90% { opacity: 1; transform: translateY(-4px) scale(1.03);} 
  100% { opacity: 1; transform: none;} 
}
.cookie-modal h2 { font-size: 1.3rem; margin-bottom: 2px; }
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #bb4a09;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.cookie-modal .cookie-category .always-on {
  color: #bb4a09;
  font-weight: bold;
  font-size: 0.93rem;
  margin-left: 6px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 9px;
}
.cookie-modal button {
  background: #FFD17B;
  color: #2C3A35;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 21px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #bb4a09;
  color: #fff;
}
.cookie-modal .modal-close {
  background: none;
  color: #bb4a09;
  font-weight: 600;
  padding: 0 10px;
  font-size: 1.22rem;
  align-self: flex-end;
  border: none;
  border-radius: 8px;
  margin-bottom: -10px;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #FFD17B;
}

/* ======= MISCELLANEOUS LAYOUTS & STRUCTURE ======= */
.value-list, .usp-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 14px 0;
}

.commitment-points, .local-focus {
  background: #F8F5F0;
  border-radius: 11px;
  padding: 13px 16px;
}

.team-bios .text-section p {
  margin-bottom: 12px;
}

.quick-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.quick-search-bar label { font-weight: bold; }
.quick-search-bar input {
  border: 1px solid #EFE8DE;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F5F0;
}
.quick-search-bar input:disabled {
  background: #F7F3EA;
  color: #adadad;
}

.location-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .service-cards, .feature-list, .product-highlights-list, .featured-product-list, .article-previews, .tip-cards {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav {
    gap: 10px;
  }
  .card-container {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-brand img { height: 34px; }
  .section { padding: 30px 6px; margin-bottom: 36px; }
  .card {
    padding: 22px 10px;
    margin-bottom: 17px;
  }
  .testimonial-card {
    padding: 15px 10px;
  }
  .cookie-banner {
    max-width: 98vw;
    padding: 10px 7px 12px 7px;
  }
}
@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.23rem; }
  .btn-primary, .btn-secondary { padding: 11px 18px; font-size: 1rem; }
  .cookie-modal {
    max-width: 96vw;
    padding: 18px 7px 16px 7px;
  }
}

/* ===== FOCUSED ACCESSIBILITY STATES ===== */
:focus {
  outline: 2px solid #FFD17B !important;
  outline-offset: 2px;
}

/* ===== LUXURY PREMIUM ACCENTS ===== */
.hero, .card, .service-card, .feature-list li, .testimonial-card, .cta, .final-cta, .category-tiles li, .tip-card, .article-previews li {
  border: 1.5px solid #cfb991;
  box-shadow: 0 2px 12px rgba(207,185,145,0.06);
}
/* Gold accent lines for premium feel */
h1, h2, h3 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  margin: 17px 0 10px 0;
  background: #FFD17B;
  border-radius: 2px;
}
h2:after { width: 34px; margin: 12px 0 7px 0; }

/* Subtle background accent for hero sections */
.hero:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 0;
  background: none;
}

/* Subtle hover up-scale for all cards on hover */
.feature-list li:hover, .service-card:hover, .tip-card:hover, .category-tiles li:hover, .article-previews li:hover {
  border-color: #FFD17B;
  box-shadow: 0 3px 20px rgba(255,209,123,0.15);
}

/* Subtle card gold line */
.card, .service-card, .feature-list li, .testimonial-card, .tip-card, .article-previews li {
  border-left: 6px solid #FFD17B;
}

/* ===== TESTIMONIALS COLORS & CONTRAST ===== */
.testimonial-card {
  background: #fff7ea !important;
  color: #222;
}
.testimonial-card p, .testimonial-card blockquote { color: #2C3A35 !important; }

/* ===== MISC ===== */
::-webkit-scrollbar {
  width: 7px;
  background: #EFE8DE;
}
::-webkit-scrollbar-thumb {
  background: #FFD17B;
  border-radius: 6px;
}

/* =============== */
