/* ========================== */
/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #223149;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
ol, ul {
  list-style: none;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}
@media (prefers-color-scheme: dark) {
  body { background: #f8fafd; }
}

/* ===================================== */
/* BRAND COLORS AND FONTS (VARIABLES)   */
/* ===================================== */
:root {
  --gp-primary: #223149;
  --gp-secondary: #9EA8B8;
  --gp-accent: #FAC748;
  --gp-bg: #fff;
  --gp-fg: #223149;
  --gp-grey-bg: #f4f6fa;
  --gp-border: #e6e9ef;
  --gp-shadow: 0 6px 28px rgba(34,49,73,0.05), 0 1.5px 6px rgba(34,49,73,0.06);
  --gp-shadow-hover: 0 14px 50px rgba(34,49,73,0.10), 0 2px 10px rgba(34,49,73,0.09);
  --gp-radius: 12px;
  --gp-radius-sm: 8px;
  --gp-radius-lg: 18px;
  --gp-font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --gp-font-body: 'Open Sans', Arial, sans-serif;
  --gp-h1: 2.5rem; /* 40px */
  --gp-h2: 2rem;   /* 32px */
  --gp-h3: 1.375rem; /* 22px */
  --gp-h4: 1.125rem; /* 18px */
  --gp-body: 1rem; /* 16px */
  --gp-small: 0.875rem; /* 14px */
}

/* ================ */
/* LAYOUT SYSTEM    */
/* ================ */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gp-bg);
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===================== */
/* HEADER AND NAVIGATION */
/* ===================== */
header {
  width: 100%;
  background: var(--gp-bg);
  box-shadow: 0 2px 12px rgba(34,49,73,0.04);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-family: var(--gp-font-body);
  font-size: var(--gp-body);
  color: var(--gp-primary);
  font-weight: 500;
  padding: 7px 0;
  border-radius: 3px;
  transition: color 0.2s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gp-accent);
  background: #f9f6ef;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--gp-font-display);
  font-weight: 600;
  font-size: 1rem;
  background: var(--gp-accent);
  color: var(--gp-primary);
  border-radius: var(--gp-radius-sm);
  padding: 12px 26px;
  box-shadow: 0 2px 8px rgba(34,49,73,0.04);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  outline: none;
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: .03rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe388;
  color: var(--gp-primary);
  box-shadow: var(--gp-shadow-hover);
  transform: translateY(-2px) scale(1.02);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  border: none;
  color: var(--gp-primary);
  cursor: pointer;
  margin-left: 5px;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--gp-accent);
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  header .container { gap:14px; }
}
@media (max-width: 900px) {
  .main-nav,
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ======================= */
/* MOBILE NAVIGATION MENU  */
/* ======================= */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,49,73,0.96);
  z-index: 100;
  flex-direction: column;
  align-items: flex-end;
  transition: transform 0.43s cubic-bezier(.47,.97,.59,1.11);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  margin: 30px 26px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 110;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--gp-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top:80px;
  gap: 24px;
  padding: 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: var(--gp-font-display);
  font-weight: 600;
  letter-spacing: .03rem;
  width: 100%;
  padding: 16px 0 6px 0;
  transition: color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gp-accent);
}
@media (min-width: 901px) {
  .mobile-menu { display:none !important; }
}

/* ======================= */
/* HERO SECTION            */
/* ======================= */
.hero-section {
  background: var(--gp-grey-bg);
  padding: 64px 0 40px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section h1 {
  font-family: var(--gp-font-display);
  font-size: var(--gp-h1);
  font-weight: 700;
  color: var(--gp-primary);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-align: center;
}
.hero-section p {
  font-size: 1.25rem;
  color: var(--gp-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px auto;
}
.hero-section .cta-btn {
  margin-top: 7px;
  font-size: 1.1rem;
}
@media (max-width: 800px) {
  .hero-section h1{ font-size:2rem; }
  .hero-section p { font-size: 1.08rem; }
  .hero-section { padding: 46px 0 25px 0; }
}

/* ======================== */
/* FEATURES & SERVICES GRID */
/* ======================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top:24px;
  margin-bottom: 16px;
}
.feature {
  flex: 1 1 220px;
  min-width: 215px;
  max-width: 260px;
  background: var(--gp-bg);
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 3px;
  filter: grayscale(50%);
}
.feature h3 {
  font-family: var(--gp-font-display);
  font-size: var(--gp-h3);
  font-weight: 600;
  color: var(--gp-primary);
}
.feature p {
  color: var(--gp-secondary);
  font-size: var(--gp-body);
}
.feature:hover {
  box-shadow: var(--gp-shadow-hover);
  transform: translateY(-3px) scale(1.01);
}
@media (max-width: 900px) {
  .features-grid { gap: 16px; }
}
@media (max-width:660px){
  .features-grid { flex-direction:column; gap:18px; }
  .feature { max-width:none; width:100%; }
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 18px 0;
}
.service {
  flex: 1 1 290px;
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--gp-border);
  position: relative;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.service h2, .service h3 {
  font-family: var(--gp-font-display);
  font-size: var(--gp-h4);
  color: var(--gp-primary);
  font-weight: 600;
}
.service p, .service ul {
  color: var(--gp-secondary);
  font-size: var(--gp-body);
}
.service ul{
  padding-left: 21px;
  margin: 5px 0 0 0;
}
.service li {
  list-style: disc;
  margin-bottom: 4px;
}
.price {
  color: var(--gp-accent);
  font-weight: bold;
  font-size: var(--gp-small);
  margin-top: 12px;
}
.service:hover {
  box-shadow: var(--gp-shadow-hover);
  border: 1px solid var(--gp-accent);
  transform: translateY(-1px) scale(1.015);
}
@media (max-width: 900px) {
  .services-list { gap: 16px; }
  .service { min-width:180px; }
}
@media (max-width:600px) {
  .services-list{ flex-direction:column; }
  .service{ max-width:unset; width:100%; }
}

/* CARD AND SECTION FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--gp-shadow);
  border-radius: var(--gp-radius);
  padding: 24px 22px;
  flex: 1 1 240px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1px solid var(--gp-border);
}
.card:hover {
  box-shadow: var(--gp-shadow-hover);
  border: 1px solid var(--gp-accent);
}
.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;
  }
  .features-grid, .services-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ======================= */
/* TESTIMONIALS            */
/* ======================= */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--gp-radius-sm);
  box-shadow: var(--gp-shadow);
  border:1px solid var(--gp-border);
  flex: 1 1 300px;
  max-width: 420px;
  min-width: 220px;
  transition: box-shadow 0.15s, border 0.18s, background 0.24s;
}
.testimonial-card:hover {
  box-shadow: var(--gp-shadow-hover);
  border:1px solid var(--gp-accent);
  background: #fcfbf7;
}
.testimonial-content p {
  color: var(--gp-primary);
  font-size:1.08rem;
  line-height:1.7;
  font-family: var(--gp-font-body);
}
.testimonial-details span {
  color: var(--gp-secondary);
  font-size: var(--gp-small);
  letter-spacing:0.01em;
}
@media (max-width: 900px) {
  .testimonials{
    flex-direction: column;
    gap:18px;
  }
  .testimonial-card{
    max-width: unset;
    width:100%;
  }
}

/* ===================== */
/* FOOTER                */
/* ===================== */
footer {
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--gp-border);
  padding: 34px 0 24px 0;
  font-size: var(--gp-small);
  color: var(--gp-secondary);
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-logo img {
  width: 40px;
  height: auto;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 4px;
}
.footer-menu a {
  color: var(--gp-primary);
  font-family: var(--gp-font-body);
  font-weight: 500;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--gp-accent);
}
.brand-info p {
  margin-bottom: 3px;
  color: var(--gp-secondary);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap:18px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: row;
    gap: 18px;
    margin-bottom: 9px;
  }
}

/* ======================= */
/* TYPOGRAPHY & HEADINGS   */
/* ======================= */
h1, h2, h3, h4 {
  font-family: var(--gp-font-display);
  color: var(--gp-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: var(--gp-h1);
  margin-bottom: 16px;
}
h2 {
  font-size: var(--gp-h2);
  margin-bottom: 12px;
}
h3 {
  font-size: var(--gp-h3);
  margin-bottom: 9px;
  font-weight:600;
}
h4 {
  font-size: var(--gp-h4);
  margin-bottom: 5px;
  font-weight:600;
}
p, ul, li {
  line-height: 1.65;
  color: var(--gp-primary);
}
p {
  margin-bottom: 13px;
  font-size: var(--gp-body);
}
ul, ol {
  margin-bottom: 12px;
  font-size: var(--gp-body);
}
strong {
  font-weight: 700;
}
.text-section {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media (max-width:660px){
  h1 { font-size:1.5rem; }
  h2 { font-size:1.22rem; }
  h3 { font-size:1.08rem; }
}

/* ACCESSIBILITY: Increase font size for big screens */
@media (min-width:1281px) {
  body { font-size: 17px; }
  h1 { font-size: 2.75rem; }
}

/* ======================= */
/* MICROINTERACTIONS      */
/* ======================= */
.card, .service, .feature, .testimonial-card, .cta-btn {
  transition: box-shadow .19s, background .18s, border .15s, transform .17s;
}
a, .cta-btn, .main-nav a, .footer-menu a {
  transition: color 0.16s, background 0.17s, box-shadow 0.18s, transform 0.14s;
}

/* =============== */
/* DEFAULT BUTTONS */
/* =============== */
button {
  cursor: pointer;
  border-radius: var(--gp-radius-sm);
  background: none;
}
button:focus {
  outline: 2px solid var(--gp-accent);
}

/* ====================== */
/* COOKIE CONSENT BANNER  */
/* ====================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(34,49,73,0.09), 0 -1px 3px #e6e9ef;
  z-index: 3002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 20px 16px;
  flex-direction: row;
  gap: 32px;
  transition: transform 0.37s cubic-bezier(.31,.86,.53,1);
}
.cookie-banner.hide { transform: translateY(105%); transition:transform 0.37s cubic-bezier(.31,.86,.53,1); }
.cookie-banner .cookie-msg {
  color: var(--gp-primary);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.6;
  margin-right: 25px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-size: 1rem;
  font-family: var(--gp-font-display);
  background: var(--gp-accent);
  color: var(--gp-primary);
  padding: 8px 18px;
  border-radius: var(--gp-radius-sm);
  margin: 1px 0;
  border:none;
  font-weight: 600;
  cursor:pointer;
  box-shadow:0 1.5px 6px rgba(34,49,73,0.07);
  transition: background 0.22s, color 0.16s, box-shadow 0.15s;
}
.cookie-btn.secondary {
  background: #f4f6fa;
  color: var(--gp-primary);
  font-weight:500;
}
.cookie-btn.settings {
  background: var(--gp-grey-bg);
  color: var(--gp-primary);
  font-weight: 500;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffe388;
  color: var(--gp-primary);
  box-shadow: var(--gp-shadow-hover);
}
/* Banner responsive */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 6px 10px 6px;
  }
  .cookie-banner .cookie-msg { margin-right:0; }
  .cookie-banner .cookie-actions { width: 100%; }
}

/* ========================== */
/* COOKIE MODAL               */
/* ========================== */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(34,49,73,0.36);
  z-index: 4000;
  display:none;
  align-items: center;
  justify-content: center;
  animation: fadeInBG .36s;
}
.cookie-modal-backdrop.open { display: flex; }
@keyframes fadeInBG {
  from { opacity:0 }
  to { opacity:1 }
}
.cookie-modal {
  background: #fff;
  padding: 34px 22px 28px 22px;
  border-radius: var(--gp-radius-lg);
  box-shadow: 0 10px 48px rgba(34,49,73,0.21);
  max-width: 380px;
  width: 100%;
  z-index: 4100;
  animation: slideUpModal .33s cubic-bezier(.52,.97,.35,1);
}
@keyframes slideUpModal {
  from { transform: translateY(70px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 19px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-category:last-child{ margin-bottom: 0; }
.cookie-category span {
  color: var(--gp-primary);
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  position: relative;
  border-radius: 11px;
  background: #e6e9ef;
  transition: background 0.17s;
  cursor: pointer;
  flex-shrink:0;
}
.cookie-toggle.enabled {
  background: var(--gp-accent);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 3px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(34,49,73,0.20);
  transition: left 0.21s cubic-bezier(.51,.75,.32,.97), background 0.14s;
}
.cookie-toggle.enabled::after {
  left: 18px;
  background: #fffde7;
}
.cookie-modal .cookie-actions {
  margin-top: 24px;
  display: flex;
  gap: 13px;
}
.cookie-modal .cookie-btn {
  width: min-content;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 18px; top: 19px;
  font-size: 1.9rem;
  color: var(--gp-secondary);
  background: none;
  border: none;
  cursor: pointer;
  z-index:4200;
}
.cookie-modal .close-btn:hover {
  color: var(--gp-accent);
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 16px 5vw 14px 5vw;
  }
}

/* =============== */
/* SECTION SPACING */
/* =============== */
section {
  margin-bottom: 60px;
}
/* Alignment --- extra spacing */
.card, .feature, .service, .testimonial-card, .text-section, .project {
  margin-bottom: 20px;
}

/* =============== */
/* OTHER ELEMENTS  */
/* =============== */
.contact-summary, .contact-details {
  background: var(--gp-grey-bg);
  border-radius: var(--gp-radius-sm);
  padding: 19px 18px;
  font-size: var(--gp-body);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--gp-primary);
  margin-bottom: 16px;
}
.contact-summary a, .contact-details a {
  color: var(--gp-primary);
  font-weight:600;
  text-decoration: underline;
  transition:color .15s;
}
.contact-summary a:hover, .contact-details a:hover{ color: var(--gp-accent); }

.projects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.project, .projects-list .text-section {
  flex: 1 1 300px;
  min-width: 240px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--gp-radius);
  padding: 25px 21px 19px 21px;
  box-shadow: var(--gp-shadow);
  border: 1px solid var(--gp-border);
  margin-bottom: 20px;
}
@media (max-width:900px) {
  .projects-list{ flex-direction:column; gap:18px; }
  .project,.projects-list .text-section{ max-width:none;}
}

.impact-stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.impact-stats li {
  background: #f4f6fa;
  border-radius: var(--gp-radius-sm);
  padding: 14px 14px;
  font-size: 1.08rem;
  color: var(--gp-primary);
  font-weight: 600;
}
@media (max-width: 600px) {
  .impact-stats ul { flex-direction: column; gap: 10px; }
}

.event-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.event-previews .text-section {
  min-width: 220px;
  max-width: 380px;
  background: #fff;
  border-radius: var(--gp-radius-sm);
  box-shadow: var(--gp-shadow);
  border:1px solid var(--gp-border);
  padding: 16px 17px 13px 17px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .event-previews{ flex-direction:column; gap:10px; }
}

/* ================ */
/* VISUAL OVERRIDES */
/* ================ */
::-webkit-scrollbar {
  width: 9px;
  background: #f4f6fa;
}
::-webkit-scrollbar-thumb {
  background: #e6e9ef;
  border-radius: 5px;
}

/* ================ */
/* FOCUS STYLES     */
/* ================ */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--gp-accent);
  outline-offset:2px;
  z-index: 4;
}

/* ================ */
/* UTILITY CLASSES  */
/* ================ */
.d-flex { display: flex; }
.ai-center { align-items: center; }
.jc-between { justify-content: space-between;}
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }
.hide { display: none !important; }

/* ================ */
/* MEDIA QUERIES    */
/* ================ */
@media (max-width: 550px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.05rem; }
  .cta-btn { font-size: .97rem; padding: 9px 14px; }
}

/* ====================== */
/* PRINT SAFETY          */
/* ====================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, footer { display: none !important; }
  body{ background:#fff; }
}
