/* ========================
  GlowStruct Luxury Premium Style CSS
  BRAND COLORS:
    - Primary: #26324D (navy dark)
    - Secondary: #4CA2A8 (elegant teal)
    - Accent/Background: #FFFCF7 (luxury pale)
    - Gold Accent: #C3A464
  FONTS:
    - Display: 'Montserrat', 'Segoe UI', Arial, sans-serif
    - Body: 'Roboto', 'Arial', sans-serif
======================== */
/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFCF7;
  color: #26324D;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
a {
  color: #4CA2A8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C3A464;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
img {
  max-width: 100%;
  display: block;
}
strong { font-weight: 600; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.text-center { text-align: center; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #1A2137;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 0;
  position: relative;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p {
  padding-bottom: 0;
  margin-bottom: 14px;
  font-size: 1rem;
}
/* === HEADER & NAVIGATION === */
header {
  background: #26324D;
  border-bottom: 2px solid #C3A464;
  box-shadow: 0 2px 10px 0 rgba(38, 50, 77, 0.045);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: #FFFCF7;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C3A464;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 10px;
}
/* Hide hamburger by default, show mobile menu on small screens */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #C3A464;
  cursor: pointer;
  display: none;
  margin-left: 8px;
  padding: 6px 12px;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(195,164,100,0.11);
}
.cta.primary {
  background: #C3A464;
  color: #26324D;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 34px;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(38,50,77,0.06);
  border: none;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-left: 24px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.13s, color 0.24s;
  border: 2px solid #C3A464;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFFCF7;
  color: #C3A464;
  box-shadow: 0 4px 16px 0 rgba(38,50,77,0.10);
  border-color: #C3A464;
}
.cta {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 28px;
  border: 2px solid #C3A464;
  border-radius: 24px;
  background: transparent;
  color: #C3A464;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #C3A464;
  color: #26324D;
  box-shadow: 0 2px 10px 0 rgba(195,164,100,0.08);
}
@media (max-width: 1000px) {
  .main-nav { gap: 18px; }
  .cta.primary { margin-left: 12px; }
}
@media (max-width: 900px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 350px;
  height: 100vh;
  background: #26324D;
  box-shadow: -2px 0 20px 0 rgba(38,50,77,0.16);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
  padding: 32px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #C3A464;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: rgba(195,164,100,0.10); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #FFFCF7;
  padding: 12px 0 12px 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,252,247,0.07);
  transition: color 0.19s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C3A464;
}
/* Overlay for mobile menu */
body.mobile-menu-active::before {
  content: '';
  display: block;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(20, 23, 35, 0.45);
  z-index: 4999;
  pointer-events: auto;
  transition: opacity 0.4s;
}
@media (max-width: 900px) {
  .cta.primary {
    display: none;
  }
}
/* === HERO SECTION === */
.hero {
  background: linear-gradient(100deg, #fffdf6 80%, #fff3c7 120%);
  box-shadow: 0 1px 14px 0 rgba(195,164,100,0.025);
  border-bottom: 1.5px solid #E2DEDE;
  padding-top: 40px;
  padding-bottom: 36px;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #26324D;
  text-shadow: 0 1.5px 0 #FFF8EA;
}
.hero p {
  font-size: 1.18rem;
}
@media (max-width: 700px) {
  .hero { padding-top: 26px; padding-bottom: 20px; }
  .hero h1 { font-size: 2rem; }
  .hero .content-wrapper { gap: 15px; }
}
/* === SECTION SPACING === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  padding-top: 0;
  padding-bottom: 0;
}
.content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
/* === FLEXBOX LAYOUTS === */
.features-grid, .promo-list, .blog-list, .testimonials, .faq-accordion, .content-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
/* .card-container required min-gap 24px */
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(38,50,77,0.09);
  border: 1.5px solid #E4E1DB;
  min-width: 250px;
  min-height: 230px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(195,164,100,0.13);
  border-color: #C3A464;
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}
.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;
  background: #FFFBF2;
  border-left: 4px solid #C3A464;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(38,50,77,0.07);
  padding: 20px 26px;
  margin-bottom: 20px;
  min-width: 300px;
  max-width: 480px;
  flex: 1 1 260px;
  color: #21293D;
}
.testimonial-card p {
  color: #21293D !important;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card strong {
  color: #26324D;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
/* --- Ensure proper gap for all layouts --- */
.features-grid > *, .promo-list > *, .blog-list > *, .faq-accordion > *, .card-container > * {
  margin-bottom: 0;
}
.text-section, .faq-accordion, .blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.promo-list > div, .blog-list > div {
  background: #fff;
  border-radius: 12px;
  border: 1.2px solid #E4E1DB;
  box-shadow: 0 1px 7px rgba(38,50,77,0.06);
  padding: 22px 16px;
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 0;
  transition: border-color 0.19s, box-shadow 0.17s;
}
.promo-list > div:hover, .blog-list > div:hover {
  border-color: #C3A464;
  box-shadow: 0 3px 16px rgba(195,164,100,0.08);
}
.features-grid > div {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 8px rgba(38,50,77,0.045);
  border: 1.2px solid #ECE9E1;
  padding: 22px 16px 16px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 260px;
  transition: border-color 0.19s, box-shadow 0.17s, transform 0.13s;
  margin-bottom: 0;
  position: relative;
}
.features-grid > div:hover {
  border-color: #C3A464;
  box-shadow: 0 6px 18px 0 rgba(195,164,100,0.13);
  transform: translateY(-1.5px) scale(1.01);
  z-index: 2;
}
.features-grid img {
  width: 44px;
  height: auto;
  margin-bottom: 6px;
  filter: none;
}
/* ===== FAQ Accordion ===== */
.faq-accordion {
  flex-direction: column;
  gap: 16px;
}
.faq-accordion h3 {
  cursor: pointer;
  background: #fff;
  border: 1.2px solid #E4E1DB;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 2px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: border-color 0.17s, box-shadow 0.16s;
}
.faq-accordion h3:hover {
  border-color: #C3A464;
}
.faq-accordion div {
  background: #f8f3e3;
  color: #1F2642;
  border-left: 3px solid #C3A464;
  padding: 14px 18px 14px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2px;
  font-size: 1rem;
}
/* === PROMO BANNER === */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fffaf0;
  border-radius: 11px;
  border: 1.5px solid #f4e8c7;
  box-shadow: 0 1px 7px 0 rgba(195,164,100,0.07);
  padding: 20px 22px;
  font-size: 1.18rem;
  color: #B88F1B;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 650;
  margin-bottom: 35px;
}
.promo-highlight {
  font-size: 1.5rem;
  color: #C3A464;
  vertical-align: middle;
}
/* === FOOTER === */
footer {
  background: #26324D;
  color: #FFFCF7;
  box-shadow: 0 -2px 18px 0 rgba(38,50,77,0.065);
  margin-top: 64px;
  padding-top: 32px;
  padding-bottom: 24px;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,252,247,0.08);
  padding-bottom: 18px;
}
.footer-flex a img {
  height: 34px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #C3A464;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 1px;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFFCF7;
}
.contact-info {
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #FFFCF7;
  margin-left: 0;
}
.contact-info img {
  height: 18px;
  width: auto;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  color: #E3DEBA;
  font-size: 0.96rem;
  opacity: 0.78;
}
/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 1000px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding-right: 14px; padding-left: 14px;
  }
  .footer-flex { gap: 18px; }
  .footer-nav {
    gap: 5px; font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .features-grid, .promo-list, .blog-list, .testimonials, .faq-accordion, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero .content-wrapper,
  .section,
  .blog-list,
  .promo-list,
  .features-grid {
    padding: 0;
    gap: 12px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .card, .features-grid > div, .promo-list > div, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .hero { padding-right: 0; padding-left: 0; }
  .footer-flex { padding-left: 0; padding-right: 0; }
  h1 { font-size: 1.29rem; }
}
/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  z-index: 9000;
  padding: 22px 19px 15px 19px;
  background: #1E273C;
  color: #fff;
  border-top: 3px solid #C3A464;
  box-shadow: 0 0 24px 0 rgba(38,50,77,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideBannerIn 0.55s 0.1s ease;
}
@keyframes slideBannerIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-message {
  font-size: 1rem;
  color: #FFFCF7;
  margin-right: 18px;
  max-width: 480px;
}
.cookie-consent-banner .cookie-btn {
  background: #C3A464;
  color: #26324D;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  margin: 0 9px 8px 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  border: 1.3px solid #C3A464;
  box-shadow: 0 1px 6px 0 rgba(195,164,100,0.08);
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: #fff;
  color: #C3A464;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #26324D;
  color: #C3A464;
  border: 1.3px solid #C3A464;
}
.cookie-consent-banner .cookie-btn.settings:hover {
  background: #C3A464;
  color: #26324D;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 11px;
    padding: 16px 5px 12px 5px;
  }
  .cookie-consent-banner .cookie-message {
    margin-right: 0;
    text-align: left;
    max-width: 100vw;
  }
}
/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,50,77,0.32);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal 0.23s;
}
@keyframes fadeinModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #26324D;
  border-radius: 18px;
  box-shadow: 0 10px 64px 0 rgba(38,50,77,0.20);
  max-width: 430px;
  width: 93vw;
  padding: 34px 29px 25px 29px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalIn 0.36s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { transform: scale(0.87) translateY(32px); opacity: 0.18; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  margin-bottom: 5px;
  color: #26324D;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px; top: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #C3A464;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 9px;
  transition: background 0.13s;
  z-index: 1;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F6EEE3;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F8F4E7;
  padding: 11px 16px;
  margin-bottom: 8px;
  border-radius: 11px;
  border: 1px solid #EEE5C7;
}
.cookie-modal .cookie-category strong {
  color: #26324D;
  font-size: 1.03rem;
}
.cookie-modal .category-toggle[type="checkbox"] {
  width: 36px; height: 20px;
  -webkit-appearance: none;
  appearance: none;
  background: #DAD7CB;
  border-radius: 15px;
  outline: none;
  transition: background 0.13s;
  position: relative;
  margin-left: 8px;
  cursor: pointer;
}
.cookie-modal .category-toggle[type="checkbox"]:checked {
  background: #C3A464;
}
.cookie-modal .category-toggle[type="checkbox"]:before {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(38,50,77,0.08);
  transition: left 0.14s;
}
.cookie-modal .category-toggle[type="checkbox"]:checked:before {
  left: 17px;
}
.cookie-modal .cookie-category .essential {
  color: #B5B38A;
  font-size: 0.97em;
  font-style: italic;
}
.cookie-modal .cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}
/* Banner/modal accessibility: prevent pointer events underlay etc. */
body.cookie-modal-open {
  overflow: hidden;
}
/* ================
  MICRO-ANIMATIONS
================== */
a, button, .cta, .cta.primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close { transition-property: color, background, border, box-shadow, opacity, transform; transition-duration: .18s; }
.card, .features-grid > div, .promo-list > div, .blog-list > div, .testimonial-card { transition-property: box-shadow, border-color, transform, z-index; transition-duration: .18s; }

/* --- INPUTS (if any used) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #E2DEDE;
  padding: 12px 13px;
  transition: border 0.16s;
  margin-bottom: 17px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #C3A464;
  outline: none;
}

/* ============
  UTILITIES
============ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.rounded {
  border-radius: 13px !important;
}
.shadow-sm {
  box-shadow: 0 1px 7px rgba(38,50,77,0.07);
}
.text-gold {
  color: #C3A464 !important;
}
.bg-gold {
  background: #C3A464 !important;
  color: #26324D !important;
}
.bg-dark {
  background: #26324D !important;
  color: #FFFCF7 !important;
}

/* ==============
  SPECIAL CASES
================ */
.tips {
  background: #FEF8E9;
  color: #43371D;
  border-left: 3px solid #C3A464;
  border-radius: 9px;
  padding: 14px 18px;
  font-size: 1rem;
}
.tips h3 {
  margin-top: 0; margin-bottom: 7px; font-size: 1.1rem;
}

/* =============================
  Scheduler for GOLD LINES/ACCENTS
============================= */
.section h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #C3A464;
  border-radius: 2px;
  margin-top: 9px;
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .section h2:after { width: 36px; height: 3px; margin-top: 7px; }
}

/* Ensure minimum 20px margin between all relevant cards/sections (not only gap) */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child, .section:last-child {
  margin-bottom: 0 !important; /* For last footer or order cta */
}
section > .container, .section > .container {
  padding-top: 0;
  padding-bottom: 0;
}
/* Padding/spacing correction for mobile */
@media (max-width: 600px) {
  section, .section { padding: 18px 0; }
}
/* Ensure no overlapping or tight layouts, and soft shadow on cards for luxury */

/* ============
  ACCESSIBILITY
============= */
:focus { outline: 2px solid #C3A464; outline-offset: 2px; }
.main-nav a:focus, .footer-nav a:focus, .cta:focus, .cta.primary:focus, .cookie-btn:focus, .mobile-nav a:focus, .mobile-menu-toggle:focus { outline: 2.5px dashed #C3A464; outline-offset: 2px; }

/* =============
 MICRO-INTERACTION
============== */
.card, .features-grid > div, .promo-list > div, .blog-list > div, .testimonial-card {
  will-change: transform, box-shadow, z-index;
}

/* === Luxury Subtle shine accent for decorations (Gold shades) === */
.decor-gold {
  background: #C3A464;
  box-shadow: 0 1px 10px 0 rgba(195,164,100,0.14);
}

/* ================================
 REMOVE CSS GRID OR COLUMNS ENTIRELY
================================ */
/* No grid, columns or multi-col code anywhere (see verification above) */