/* =====================
   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, 
main, 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 {
  line-height: 1.62;
  background: #F4F4F1;
  color: #222438;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 12px 0 12px;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #22335C;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5B841;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ===============
   TYPOGRAPHY
   =============== */
h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: #1A2236;
}
h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #22335C;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #303C55;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
p, li, dl, dd {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.06rem;
  color: #2B3042;
}
.subheadline {
  display: block;
  font-size: 1.15rem;
  color: #444755;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  margin-bottom: 16px;
  font-weight: 400;
}

.price {
  color: #B68210;
  font-weight: 600;
  font-size: 1rem;
}

/* ================
   HEADER & NAVIGATION
   ================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 14px rgba(54,60,80,0.09);
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 100;
}
.branding {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 12px 14px 12px;
}
.brand-logo svg {
  display: block;
  border-radius: 8px;
  background: #e6e7eb;
  box-shadow: 0 2px 7px rgba(75,85,105,0.10);
}
.brand-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.43rem;
  color: #22335C;
  font-weight: 600;
  letter-spacing: 0.03em;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
}
header nav li {
  display: flex;
  align-items: center;
}
header nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.07rem;
  color: #22335C;
  font-weight: 500;
  padding: 7px 8px 6px 8px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
}
header nav a[aria-current="page"], header nav a.active {
  color: #F5B841;
  background: rgba(245,184,65,0.08);
}
header nav a:hover, header nav a:focus {
  background: #e6e7eb;
  color: #B68210;
}
.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  padding: 0 14px 0 0;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5B841;
  border: none;
  border-radius: 6px;
  color: #22335C;
  font-size: 2.0rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin: 8px 10px 8px 0;
  box-shadow: 0 2px 7px rgba(54,60,80,0.10);
  transition: background 0.18s, color 0.15s;
  z-index: 999;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #22335C;
  color: #fff;
}

@media (min-width: 990px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 989px) {
  header nav, .header-cta { display: none; }
}

/* ================
   MOBILE MENU
   ================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,34,46,0.98);
  z-index: 1200;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  transition: opacity 0.22s ease, transform 0.22s ease;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  margin: 18px 18px 0 0;
  cursor: pointer;
  transition: color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5B841;
}
.mobile-nav {
  width: 100%;
  padding: 54px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 82vw;
  margin: 0 auto;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(245,184,65,0.11);
  border-radius: 7px;
  padding: 14px 22px;
  text-align: left;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 7px rgba(54,60,80,0.08);
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a[aria-current="page"], .mobile-nav a.active {
  color: #F5B841;
  background: rgba(245,184,65,0.22);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #22335C;
  background: #F5B841;
}

@media (max-width: 400px) {
 .mobile-nav a { font-size: 1.09rem; padding: 10px 10px; }
}

/* ================
   BUTTONS & CTAs
   ================ */
.btn-primary, .btn-secondary {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.13rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(54,60,80,0.10);
  margin: 6px 4px 6px 0;
  text-decoration: none;
  transition: background 0.17s, color 0.14s, box-shadow 0.17s;
}
.btn-primary {
  background: #F5B841;
  color: #22335C;
}
.btn-primary:hover, .btn-primary:focus {
  background: #22335C;
  color: #fff;
}
.btn-secondary {
  background: #22335C;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B68210;
  color: #fff;
}

/* ===========
   HERO SECTION
   =========== */
.hero {
  background: #22335C;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(34,51,92,0.13);
  padding: 40px 20px 45px 20px;
  margin: 24px 0 50px 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 0;
}
.hero .subheadline {
  color: #E6E7EB;
  opacity: 0.97;
}

@media (min-width: 760px) {
  .hero-content { padding-left: 12px; padding-right: 12px; }
  .hero {padding: 55px 50px 60px 50px;}
  .hero h1 { font-size: 2.8rem; }
}

/* ===============
   FEATURES SECTION
   =============== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(34,51,92,0.07);
}
.features h2 {
  margin-bottom: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  background: #F9F9F7;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(54,60,80,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 340px;
  padding: 24px 20px 22px 20px;
  transition: box-shadow 0.16s, background 0.18s;
  margin-bottom: 20px;
}
.feature:hover, .feature:focus-within {
  background: #f5f1e6;
  box-shadow: 0 5px 16px rgba(222,180,34,0.10);
}
.feature-icon svg {
  width: 40px; height: 40px;
  margin-bottom: 7px;
}

@media (max-width: 960px) {
  .feature-grid {flex-direction: column; gap: 18px;}
  .feature { max-width: 100%; }
}

/* ===============
   ABOUT & CTA SECTIONS
   =============== */
.about-teaser, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #22335C;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(34,51,92,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.about-teaser .btn-secondary { margin-top: 12px; }
.cta h2 {
  color: #fff;
  margin-bottom: 18px;
}
.about-teaser {
  background-color: #fff;
}

/* =================
   SECTION & SPACING
   ================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(34,51,92,0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  max-width: 400px;
  transition: box-shadow 0.15s, transform 0.17s;
}
.card:hover, .card:focus-within { box-shadow: 0 5px 18px rgba(34,51,92,0.13); transform: translateY(-2px) scale(1.02); }

.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; align-items: flex-start; }
  .feature-grid { flex-direction: column; gap: 18px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================
   SERVICE & PRICING LIST
   =================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
}
.service-list h2 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: #22335C;
}
.service-list p {
  margin-bottom: 0;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,51,92,0.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.pricing-table th, .pricing-table td {
  padding: 15px 18px;
  font-size: 1.09rem;
}
.pricing-table th {
  background: #22335C;
  color: #fff;
  font-weight: 600;
  text-align: left;
}
.pricing-table tr:nth-child(even) td {
  background: #F5F6FA;
}
.pricing-table td {
  border-bottom: 1px solid #E6E7EB;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ===============
   FAQ STYLES
   =============== */
.faq {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(34,51,92,0.08);
  margin-bottom: 60px;
  padding: 38px 22px 38px 22px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list dt {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #22335C;
}
.faq-list dd {
  margin-bottom: 8px;
  color: #252947;
  margin-left: 0;
  line-height: 1.7;
}

/* ===============
   TESTIMONIALS & REFS
   =============== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(34,51,92,0.10);
}
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0;
}
.testimonial-list li {
  display: flex;
  flex-direction: column;
  background: #F9F9F7;
  border-radius: 10px;
  padding: 20px 28px;
  box-shadow: 0 1px 8px rgba(34,51,92,0.07);
  color: #1D2236;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.7;
  border-left: 4px solid #F5B841;
}
.testimonial-list .customer-name {
  font-size: 1rem;
  color: #22335C;
  font-style: normal;
  font-weight: 700;
  margin-top: 12px;
}

/* Project highlights */
.project-highlights {
  background: #F9F9F7;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 40px;
  box-shadow: 0 1px 5px rgba(54,60,80,0.07);
}
.project-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 0;
}

/* ===============
   CONTACT SECTION
   =============== */
.contact {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(34,51,92,0.08);
  margin-bottom: 50px;
  padding: 38px 22px 38px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  color: #22335C;
  font-size: 1.08rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.map {
  background: #F5F5EE;
  border-radius: 10px;
  padding: 24px 20px;
  color: #22335C;
  margin-bottom: 36px;
  font-size: 1.08rem;
}
.map address {
  font-style: normal;
  color: #22335C;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}

/* ===============
   LEGAL / PLAIN SECTIONS
   =============== */
.legal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(34,51,92,0.07);
  margin-bottom: 50px;
  padding: 35px 20px 35px 20px;
}

/* ===============
   THANK YOU PAGE
   =============== */
.thankyou {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(34,51,92,0.09);
  margin-bottom: 50px;
  padding: 45px 22px 45px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #22335C;
  color: #fff;
  padding: 36px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 60px;
  border-radius: 18px 18px 0 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-brand .brand-name {
  font-size: 1.23rem;
  color: #F5B841;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
}
.footer-tagline {
  color: #E6E7EB;
  font-size: 1.01rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  color: #E6E7EB;
  text-decoration: underline;
  font-size: 1.06rem;
  padding: 3px 8px;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #F5B841;
  background: #2b406e;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
  color: #e6e7eb;
}
.footer-contact a {
  color: #F5B841;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-contact a:hover {
  color: #fff;
}

@media (max-width: 700px) {
 footer { gap: 18px; padding: 26px 5px 14px 5px; }
}

/* ===============
   COOKIE CONSENT BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFFDF4;
  border-top: 1.5px solid #D6D2BE;
  color: #22335C;
  padding: 22px 14px 22px 14px;
  box-shadow: 0 -3px 28px rgba(34,51,92,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1500;
  animation: cookie-slide-in 0.46s cubic-bezier(.83,.01,.51,1.01);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity:0.3; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.09rem;
  color: #22335C;
}
.cookie-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 9px 22px;
  margin: 0 3px;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(54,60,80,0.10);
  transition: background 0.16s, color 0.14s;
}
.cookie-btn.accept {
  background: #22335C;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F5B841;
  color: #22335C;
}
.cookie-btn.reject {
  background: #E6E7EB;
  color: #22335C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ccc9b0;
}
.cookie-btn.settings {
  background: #F5B841;
  color: #22335C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #22335C;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,51,92,0.24);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.22s cubic-bezier(.91,.23,.57,1.01);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1D2236;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(34,51,92,0.20);
  width: 98vw;
  max-width: 420px;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.cookie-modal__header {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #22335C;
  margin-bottom: 2px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 11px 0;
}
.cookie-modal__category label {
  font-size: 1.08rem;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 22px;
  background: #E6E7EB;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #F5B841;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px; left: 2px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.07);
  transition: left 0.17s;
}
.cookie-toggle:checked::before {
  left: 20px;
}
.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ===============
   USP & LIST STYLES
   =============== */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
  font-size: 1.09rem;
  color: #22335C;
}
.usp-list li {
  list-style: disc inside;
  line-height: 1.7;
}

/* ===============
   MEDIA QUERIES
   =============== */
@media (min-width: 1200px) {
  main { padding-left: 0; padding-right: 0; }
}
@media (max-width: 900px) {
  main { padding-left: 6px; padding-right: 6px; }
  .features, .about-teaser, .cta, .section, .card, .contact, .thankyou, .faq, .legal, .testimonials, .project-highlights, .map {
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 600px) {
  main { padding-left: 2px; padding-right: 2px; }
  .features, .about-teaser, .cta, .section, .card, .contact, .thankyou, .faq, .legal, .testimonials, .project-highlights, .map {
    padding-left: 4px; padding-right: 4px;
    border-radius: 10px;
  }
  .hero {padding-left: 7px; padding-right: 7px; border-radius: 10px;}
    .hero h1 {
      font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
  .footer-brand .brand-name {font-size: 1.05rem;}
  .footer-tagline {font-size: 0.97rem;}
  .brand-name {font-size: 1.1rem;}
}

/* ===============
   MICRO-INTERACTIONS & TRANSITIONS
   =============== */
.card, .feature, .btn-primary, .btn-secondary, .service-list h2, .cookie-btn {
  transition: box-shadow 0.17s, background 0.13s, color 0.13s, transform 0.12s;
}
.feature:hover, .feature:focus-within, .card:hover, .card:focus-within {
  box-shadow: 0 5px 14px #F5B84144;
  transform: translateY(-3px) scale(1.025);
}

/* Hide visually for accessibility */
.sr-only {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ====================
   UTILITY CLASSES
   ==================== */
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }

/* ====================
   ENSURE NO OVERLAP
   ==================== */
main > section, .card, .feature, .testimonial-list li, .project-list li {
  margin-bottom: 24px;
}

/* ====================
   ACCESSIBILITY
   ==================== */
a, button, input, select {outline-color: #F5B841 !important;}

/* ====================
   PRINT FRIENDLY
   ==================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { max-width: none; }
}
