/* =============================
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #F8F6F3;
  color: #2B3531;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul,ol {
  padding-left: 1.5em;
}
li {
  margin-bottom: 6px;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  background: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #8CC18C;
  outline-offset: 2px;
}

/* =============================
   FONTS
   ============================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #29545B;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.27;
  color: #40674E;
}
h4 {
  font-size: 1.1rem;
  line-height: 1.35;
}
p, .text-section, .brand-info, .feature p, .service p, .trust ul, .faq-list p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B3531;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  color: #29545B;
  font-weight: 700;
}

/* =============================
   COLOR PALETTE (Nature Organic)
   ============================= */
:root {
  --aw-primary: #29545B;
  --aw-secondary: #F4C95D;
  --aw-accent: #FFFFFF;
  --aw-green: #6F8C57;
  --aw-earth: #D5B084;
  --aw-forest: #40674E;
  --aw-brown: #A4917A;
  --aw-bg: #F8F6F3;
  --aw-shadow: rgba(41,84,91, 0.08);
  --aw-shadow-dark: rgba(61,91,47, 0.15);
}

/* =============================
   LAYOUT & CONTAINER
   ============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--aw-accent);
  border-radius: 22px;
  box-shadow: 0 2px 14px var(--aw-shadow);
}
@media (max-width: 900px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 10px;
    border-radius: 16px;
  }
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  width: 100%;
  background: var(--aw-accent);
  box-shadow: 0 2px 10px var(--aw-shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img[alt='AlpenWege Reisen'] {
  height: 48px;
  margin-right: 24px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  color: #29545B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  transition: color 0.23s;
  border-radius: 6px;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  color: var(--aw-green);
  background: rgba(111,140,87, 0.10);
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--aw-green);
  color: var(--aw-accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 32px;
  border-radius: 39px 24px 36px 23px/24px 33px 21px 35px;
  box-shadow: 0 3px 12px var(--aw-shadow);
  transition: background 0.2s, box-shadow 0.2s, transform 0.16s;
  border: none;
  text-align: center;
  letter-spacing: .05rem;
  margin-left: 20px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #29545B;
  color: var(--aw-secondary);
  box-shadow: 0 5px 22px var(--aw-shadow-dark);
  transform: translateY(-2px) scale(1.04);
}

/* Hide burger menu on desktop by default */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--aw-green);
  background: var(--aw-earth);
  border-radius: 12px;
  padding: 3px 13px;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  z-index: 50;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--aw-green);
  color: var(--aw-accent);
  box-shadow: 0 2px 12px var(--aw-shadow-dark);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(41, 84, 91, 0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.62,.19,.39,.99);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(.66,.06,.43,.79);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--aw-secondary);
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 24px 32px 8px 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--aw-accent);
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 22px 0 0 40px;
  width: 85vw;
}
.mobile-nav a {
  color: var(--aw-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: .02em;
  padding: 11px 6px;
  border-radius: 12px 33px 14px 18px;
  transition: background 0.21s, color 0.21s;
  margin-bottom: 6px;
  box-sizing: border-box;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(244,201,93, 0.16);
  color: var(--aw-secondary);
}
@media (max-width: 1100px) {
  nav.main-nav {
    gap: 14px;
  }
  .cta-button {
    padding: 11px 19px;
    margin-left: 8px;
  }
  header img[alt='AlpenWege Reisen'] { height: 39px; }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  header .container {
    flex-wrap: wrap;
    min-height: 45px;
    padding: 8px 6px 8px 10px;
  }
  .cta-button {
    font-size: 0.97rem;
    padding: 10px 16px;
    margin-left: 5px;
  }
}
@media (max-width: 768px) {
  nav.main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================
   HERO & GENERAL SECTIONS
   ============================= */
.hero {
  background: linear-gradient(138deg, #F8F6F3 82%, #eaf5e0 100%);
  padding: 60px 0 40px 0;
  min-height: 410px;
  margin-bottom: 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 17px var(--aw-shadow-dark);
  display: flex;
  align-items: center;
  position: relative;
}
.hero .content-wrapper {
  gap: 26px;
}
.hero h1 {
  margin-top: 14px;
  margin-bottom: 13px;
  color: var(--aw-forest);
  font-size: 2.6rem;
}
.hero p {
  font-size: 1.23rem;
  margin-bottom: 20px;
  color: #3B4740;
}
@media (max-width: 768px) {
  .hero {
    min-height: 210px;
    padding: 30px 0 14px 0;
    border-radius: 0 0 19px 19px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ==============
   FEATURES & CARDS
   ============== */
.features {
  background: #F4FFF4;
  border-radius: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 315px;
  background: #FFFFFF;
  border-radius: 21px;
  box-shadow: 0 3px 22px var(--aw-shadow);
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.26s, transform 0.2s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 7px 36px var(--aw-shadow-dark);
  transform: translateY(-3px) scale(1.025);
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 3px;
}
.feature h3 {
  color: var(--aw-primary);
  font-size: 1.25rem;
}
.feature p {
  color: #476141;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .feature {
    min-width: 180px;
    max-width: 98vw;
    padding: 18px 10px 16px 13px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature {
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin-right: 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.card {
  background: #FFF;
  border-radius: 19px;
  box-shadow: 0 2px 12px var(--aw-shadow);
  padding: 22px 18px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.19s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 26px var(--aw-shadow-dark);
  transform: translateY(-2px) scale(1.012);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--aw-shadow);
  padding: 22px 24px 16px 24px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 8px;
  transition: box-shadow 0.23s, transform 0.18s;
  position: relative;
}
.service img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.service h2 {
  color: var(--aw-green);
  font-size: 1.25rem;
}
.service p strong {
  color: var(--aw-brown);
  font-size: 1.07rem;
  font-weight: 700;
}
.service:hover, .service:focus-within {
  box-shadow: 0 7px 27px var(--aw-shadow-dark);
  transform: translateY(-2px) scale(1.013);
}
@media (max-width: 900px) {
  .service-list {
    gap: 14px;
  }
  .service {
    min-width: 135px;
    max-width: 100vw;
    padding: 12px 10px 10px 13px;
  }
}
@media (max-width: 600px) {
  .service-list {
    flex-direction: column;
  }
  .service {
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin-right: 0;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ================
   FLEXIBLE LAYOUTS
   ================ */
.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: #FBF9F5;
  border-radius: 17px 39px 17px 27px;
  box-shadow: 0 2px 12px var(--aw-shadow);
  min-height: 95px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #2B3531;
  font-style: italic;
  margin-bottom: 0;
  font-weight: 500;
}
.testimonial-card span {
  color: #40674E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  margin-left: 12px;
}

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

/* ================
   CTA SECTIONS
   ================ */
.cta {
  margin-bottom: 60px;
  padding: 0 0 0 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.cta-banner {
  background: #F4C95D;
  color: #29545B;
  padding: 35px 30px;
  border-radius: 36px 28px 34px 30px/23px 38px 25px 39px;
  box-shadow: 0 3px 19px var(--aw-shadow-dark);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  margin: 0 auto;
}
.cta-banner h2 {
  color: #29545B;
}
.cta-banner p {
  color: #29423b;
  font-weight: 500;
}
@media (max-width: 800px) {
  .cta-banner {
    padding: 17px 7px;
    border-radius: 25px 14px 32px 13px;
  }
}

/* ================
   TRUST/INFO SECTIONS
   ================ */
.trust {
  background: #E9F6EA;
  border-radius: 19px;
  box-shadow: 0 2px 10px var(--aw-shadow);
}
.trust h2 {
  color: #29423b;
}
.trust ul {
  color: #29545B;
  font-weight: 600;
  margin-bottom: 13px;
}
.trust p {
  color: #3B4740;
}

/* ================
   FOOTER
   ================ */
footer {
  background: #29545B;
  color: #F9F8F3;
  padding: 60px 0 30px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 26px;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #F4C95D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  padding: 4px 9px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F4C95D;
  color: #29545B;
}
.brand-info {
  text-align: center;
  color: #E0E3DE;
  font-size: 1rem;
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  gap: 27px;
}
.social-links a img {
  width: 36px;
  height: 36px;
  transition: transform 0.17s, filter 0.19s;
  filter: grayscale(17%) brightness(1.1);
  border-radius: 6px;
}
.social-links a:hover img, .social-links a:focus img {
  transform: scale(1.13) rotate(-4deg);
  filter: none;
  background: #F4C95D;
}
@media (max-width: 800px) {
  footer .container {
    gap: 22px;
    padding-left: 8px; padding-right: 8px;
  }
  .footer-nav { gap: 11px; }
  .brand-info { font-size: 0.94rem; }
  .social-links { gap: 13px; }
}

/* ============
   MISC SECTIONS
   ============ */
.text-section, .faq-list {
  margin-bottom: 24px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0 16px 0;
  background: #E9F6EA;
  border-radius: 12px 24px 17px 16px;
  padding: 12px 10px 12px 14px;
}
.map-placeholder img {
  width: 36px;
}
.contact-details p {
  margin: 3px 0;
  color: #476141;
  font-weight: 500;
}

.faq-list h3 {
  font-size: 1.13rem;
  color: #40674E;
  margin-bottom: 7px;
  margin-top: 18px;
}
.faq-list p {
  margin-bottom: 11px;
}

.feature-icons-row {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 9px;
  margin-top: 9px;
  flex-wrap: wrap;
}
.feature-icons-row img {
  height: 36px;
  width: auto;
  opacity: 0.8;
}

/* ==============
   COOKIE CONSENT
   ============== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #40674E;
  color: #FFF;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 22px 18px 16px 18px;
  box-shadow: 0 -3px 18px var(--aw-shadow);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: cookieBannerIn 0.42s cubic-bezier(.19,.68,.32,1.24);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner .cookie-text {
  color: #FFF;
  font-size: 1rem;
  flex: 1 1 auto;
  margin-right: 14px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 11px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 19px 33px 18px 29px;
  padding: 10px 23px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: var(--aw-secondary);
  color: #29545B;
  box-shadow: 0 2px 12px rgba(111,140,87, 0.10);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #C7A548;
}
.cookie-btn.reject {
  background: #F4F4ED;
  color: #29545B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E9EBE1;
}
.cookie-btn.settings {
  background: #40674E;
  color: #fff;
  border: 2px solid #F4C95D;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #29545B;
  border-color: #F4C95D;
}

/* Cookie consent modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(41,84,91,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieOverlayIn 0.21s cubic-bezier(.68,.2,.31,.92);
}
  @keyframes cookieOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
.cookie-modal {
  background: #F4FFF4;
  color: #2B3531;
  border-radius: 29px;
  max-width: 440px;
  width: 94vw;
  box-shadow: 0 7px 40px rgba(41,84,91,0.18);
  padding: 34px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.27s cubic-bezier(.41,.47,.42,1.25);
  position: relative;
}
  @keyframes cookieModalIn {
    from { transform: scale(.85); opacity:0 }
    to { transform: scale(1); opacity:1 }
  }
.cookie-modal h2 {
  font-size: 1.23rem;
  color: var(--aw-green);
  margin-bottom: 11px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #29545B;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E9F6EA;
  border-radius: 17px;
  transition: background 0.16s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  background: #6F8C57;
}
.cookie-modal .cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  margin-top: 17px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 15px; top: 9px;
  background: transparent;
  color: #29545B;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 3;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #6F8C57;
}
@media (max-width: 480px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 6px 6px 6px;
    font-size: .92rem;
    text-align: left;
    position: fixed;
  }
  .cookie-consent-banner .cookie-actions {
    flex-wrap: wrap;
    gap: 7px;
  }
  .cookie-modal {
    padding: 17px 6px 13px 9px;
    font-size: .98rem;
    max-width: 99vw;
  }
}

/* =============================
   SPACING + UTILITY CLASSES
   ============================= */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

/* =============================
   RESPONSIVE MEDIA QUERIES
   ============================= */
@media (max-width: 1000px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.53rem; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.0rem; }
  h3 { font-size: 1.01rem; }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .feature-grid, .service-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
}

/* =============================
   SCROLLBAR STYLING (NATURE STYLE)
   ============================= */
::-webkit-scrollbar { width: 12px; background: #E9F6EA; }
::-webkit-scrollbar-thumb {
  background: #A4917A;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6F8C57;
}

/* =============================
   SELECTION COLOR
   ============================= */
::selection {
  background: #F4C95D;
  color: #29545B;
}

/* =============================
   ACCESSIBILITY
   ============================= */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  box-shadow: 0 0 0 3px #F4C95D, 0 0 3px 5px #29545B22;
  outline: none;
}

/* =============================
   TRANSITIONS & MICRO-ANIMATIONS
   ============================= */
.card, .service, .feature, .testimonial-card, .cta-banner, .footer-nav a, .cta-button, .social-links a img {
  transition: box-shadow 0.22s, background 0.2s, transform 0.16s, color 0.18s;
}

/* =============================
   ORGANIC ROUNDED SHAPES
   ============================= */
.section, .feature, .card, .testimonial-card, .cta-banner, .cta-button, .service, .cookie-modal, .footer-nav a, .cookie-btn {
  border-radius: 24px 32px 18px 25px / 18px 33px 24px 29px;
}

/* =============================
   PRINT: AVOID MENU, CONSENT BANNER
   ============================= */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
