/* ==================================================
   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,
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;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #242C3B;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}

/* ==================================================
   BRAND COLORS & VARIABLES
   ================================================== */
:root {
  --color-primary: #1A3055;  /* deep blue */
  --color-secondary: #EADFB4; /* luxury light gold */
  --color-accent: #D98057;   /* premium accent, rich terracotta */
  --color-white: #fff;
  --color-light: #FAF7F2;
  --color-grey: #e5e5e5;
  --color-text: #242C3B;
  --color-gold: #BFA046;
  --color-gold-light: #EADFB4;
  --shadow-main: 0 8px 24px 0 rgba(26,48,85,0.07), 0 1.5px 4px 0 rgba(26,48,85,0.11);
  --shadow-card: 0 2px 12px 0 rgba(191,160,70,0.08), 0 0.5px 3px 0 rgba(26,48,85,0.08);
  --radius-main: 16px;
  --radius-small: 8px;
  --radius-pill: 100px;
}

/* ==================================================
   TYPOGRAPHY
   ================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
}
strong, b {
  font-weight: 600;
  color: var(--color-primary);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* ============
   HEADER / NAV
   ============ */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(26,48,85,0.06);
  position: relative;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}
.logo img {
  height: 50px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  padding: 2px 2px 4px 2px;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-gold);
  margin: 4px auto 0;
  border-radius: 1.5px;
  transition: width 0.25s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.cta-btn {
  background: var(--color-gold);
  color: #1A3055;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 14px 0 rgba(191,160,70,0.14);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid var(--color-gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  line-height: 1.4;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 20px 0 rgba(217,128,87,0.19);
}
.cta-btn.cta-secondary {
  background: var(--color-white);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.cta-btn.cta-secondary:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* --------
   BURGER MENU
   -------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 8px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 9999;
  transition: box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 11000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 30px;
  width: 100vw;
  height: 100vh;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-left: auto;
  font-size: 1.75rem;
  background: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 12px 4px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  margin: 0 0 3px 0;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold-light);
  color: var(--color-accent);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    display: none;
  }
}

/* ==================================================
   HERO
   ================================================== */
.hero {
  background: linear-gradient(120deg, var(--color-primary) 65%, var(--color-gold) 100%);
  color: #fff;
  padding: 68px 0 56px 0;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 28px;
  color: #fff;
  padding: 20px 0;
}
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.hero p {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 18px;
  max-width: 540px;
}
.hero .cta-btn {
  background: var(--color-gold);
  color: #1A3055;
  font-size: 1.1rem;
}
.hero .cta-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ==================================================
   FEATURES
   ================================================== */
.features {
  background: var(--color-light);
  border-bottom: 1px solid var(--color-gold-light);
}
.features h2 {
  text-align: center;
  color: var(--color-primary);
  font-size: 2rem;
}
.features .content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 910px;
  flex-direction: row;
  justify-content: center;
  padding: 32px 0 5px 0;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.features ul li {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-grey);
  padding: 30px 22px 26px 22px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: box-shadow 0.25s, border-color 0.18s, transform 0.18s;
}
.features ul li img {
  height: 46px; margin-bottom: 8px;
}
.features ul li strong {
  font-size: 1.1rem;
}
.features ul li:hover {
  box-shadow: 0 8px 36px 0 rgba(217,128,87,0.12);
  border-color: var(--color-gold);
  transform: translateY(-3px) scale(1.027);
}

/* ==================================================
   CARDS & FLEX LAYOUTS
   ================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-main);
  padding: 30px 22px;
  flex: 1 1 270px;
  max-width: 370px;
  border: 1px solid var(--color-grey);
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(191,160,70,0.16);
  border-color: var(--color-gold);
  transform: translateY(-2px) scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.service-card {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-small);
  padding: 32px 28px;
  margin-bottom: 20px;
  border: 1px solid var(--color-gold-light);
  flex: 1 1 310px;
  min-width: 240px;
  max-width: 375px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.23s, border-color 0.18s, transform 0.19s;
  position: relative;
}
.service-card h3 {
  color: var(--color-accent);
  font-size: 1.17rem;
}
.service-card ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.service-card:hover {
  box-shadow: 0 8px 38px 0 rgba(191,160,70,0.14);
  border-color: var(--color-gold);
  transform: translateY(-2px) scale(1.022);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* TEAM */
.team-member-card {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-main);
  padding: 32px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--color-gold-light);
  flex: 1 1 300px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.17s, border-color 0.15s, transform 0.15s;
}
.team-member-card h3 {
  color: var(--color-primary);
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.team-member-card b {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.03rem;
}
.team-member-card:hover {
  box-shadow: 0 8px 37px 0 rgba(191,160,70,0.11);
  border-color: var(--color-gold);
  transform: translateY(-2.5px) scale(1.016);
}

/* ==================================================
   TESTIMONIALS
   ================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow-main);
  border-radius: var(--radius-main);
  border-left: 5px solid var(--color-gold);
  margin-bottom: 20px;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  color: #1A3055;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A3055;
}
.testimonial-card span {
  color: var(--color-accent);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px;
    max-width: 100%;
  }
  .service-card, .team-member-card {
    padding: 22px 12px;
  }
}

/* ==================================================
   FAQ ACCORDION
   ================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
  padding: 26px 22px 20px 22px;
  border-left: 4px solid var(--color-accent);
  transition: box-shadow 0.19s, border-color 0.18s;
}
.faq-item h2 {
  font-size: 1.09rem;
  color: var(--color-primary);
  margin-bottom: 9px;
  cursor: pointer;
}
.faq-item .faq-answer {
  font-size: 1rem;
  color: var(--color-text);
  display: block;
  margin-top: 4px;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 18px 0 rgba(191,160,70,0.10);
  border-color: var(--color-gold);
}

/* ==================================================
   ARTICLE LIST RATGEBER
   ================================================== */
.article-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.article-list li {
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-gold-light);
  padding: 24px 18px 18px 18px;
  transition: box-shadow 0.14s, border-color 0.14s, transform 0.11s;
}
.article-list h3 {
  color: var(--color-primary);
  margin-bottom: 7px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.article-list li:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px 0 rgba(217,128,87,0.09);
  transform: translateY(-2px) scale(1.012);
}

/* ==================================================
   CTA SECTION
   ================================================== */
.cta-section {
  background: linear-gradient(120deg, var(--color-gold) 65%, var(--color-primary) 100%);
  color: #1A3055;
  padding: 50px 0;
}
.cta-section .container {
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: var(--color-primary);
  margin-bottom: 12px;
}
.cta-section .cta-btn {
  background: #fff;
  color: var(--color-gold);
  border-color: #fff;
}

/* ==================================================
   CONTACT PAGE / CONFIRMATION
   ================================================== */
.contact-hero {
  background: var(--color-primary);
  color: #fff;
  padding: 56px 0 30px 0;
}
.contact-hero h1 {
  color: #fff;
}
.contact-hero p {
  color: #EADFB4;
  font-size: 1.15rem;
}
.confirmation .cta-btn {
  margin-top: 18px;
}

/* ==================================================
   FOOTER
   ================================================== */
footer {
  background: var(--color-primary);
  color: var(--color-gold);
  padding: 44px 0 18px 0;
  position: relative;
  z-index: 2;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-col img {
  height: 43px;
  margin-bottom: 7px;
}
.footer-col p {
  color: var(--color-gold);
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 150px;
}
.footer-nav a {
  color: var(--color-gold);
  font-size: 1rem;
  font-family: 'Montserrat';
  transition: color 0.17s;
  margin-bottom: 2px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  color: var(--color-gold);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
}
.footer-contact img {
  height: 22px;
  width: auto;
}
@media (max-width: 1020px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ==================================================
   COOKIE CONSENT BANNER
   ================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  box-shadow: 0 -1.5px 20px 0 rgba(26,48,85,0.11);
  border-top: 3px solid var(--color-gold);
  padding: 18px 27px 18px 27px;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 80px;
  transition: transform 0.34s cubic-bezier(.68,.02,.29,1.01);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: #fff;
  cursor: pointer;
  margin-right: 0;
  min-width: 110px;
  transition: background 0.13s, border-color 0.12s, color 0.12s;
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-btn.accept:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.cookie-btn.reject:hover {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.cookie-btn.settings:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,48,85,0.24);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 36px 0 rgba(26,48,85,0.18), 0 1.5px 12px 0 rgba(191,160,70,0.11);
  max-width: 410px;
  width: 98vw;
  padding: 40px 30px 32px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  animation: cookieModalIn 0.38s cubic-bezier(.6,0,.27,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(60px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  margin: 9px 0 4px 0;
  gap: 10px;
  font-size: 1.07rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 22px; height: 22px;
  margin: 0;
}
.cookie-modal .cookie-cat.essential input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-cat.essential label:after {
  content: ' (immer aktiv)';
  color: var(--color-gold);
  font-size: 0.94rem;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 17px;
  font-size: 1.3rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: var(--color-gold);
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */
@media (max-width: 1200px) {
  .container { padding: 0 13px; }
}
@media (max-width: 1020px) {
  .features .content-wrapper, .content-wrapper {
    flex-direction: column !important;
    align-items: stretch;
    gap: 18px;
  }
  .features ul {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .team-member-card, .service-card, .article-list li, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .container, section .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  .hero { padding: 35px 0 25px 0; }
  .section { padding: 25px 7px; margin-bottom: 35px; }
  .testimonial-card { padding: 11px; }
  .cookie-banner { flex-direction: column; gap: 13px; min-height: 96px; padding: 13px 7px; }
  .content-wrapper { gap: 12px; }
  .content-grid, .article-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section { flex-direction: column; gap: 12px; }
  .features .content-wrapper { flex-direction: column; }
  .features ul { gap: 12px; }
  .feature-item { gap: 7px; }
  .card, .service-card, .team-member-card, .article-list li {
    padding: 13px 5px;
  }
  .cta-section, .hero { padding: 30px 0; }
}
/* Remove overlapping by enforcing min gap everywhere */
.card-container, .content-grid, .article-list, .testimonials {
  gap: 24px;
}
.card, .service-card, .team-member-card, .testimonial-card, .article-list li {
  margin-bottom: 20px;
}

/* Miscellaneous details for luxury */
.card, .service-card, .team-member-card, .testimonial-card, .article-list li {
  border: 1.2px solid var(--color-gold-light);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-main);
}

/* Links inside content 
   Enhance visibility and luxury accent on hover */
.text-section a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.14s, text-decoration 0.12s;
  font-weight: 500;
  border-radius: 3px;
  padding: 2px 4px;
}
.text-section a:hover, .text-section a:focus {
  color: var(--color-primary);
  background: var(--color-gold-light);
  text-decoration: none;
}

/* ============= MARQUEE LUXURY EFFECT ============= */
hr {
  border: none;
  border-top: 1.5px solid var(--color-gold-light);
  margin: 42px 0;
}

/* ============= Miscellaneous =============*/
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-grey);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-light);
  border-radius: 8px;
}

[tabindex]:focus, a:focus, button:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Hide default input search clear button for Chrome etc. */
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

/* ==================================================
   PRINT STYLES
   ================================================== */
@media print {
  * {
    color: #222 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  header, footer, .cta-section, .hero, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}

/* END OF STYLE */