/* =====================
   RADIANT CAMP CSS RESET
   ===================== */
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 {
  background: #F2E6C1; /* Brand secondary */
  color: #225C3C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B05C01;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #225C3C;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 14px 8px;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid #E2C776;
}
th {
  background: #E38E3B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
}
::selection {
  background: #B05C01;
  color: #fff;
}

/* =====================
   BRAND VINTAGE/RETRO STYLE
   ===================== */
:root {
  --brand-primary: #225C3C;
  --brand-secondary: #F2E6C1;
  --brand-accent: #B05C01;
  --brand-accent-soft: #E38E3B;
  --brand-retro-bg: #F7F2DF;
  --brand-retro-green: #417E65;
  --brand-retro-yellow: #EAC96B;
  --brand-retro-brown: #775D3B;
  --shadow-main: 0 2px 16px rgba(34,92,60,0.08);
  --section-radius: 19px;
  --card-radius: 16px;
  --pattern-stripes: repeating-linear-gradient(45deg, #EAC96B 0 5px, transparent 5px 12px);
}

body {
  background: var(--brand-retro-bg);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section { max-width: 770px; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe9;
  border-radius: var(--section-radius);
  box-shadow: var(--shadow-main);
  position: relative;
}

.section::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 30px;
  background: var(--pattern-stripes);
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  text-shadow: 0 1px 0 #EAC96B;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
p, li, dd {
  font-size: 1.06rem;
  color: #48412E;
  line-height: 1.8;
}

strong {
  color: var(--brand-primary);
}

/* =============
    HEADER
   ============= */
header {
  background: #fffef7;
  box-shadow: 0 3px 16px rgba(176,92,1,0.04);
  border-bottom: 4px solid var(--brand-accent);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--brand-primary);
  padding: 6px 2px;
  transition: color 0.15s;
  font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-accent);
}
header img {
  height: 56px;
  width: auto;
}

.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  background: var(--brand-retro-yellow);
  color: var(--brand-primary);
  border: none;
  padding: 11px 34px;
  font-size: 1.125rem;
  border-radius: 24px;
  box-shadow: 0 1px 6px rgba(34,92,60,0.09);
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms, color 140ms, box-shadow 200ms;
  position: relative;
  margin: 0 6px 0 0;
  outline: none;
}
.btn img {
  width: 23px;
  height: 23px;
  margin-right: 10px;
}
.btn:hover, .btn:focus {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 5px 16px rgba(176,92,1,0.18);
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-accent);
  color: #fffbe9;
}

/* ==========
 MOBILE MENU
 ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 18px;
  z-index: 51;
  box-shadow: 0 2px 8px rgba(176,92,1,0.09);
  cursor: pointer;
  transition: background 160ms;
}
.mobile-menu-toggle:active {
  background: var(--brand-primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 78vw;
  max-width: 340px;
  height: 100vh;
  background: #F2E6C1;
  box-shadow: -7px 0 30px rgba(34,92,60,0.07);
  padding: 0 0 0 0;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  border-left: 5px solid var(--brand-accent);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-retro-brown);
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 22px 17px 0 0;
  align-self: flex-end;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 1003;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-accent);
  color: #fffbe9;
}
.mobile-nav {
  margin: 45px 0 0 0;
  padding: 0px 27px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  padding: 9px 0;
  border-radius: 7px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eac96b56;
  color: var(--brand-accent);
}
/* ================
    HERO SECTION
   ================ */
.hero {
  background: var(--brand-primary);
  background-image: repeating-linear-gradient(9deg, #417E65 0 20px, #225C3C 20px 40px), url('../assets/retro-bg-pattern.png');
  background-repeat: repeat;
  min-height: 380px;
  color: #fffbe9;
  padding: 65px 0 55px 0;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-bottom: 8px solid var(--brand-accent);
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  gap: 22px;
  max-width: 680px;
  align-items: flex-start;
}
.hero h1 {
  color: #fffbe9;
  text-shadow: 1px 2px 6px #225C3C66, 0 2px #B05C01;
}
.hero p {
  color: #fffbe9;
  font-size: 1.18rem;
}
.hero .btn-primary {
  background: var(--brand-accent);
  color: #fffbe9;
  box-shadow: 0 3px 18px rgba(255,193,86,0.14);
}
.hero .btn-primary:hover {
  background: #fffbe9;
  color: var(--brand-primary);
}

/* ==============
FEATURES SECTION
 =============== */
.features {
  background: #FFF7D1;
  border-radius: var(--section-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 18px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  background: #faf1db;
  border-radius: 15px;
  box-shadow: 0 2px 11px rgba(34,92,60,0.07);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #3B3A2A;
  font-weight: 500;
  gap: 14px;
  padding: 18px 26px 18px 18px;
  min-width: 210px;
  margin-bottom: 0;
  transition: box-shadow 0.2s;
}
.feature-grid li img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
.feature-grid li:hover {
  box-shadow: 0 4px 18px rgba(176,92,1,0.12);
  background: #fffbe9;
}

/* ================
    ABOUT TEASER
   =============== */
.about-teaser {
  background: #fffbe9;
  border-radius: var(--section-radius);
}
.about-teaser h2 {
  color: var(--brand-accent);
}

/* ================
     OFFER
   ================ */
.offer-highlight ul,
.service-categories-grid,
.icon-list-services,
.activity-icons-grid ul,
.experience-highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.offer-highlight ul li,
.service-categories-grid li,
.icon-list-services li,
.activity-icons-grid ul li,
.experience-highlights-grid li {
  display: flex;
  align-items: center;
  background: #F7EDD7;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3D3729;
  border-radius: 13px;
  gap: 11px;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 13px 21px 13px 13px;
  min-width: 170px;
  margin-bottom: 0;
  box-shadow: 0 2px 12px rgba(34,92,60,0.06);
  transition: background 0.17s, box-shadow 0.22s;
}
.offer-highlight ul li img,
.service-categories-grid li img,
.icon-list-services li img,
.activity-icons-grid ul li img,
.experience-highlights-grid li img {
  width: 28px;
  height: 28px;
}

/* =============
TESTIMONIALS
============= */
.testimonials {
  background: var(--brand-retro-yellow);
  margin-bottom: 60px;
  border-radius: var(--section-radius);
  box-shadow: var(--shadow-main);
  padding: 36px 0;
}
.testimonials h2 {
  color: var(--brand-retro-brown);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: #fffbe9;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 12px rgba(34,92,60,0.10);
  padding: 20px 24px;
  max-width: 320px;
  min-width: 220px;
  border: 1.5px solid #CDBF83;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
  margin-right: 0;
  position: relative;
}
.testimonial-card p {
  color: #4C3B1E;
  font-size: 1.06rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-meta {
  color: #9B7203;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.star-rating {
  color: var(--brand-accent);
  letter-spacing: 2px;
  font-size: 1.05em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 3px;
  user-select: none;
}

/* ==============
    CTA SECTIONS
=============== */
.cta {
  background: #417E65;
  color: #fffbe9;
  border-radius: var(--section-radius);
  text-align: center;
  margin-bottom: 60px;
  padding: 48px 18px 35px 18px;
  box-shadow: 0 2px 14px rgba(34,92,60,0.09);
}
.cta h2 { color: #fffbe9; text-shadow: 1px 2px 6px #225C3C3d, 0 2px #B05C01;}
.cta .btn-primary {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(176,92,1,0.12);
  margin-top: 19px;
}
.cta .btn-primary:hover { background: #fffbe9; color: var(--brand-primary); }
.secondary-contact-info {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.secondary-contact-info p {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #fffbe9;
  gap: 8px;
}
.secondary-contact-info img {
  width: 20px; height: 20px; margin-right: 2px;
}

/* ==============
 FOOTER
============== */
footer {
  background: #fff6e2;
  border-top: 4px solid var(--brand-accent);
  margin-top: 78px;
  font-size: 1rem;
  color: var(--brand-primary);
  position: relative;
  z-index: 10;
}
.footer-menu {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 24px 0 7px 0;
  flex-wrap: wrap;
}
.footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 500;
  letter-spacing: .02em;
  font-size: 1rem;
  border-bottom: 2px dashed transparent;
  transition: color 0.2s, border 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  border-bottom: 2px dashed var(--brand-accent);
  color: var(--brand-accent);
}
.footer-contact {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 7px 0 13px 0;
  font-size: 1.05rem;
  color: var(--brand-primary);
  flex-wrap: wrap;
}
.footer-contact address {
  font-style: normal;
}
.footer-copy {
  text-align: center;
  color: #7A5E21;
  font-size: 0.98rem;
  padding-bottom: 11px;
}

/* ============================
    CARD & FLEX CONTAINERS
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #faf1db;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 12px rgba(34,92,60,0.07);
  padding: 18px 24px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 7px 28px rgba(176,92,1,0.18);
  transform: translateY(-4px) scale(1.012);
}
.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;
  background: #fffbe9;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 12px rgba(34,92,60,0.08);
  margin-bottom: 20px;
  border: 1.5px solid #eac96b60;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.values-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.values-icons li {
  display: flex;
  align-items: center;
  background: #FDF6DA;
  border-radius: 13px;
  padding: 12px 18px 12px 11px;
  gap: 12px;
  font-weight: 600;
  color: #7A5E21;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 160px;
  box-shadow: 0 1px 7px #eac96b22;
}
.values-icons img {
  width: 28px;
  height: 28px;
}

/* ===========
PRICING TABLE
=========== */
.pricing-table {
  border: 2px solid var(--brand-retro-brown);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-table thead tr th { background: #B05C01; color: #fffbe9; }
.pricing-table tbody tr { background: #FFF7D1; }
.pricing-table tr:nth-child(even) { background: #fffbe9; }

/* ===========
   FAQ, ETC.
=========== */
.short-faq, .faq-booking {
  background: #faf1db;
  border-radius: 11px;
  padding: 18px 21px;
  margin-top: 22px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #48412E;
  box-shadow: 0 1px 7px #eac96b22;
}
.short-faq h3, .faq-booking h3 { color: var(--brand-primary); margin-bottom: 7px; font-size: 1.12rem; }

/* ===========
CONTACT PAGE
=========== */
.contact-details, .address-details, .opening-hours {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.06rem;
  margin-bottom: 12px;
}
.contact-details img,
.opening-hours img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
}
.map-embed {
  margin: 14px 0 0 0;
  padding: 11px 16px;
  background: #fffbe9;
  border-radius: 8px;
  border: 1px dashed #EAC96B;
  color: #6F6138;
  font-style: italic;
}

.visit-us .content-wrapper {
  gap: 18px;
}
.address-details address {
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #9B7203;
}
.opening-hours {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

/* Book/visit cta section */
.visit-us {
  background: #FFF7D1;
  border-radius: var(--section-radius);
  margin-bottom: 38px;
}

/* =============
 COOKIES BANNER
============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #775D3B;
  color: #fffbe9;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 -4px 20px #00000017;
  z-index: 2000;
  padding: 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  animation: cookieFadeIn 0.7s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__msg {
  font-size: 1rem;
  max-width: 480px;
  color: #fffbe9;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  font-size: 1rem;
  padding: 9px 21px;
  background: var(--brand-retro-yellow);
  color: var(--brand-primary);
  box-shadow: none;
}
.cookie-banner .btn:hover { background: var(--brand-accent); color: #fffbe9; }
.cookie-banner .btn:active { background: var(--brand-retro-brown); color: #fffbe9; }

/* =============
 COOKIE MODAL
============== */
.cookie-modal-overlay {
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(34,92,60,0.44);
  z-index: 2002;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #fffbe9;
  color: #3d3729;
  width: 95%;
  max-width: 425px;
  border-radius: 17px;
  box-shadow: 0 8px 34px #225c3c2c;
  padding: 32px 22px 22px 22px;
  animation: cookieModalPop 0.4s;
  position: relative;
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: scale(0.89); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 { color: var(--brand-primary); font-size: 1.35rem; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
  background: #F2E6C1;
  border-radius: 8px;
  padding: 11px 13px;
}
.cookie-modal .cookie-category.essential {
  opacity: .7;
  font-weight: bold;
}
.cookie-modal .cookie-category-label {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  padding: 7px 21px;
  background: var(--brand-retro-yellow);
  color: var(--brand-primary);
  border-radius: 7px;
  border: 1.2px solid var(--brand-retro-brown);
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .cookie-toggle.active {
  background: var(--brand-primary);
  color: #fffbe9;
  border-color: var(--brand-accent);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 16px;
  background: var(--brand-retro-brown);
  color: #fffbe9;
  font-size: 1.33rem;
  border: none;
  border-radius: 9px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-close:hover { background: var(--brand-accent); }

.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .btn {
  padding: 9px 23px;
  font-size: 1rem;
  border-radius: 11px;
}

/* =============
  RESPONSIVE
============== */
@media (max-width: 1000px) {
  .container {
    max-width: 96vw;
  }
  header .container { gap: 8px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 900px) {
  .feature-grid, .values-icons, .footer-menu, .content-grid, .testimonial-slider, .offer-highlight ul,
  .service-categories-grid, .icon-list-services, .experience-highlights-grid {
    gap: 14px;
  }
  .secondary-contact-info { gap: 12px; }
}
@media (max-width: 850px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer-menu { gap: 14px; padding: 17px 0 4px 0; font-size: 0.98rem; }
  .footer-contact { gap: 4px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding-top: 8px;
    height: 64px;
  }
  header img {
    height: 38px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn, .btn-primary {
    padding: 8px 19px;
    font-size: 1rem;
    border-radius: 16px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 7px;
    border-radius: 9px;
  }
  .hero,
  .features,
  .about-teaser,
  .offer-highlight,
  .testimonials,
  .cta {
    padding-left: 9px;
    padding-right: 9px;
  }
  /* Adjust flex direction for text-image sections */
  .text-image-section, .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .values-icons,
  .offer-highlight ul, .service-categories-grid,
  .icon-list-services, .experience-highlights-grid {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-slider { gap: 13px; }
  .footer-menu, .footer-contact {
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
  }
  .cta {
    padding: 24px 5px 19px 5px;
  }
  .secondary-contact-info { flex-direction: column; gap: 6px; align-items: flex-start; }
}
@media (max-width: 620px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.24rem; }
  .testimonial-card, .card {
    padding: 13px 7px;
    min-width: 110px;
    font-size: 0.96rem;
  }
  .feature-grid li, .values-icons li, .offer-highlight ul li, .service-categories-grid li,
  .icon-list-services li, .activity-icons-grid ul li, .experience-highlights-grid li {
    padding: 7px 13px 7px 7px;
    min-width: 80px;
    font-size: 0.96rem;
  }
  .footer-copy { font-size: 0.92rem; }
  .pricing-table th, .pricing-table td { font-size: 0.94rem; }
}
@media (max-width: 400px) {
  h1 { font-size: 1.23rem; }
  .btn, .btn-primary {
    padding: 6px 14px;
    font-size: 0.97rem;
    border-radius: 12px;
  }
  .cookie-banner__msg { font-size: 0.97rem; }
}

/* Hide cookie modal when not active */
.cookie-modal-overlay:not(.active) { display: none; }

/* General Utility Classes */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }

/* ===========
   Animations
============ */
.btn, .feature-grid li, .values-icons li, .offer-highlight ul li, .testimonial-card, .card {
  transition: box-shadow 0.22s, background 0.15s, color 0.11s, transform 0.13s;
}

/* Subtle pulse for retro effect on CTAs */
.cta .btn-primary, .btn-primary {
  animation: retroPulse 2.45s infinite linear alternate;
}
@keyframes retroPulse {
  from { box-shadow: 0 4px 16px #B05C0133; }
  to   { box-shadow: 0 6px 22px #EAC96B77; }
}

/* Avoid grid or columns. 100% of layouts use only flexbox. */

/* =====================
  END of Radiant Camp CSS
====================== */
