/* --- 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #f8fafb;
  color: #1F2933;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #225C69;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #C79010;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button, input[type="submit"] {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* --- BRAND TYPOGRAPHY SCALE --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #225C69;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  color: #225C69;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #1F2933;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  color: #225C69;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #293143;
}
strong {
  font-weight: 700;
  color: #225C69;
}

/* --- UTILITIES & BRAND COLORS --- */
:root {
  --primary: #225C69;
  --secondary: #fff;
  --accent: #C79010;
  --background: #f8fafb;
  --card-bg: #fff;
  --text: #1F2933;
  --gray: #ececec;
  --shadow: 0 6px 28px rgba(34, 92, 105, 0.08);
  --radius-xl: 28px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* --- CONTAINER & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 32px 0;
    margin-bottom: 40px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--secondary);
  border-bottom: 1px solid #ececec;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 0;
  color: var(--text);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.main-nav .cta-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 2px 8px rgba(34, 92, 105, 0.08);
  border-bottom: none;
  margin-left: 12px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(199, 144, 16, 0.13);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: transparent;
  border: none;
  z-index: 100;
  transition: color .2s;
}
.mobile-menu-toggle:focus {
  color: var(--accent);
  outline: 2px solid var(--accent);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(31,41,51, 0.92);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 60px rgba(31,41,51, 0.27);
}
.mobile-menu-close {
  font-size: 2.25rem;
  color: var(--accent);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 28px 28px 14px 0;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbe0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 32px 38px 32px 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  transition: color .2s;
  padding: 12px 0;
  border-radius: var(--radius-md);
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(199,144,16, 0.09);
}
@media (max-width: 600px) {
  .mobile-nav {
    padding: 18px 18px 18px 18px;
    gap: 18px;
  }
  .mobile-menu-close {
    margin-right: 18px;
  }
}

/* --- HERO HERO-CONTENT --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 769px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}

/* --- BUTTONS --- */
.cta-primary,
.cta-secondary,
.cta-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 32px;
  padding: 12px 32px;
  font-size: 1.08rem;
  min-width: 50px;
  min-height: 44px;
  margin-top: 12px;
  margin-bottom: 8px;
  outline: none;
  border: none;
  transition: background .18s, color .18s, box-shadow .2s, border .2s;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(199, 144, 16, 0.07);
}
.cta-primary {
  background: var(--accent);
  color: var(--primary);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 32px rgba(34, 92, 105, 0.10);
}
.cta-secondary {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: 0 8px 32px rgba(34, 92, 105, 0.07);
}

/* --- FLEX LAYOUTS --- */
/* Mandatory structure selectors by critical spacing rules & components */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  padding: 32px 26px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 260px;
  transition: box-shadow .22s;
}
.card:hover {
  box-shadow: 0 12px 38px rgba(199, 144, 16, 0.13);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px 20px 30px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(34, 92, 105, 0.07);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 600px;
  border-left: 4px solid var(--accent);
  color: var(--text);
  position: relative;
}
.testimonial-card p {
  font-size: 1.16rem;
  font-style: italic;
  color: #283140;
}
.testimonial-card strong {
  font-size: 1.06rem;
  color: #C79010;
}
.testimonial-card img[alt="Étoile"] {
  height: 23px;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- PREVIEWS / LISTS / SLIDERS (e.g. Blog, Destinations) --- */
.destination-cards, .blog-cards, .tour-grid, .blog-list, .guide-summaries, .testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.destination-card, .blog-card, .tour-card, .circuit-item, .blog-item, .guide {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 13px rgba(34, 92, 105, 0.07);
  padding: 20px 20px 18px 20px;
  min-width: 180px;
  max-width: 350px;
  flex: 1 1 240px;
  transition: box-shadow .18s;
  margin-bottom: 20px;
  position: relative;
}
.destination-card h3,
.blog-card h3,
.tour-card h3,
.circuit-item h3,
.blog-item h3,
.guide h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.destination-card p,
.tour-card p,
.circuit-item p,
.blog-card p,
.guide p {
  color: var(--text);
  font-size: 1rem;
}
.circuit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.circuit-item img {
  width: 42px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .destination-cards, .blog-cards, .tour-grid, .blog-list, .guide-summaries, .testimonial-slider, .testimonial-list, .circuit-list {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .destination-cards, .blog-cards, .tour-grid, .blog-list, .guide-summaries, .testimonial-slider, .testimonial-list, .circuit-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}

/* --- FEATURE LISTS (UL/OL STRUCTURE) --- */
ul, ol {
  margin: 0 0 14px 0;
  padding: 0;
}
ul > li, ol > li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 30px;
  color: #293143;
  font-size: 1rem;
  line-height: 1.5;
}
ul > li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.09;
}
ul.country-list > li:before {
  background: var(--primary);
  opacity: 0.08;
}

/* --- SEARCH/FILTERS --- */
.search-filter, .category-filter {
  margin: 18px 0 18px 0;
  display: flex;
  align-items: center;
  gap: 17px;
}
.search-filter label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
}
.search-filter input {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #ececec;
  padding: 7px 19px;
  outline: none;
  width: 220px;
  background: #fff;
  margin-left: 10px;
  transition: border-color .18s;
}
.search-filter input:focus {
  border-color: var(--accent);
}
@media (max-width: 520px) {
  .search-filter, .category-filter {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .search-filter input {
    width: 100%;
    min-width: 0;
  }
}

/* --- MAP/ICONS --- */
.region-map {
  display: flex;
  align-items: center;
  margin: 18px 0 18px 0;
  width: 100%;
  justify-content: center;
}
.region-map img {
  max-width: 270px;
  opacity: 0.92;
}
.feature-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 22px 0 12px 0;
}
.feature-icons img {
  width: 40px;
  opacity: 0.74;
  transition: opacity 0.2s;
}
.feature-icons img:hover {
  opacity: 1;
}

/* --- DESCRIPTION GRIDS --- */
.description-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: space-between;
}
.description-grid > div {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(34,92,105,0.06);
  padding: 18px 22px;
  flex: 1 1 200px;
  min-width: 180px;
}
@media (max-width: 900px) {
  .description-grid {
    gap: 12px;
  }
}
@media (max-width: 650px) {
  .description-grid {
    flex-direction: column;
    gap: 9px;
  }
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 40px;
  border-top: 2px solid var(--accent);
  letter-spacing: 0.02em;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 52px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.93;
  font-weight: 500;
  font-family: var(--font-display);
  transition: color .15s, opacity .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #fffbe0;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 17px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  opacity: 0.8;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-logo img {
    margin-bottom: 0;
    margin-top: 8px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe0;
  color: #1a232b;
  box-shadow: 0 -8px 26px rgba(199, 144, 16, 0.12);
  padding: 22px 20px 22px 20px;
  z-index: 1500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1rem;
  border-top: 2.5px solid var(--accent);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s, transform 0.5s cubic-bezier(.68,-0.8,.24,1.3);
}
#cookie-banner.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
#cookie-banner .cookie-text {
  flex: 1 1 auto;
  color: #291B09;
  margin-right: 10px;
}
#cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  border-radius: 25px;
  border: none;
  padding: 10px 18px;
  margin-left: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background .18s, color .18s, box-shadow .18s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 8px #C7901040;
}
.cookie-btn.accept:hover {
  background: #ac820a;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn.reject:hover {
  background: #e1ecec;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--accent);
  text-decoration: underline;
}
.cookie-btn.settings:hover {
  color: var(--primary);
}
@media (max-width: 620px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
  }
  #cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* --- COOKIE MODAL POPUP --- */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(51, 58, 64, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.44s, visibility 0.33s;
}
#cookie-modal.closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 34px 40px 26px 40px;
  max-width: 480px;
  box-shadow: 0 12px 40px rgba(34, 92, 105, .14);
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f7f5ed;
  border-radius: var(--radius-sm);
  padding: 7px 18px;
}
.cookie-category .category-label {
  color: #775C13;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category .category-desc {
  font-size: 0.96rem;
  color: #6f6f6f;
  margin-top: 2px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #ddd;
  border-radius: 20px;
  outline: none;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 100%;
  transition: left 0.23s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-close-modal {
  position: absolute;
  top: 17px;
  right: 17px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  transition: color .2s;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 9px;
}
@media (max-width: 580px) {
  .cookie-modal-content {
    padding: 17px 10px 18px 10px;
    max-width: 97vw;
  }
}

/* --- GENERAL RESPONSIVENESS --- */
html {
  font-size: 100%;
}
@media (max-width: 1250px) {
  .container {
    max-width: 98vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
@media (max-width: 800px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 650px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.25rem;
  }
  .cta-primary, .cta-secondary {
    padding: 10px 20px;
    font-size: 0.96rem;
  }
  section {
    padding: 20px 0;
    margin-bottom: 22px;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
a, .cta-primary, .cta-secondary, button, .destination-card, .card {
  transition: color 0.22s, background 0.22s, box-shadow 0.23s, border-color 0.2s;
}
.card:hover, .destination-card:hover, .tour-card:hover, .circuit-item:hover, .blog-card:hover, .blog-item:hover, .guide:hover {
  box-shadow: 0 10px 32px rgba(199, 144, 16, 0.09);
  transform: translateY(-2px) scale(1.017);
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}

/* --- MISC COMPONENTS --- */
.contact-info, .contact_form-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-info img, .contact_form-info img {
  height: 18px;
  margin-right: 7px;
}
@media (max-width: 700px) {
  .contact-info, .contact_form-info {
    gap: 8px;
  }
}

/* --- BADGES, LABELS, ETC --- */
.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.89rem;
  padding: 4px 16px;
  border-radius: 10px;
  font-weight: 600;
  margin-right: 6px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

/* --- CARD SHADOWS FOR PREMIUM FEEL --- */
.card, .blog-card, .blog-item, .tour-card, .circuit-item, .guide {
  box-shadow: 0 4px 22px rgba(34, 92, 105, 0.08);
  border: 1.5px solid #f4e6bb;
}

/* --- GOLD DETAILS FOR PREMIUM ACCENT --- */
h1, h2, .cta-primary, .footer-nav a.active {
  text-shadow: 0 2px 6px #cbb26010, 0 0px 0px #fff;
}
.cta-primary, .badge {
  border: 2px solid var(--accent);
}
/* Gold lines for horizontal nav & section separators */
hr {
  border: none;
  border-top: 1px solid var(--accent);
  opacity: 0.25;
  margin: 24px 0;
}

/* --- FORMS (inputs, etc.) --- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  border-radius: 7px;
  border: 1.5px solid #ececec;
  padding: 8px 15px;
  outline: none;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

/* --- VISUAL HIERARCHY/ SPACING HELPERS --- */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* --- OVERRIDE SYSTEM SCROLLBAR FOR PREMIUM FEEL --- */
body::-webkit-scrollbar {
  width: 9px;
  background: #ececec;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e6ca85 0%, #C79010 100%);
  border-radius: 6px;
}

/* --- ACCESSIBILITY (FOCUS) --- */
a, button, input, textarea, .cta-primary, .cta-secondary {
  outline: none;
}
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  box-shadow: 0 0 0 2px var(--accent), 0 2px 16px #cbb26014;
  outline: none;
}

/* --- PRINT-FRIENDLY COLORS (fallbacks) --- */
@media print {
  section, .container {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  a, .cta-primary, .cta-secondary {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #222 !important;
  }
}

/* --- END --- */
