/* ================================================================
   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, 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F7F9FB;
  color: #15334A;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
}
a {
  color: #45A6C6;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #BFA45B;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
input, select, textarea {
  font-family: inherit;
}

/* ================================================================
   TYPOGRAPHY - LUXURY PREMIUM STYLE
================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body, html {
  font-family: 'Roboto', Arial, sans-serif;
  color: #15334A;
}
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #15334A;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #15334A;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #15334A;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15334A;
}
.subheadline {
  font-size: 1.125rem;
  font-weight: 400;
  color: #496583;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
}
strong {
  font-weight: 600;
  color: #15334A;
}
small {
  font-size: 0.95em;
  color: #496583;
}

/* ================================================================
   BRAND COLORS & LUXURY PREMIUM PALETTE
================================================================== */
:root {
  --color-primary: #15334A;
  --color-secondary: #45A6C6;
  --color-accent: #F7F9FB;
  --color-gold: #BFA45B;
  --color-gold-dark: #927C3B;
  --color-bg-dark: #233245;
  --color-text: #15334A;
  --color-text-light: #FFFFFF;
  --color-bg-light: #F7F9FB;
  --color-border: #DFE2E7;
}

/* ================================================================
   LAYOUT CONTAINER STRUCTURE (Flexbox ONLY)
================================================================== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

/* Section defaults and spacing patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-light);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(34,50,69,0.07);
  border: 1px solid var(--color-border);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(191, 164, 91, 0.07), 0 1.5px 12px 0 var(--color-gold-dark);
  border-color: var(--color-gold);
}
.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: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(191, 164, 91, 0.08);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 rgba(191, 164, 91, 0.13);
  border-color: var(--color-gold-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ================================================================
   HEADER, NAVIGATION & BURGER MENU
================================================================== */
header {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 0;
  box-shadow: 0 2px 12px rgba(21,51,74,0.07);
  position: relative;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 46px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: var(--color-text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 8px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  border-radius: 2px;
  width: 0;
  background: var(--color-gold);
  transition: width 0.22s cubic-bezier(.35,1.5,.69,1.1);
  margin: 0 auto;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  outline: none;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav .cta-btn {
  background: var(--color-gold);
  color: #fff;
  border-radius: 24px;
  font-weight: 700;
  padding: 9px 28px;
  font-size: 1rem;
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 rgba(191, 164, 91, 0.13);
  transition: background 0.14s, color 0.18s, box-shadow 0.22s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--color-gold-dark);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(191, 164, 91, 0.17);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-gold);
  background: none;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* =============================
   MOBILE MENU OVERLAY
============================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(21,51,74,0.97);
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.74,0,.3,1), opacity 0.32s cubic-bezier(.74,0,.3,1);
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 0 0;
  font-size: 2.5rem;
  color: var(--color-gold);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 40px;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(191, 164, 91, 0.08);
  transition: color 0.2s;
  border-radius: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(191, 164, 91, 0.08);
}

/* Show/Hide Mobile Nav */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ================================================================
   HERO SECTION
================================================================== */
.hero {
  background: linear-gradient(110deg,#F7F9FB 75%,#fff 100%); /* soft luxury fade */
  padding: 70px 0 50px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 680px;
}
.hero .cta-btn {
  margin-top: 6px;
}

/* ================================================================
   BUTTONS & CTAS
================================================================== */
.cta-btn {
  background: linear-gradient(95deg,var(--color-gold),var(--color-gold-dark) 85%);
  color: #fff;
  border-radius: 28px;
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 18px 0 rgba(191,164,91,0.09);
  border: none;
  transition: background 0.22s, color 0.19s, box-shadow 0.24s;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-btn:after {
  content: '\2192';
  font-size: 1.1em;
  display: inline-block;
  color: #fff;
  margin-left: 10px;
  transition: margin-left 0.2s cubic-bezier(.4,0,.2,1);
}
.cta-btn:hover:after, .cta-btn:focus:after {
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(95deg,var(--color-gold-dark) 65%,var(--color-gold) 100%);
}

button[disabled], .cta-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ================================================================
   LUXURY CARDS, BADGES, ICONS, SPACING
================================================================== */
.editor-badge, .top-pick-badge {
  display: inline-block;
  background: var(--color-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: .88em;
  padding: 6px 14px;
  border-radius: 18px;
  margin-right: 12px;
  letter-spacing: 0.06em;
  vertical-align: middle;
  box-shadow: 0 1px 5px 0 rgba(191,164,91,0.16);
}
.top-pick-badge {
  background: var(--color-secondary);
  color: #fff;
}

.card, .testimonial-card, .feature-item {
  background: #fff;
}

/* Icon lists in features/trust */
.features ul, .trust ul, .about ul, .contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.features ul li, .trust ul li, .about ul li, .contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px 0;
  font-size: 1rem;
  color: #15334A;
}
.features ul li img, .trust ul li img, .about ul li img, .contact ul li img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-right: 4px;
  filter: drop-shadow(0 2px 2px rgba(34,50,69,0.04));
}

/* Trust/award sections */
.trust {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 38px 0 28px 0;
}
.trust ul {
  gap: 30px;
  padding-left: 0;
  margin-bottom: 0;
}
.trust ul li {
  font-size: 1rem;
  color: #927C3B;
  font-family: 'Montserrat', Arial, sans-serif;
}
.trust ul li img {
  margin-right: 10px;
  width: 30px; height: 30px;
}

/* Services/content inner grid */
.services .content-wrapper, .features .content-wrapper, .about .content-wrapper,
.contact .content-wrapper {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.services .content-wrapper > div,
.features .content-wrapper > div,
.about .content-wrapper > div,
.contact .content-wrapper > div {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 0 1.5px 8px 0 rgba(34,50,69,0.05);
  padding: 22px 20px;
  transition: box-shadow 0.2s, border-color 0.16s;
}
.services .content-wrapper > div:hover, .features .content-wrapper > div:hover {
  box-shadow: 0 5px 32px 0 rgba(191,164,91,0.11);
  border-color: var(--color-gold);
}

/* ================================================================
   TESTIMONIALS SECTION - LUXURY STYLE
================================================================== */
.testimonials {
  background: #fff;
  padding: 48px 0 38px 0;
}
.testimonials h2 {
  color: var(--color-gold);
}
.testimonials .content-wrapper {
  gap: 32px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.testimonial-card {
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  background: #fff;
  border: 1.2px solid var(--color-gold);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(191, 164, 91, 0.10);
  transition: box-shadow 0.17s, border-color 0.16s;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #233245;
  margin-bottom: 0.5em;
}
.testimonial-card small {
  color: #927C3B;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===========================
   ABOUT, TRUST, CONTACT
============================ */
.about .content-wrapper, .contact .content-wrapper {
  gap: 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
  color: var(--color-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}

/* ================================================================
   FOOTER - LUXURY PREMIUM
================================================================== */
footer {
  background: #1A2433;
  color: #fff;
  padding: 42px 0 30px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  width: 32px; height: 32px;
  margin-right: 6px;
}
.footer-brand span {
  color: var(--color-gold);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
}
.footer-contact {
  color: #d5dcee;
  font-size: .95em;
  line-height: 1.6;
}
footer .footer-contact p {
  margin-bottom: 8px;
}

/* RESPONSIVE FOOTER STACKING */
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 26px;
  }
  .footer-brand img {
    margin-bottom: 0 !important;
  }
}

/* ================================================================
   RESPONSIVE DESIGN
================================================================== */
@media (max-width: 1200px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid, .features .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .services .content-wrapper > div,
  .features .content-wrapper > div {
    min-width: 160px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 100vw;
  }
  h1, .hero h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .hero {
    padding: 34px 0 32px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 6px;
  }
  .content-wrapper, .features .content-wrapper, .services .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 14px 10px;
    font-size: 0.98em;
  }
  .main-nav {
    display: none !important;
  }
  .footer-brand img {
    width: 27px;
    height: 27px;
  }
}

/* ===============================
   SPACING & FLEX GAPS
================================ */
.section, .features, .about, .trust, .contact, .testimonials, .services {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .features .content-wrapper, .services .content-wrapper, .trust .content-wrapper, .testimonials .content-wrapper {
  gap: 20px;
}
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.feature-item {
  gap: 15px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}

/* ===============================
  COOKIE CONSENT BANNER & MODAL
================================ */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 18px 0 rgba(21,51,74,0.08);
  padding: 20px 34px;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10100;
  min-height: 78px;
  transition: transform 0.29s cubic-bezier(.67,0,.29,1), opacity 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #233245;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
}
.cookie-btn, .cookie-banner__actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border: none;
  padding: 8px 22px;
  border-radius: 18px;
  min-width: 120px;
  font-weight: 600;
  background: var(--color-gold);
  color: #fff;
  margin-left: 0;
  transition: background 0.17s, color 0.15s;
}
.cookie-btn.settings {
  background: var(--color-secondary);
}
.cookie-btn.reject {
  background: #eee;
  color: var(--color-primary);
  border: 1px solid #ccc;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-gold-dark);
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #489dc0;
}
.cookie-btn.reject:hover {
  background: #DBE2E6;
  color: var(--color-gold-dark);
  border-color: #bbb;
}

/* Cookie Preferences Modal */
.cookie-modal-bg {
  background: rgba(21,51,74,0.43);
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px 24px 30px;
  box-shadow: 0 7px 48px rgba(191,164,91,0.14);
  min-width: 320px;
  max-width: 96vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 12000;
  position: relative;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal__header h3 {
  color: var(--color-primary); font-family: 'Montserrat', Arial, sans-serif; margin-bottom: 0;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.7em;
  color: var(--color-gold);
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.17s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #927C3B;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 8px;
}
.cookie-category {
  background: #F7F9FB;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1em;
}
.cookie-category .toggle {
  margin-left: auto;
  min-width: 48px;
}
.cookie-category.essential {
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-category .toggle[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}

.toggle {
  height: 24px;
  width: 42px;
  border-radius: 14px;
  background: #ddd;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.18s;
}
.toggle[aria-checked="true"], .toggle.active {
  background: var(--color-secondary);
}
.toggle-thumb {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 2px 6px rgba(21,51,74,0.10);
  transition: left 0.19s cubic-bezier(.7,.3,.3,1);
}
.toggle[aria-checked="true"] .toggle-thumb, .toggle.active .toggle-thumb {
  left: 21px;
}
.toggle[disabled] {
  pointer-events: none;
  opacity: 0.36;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
    font-size: 0.97em;
  }
  .cookie-banner__actions {
    flex-direction: row;
    gap: 7px;
    width: 100%;
  }
  .cookie-btn {
    padding: 8px 13px;
    min-width: 98px;
    font-size: 0.96em;
  }
  .cookie-modal {
    min-width: 0;
    padding: 16px 6px 16px 12px;
  }
}

/* ================================================================
   MISC - ANIMATIONS, UTILITIES
================================================================== */
.slide-fade-in {
  animation: fadeInSlide .9s cubic-bezier(.16,1,.29,.99) both;
}
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.shadow-gold {
  box-shadow: 0 8px 24px 0 rgba(191,164,91,0.17);
}

.text-gold {
  color: var(--color-gold);
}
.bg-gold {
  background: var(--color-gold);
  color: #fff;
}
.rounded {
  border-radius: 16px;
}

/* ================================================================
   ACCESSIBILITY ENHANCEMENTS
================================================================== */
:focus, :focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: var(--color-gold);
  color: #fff;
  border-radius: 8px;
  font-size: 1.05em;
}
.skip-link:focus {
  left: 8px; top: 8px; width: auto; height: auto; padding: 10px 18px;
}

/* ================================================================
   PRINT STYLES
================================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-bg {
    display: none !important;
  }
  body, .container, .section {
    background: #fff !important;
    color: #000 !important;
  }
}
