/* ========================== CSS RESET & NORMALIZATION ========================== */
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,
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,
main, 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; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border: 0; }

/* ========================== CSS VARIABLES (WITH FALLBACKS) ========================== */
:root {
  --color-primary: #24333E;
  --color-secondary: #6D8B6E;
  --color-accent: #E2E6DE;
  --color-bg: #F7F8F6;
  --color-bg-alt: #ffffff;
  --color-gold: #B99B5E;
  --color-text: #232323;
  --color-muted: #8C949B;
  --color-dark: #1F262C;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Source Sans Pro', Arial, sans-serif;
}

/* ========================== BASE STYLES ========================== */
body {
  font-family: var(--font-body), Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, ul, ol, li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}
.subheadline {
  color: var(--color-muted);
  font-size: 1.25rem;
  margin-bottom: 24px;
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }


/* ========================== LAYOUT & CONTAINERS ========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-alt);
  border-radius: 18px;
  box-shadow: 0 4px 36px rgba(36,51,62,0.04);
}

/* ========================== NAVIGATION ========================== */
header {
  background: var(--color-bg-alt);
  box-shadow: 0 4px 12px rgba(36,51,62,0.03);
  padding: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  height: 70px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  background: var(--color-bg-alt);
}
.main-nav a {
  color: var(--color-primary);
  transition: color 0.17s;
  position: relative;
  padding: 7px 6px;
  border-radius: 4px;
}
.main-nav a:not(.cta):hover,
.main-nav a:focus {
  color: var(--color-gold);
  background: rgba(185,155,94,0.06);
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 16px;
  flex-shrink: 0;
}
.cta.primary {
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-display);
  padding: 12px 24px;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(36,51,62,0.10);
  transition: background 0.2s, color 0.2s;
  font-weight: 700;
  margin-left: 12px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #9B894A;
  color: #fff;
}
.cta.secondary {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-display);
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 700;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-gold);
  color: #fff;
}
.cta {
  display: inline-block;
  margin-top: 24px;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 14px;
  z-index: 102;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 3px rgba(185,155,94, 0.14);
}

.mobile-menu {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,51,62,0.98);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.87,-0.41,0.19,1.44);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--color-gold); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 4px;
  width: 100%;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(185,155,94,0.13);
  color: var(--color-gold);
}

/* ========================== HERO & BANNER ========================== */
.hero-section {
  background: var(--color-bg-alt);
  padding: 74px 0 48px 0;
  border-bottom: 1px solid #e7eae5;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 750px;
}
.hero-section h1 {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.hero-section .subheadline {
  font-size: 1.22rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  margin-bottom: 36px;
}

/* ========================== SECTIONS, SPACING & UTILITY CLASSES ========================== */
/* .section, as per requirements */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-bg-alt);
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(36,51,62,0.06);
  padding: 32px 26px;
  transition: box-shadow 0.19s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(36,51,62,0.13);
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--color-gold);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(36,51,62,0.11);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, border 0.17s;
}
.testimonial-card .stars {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.testimonial-card p {
  color: var(--color-dark);
  font-size: 1rem;
}
.testimonial-card .name {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.99rem;
}
.testimonial-card:focus-within, .testimonial-card:hover {
  border-left: 5px solid #9B894A;
  box-shadow: 0 6px 28px rgba(36,51,62,0.17);
  outline: none;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid on index and about */
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
  margin-top: 32px;
}
.feature_grid > div {
  flex: 1 1 225px;
  max-width: 280px;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px 26px 20px;
  box-shadow: 0 1px 10px rgba(36,51,62,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.24s, border 0.18s;
  border-bottom: 2px solid var(--color-gold);
}
.feature_grid > div:hover {
  box-shadow: 0 4px 28px rgba(36,51,62,0.16);
  border-bottom: 2px solid #9B894A;
}
.feature_grid img {
  width: 38px;
  margin-bottom: 10px;
}

/* ========================== INDEX & SERVICES - LISTS & PRICING ========================== */
.service_list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}
.service_list li, .service-cards > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(36,51,62,0.06);
  flex: 1 1 260px;
  max-width: 350px;
  min-width: 225px;
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  border-left: 4px solid var(--color-gold);
  transition: border 0.17s, box-shadow 0.18s;
}
.service_list li:hover, .service-cards > div:hover {
  box-shadow: 0 4px 16px rgba(36,51,62,0.16);
  border-left: 4px solid #B99B5E;
}
.service_list .price, .service-cards .price {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  margin-top: auto;
}
.service-cards img {
  width: 36px;
  margin-bottom: 8px;
}

.benefits-list, .usp-list, .team-members,
.expertise-overview ul, .post-list, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.benefits-list li, .usp-list li, .expertise-overview ul li {
  background: #fff;
  color: var(--color-primary);
  border-left: 5px solid var(--color-secondary);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
  flex: 1 1 225px;
  max-width: 380px;
}

.process-overview ol {
  padding-left: 18px;
}
.process-overview li {
  margin-bottom: 10px;
  color: var(--color-dark);
}

/* ========================== CASE STUDIES / PROJECTS ========================== */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study-list .project {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 400px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(36,51,62,0.07);
  padding: 22px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
  border-bottom: 3px solid var(--color-secondary);
}
.case-study-list .project:hover {
  box-shadow: 0 8px 28px rgba(36,51,62,0.13);
}

/* ========================== BLOG POSTS ========================== */
.blog-posts .post-list {
  gap: 24px;
  margin-bottom: 28px;
}
.blog-posts .post-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 12px rgba(36,51,62,0.07);
  flex: 1 1 240px;
  min-width: 200px;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-left: 4px solid var(--color-secondary);
  transition: box-shadow 0.17s, border 0.15s;
}
.blog-posts .post-list li:hover {
  box-shadow: 0 2px 22px rgba(36,51,62,0.11);
  border-left: 4px solid var(--color-gold);
}
.blog-posts .post-list li a {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.99rem;
  margin-top: auto;
  transition: color 0.17s;
}
.blog-posts .post-list li a:hover {
  color: #8C7429;
}
.highlighted-posts {
  background: var(--color-accent);
  padding: 24px 20px;
  border-radius: 10px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.09rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(36,51,62,0.06);
}

.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  padding: 18px 18px;
  border-radius: 15px;
  margin-top: 18px;
  box-shadow: 0 1px 10px rgba(36,51,62,0.07);
}
.newsletter-signup p { flex: 1 1 200px; }

/* ========================== TEAM ========================== */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-members > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(36,51,62,0.08);
  padding: 24px 18px 14px 18px;
  flex: 1 1 210px;
  min-width: 180px;
  text-align: left;
  border-left: 4px solid var(--color-secondary);
  transition: border 0.14s;
}
.team-members > div:hover {
  border-left: 4px solid var(--color-gold);
}

/* ========================== ADDRESS / CONTACT BLOCKS ========================== */
.address_brief, .address-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0;
  font-size: 1.13rem;
}
.address_brief img, .address-block img {
  width: 28px;
  margin-right: 5px;
  vertical-align: middle;
}
.address-block > div {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.address-block a { color: var(--color-gold); font-weight: 600; }

/* ========================== FOOTER ========================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 12px 0;
  font-size: 1rem;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.87;
  transition: color 0.17s, opacity 0.16s;
  font-family: var(--font-display);
  font-size: 0.98rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  font-family: var(--font-display);
}
.footer-brand img {
  height: 35px;
  width: auto;
}
.footer-brand p {
  font-size: 1rem;
  color: #fff;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

/* ========================== LEGAL, THANK YOU, ETC ========================== */
.legal-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 30px rgba(36,51,62,0.10);
}
.legal-section h1, .thank-you-section h1 { margin-bottom: 22px; font-size: 2.1rem; }
.legal-section .text-section, .thank-you-section .content-wrapper {
  margin-top: 18px;
  font-size: 1.05rem;
}
.legal-section ul, .legal-section ol { padding-left: 20px; margin-bottom: 14px; }

/* ========================== MODALS & MICRO-INTERACTIONS ========================== */
/* Card and button slight raise on hover */
.card, .feature_grid>div, .service_list li, .service-cards > div, .post-list li, .team-members>div, .case-study-list .project {
  transition: box-shadow 0.18s, border 0.18s, transform 0.11s;
}
.card:hover, .feature_grid>div:hover, .service_list li:hover, .service-cards > div:hover, .post-list li:hover, .team-members>div:hover, .case-study-list .project:hover {
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}

/* ========================== COOKIE BANNER & MODAL ========================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--color-primary);
  border-top: 2px solid var(--color-gold);
  padding: 18px 16px 16px 16px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 -2px 24px rgba(36,51,62, 0.13);
  font-size: 0.98rem;
  gap: 20px;
  animation: cookiebanner-in 0.7s cubic-bezier(.82,-0.04,.66,1.06) both;
}
@keyframes cookiebanner-in { from{ transform: translateY(80px); opacity:0;} to{transform:translateY(0); opacity:1;} }
#cookie-banner.hide { display: none; }
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: auto;
}
.cookie-btn {
  padding: 9px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 20px;
  font-size: 1.02rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(36,51,62,0.10);
  transition: background 0.19s, color 0.16s;
  outline: none;
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #9B894A;
}
.cookie-btn.reject {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-gold);
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-accent);
}

/* Cookie settings modal (centered flex) */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,51,62,0.73);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-in 0.5s;
}
#cookie-modal.active { display: flex; }
@keyframes cookie-modal-in { from{opacity:0;} to{opacity:1;} }
#cookie-modal .modal-content {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  width: 97%;
  max-width: 400px;
  box-shadow: 0 4px 28px rgba(36,51,62,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
#cookie-modal .modal-content h3 {
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 1.25rem;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: color 0.19s;
}
#cookie-modal .close-modal:hover {
  color: var(--color-gold);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 17px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #E2E6DE;
  border-radius: 15px;
  position: relative;
  margin-right: 10px;
  transition: background 0.17s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-muted);
  transition: 0.2s;
}
.cookie-toggle input:checked + .slider {
  background: var(--color-gold);
  left: 20px;
}
.cookie-category .essential {
  color: var(--color-muted);
  font-style: italic;
  font-size: 0.96rem;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 24px;
}
#cookie-modal .cookie-btn { margin: 0; }

/* ========================== RESPONSIVENESS (MOBILE-FIRST) ========================== */
@media (max-width: 900px) {
  .container { max-width: 98vw; padding: 0 8px; }
  .main-nav { gap: 14px; font-size: 0.99rem; }
  .feature_grid, .service_list, .card-container, .service-cards, .benefits-list, .usp-list, .case-study-list, .team-members, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero-section {
    padding: 32px 0 28px 0;
  }
  .hero-section h1 { font-size: 2.1rem; }

  .container, .content-wrapper {
    padding: 0 6px;
    max-width: 100vw;
  }
  .feature_grid, .service_list, .team-members,
  .service-cards, .card-container, .benefits-list, .usp-list, .case-study-list, .post-list, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .newsletter-signup {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section { flex-direction: column; gap: 18px; align-items: stretch; }
  .about-section .text-section { font-size: 1rem; }
  .testimonial-card, .card, .service_list li,
  .service-cards > div, .feature_grid > div, .case-study-list .project {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .footer-nav { gap: 16px; flex-wrap: wrap; font-size: 0.99rem; text-align: center; }
  .footer-brand { flex-direction: column; gap: 9px; align-items: center; }
  .section, .legal-section, .thank-you-section {
    margin-bottom: 38px;
    padding: 22px 4px;
    border-radius: 10px;
  }
}
@media (max-width: 525px) {
  .hero-section, .section, .legal-section, .thank-you-section {
    padding-left: 3px; padding-right: 3px;
  }
  .address_brief, .address-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.97rem;
  }
  #cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    font-size: 0.97rem;
  }
  #cookie-banner .cookie-buttons {
    margin-left: 0;
    gap: 10px;
  }
  #cookie-modal .modal-content {
    padding: 22px 8px 20px 8px;
    max-width: 98vw;
    font-size: 0.98rem;
  }
}
/* ==== Hide scrollbars for mobile menu overlay (for nice effect) ==== */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/* ========================== PRINT & SELECTION ========================== */
::selection {
  background: var(--color-gold);
  color: #fff;
}

/* ========================== FOCUS STYLES ========================== */
a:focus, button:focus, .cta:focus, .mobile-nav a:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  background: rgba(185,155,94,0.10);
}

/* ========================== SCROLLBAR (THIN, LUXURY FEEL) ========================== */
body::-webkit-scrollbar {
  width: 10px;
  background: #F7F8F6;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 8px;
}

/* ========================== LUXURY GOLD ACCENTS ========================== */
hr {
  border: none;
  border-top: 1.8px solid var(--color-gold);
  margin: 22px 0;
}

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