/* ========================== */
/*   CSS RESET AND 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f6f5f3;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F6F5F3;
  color: #1B1B1B;
  min-height: 100vh;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

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

a {
  text-decoration: none;
  color: #034D5E;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9B240;
}

ul, ol {
  margin: 0 0 1.2em 0;
  padding-left: 1.3em;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

/* ============================= */
/*   VINTAGE RETRO COLORS/TYPE   */
/* ============================= */
:root {
  --brand-primary: #034D5E;
  --brand-secondary: #F6F5F3;
  --brand-accent: #F9B240;
  --retro-red: #C8574E;
  --retro-brown: #79675C;
  --retro-green: #5C8A68;
  --retro-blue: #638CA6;
  --retro-bg: #F6F5F3;
  --retro-card-bg: #FFF8F2;
  --retro-paper: #EEE3D7;
  --retro-orange: #F8B370;
  --retro-shadow: rgba(120, 90, 50, 0.08);

  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Fallback if Montserrat is missing, also set font-weight scheme for retro style */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.16;
  text-shadow: 0 2px 0 #EEE3D7, 0 6px 8px rgba(120, 90, 50, 0.09);
}

h1 {
  font-size: 2.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-style: italic;
}

h2 {
  font-size: 2rem;
  letter-spacing: 0.025em;
  margin-bottom: 14px;
  font-variant: small-caps;
}

h3 {
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: var(--retro-brown);
}

h4, h5, h6 {
  font-size: 1rem;
}

p, li, span, blockquote {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.7;
}

strong {
  color: var(--retro-red);
  font-weight: bold;
}


/* ===================== */
/*   LAYOUT CONTAINERS   */
/* ===================== */

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: var(--retro-card-bg);
  border-radius: 16px;
  box-shadow: 0 6px 16px var(--retro-shadow), 0 1px 2px #ecdcc1;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 22px 24px;
  flex: 1 1 290px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ================== */
/*   HEADER/NAV BAR   */
/* ================== */

header {
  background: var(--retro-paper);
  border-bottom: 3px solid var(--retro-orange);
  box-shadow: 0 2px 10px var(--retro-shadow);
  position: sticky;
  z-index: 20;
  top: 0;
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-primary);
  padding: 7px 10px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-accent);
  color: #fff;
}

.cta-primary {
  background: var(--brand-accent);
  color: #312714;
  font-family: var(--font-display);
  font-size: 1.15rem;
  border-radius: 30px;
  padding: 11px 32px;
  font-weight: 700;
  box-shadow: 0 2px 8px var(--retro-shadow);
  margin-left: 8px;
  transition: background 0.24s, box-shadow 0.18s, color 0.22s;
  text-transform: uppercase;
  border: 2px solid var(--retro-orange);
  display: inline-block;
  letter-spacing: 0.07em;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 18px var(--retro-shadow);
  border-color: var(--brand-primary);
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #312714;
  border: none;
  font-size: 2.1rem;
  padding: 6px 20px;
  border-radius: 100px;
  box-shadow: 0 1px 5px rgba(51,35,26,.08);
  cursor: pointer;
  margin-left: 6px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--retro-paper);
  box-shadow: 0 2px 16px 6px rgba(20,12,0,.18);
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.71,.05,.53,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 38px 24px 24px 22px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  font-size: 2.0rem;
  color: var(--brand-primary);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F9B240;
  background: #f2e1c7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 13px 0 10px 5px;
  border-radius: 5px;
  transition: background 0.13s, color 0.12s;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: #fff;
}

/* ================================ */
/*   HERO/BANNER & SECTION STYLES   */
/* ================================ */
.hero {
  min-height: 310px;
  background: url('../assets/pattern-retro-bg.svg'), var(--retro-bg);
  background-repeat: repeat-x;
  background-size: contain, cover;
  background-position: top center, center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-bottom: 5px dotted var(--retro-orange);
  position: relative;
}
.hero > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  color: var(--brand-primary);
  margin-top: 30px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px #EEE3D7;
}
.hero p {
  color: var(--retro-brown);
  max-width: 700px;
  margin-bottom: 32px;
  font-size: 1.21rem;
}

.features {
  background: var(--retro-paper);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 5px 30px var(--retro-shadow);
  margin-bottom: 48px;
}
.features > .container > .content-wrapper > ul, .features ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 18px 36px;
  margin-left: 0;
  margin-top: 8px;
  padding-left: 0;
  list-style-type: none;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 2px 13px 0;
  font-size: 1.05rem;
  background: rgba(247,229,191,0.44);
  border-radius: 10px;
  margin-bottom: 6px;
  color: #53453b;
  font-family: var(--font-body);
  box-shadow: 0 1px 2px rgba(190,165,133,0.07);
}
.features ul li img {
  height: 36px;
  width: 36px;
  margin-right: 5px;
}

/* Listings: Destination Grid, Experience Grid, Services */
.destination-grid, .experience-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.destination-item, .experience-item, .service-item, .post-item {
  background: var(--retro-card-bg);
  border-radius: 15px;
  box-shadow: 0 4px 16px var(--retro-shadow),0 1px 2px #efd9b2;
  flex: 1 1 310px;
  min-width: 240px;
  padding: 23px 18px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.12s;
}
.destination-item:hover, .experience-item:hover, .service-item:hover, .post-item:hover {
  box-shadow: 0 8px 28px var(--retro-shadow),0 2px 8px #eedfc4;
  transform: translateY(-3px) scale(1.021);
}
.service-price {
  font-family: var(--font-display);
  color: var(--brand-primary);
  background: #FFE5B0;
  border-radius: 8px;
  padding: 3px 13px;
  font-size: 0.99rem;
  letter-spacing: 0.03em;
  margin-top: 8px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 1px 2px #dfbe85;
}

/* =========================== */
/*    TESTIMONIALS SECTION    */
/* =========================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-paper);
  border-top: 7px double var(--brand-accent);
  border-radius: 42px;
  box-shadow: 0 3px 16px var(--retro-shadow);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FAF3E9;
  border-left: 9px solid var(--retro-orange);
  border-radius: 18px;
  box-shadow: 0 2px 18px var(--retro-shadow), 0 0px 1px #eedbc2;
  padding: 20px 23px 20px 28px;
  min-width: 0;
  min-height: 100px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  font-size: 1.08rem;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card p {
  color: #28241a;
  font-style: italic;
  font-size: 1.11rem;
}
.testimonial-card span {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 0.99rem;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px var(--retro-shadow),0 1px 8px #efdcb4;
  transform: translateY(-4px) scale(1.024);
}

/* ======================== */
/*    ABOUT / TEXT BLOCKS   */
/* ======================== */
.about, .privacy-policy, .cookies-policy, .gdpr, .terms-of-use {
  background: #fff;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 3px 14px var(--retro-shadow);
  margin-bottom: 60px;
  padding: 40px 20px 56px 20px;
}
.text-section {
  margin: 18px 0 16px 0;
  background: #FFF8F2;
  border-radius: 12px;
  padding: 22px 18px 16px 18px;
  box-shadow: 0 1px 5px #ecdcc1;
  font-size: 1rem;
}
.text-section ul {
  margin-top: 10px;
}
.text-section li {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ======================= */
/*       CONTACT/CTA      */
/* ======================= */
.contact-cta, .contact-mini, .contact-details, .thank-you-section {
  background: var(--retro-card-bg);
  border-radius: 28px;
  box-shadow: 0 3px 16px var(--retro-shadow);
  margin-bottom: 60px;
  padding: 40px 20px 45px 20px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.contact-info .text-section p {
  margin: 4px 0;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #69614c;
  margin-top: 7px;
}
.location-map img {
  height: 32px;
  width: 32px;
}

.consultation-highlight {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F8DDA5;
  border-radius: 11px;
  margin-top: 32px;
  padding: 14px 22px;
  font-size: 1.04rem;
  box-shadow: 0 1px 2px #debd82;
  color: #453c27;
  font-family: var(--font-body);
}
.consultation-highlight img {
  height: 38px;
  width: 38px;
}

/* POSTS (Blog) */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 5px;
}
.post-item {
  background: #fff7ed;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(120, 90, 50, 0.07);
  flex: 1 1 260px;
  min-width: 220px;
  padding: 18px 15px 15px 17px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.99rem;
  transition: box-shadow 0.13s, transform 0.11s;
}

.post-item h3 {
  color: var(--brand-primary);
}

.writer-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* ========================= */
/*      FOOTER SECTION       */
/* ========================= */
footer {
  background: var(--brand-primary);
  color: #F6F5F3;
  border-top: 6px solid var(--retro-orange);
  box-shadow: 0 -3px 18px var(--retro-shadow);
  padding: 30px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.footer-menu a {
  font-family: var(--font-display);
  color: #F6F5F3;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  padding: 5px 8px;
  transition: background 0.15s, color 0.15s;
  border-radius: 4px;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--retro-orange);
  color: var(--brand-primary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.01rem;
}
.footer-brand img {
  height: 32px;
  width: 32px;
}
.footer-social {
  display: flex;
  gap: 13px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: #fff7ed;
  border-radius: 7px;
  padding: 5px 10px;
  transition: background 0.15s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--retro-orange);
}
.footer-social img {
  height: 21px;
  width: 21px;
  filter: grayscale(39%) sepia(0.6) hue-rotate(-25deg);
}

/* ============================ */
/*    COOKIE CONSENT BANNER     */
/* ============================ */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F9B240;
  color: #322610;
  box-shadow: 0 -2px 18px rgba(30,24,8,0.13);
  border-top: 5px dotted #fff7ed;
  z-index: 2001;
  width: 100%;
  padding: 20px 28px 17px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  justify-content: center;
  font-size: 1.05rem;
  animation: slideUpInBtm 0.50s cubic-bezier(.53,1.41,.46,.86);
}
@keyframes slideUpInBtm {
  0% { transform: translateY(100%); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner button {
  background: #FFFFFF;
  color: #034D5E;
  border: 2px solid #ddb758;
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 24px;
  margin-left: 13px;
  margin-right: 3px;
  padding: 7px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
}
#cookie-consent-banner button.accept {
  background: #034D5E;
  color: #fff8f2;
  border-color: #034D5E;
}
#cookie-consent-banner button.accept:hover, #cookie-consent-banner button.accept:focus {
  background: #F6F5F3;
  color: #034D5E;
}
#cookie-consent-banner button.reject {
  background: #fff7ed;
  color: var(--retro-red);
  border: 2px solid #C8574E;
}
#cookie-consent-banner button.reject:hover, #cookie-consent-banner button.reject:focus {
  background: #FFE5B0;
}
#cookie-consent-banner button.settings {
  background: #faf3e2;
  color: #5C8A68;
  border: 2px solid #5C8A68;
}
#cookie-consent-banner button.settings:hover, #cookie-consent-banner button.settings:focus {
  background: #e2e6cf;
}

/* Cookie Modal */
#cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,24,8,0.25);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.24s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal-overlay.active {
  display: flex;
}
#cookie-modal {
  background: #fff7ed;
  color: #323010;
  border-radius: 16px;
  box-shadow: 0 8px 36px 0 rgba(90, 66, 31,0.14), 0 1px 3px #e2c68a;
  padding: 44px 36px 28px 36px;
  max-width: 480px;
  min-width: 270px;
  width: 94%;
  font-family: var(--font-body);
  animation: slideModalIn 0.29s cubic-bezier(.69,1.02,.23,.97);
}
@keyframes slideModalIn {
  0% { transform: scale(1.19) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
#cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  margin-bottom: 10px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
#cookie-modal .cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
}
#cookie-modal .cookie-category.essential label {
  color: #5C8A68;
  font-weight: 700;
}
#cookie-modal label {
  font-size: 1rem;
  font-family: var(--font-body);
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
#cookie-modal button {
  background: #034D5E;
  color: #fff;
  border-radius: 18px;
  padding: 7px 18px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, color 0.15s;
  cursor: pointer;
}
#cookie-modal button:hover, #cookie-modal button:focus {
  background: var(--brand-accent);
  color: #1B1B1B;
}

/* ========================= */
/*        UTILITIES          */
/* ========================= */
.mt-0 {margin-top: 0;}
.mt-40 {margin-top: 40px;}
.mb-0 {margin-bottom: 0;}
.mb-40 {margin-bottom: 40px;}
.d-flex {display: flex;}
.flex-wrap {flex-wrap: wrap;}
.align-center {align-items: center;}
.flex-column {flex-direction: column;}
.gap-20 {gap: 20px;}

/* =========================== */
/*     FOCUS / INTERACTION     */
/* =========================== */
:focus {
  outline: 2px dashed var(--brand-accent);
  outline-offset: 2px;
}
button:active, a:active {
  outline: none;
  filter: brightness(92%);
}

/* Button pulse when focusing */
.cta-primary:focus {
  animation: btnPulse 0.19s ease 2;
}
@keyframes btnPulse {
  0% {box-shadow: 0 0 0 0 var(--brand-accent);}
  80% {box-shadow: 0 0 0 8px #f8efc4bb;}
  100% {box-shadow: 0 0 0 0 var(--brand-accent);}
}

/* =============================== */
/*       RETRO DECOR PATTERNS      */
/* =============================== */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  right: 14vw;
  bottom: 0;
  width: 120px;
  height: 60px;
  opacity: 0.10;
  background: url('../assets/pattern-dots.svg') repeat-x;
  background-size: contain;
  pointer-events: none;
}
.section, .about, .contact-cta, .contact-mini, .contact-details, .features {
  position: relative;
}
.section::before, .about::before {
  content: '';
  position: absolute;
  left: 0;
  top: -23px;
  width: 96px;
  height: 48px;
  background: url('../assets/pattern-wave.svg') no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
}

/* ============================== */
/*            RESPONSIVE          */
/* ============================== */
@media (max-width: 1100px) {
  .container {max-width: 98vw;}
}
@media (max-width: 900px) {
  .footer-brand {max-width: 99vw;}
  .footer-menu,.footer-social {flex: 1 1 170px;}
}
@media (max-width: 840px) {
  .main-nav {gap: 12px;}
  .footer-brand {flex-direction: column; gap: 5px;}
  .card-container, .content-grid, .destination-grid, .experience-grid, .service-grid, .post-list, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2.02rem;}
  h2 {font-size: 1.48rem;}
  .header > .container { flex-direction: row; }
  .main-nav {display: none !important;}
  .mobile-menu-toggle {display: inline-block;}

  .about, .privacy-policy, .cookies-policy, .gdpr, .terms-of-use,
  .section, .contact-cta, .contact-mini, .features {
    padding: 30px 11px 40px 11px;
    border-radius: 28px;
  }
  .hero {padding: 48px 6px 30px 6px; min-height: 210px;}
  .content-wrapper { max-width: 98vw; }

  .testimonial-list, .card-container, .content-grid, .destination-grid, .experience-grid, .service-grid, .post-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .contact-info { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 570px) {
  .container {padding-left: 10px; padding-right: 10px;}
  .footer-brand img {height: 24px; width: 24px;}
  .footer-social img {height: 18px; width: 18px;}
}
@media (max-width: 470px) {
  #cookie-consent-banner { padding: 15px 3px 13px 8px; font-size: 0.94rem;}
  #cookie-modal { padding: 18px 8px 16px 8px; }
  .features, .about, .section, .contact-cta, .contact-mini, .contact-details {
    border-radius: 11px;
    padding: 16px 2px 20px 2px;
  }
  .cta-primary {padding: 9px 16px; font-size: 0.96rem;}
}

/* ======================== */
/*    PRINT MINIMAL STYLE   */
/* ======================== */
@media print {
  header, nav, .mobile-menu, .cookie-consent-banner, footer {display: none !important;}
  body {background: #fff; color: #000;}
}
