/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
table {border-collapse: collapse; border-spacing: 0;}

/* Brand Variables & Luxury Colors */
:root {
  --ci-primary: #23443F;
  --ci-secondary: #FFFFFF;
  --ci-background: #F5F3EB;
  --ci-accent: #D06700;
  --ci-gold: #CFA75B;
  --ci-gold-light: #ead790;
  --ci-offwhite: #FAFAF7;
  --ci-dark: #222B28;
  --ci-grey: #C5C5C0;
  --ci-boxshadow: 0 6px 32px rgba(35, 68, 63, 0.10), 0 1.5px 7px rgba(55, 48, 32, 0.03);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--ci-dark);
  background: var(--ci-background);
  letter-spacing: -0.01em;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ci-primary);
  margin-bottom: 16px;
}
h1 {font-size: 2.5rem;line-height: 1.15; margin-bottom: 24px;}
h2 {font-size: 2rem;line-height: 1.2; margin-bottom: 20px;}
h3 {font-size: 1.4rem; margin-bottom: 16px;}
h4 {font-size: 1.2rem; margin-bottom: 12px;}
p, ul, ol {margin-bottom: 16px;}
ul, ol {margin-left: 18px;}
strong {font-weight: 700;}
em {font-style: italic;}

/* Container */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}

/* SECTION SPACING: luxury breathing space */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px;
  box-sizing: border-box;
}

section:last-child, .section:last-child {margin-bottom: 0;}

/* HERO Section */
.hero {
  background: var(--ci-secondary);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--ci-boxshadow);
  padding-bottom: 20px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: var(--ci-primary);
  font-size: 2.7rem;
}
.hero p { font-size: 1.3rem; color: var(--ci-dark); opacity: .98; margin-bottom: 20px;}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 13px 36px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 30px;
  font-size: 1.15rem;
  cursor: pointer;
  border: none;
  outline: none;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 3px 18px rgba(208, 103, 0, 0.13);
  transition: background .18s, color .18s, box-shadow .30s, transform .15s;
}
.btn-primary {
  background: var(--ci-gold);
  color: var(--ci-primary);
  border: 2px solid var(--ci-gold-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--ci-primary);
  color: var(--ci-gold);
  border: 2px solid var(--ci-gold);
  box-shadow: 0 5px 20px 2px rgba(35, 68, 63, 0.11);
  transform: translateY(-3px) scale(1.03);
}
.btn-secondary {
  background: none;
  color: var(--ci-primary);
  border: 2px solid var(--ci-gold);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--ci-gold);
  color: var(--ci-primary);
  box-shadow: 0 4px 18px 0 rgba(209,103,0,0.09);
  transform: translateY(-2px) scale(1.01);
}

/* Navigation Header */
header {
  width: 100%;
  background: var(--ci-secondary);
  box-shadow: 0 2px 11px 0 rgba(35,68,63,0.07);
  position: sticky;
  top: 0;
  z-index: 1003;
  padding-top: 3px;
  transition: box-shadow .18s;
}
header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  min-height: 75px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: 30px;
  flex: 1;
}
header nav a {
  color: var(--ci-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  padding: 9px 12px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.13s, color .15s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--ci-gold-light);
  color: var(--ci-accent);
}
header .btn-primary {
  margin-left: 24px;
  font-size: 1rem;
  padding: 9px 26px;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  margin-left: auto;
  color: var(--ci-gold);
  cursor: pointer;
  transition: color .18s;
}
header .mobile-menu-toggle:hover,
header .mobile-menu-toggle:focus {
  color: var(--ci-accent);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--ci-primary);
  color: var(--ci-gold-light);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.51,1.04,.67,1.02);
  box-shadow: -4px 0 24px 0 rgba(0,0,0,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--ci-gold);
  margin: 28px 30px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: var(--ci-accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  width: 100%;
  margin-top: 32px;
  padding-right: 60px;
}
.mobile-nav a {
  color: var(--ci-gold-light);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  padding: 10px 0;
  text-align: right;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-weight: 500;
  border-radius: 12px;
  transition: color .14s, background .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--ci-accent);
  background: rgba(255,255,255,0.06);
}

/* FEATURES -- gold icons/bullet luxury */
.features {
  background: var(--ci-background);
  border-radius: 24px;
  box-shadow: 0 4px 22px rgba(127, 101, 54, 0.03);
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 18px;
}
.features h2 {
  color: var(--ci-accent);
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 0;
}
.features li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.09rem;
  color: var(--ci-primary);
  background: var(--ci-secondary);
  border-radius: 16px;
  padding: 11px 20px;
  box-shadow: 0 1px 6px 0 rgba(35,68,63,0.07);
}
.features li img {
  filter: drop-shadow(0 2px 6px rgba(207,167,91,0.12));
  width: 26px; height: 26px;
}

/* Service List */
.services {
  background: var(--ci-offwhite);
  border-radius: 24px;
  box-shadow: var(--ci-boxshadow);
}
.services ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 25px;
}
.services ul li {
  display: flex;
  align-items: flex-start;
  font-size: 1.11rem;
  color: var(--ci-primary);
  background: var(--ci-secondary);
  border-radius: 16px;
  padding: 10px 20px;
  box-shadow: 0 1.5px 6px 0 rgba(35,68,63,0.07);
}
.services ul li strong {
  color: var(--ci-accent);
  font-weight: 600;
}
.services ul li em, .services ul li .price {
  margin-left: 10px; font-weight: 700; color: var(--ci-gold); font-style: normal;
}
.services .btn-secondary {
  margin-top: 8px;
}

/* Testimonial Cards */
.testimonials {
  background: var(--ci-secondary);
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(220, 167, 102, 0.08);
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonials h2, .testimonials h1 {
  color: var(--ci-gold);
  font-size: 2.1rem;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: rgba(250,250,247, 0.94);
  box-shadow: 0 2px 8px rgba(35,68,63,0.06);
  border: 1px solid var(--ci-gold-light);
  margin-bottom: 20px;
  border-radius: 17px;
  position: relative;
  color: var(--ci-dark);
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(207, 167, 91, 0.07);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: var(--ci-primary);
  quotes: '“' '”';
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: var(--ci-gold);
  font-weight: bold;
  font-size: 1.7em;
  vertical-align: -0.35em;
  margin-right: 3px;
}
.testimonial-card blockquote:after {
  content: close-quote;
  color: var(--ci-gold);
  font-weight: bold;
  font-size: 1.7em;
  vertical-align: -0.35em;
  margin-left: 3px;
}
.testimonial-card footer {
  font-size: 1rem;
  color: var(--ci-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-top: 2px;
}
.testimonial-card footer span {
  color: var(--ci-gold);
  margin-left: 6px;
  font-size: .98em;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(92deg, var(--ci-gold-light) 90%, var(--ci-accent) 120%);
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 1.5px 16px 0 rgba(35,68,63,0.09);
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 14px;
}
.cta-banner h2 {
  color: var(--ci-primary);
  font-size: 2rem;
}
.cta-banner p {
  font-size: 1.22rem;
  color: var(--ci-dark);
}
.cta-banner .btn-primary {
  margin: 9px auto 0 auto;
  min-width: 200px;
}

/* About and Legal page text sections */
.text-section {
  margin-bottom: 14px;
}
.text-section ul {
  margin-top: 12px;
  margin-bottom: 7px;
  margin-left: 18px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.text-section li {
  color: var(--ci-gold);
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: -0.01em;
}
.text-section strong {color: var(--ci-accent);}
.text-section h2 {margin-top:8px; margin-bottom:8px;}

/* Contact Section */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.contact-info li {
  display: flex; align-items: center; gap: 13px;
  font-size: 1.03rem;
  color: var(--ci-primary);
  background: var(--ci-offwhite);
  border-radius: 13px;
  padding: 9px 20px;
}
.contact-info li img {width: 22px; height: 22px; filter: drop-shadow(0 1px 3px rgba(207,167,91,0.12));}

.contact-form .text-section {
  margin-bottom: 14px;
}
.contact-form .btn-primary {
  margin-top: 12px;
}

/* Thank You Section */
.thank-you .text-section {
  margin-bottom: 13px;
}

/* Cards & Card Containers */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--ci-secondary);
  border: 1.5px solid var(--ci-gold-light);
  border-radius: 18px;
  box-shadow: 0 2.2px 15px 0 rgba(35,68,63,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 27px 22px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 10px 42px rgba(207, 167, 91, 0.13);
  transform: translateY(-2px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* Footer */
footer {
  background: var(--ci-primary);
  color: var(--ci-gold-light);
  padding: 38px 0 18px 0;
  width: 100%;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -3px 16px 0 rgba(35,68,63,0.11);
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 34px 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.035rem;
  max-width: 260px;
}
.footer-brand img { width: 44px; margin-bottom: 5px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
}
.footer-links a {
  color: var(--ci-gold-light);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .13s, border .13s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--ci-gold);
  border-bottom: 1px solid var(--ci-gold);
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
}
.footer-social img {
  width: 28px; height: 28px; filter: brightness(1.3) drop-shadow(0 2px 8px rgba(204,182,130, 0.05));
  transition: filter .14s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: brightness(2.6) drop-shadow(0 2px 12px var(--ci-gold));
}

/* Legal sections */
.legal {
  background: var(--ci-offwhite);
  border-radius: 24px;
  box-shadow: 0 4px 22px rgba(35,68,63,0.04);
}

/* Responsive & Alignment Utilities */
.section, section, .card, .testimonial-card, .features li, .services ul li, .contact-info li {
  box-sizing: border-box;
}

.card-container, .card-grid, .content-grid, .features ul, .testimonial-card, .services ul, .footer-social,
.text-image-section, .content-wrapper {
  gap: 20px;
}
.content-grid {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: none;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--ci-secondary);
  color: var(--ci-primary);
  box-shadow: 0 -2px 22px rgba(35,68,63,0.11);
  padding: 24px 20px 24px 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  z-index: 2000;
  font-size: 1.05rem;
  border-radius: 24px 24px 0 0;
  transition: transform 0.32s, opacity .23s;
}
.cookie-consent-banner.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-message {
  flex: 1;
  margin-right: 12px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-consent-banner button {
  border: none;
  outline: none;
  background: var(--ci-gold);
  color: var(--ci-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 25px;
  padding: 10px 22px;
  margin-right: 1px;
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .17s;
  box-shadow: 0 1px 7px 0 rgba(220, 135, 0, 0.19);
}
.cookie-consent-banner button:focus, .cookie-consent-banner button:hover {
  background: var(--ci-primary);
  color: var(--ci-gold);
}
.cookie-consent-banner .btn-secondary {
  background: none;
  color: var(--ci-primary);
  border: 1.5px solid var(--ci-gold);
}
.cookie-consent-banner .btn-secondary:focus,
.cookie-consent-banner .btn-secondary:hover {
  background: var(--ci-gold);
  color: var(--ci-primary);
}

/* Cookie Consent Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 68, 63, .43);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .23s;
}
.cookie-modal-backdrop.closed { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: var(--ci-secondary);
  border-radius: 18px;
  box-shadow: 0 7px 30px rgba(35,68,63,0.14);
  padding: 34px 28px;
  color: var(--ci-primary);
  min-width: 312px;
  max-width: 97vw;
  z-index: 2111;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalAppear 0.24s cubic-bezier(.68,1.25,.73,1.04);
}
@keyframes modalAppear {
  from { transform: translateY(40px) scale(.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--ci-accent);
  font-size: 1.4rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex; flex-direction: column; gap: 19px;
  margin-bottom: 19px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--ci-primary);
}
.cookie-modal .category-label {
  font-weight: 700; color: var(--ci-gold);
}
.cookie-modal .category-toggle {
  margin-left: auto;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--ci-accent);
  width: 20px; height: 20px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  font-size: 1.03rem;
  padding: 10px 19px;
}

/* Scrollbar luxury style */
::-webkit-scrollbar {
  width: 11px;
  background: var(--ci-gold-light);
}
::-webkit-scrollbar-thumb {
  background: var(--ci-primary);
  border-radius: 6px;
}

/* --- Responsive Design --- */
@media (max-width: 1180px) {
  .container {
    max-width: 100%;
  }
  header nav {
    margin-left: 10px;
  }
  footer .container {
    gap: 20px 17px;
  }
}
@media (max-width: 930px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  section, .section {
    padding: 28px 3vw;
    margin-bottom: 34px;
  }
  .footer-brand {
    font-size: .97rem;
  }
}
@media (max-width: 870px) {
  header .container {
    flex-wrap: wrap;
    gap: 7px;
  }
  footer .container {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .cta-banner h2 {
    font-size: 1.2rem;
  }
  section, .section {
    padding: 20px 4vw;
    margin-bottom: 22px;
  }
  .cta-banner {
    margin-bottom: 16px;
    border-radius: 12px;
  }
  .footer-brand {
    font-size: .97rem;
  }
  .testimonial-card {padding: 13px 10px;}
  .features li, .services ul li {padding: 8px 13px;}
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 19px 8vw 16px 6vw;
    font-size: .98rem;
  }
  .cookie-consent-banner .cookie-actions {
    flex-wrap: wrap;
    gap: 7px;
  }
  .cookie-modal {padding: 20px 7vw; min-width: 0;}
}
@media (max-width: 600px) {
  .container {
    padding: 0 3vw;
  }
  .content-wrapper {
    padding: 0;
    gap: 12px;
  }
  .features li, .services ul li, .testimonial-card {font-size: 1rem;}
  .features li img, .services li img, .contact-info li img {width: 20px; height: 20px;}
  header .container {
    flex-wrap: nowrap;
    gap: 6px;
  }
}
@media (max-width: 570px) {
  .footer-links {
    font-size: 0.99rem;
  }
  .footer-social img {width: 22px; height: 22px;}
  .btn-primary, .btn-secondary, .cookie-consent-banner button {font-size: .93rem; padding: 9px 17px;}
}
@media (max-width: 480px) {
  section, .section, .card, .testimonial-card {
    padding-left: 7px; padding-right: 7px;
  }
  .btn-primary, .btn-secondary {padding: 9px 10vw;}
  .footer-brand, .footer-links {font-size: .97rem;}
}

/* --- Hide Desktop Nav, Enable Mobile Burger --- */
@media (max-width: 980px) {
  header nav { display: none; }
  header .btn-primary { display: none; }
  header .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {display: flex;}
}

/* --- switch flex direction for text-image-section on mobile --- */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- Prevent Overlapping and Add Breathing Room --- */
.section, section, .testimonials, .footer-brand, .features, .services, .legal, .cta-banner {
  margin-bottom: 24px;
  box-sizing: border-box;
}

/* Misc luxury details */
.card, .testimonial-card, .features, .services, .cta-banner, .legal {
  border-radius: 24px;
}
.card {
  border: 1.2px solid var(--ci-gold-light);
}
.card:before {
  content: "";
  position: absolute;
  display: block;
  left: 22px;
  top: 11px;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--ci-gold-light);
  opacity: 0.14;
}

/* Hover effects for links */
a {
  transition: color .14s;
}
a:focus { outline: 2px solid var(--ci-accent); outline-offset: 2px;}

/* Micro-interactions for icons */
.features li img, .footer-social img, .services li img {
  transition: filter .15s, transform .13s;
}
.features li:hover img,
.services li:hover img,
.contact-info li:hover img {
  filter: brightness(2.3) drop-shadow(0 2px 11px var(--ci-gold));
  transform: scale(1.12) rotate(-7deg);
}

/* Accessibility & contrast improvements */
.testimonial-card, .testimonial-card blockquote, .testimonial-card footer {
  color: #1B2721;
  background: none;
}

/* Hide cookie modal and banner by default (add proper classes to open via JS/event) */
.cookie-consent-banner, .cookie-modal-backdrop {display: none;}
.cookie-consent-banner.active, .cookie-modal-backdrop.active {display: flex;}

/* --- END CSS --- */
