/* ---------------- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #EFEBE9;
  color: #263148;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ---------------- FONT IMPORTS (FALLBACKS INCLUDED) ---------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  background-color: #EFEBE9;
  color: #263148;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.125rem; }
p { font-size: 1rem; margin-bottom: 12px; color: #263148; }
strong { font-weight: bold; }

/* Typography for geometric_structured feel */
h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

/* Utility Classes */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
}

/* ----------------------- SPACING & SECTIONS ----------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .section, section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* ------------------- FLEXBOX LAYOUT UTILITIES ------------------- */
.card-container, .features-grid, .service-list, .service-grid, .team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { 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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(38,49,72,0.09);
  margin-bottom: 24px;
  flex-wrap: wrap;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 18px rgba(38,49,72,0.19);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-grid > div, .service-list > div, .service-grid > .service-card, .team-section > div {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(38,49,72,0.06);
  padding: 30px 24px;
  margin-bottom: 20px;
  min-width: 230px;
  position: relative;
  border: 2px solid #EFEBE9;
}
.features-grid img {
  width: 38px; height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #EFEBE9;
  padding: 6px;
  box-shadow: 0 1px 4px #BF976824;
}
.service-grid {
  gap: 24px;
  margin-bottom: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  border: 2px solid #EFEBE9;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(38,49,72,0.08);
  padding: 28px 22px;
  min-width: 222px;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: #BF9768;
  box-shadow: 0 6px 18px rgba(191,151,104,0.09);
}

@media (max-width: 900px) {
  .card-container, .features-grid, .service-list, .service-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .content-grid, .features-grid, .service-list, .card-container, .service-grid, .team-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ----------- BUTTONS & CTA ----------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #263148;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 15px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px rgba(38,49,72,0.09);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #BF9768;
  color: #fff;
  box-shadow: 0 6px 18px rgba(191,151,104,0.12);
}

button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}

/* -------------- HEADER, NAVIGATION -------------- */
header {
  background: #fff;
  border-bottom: 3px solid #EFEBE9;
  box-shadow: 0 2px 10px rgba(38,49,72,0.04);
  position: relative;
  z-index: 12;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.main-nav .logo img {
  height: 45px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 18px;
}
.main-nav ul li a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #263148;
  border-bottom: 2.5px solid transparent;
  transition: border 0.15s, color 0.13s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #BF9768;
  border-bottom: 2.5px solid #BF9768;
}

/* Hide .mobile-menu (menu overlay) at desktop */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  .main-nav ul {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 28px;
    top: 18px;
    z-index: 21;
    background: #263148;
    color: #fff;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    text-align: center;
    border: none;
    box-shadow: 0 2px 6px rgba(38,49,72,0.13);
    transition: background 0.21s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #BF9768;
    color: #fff;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 98vw;
  max-width: 390px;
  height: 100vh;
  background: #263148;
  color: #fff;
  z-index: 99;
  box-shadow: -2px 0 18px rgba(38,49,72,.33);
  transform: translateX(102%);
  transition: transform 0.38s cubic-bezier(.7,.05,.58,1);
  padding: 38px 32px 32px 28px;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: #BF9768;
  color: #fff;
  font-size: 2rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  border: none;
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  z-index: 10;
  transition: background 0.16s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #BF9768;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 54px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BF9768;
  color: #fff;
}

@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ---------------- HERO SECTION ----------------- */
.hero {
  background: #263148;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 40px;
  padding: 60px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 8px 32px #26314833;
  letter-spacing: 0.03em;
  font-size: 2.7rem;
}
.hero p {
  color: #EFEBE9;
  font-size: 1.18rem;
  max-width: 560px;
  margin-bottom: 16px;
}
.hero .cta-btn {
  background: #BF9768;
  color: #fff;
}
.hero .cta-btn:hover { background: #fff; color: #263148; }
@media (max-width: 900px) {
  .hero { padding: 38px 0; border-radius: 0 0 22px 22px; }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 680px) {
  .hero { padding: 24px 0 30px 0; border-radius: 0 0 17px 17px; }
  .hero .container { padding: 0 8px; }
  .hero h1 { font-size: 1.34rem; }
}

/* ---------------- VISUAL CARDS / FEATURES ------------------- */
.features-grid > div,
.service-list > div,
.team-section > div {
  box-shadow: 0 2px 14px rgba(38,49,72,0.07);
  border-radius: 14px;
  border: 2.5px solid #EFEBE9;
  background: #fff;
  transition: border-color 0.19s, box-shadow 0.21s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.features-grid > div:hover,
.service-list > div:hover,
.team-section > div:hover {
  border-color: #BF9768;
  box-shadow: 0 10px 32px #BF976822;
}

.accreditations {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.accreditations img {
  width: 36px; height: 36px;
}
.accreditations span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #263148;
  font-size: 1rem;
  margin-right: 22px;
}

/* ------------ TEAM HIGHLIGHT & SECTION ------------ */
.team-highlight {
  background: #BF976813;
  border-left: 6px solid #BF9768;
  border-radius: 13px;
  padding: 21px 31px;
  margin-top: 18px;
  margin-bottom: 14px;
}

/* ------------ TESTIMONIALS / REVIEWS ------------- */
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #263148;
  margin-bottom: 12px;
  position: relative;
}
.testimonial-meta {
  color: #263148;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-meta span {
  color: #BF9768;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-left: 4px;
}

.before-after-description {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 13px;
}
.before-after-description h3 {
  margin-bottom: 2px;
  font-size: 1.06rem;
  color: #263148;
}
@media (max-width: 600px) {
  .before-after-description { flex-direction: column; gap: 15px; }
}

/* ------------- PRICING TABLE / TABLES -------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 1px 8px rgba(38,49,72,0.06);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 17px 16px;
  border-bottom: 1.5px solid #EFEBE9;
  font-size: 1rem;
}
.pricing-table th {
  background: #EFEBE9;
  color: #263148;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-details, .pricing-notes {
  margin-bottom: 16px;
  margin-top: 7px;
  font-size: 0.96rem;
}

/* -------------- BLOG SNIPPETS ------------------ */
.blog-snippet {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #EFEBE9;
  box-shadow: 0 1px 8px rgba(38,49,72,0.06);
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: border-color 0.16s, box-shadow 0.15s;
}
.blog-snippet:hover {
  border-color: #BF9768;
  box-shadow: 0 8px 18px #BF976824;
}
.blog-snippet h3 {
  color: #263148;
}
.blog-snippet a {
  color: #263148;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.15s;
}
.blog-snippet a:hover,
.blog-snippet a:focus {
  color: #BF9768;
}

/* -------------- CONTACT DETAILS -------------- */
.contact-details {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #EFEBE9;
  box-shadow: 0 1px 8px rgba(38,49,72,0.06);
  padding: 30px 18px;
  margin-bottom: 20px;
}
.contact-map {
  background: #BF976813;
  border-radius: 11px;
  padding: 22px 17px;
  margin-bottom: 10px;
}

/* ---------------- FOOTER ------------------- */
footer {
  background: #263148;
  color: #EFEBE9;
  padding: 44px 0 0 0;
  margin-top: 44px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 16px #26314818;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 21px;
}
.footer-nav a {
  color: #EFEBE9;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.17s, color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #BF9768;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 23px;
  justify-content: center;
}
.footer-contact img {
  width: 44px;
  margin-bottom: 7px;
}
.footer-contact p {
  font-size: 0.96rem;
  color: #EFEBE9;
}
.footer-copy {
  border-top: 1.5px solid #EFEBE9;
  font-size: 0.93rem;
  text-align: center;
  padding: 12px 0 14px 0;
}

@media (max-width: 800px) {
  .footer-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

/* ------------ COOKIE CONSENT BANNER & MODAL ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #263148;
  color: #fff;
  z-index: 999;
  box-shadow: 0 -3px 20px #0005;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 10px 18px 10px;
  gap: 18px;
  animation: slideUpBanner 0.56s cubic-bezier(.77,.01,.2,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  padding: 11px 28px;
  border-radius: 22px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0;
  letter-spacing: 0.04em;
  background: #EFEBE9;
  color: #263148;
  transition: background 0.16s, color 0.13s;
  box-shadow: 0 1px 6px rgba(38,49,72,0.09);
}
.cookie-btn.accept {
  background: #BF9768;
  color: #fff;
}
.cookie-btn.reject {
  background: #EFEBE9;
  color: #263148;
}
.cookie-btn.settings {
  background: none;
  border: 2px solid #BF9768;
  color: #BF9768;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #263148;
  color: #fff;
  border: 2px solid #BF9768;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,49,72,0.83);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: showModalBg 0.38s cubic-bezier(.75,.05,.58,1);
}
@keyframes showModalBg {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #263148;
  border-radius: 22px;
  box-shadow: 0 4px 36px rgba(38,49,72,0.25);
  min-width: 310px;
  max-width: 96vw;
  padding: 38px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: showModalContent 0.57s cubic-bezier(.76,.05,.25,1);
  transition: box-shadow 0.25s;
}
@keyframes showModalContent {
  from { transform: scale(0.89); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: #BF9768;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #263148;
  color: #BF9768;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #263148;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #BF9768;
  border-radius: 5px;
  background: #EFEBE9;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.11s, border 0.14s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #BF9768;
  border-color: #BF9768;
}
.cookie-category input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 2px;
}
.essential-category label {
  color: #263148;
  opacity: 0.80;
}
.essential-category input[type='checkbox'] {
  background: #e7e6e5;
  border-color: #263148;
  pointer-events: none;
  opacity: 0.5;
}

/* Hide on acceptance */
.cookie-banner.hidden { display: none; }
.cookie-modal.hidden { display: none; }

/* -------------- OTHER: FORMS, MISC -------------- */
input, textarea, select {
  font-size: 1rem;
  border-radius: 8px;
  padding: 11px 14px;
  background: #EFEBE9;
  border: 2px solid #BF9768;
  margin-bottom: 15px;
  width: 100%;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #263148;
  box-shadow: 0 2px 8px #26314829;
}

label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; display: block; margin-bottom: 6px; }

/* ----------- GEOMETRIC DECORATIVE SHAPES (optional) ---------- */
/* Use only for non-content accents, e.g. ::before/::after geometric angles on hero, etc. */
.hero::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: #BF9768;
  opacity: 0.07;
  z-index: 0;
  border-radius: 36px 60px 10px 82px/44px 92px 10px 22px;
  transform: rotate(15deg);
  pointer-events: none;
}

@media (max-width: 750px) {
  .hero::before { display: none; }
}

/* ------------- RESPONSIVE TYPOGRAPHY SIZES ------------ */
@media (max-width: 600px) {
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
}

/* Advanced: Prevent card overlap on extremely narrow viewports */
@media (max-width: 420px) {
  .card, .service-card, .content-wrapper, .testimonial-card, .blog-snippet, .features-grid>div, .team-highlight, .contact-details, .contact-map {
    padding-left: max(8px,4vw);
    padding-right: max(8px,4vw);
  }
}

/* ----------------- ANIMATIONS & MICROINTERACTIONS ------------- */
.cta-btn, .cookie-btn, .main-nav ul li a, .footer-nav a, .blog-snippet a, input, .service-card, .features-grid > div, .testimonial-card {
  transition: all 0.21s cubic-bezier(0.65,.04,.55,1.14);
}

input, textarea { transition: border 0.14s, box-shadow 0.13s; }

a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #BF9768;
  outline-offset: 2px;
}

/* ------------- VISUAL HIERARCHY: SPACING & WHITE SPACE ----------- */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 26px;
}

/* ------------- GEOMETRIC STRUCTURED PERSONALITY --------------- */
/* Angular accents on card borders (optional, consistent with theme) */
.features-grid > div, .service-card, .team-section > div {
  border-radius: 13px 32px 13px 32px / 20px 44px 28px 24px;
  border-width: 3px;
  border-style: solid;
  border-color: #EFEBE9;
}
.features-grid > div:hover, .service-card:hover, .team-section > div:hover {
  border-color: #BF9768;
}

/* ------------- MISC OVERRIDES & ACCESSIBILITY ----------- */
:focus-visible { outline: 2px solid #BF9768; outline-offset: 1px; }
::selection {
  background: #BF9768;
  color: #fff;
}

/* ------------- HIDDEN CLASSES UTILITIES ----------- */
.hidden { display: none !important; }

/* --- Utility: Ensure brand personality with geometric/structure accents on headings --- */
h1, h2, h3 {
  position: relative;
  z-index: 1;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #BF9768;
  margin-top: 12px;
  border-radius: 2px 16px 2px 16px;
}

@media (max-width: 600px) {
  h1::after, h2::after {
    width: 30px;
    height: 3px;
    margin-top: 8px;
  }
}

/* ---------- End of CSS ---------- */
