/* CSS RESET & BASE STYLES */
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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #F7F4EE;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B2922;
  background: #F7F4EE;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
strong {
  font-weight: 700;
}

/* BRAND & VINTAGE RETRO COLOR PALETTE */
:root {
  --primary: #204D36;
  --secondary: #729B70;
  --accent: #F0E7D2;
  --vintage-yellow: #ECD48B;
  --vintage-brown: #C19875;
  --vintage-orange: #F6A96A;
  --offwhite: #F7F4EE;
  --shadow-brown: rgba(193,152,117, 0.09);
  --retro-red: #CE6D46;
  --retro-blue: #5B7E91;
  --light-text: #F7F4EE;
  --dark-text: #2B2922;
}

/* FONT DECLARATIONS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  letter-spacing: 0.025em;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary);
  border-left: 6px solid var(--vintage-orange);
  padding-left: 18px;
  margin: 0 0 10px 0;
  background: var(--offwhite);
}

/* CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--shadow-brown);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* RETRO DECORATIVE ELEMENTS */
.section {
  background: repeating-linear-gradient(135deg, var(--accent) 0 40px, #F7F4EE 40px 80px);
  border: 2px solid var(--vintage-brown);
  position: relative;
  overflow: hidden;
}
.section::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 30px;
  width: 90px;
  height: 90px;
  background: url('../assets/pattern/polka-vintage.svg') repeat;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
  display: none;
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  color: var(--light-text);
  width: 100%;
  box-shadow: 0 2px 18px var(--shadow-brown);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 12px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(2px 2px 0 var(--vintage-yellow));
  transition: filter 0.2s;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--light-text);
  padding: 8px 3px;
  position: relative;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--vintage-yellow);
}
.cta-btn {
  background: var(--vintage-orange);
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark-text);
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 14px 32px 12px 32px;
  box-shadow: 0 3px 18px var(--shadow-brown);
  border: 2px solid var(--vintage-brown);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.18s;
  margin-left: 20px;
  margin-right: 6px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vintage-yellow);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 6px 26px var(--shadow-brown);
}
button, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
}
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-orange);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  transition: background .2s, color .2s;
  border: 2px solid var(--vintage-brown);
  margin-left: 10px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--vintage-yellow);
  color: var(--retro-red);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--primary);
  z-index: 3200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.6,.18,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 32px 20px 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: var(--vintage-yellow);
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border: 2px solid var(--vintage-brown);
  margin-bottom: 24px;
  transition: background .20s, color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-red);
  color: var(--light-text);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-end;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: var(--light-text);
  padding: 14px 0 14px 16px;
  width: 240px;
  border-radius: 8px;
  text-align: right;
  transition: background .16s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-brown);
  color: var(--vintage-yellow);
}

/* HERO */
.hero {
  width: 100%;
  min-height: 340px;
  background: var(--vintage-yellow);
  border-bottom: 3px solid var(--vintage-brown);
  border-radius: 0 0 56px 56px/0 0 32px 32px;
  box-shadow: 0 3px 18px var(--shadow-brown);
  margin-bottom: 48px;
  position: relative;
  display: flex;
}
.hero .container {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 260px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.2rem;
  text-shadow: 2px 2px 0 var(--vintage-orange);
}
.hero-subline {
  font-size: 1.15rem;
  color: var(--secondary);
  background: var(--accent);
  border-radius: 9px;
  padding: 14px 26px 13px 26px;
  font-style: italic;
  margin-bottom: 0;
  border: 1.5px solid var(--vintage-brown);
  box-shadow: 0 3px 18px var(--shadow-brown);
}

/* FEATURE GRIDS - icon & text boxes */
.features, .about, .team, .legal, .contact {
  margin-bottom: 60px;
}
.feature-grid, .values-icons, .team-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid li, .values-icons li, .team-list li, .article-list li {
  background: var(--offwhite);
  border-radius: 18px;
  border: 2px solid var(--vintage-brown);
  box-shadow: 0 1px 8px var(--shadow-brown);
  padding: 28px 22px;
  gap: 10px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.19s, box-shadow 0.19s, border-color 0.19s;
}
.feature-grid li img, .values-icons li img, .article-list li img {
  margin-bottom: 12px;
  width: 34px;
  height: 34px;
  filter: drop-shadow(1px 1px 0 var(--vintage-yellow));
}
.feature-grid li strong {
  color: var(--primary);
  font-weight: 700;
}
.feature-grid li:hover, .values-icons li:hover, .article-list li:hover{
  border-color: var(--retro-red);
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 3px 16px var(--shadow-brown);
}
.values-icons li {
  background: var(--vintage-brown);
  color: var(--light-text);
  border: 2px solid var(--vintage-yellow);
  min-width: 125px;
  text-align: center;
}
.team-list li {
  background: var(--retro-blue);
  color: var(--light-text);
  border: 2.5px solid var(--primary);
  min-width: 240px;
}

/* SERVICES SECTION & SERVICE LISTS */
.services {
  margin-bottom: 60px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.service-list li {
  background: var(--retro-blue);
  color: var(--light-text);
  border-radius: 20px;
  border: 2px solid var(--vintage-yellow);
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  padding: 20px 24px 17px 24px;
  margin-bottom: 20px;
  margin-right: 0;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 4px 20px var(--shadow-brown);
}
.service-list li h3 {
  font-size: 1.09rem;
  color: var(--vintage-yellow);
  font-weight: bold;
  margin-bottom: 6px;
}
.service-list li .price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-red);
  background: var(--accent);
  border-radius: 13px 13px 13px 0;
  border: 2px solid var(--vintage-brown);
  font-weight: bold;
  margin-top: 12px;
  font-size: 1rem;
  padding: 5px 15px 3px 11px;
  position: relative;
  z-index: 2;
}
.service-list li:hover, .service-list li:focus {
  box-shadow: 0 7px 24px var(--shadow-brown);
  transform: translateY(-3px) scale(1.02);
}

.itinerary-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 9px 0 0 0;
  font-size: 0.98rem;
  color: var(--vintage-yellow);
}

/* ARTICLE LIST (PORADNIK) */
.article-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.article-list li {
  cursor: pointer;
  border: 2px dashed var(--retro-red);
  background: var(--vintage-yellow);
  color: var(--primary);
  transition: background .16s, border-color .13s;
  min-width: 210px;
}
.article-list li:hover {
  background: var(--retro-blue);
  color: var(--light-text);
  border-color: var(--vintage-yellow);
}

/* CTA SECTION */
.cta {
  margin-bottom: 50px;
  background: var(--vintage-brown);
  border-radius: 30px;
  box-shadow: 0 2px 15px var(--shadow-brown);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cta h2 {
  color: var(--light-text);
  font-weight: 900;
  font-size: 2rem;
  text-shadow: 2px 2px 0 var(--retro-blue);
}
.cta p {
  color: var(--light-text);
}
.cta .cta-btn {
  margin: 16px auto 0 auto;
  display: inline-block;
}

/* TESTIMONIALS - RETRO CARDS */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--offwhite);
  color: var(--primary);
  border-radius: 22px;
  border: 2.5px solid var(--retro-blue);
  box-shadow: 0 2px 18px var(--shadow-brown);
  padding: 20px 24px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 440px;
  transition: transform 0.18s, box-shadow 0.16s, border-color 0.16s;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card .stars {
  color: var(--retro-red);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  margin-bottom: 2px;
  letter-spacing: 2px;
  font-weight: 700;
}
.testimonial-card blockquote {
  color: var(--primary);
  background: none;
  border: none;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 6px 0;
  padding-left: 0;
}
.testimonial-card .reviewer {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-blue);
  font-size: 1.04em;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 0;
}
.testimonial-card:hover {
  border-color: var(--retro-red);
  transform: scale(1.03) rotate(-1.4deg);
  box-shadow: 0 7px 26px var(--shadow-brown);
}
/* Ensure high contrast for testimonials */
.testimonial-card, .testimonials .testimonial-card {
  background: #fff;
  color: #261713;
}
.testimonial-card .stars, .testimonials .stars {
  color: var(--retro-red);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--light-text);
  padding: 46px 0 24px 0;
  width: 100%;
}
footer .container {
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer-brand img {
  width: 64px;
  height: auto;
  filter: drop-shadow(1px 1px 0 var(--vintage-yellow));
}
.footer-brand .tagline {
  color: var(--vintage-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-size: 1em;
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--light-text);
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--secondary);
  padding: 5px 12px 4px 12px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--retro-red);
  color: var(--vintage-yellow);
}
.footer-contact p {
  color: var(--light-text);
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact strong {
  color: var(--vintage-yellow);
}

/* LEGAL/PRIVACY SECTIONS */
.legal {
  background: var(--offwhite);
  border: 2px solid var(--vintage-brown);
  border-radius: 21px;
  box-shadow: 0 2px 14px var(--shadow-brown);
  margin-bottom: 60px;
  padding: 35px 22px 45px 22px;
}

.legal h1, .legal h2 {
  color: var(--retro-blue);
}

.legal ul, .legal ol {
  margin: 11px 0 18px 17px;
  padding-left: 0;
}
.legal li {
  font-size: 1rem;
  margin-bottom: 6px;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--primary);
}
.legal a {
  color: var(--retro-blue);
  text-decoration: underline;
}
.legal a:hover {
  color: var(--retro-red);
}

/* CONTACT SECTION */
.contact-details {
  background: var(--accent);
  border: 2px solid var(--secondary);
  border-radius: 16px;
  padding: 20px 18px;
  margin-top: 14px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
}
.directions-text, .map-embed {
  margin-bottom: 24px;
  background: var(--vintage-yellow);
  border: 2px solid var(--vintage-brown);
  border-radius: 12px;
  padding: 15px 18px;
  color: var(--primary);
  box-shadow: 0 1px 8px var(--shadow-brown);
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--vintage-brown);
  color: var(--light-text);
  z-index: 4000;
  box-shadow: 0 -2px 18px var(--shadow-brown);
  padding: 18px 16px 18px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: banner-in 0.7s cubic-bezier(.7,.3,.31,.94);
}
@keyframes banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  max-width: 680px;
  color: var(--light-text);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  border: 2px solid var(--accent);
  background: var(--vintage-yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  font-size: 1rem;
  padding: 7px 22px 7px 22px;
  margin: 0;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, border .12s;
  box-shadow: 0 2px 6px var(--shadow-brown);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--retro-red);
  color: var(--light-text);
  border-color: var(--vintage-yellow);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(50,38,19,0.5);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.29s linear;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border: 4px double var(--vintage-brown);
  border-radius: 18px;
  padding: 28px 28px 22px 28px;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 5px 32px var(--shadow-brown);
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: modalpop .36s cubic-bezier(.72,.07,.3,1.66);
}
@keyframes modalpop {
  0% { opacity: 0; transform: scale(0.85) translateY(80px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--retro-red);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
  font-size: 1.05rem;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  cursor: pointer;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: var(--vintage-brown);
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  transition: background .19s;
}
.cookie-toggle input[type="checkbox"] {
  width: 36px;
  height: 20px;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-toggle .toggle-slider {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 20px;
  background: var(--vintage-brown);
  border-radius: 18px;
  transition: background 0.19s;
}
.cookie-toggle input:checked + .toggle-slider {
  background: var(--retro-blue);
}
.cookie-toggle .toggle-slider::before {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.16s;
}
.cookie-toggle input:checked + .toggle-slider::before {
  transform: translateX(15px);
}
.cookie-modal .modal-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-buttons button {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: 2px solid var(--retro-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 15px;
  padding: 7px 18px 6px 18px;
  font-weight: 700;
  transition: background 0.15s, color 0.13s, border 0.15s;
}
.cookie-modal .modal-buttons button:hover, .cookie-modal .modal-buttons button:focus {
  background: var(--retro-red);
  color: var(--light-text);
  border-color: var(--retro-red);
}

/* FLEXBOX SPACING UTILITIES AS INSTRUCTED */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow-brown);
  padding: 22px 15px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GLOBAL GAPS FOR FLEX CONTAINERS */
.features, .services, .cta, .testimonials, .about, .team, .legal, .contact {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 991px) {
  .main-nav {
    gap: 12px;
  }
  .service-list {
    gap: 16px;
  }
  .feature-grid, .values-icons, .article-list {
    gap: 14px;
  }
  .footer-brand img {
    width: 58px;
  }
  .footer-contact p {
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 5vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    gap: 21px;
  }
  .feature-grid, .values-icons, .service-list, .article-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .testimonial-card, .testimonials .testimonial-card {
    max-width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .team-list {
    flex-direction: column;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .hero {
    min-height: 190px;
    border-radius: 0 0 24px 24px/0 0 10px 10px;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
  .hero-subline {
    font-size: 1rem;
    padding: 12px 10px;
  }
  .cta {
    border-radius: 16px;
  }
  footer {
    padding: 24px 0 18px 0;
  }
  .footer-brand img {
    width: 40px;
  }
  .footer-contact p, .footer-brand .tagline, .footer-nav a {
    font-size: 0.93rem;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 14px 10px 9px 10px;
  }
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.10rem;
  }
  h2 {
    font-size: 1rem;
  }
  .section {
    padding: 10px 2px;
    border-radius: 8px;
  }
  .cta-btn {
    padding: 9px 17px 8px 17px;
    font-size: 1rem;
    margin: 10px auto 0 auto;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 4vw 12px 4vw;
  }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.cta-btn, .main-nav a, .footer-nav a, .service-list li, .feature-grid li, .values-icons li, .testimonial-card, .article-list li, .cookie-banner button, .cookie-modal .modal-buttons button {
  transition: background 0.19s, color 0.14s, border 0.15s, box-shadow 0.18s, transform 0.17s;
}

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: var(--vintage-brown);
  border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: var(--offwhite);
}

/* ACCESSIBILITY - FOCUS STATE */
a:focus, button:focus, .cta-btn:focus, .footer-nav a:focus, .main-nav a:focus {
  outline: 2px solid var(--retro-blue);
  outline-offset: 2px;
  z-index: 10;
}

/* PREVENT CARD OVERLAP/MIN. GAPS */
.section, .card-container, .feature-grid, .values-icons, .team-list, .article-list, .service-list {
  gap: 20px;
  margin-bottom: 20px;
}
.card, .testimonial-card, .feature-grid li, .service-list li, .values-icons li, .team-list li {
  margin-bottom: 20px;
}

/* PRINT - REMOVE DECOR/BG */
@media print {
  .section, .hero, .cta, footer, header, .testimonials, .cookie-banner, .mobile-menu, .cookie-modal-backdrop {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
    border: none !important;
  }
}
