/* === CSS RESET & BASE === */
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;
}
body {
  line-height: 1.5;
  background: #FFF7F1;
  color: #233343;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  background-attachment: fixed;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border: none; }
input, button, select, textarea { font-family: inherit; font-size: inherit; }
button { border: none; background: none; cursor: pointer; }
::-webkit-input-placeholder { color: #85776a; }
::-moz-placeholder { color: #85776a; }
:-ms-input-placeholder { color: #85776a; }
::placeholder { color: #85776a; }

/* === BRAND COLORS ===*/
:root {
  --color-primary: #344B5A;
  --color-secondary: #E5E0D8;
  --color-accent: #BF8760;
  --color-accent-dark: #A25E28;
  --color-bg: #FFF7F1;
  --color-white: #FFFFFF;
  --color-black: #233343;
  --color-shadow: rgba(52,75,90,0.13);
  --color-pink: #FFC0CB;
  --color-yellow: #FFEB80;
  --color-turquoise: #54e6bc;
  --color-orange: #FBB167;
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Playfair+Display:wght@600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; margin-bottom: 18px; letter-spacing: -0.03em; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.2rem; }
p, li, ul, ol, span, strong, em, a, label, dt, dd { font-family: 'Roboto', Arial, sans-serif;}
p { font-size: 1.05rem; margin-bottom: 14px; }
strong { font-weight: 700; }

/* --- Playful Dynamic Typography Touches --- */
h1, h2 {
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-turquoise) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          text-fill-color: transparent;
}
h3 { text-shadow: 1px 2px 0 var(--color-yellow); font-weight: 600; }

/* === LAYOUT WRAPPERS & CONTAINERS === */
.container {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 36px;
  background: var(--color-secondary);
  box-shadow: 0 8px 24px var(--color-shadow);
}
main > section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Card Layouts */
.card-container,
.features-grid,
.team-grid,
.testimonials-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .testimonial-card, .team-member {
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 4px 10px var(--color-shadow);
  padding: 28px 24px 22px 24px;
  transition: transform 0.22s cubic-bezier(.59,.14,.19,.99), box-shadow 0.20s;
  min-width: 240px;
  flex: 1 1 225px;
}
.feature-item img {
  width: 38px; height: 38px; margin-bottom: 8px;
  filter: drop-shadow(0 2px 0 var(--color-accent));
}
.feature-item:hover {
  transform: translateY(-8px) scale(1.03) rotate(-2deg);
  box-shadow: 0 12px 32px var(--color-shadow);
  background: var(--color-yellow);
}

.team-grid {
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.team-member {
  background: var(--color-bg);
  border: 3px dashed var(--color-accent);
  border-radius: 22px;
  padding: 22px 20px 18px 20px;
  min-width: 250px;
  max-width: 320px;
  flex: 1 1 225px;
  transition: border-width 0.25s, box-shadow 0.3s;
  box-shadow: 0 2px 16px var(--color-shadow);
}
.team-member:hover {
  border-width: 6px;
  box-shadow: 0 8px 34px #54e6bc60;
  background: var(--color-turquoise);
}
.team-member h3 { margin-bottom: 6px; }
.team-member span { color: var(--color-accent-dark); font-size: 1rem; margin-bottom: 8px; font-weight: 500; display:inline-block; }

.testimonials-preview-grid {
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  min-width: 240px;
  max-width: 400px;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 20px;
  box-shadow: 0 6px 16px var(--color-shadow);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.2s;
  border: 2px solid var(--color-accent);
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 8px; right: 12px;
  width: 16px; height: 16px;
  background: var(--color-pink);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}
.testimonial-card p {
  color: var(--color-black);
  font-size: 1.08rem;
  line-height: 1.5;
  font-style: italic;
  z-index: 1;
}
.testimonial-card strong, .testimonial-card span {
  color: var(--color-primary);
  font-size: 1.03rem;
  font-weight: 700;
  z-index: 1;
}
.testimonial-card .rating {
  color: #FFC107;
  font-size: 1.4em;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 18px 48px #bf876050;
  transform: rotate(2deg) scale(1.04);
}

/* FAQ Accordion Style */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-list dt {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  color: var(--color-accent-dark);
  font-weight: 700;
  margin-bottom: 6px;
  cursor: pointer;
  position: relative;
  padding-left: 22px;
}
.faq-list dt::before {
  content: '?';
  color: var(--color-yellow);
  position: absolute;
  left: 0; top: 0;
  font-size: 1.4em;
  font-family: cursive; font-weight: bold;
}
.faq-list dd {
  margin-left: 0;
  color: var(--color-black);
  background: var(--color-bg);
  border-radius: 14px;
  padding: 13px 14px 8px 18px;
  font-size: 1rem;
  border-left: 4px solid var(--color-turquoise);
  box-shadow: 0 2px 10px #344b5a13;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(90deg, var(--color-yellow) 0%, var(--color-pink) 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 54px 0 38px 0;
  border-radius: 0 0 54px 0;
  box-shadow: 0 8px 60px var(--color-yellow);
  position: relative;
  animation: swingHero 1.7s cubic-bezier(.85,0,.43,1.55);
}
@keyframes swingHero {
  0% { transform: translateY(-60px) skewY(-2deg) scale(.94); opacity: 0.2; }
  90% { transform: translateY(4px) skewY(2deg) scale(1.06); opacity: 1; }
  100% { transform: none; }
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-black);
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 2px;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--color-secondary);
  box-shadow: 0 4px 20px var(--color-shadow);
  z-index: 100;
  position: relative;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  width: 170px;
  height: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 19px;
}
nav a {
  font-size: 1em;
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition: background 0.23s, color 0.18s, transform 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--color-yellow);
  color: var(--color-accent-dark);
  transform: scale(1.04);
}
.button-primary {
  background: var(--color-accent-dark);
  color: #fff;
  padding: 10px 29px;
  border-radius: 26px;
  font-family: 'Playfair Display', serif;
  font-size: 1.07em;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2.5px solid var(--color-yellow);
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.18s, color 0.22s, transform 0.12s;
  margin-left: 6px;
  cursor: pointer;
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: var(--color-yellow);
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px) scale(1.05);
}
.button-link {
  background: transparent;
  color: var(--color-accent-dark);
  padding: 6px 15px;
  border-radius: 18px;
  font-weight: 600;
  border: 2px dashed var(--color-accent-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1em;
  margin-top: 8px;
  transition: background 0.14s, color 0.14s, border-color 0.24s;
}
.button-link:hover {
  background: var(--color-turquoise);
  color: var(--color-primary);
  border-color: var(--color-yellow);
}

/* === RESPONSIVE & MOBILE NAV === */
.mobile-menu-toggle {
  background: var(--color-accent-dark);
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 44px; height: 44px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 120;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-toggle:hover {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-white);
  box-shadow: 0 4px 36px var(--color-shadow);
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.73,.01,.23,.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 22px;
  padding-bottom: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--color-accent-dark);
  background: none;
  border: none;
  margin: 14px 20px 12px 0;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background 0.18s, color 0.11s;
  z-index: 1100;
}
.mobile-menu-close:hover {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  padding-left: 24px;
}
.mobile-nav a {
  font-size: 1.18em;
  padding: 12px 8px;
  border-radius: 12px;
  color: var(--color-primary);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition: background 0.18s, color 0.17s;
  min-width: 60vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-yellow);
  color: var(--color-accent-dark);
}

/* Show nav/hide nav for mobile */
@media (max-width: 1020px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/* Hide menu when not active */
@media (max-width: 1020px) {
  .mobile-menu { display: flex; }
}

/* === FOOTER === */
footer {
  margin-top: 60px;
  padding: 32px 0 24px 0;
  background: var(--color-secondary);
  box-shadow: 0 -6px 30px var(--color-shadow);
  border-radius: 36px 36px 0 0;
  width: 100%;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 1em;
  color: var(--color-accent-dark);
  padding: 5px 11px;
  border-radius: 12px;
  background: var(--color-bg);
  font-weight: 500;
  transition: background 0.16s, color 0.15s;
}
.footer-links a:hover {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.footer-contact {
  text-align: center;
  font-size: 0.98em;
  color: var(--color-primary);
  opacity: 0.65;
}

/* === CTA & BUTTONS === */
.cta {
  background: var(--color-yellow);
  border-radius: 40px;
  box-shadow: 0 2px 30px var(--color-turquoise);
  padding: 48px 12px;
  margin-bottom: 60px;
  text-align: center;
}
.cta h2 { margin-bottom: 18px; color: var(--color-primary); }
.cta .button-primary { margin-top: 16px; }

/* === MAP PLACEHOLDER === */
.map-placeholder {
  background: var(--color-turquoise);
  color: var(--color-primary);
  border-radius: 18px;
  padding: 16px 22px;
  font-size: 1.1rem;
  margin: 16px 0 20px 0;
  box-shadow: 0 2px 12px #a25e2811;
  text-align: center;
}

/* === LINK ELEMENTS & STATES === */
a {
  color: var(--color-accent-dark);
  transition: color 0.14s;
}
a:hover, a:focus {
  color: var(--color-primary);
}

ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.01em;
  line-height: 1.45;
}
ul li img {
  width: 20px; height: auto;
  margin-right: 8px;
}

/* === VISUAL EFFECTS & DECORATIVE ELEMENTS === */
.section {
  position: relative;
  overflow: hidden;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  right: -60px;
  bottom: -50px;
  width: 160px; height: 160px;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -30px;
  top: -40px;
  width: 100px; height: 100px;
  background: var(--color-pink);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}
/* create energy with floating icons */
@media (min-width: 700px) {
  .hero::before {
    content: '';
    position: absolute;
    top: 12px; right: 40px;
    width: 68px; height: 68px;
    background: var(--color-yellow);
    opacity: .25; border-radius: 50%;
    filter: blur(16px);
    z-index: 0;
    pointer-events: none;
    animation: floatpop 4s infinite alternate;
  }
}
@keyframes floatpop {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(10px) scale(1.08); }
}

/* --- SPACING PATTERNS AND FLEXBOX LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 22px 22px 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -6px 32px var(--color-shadow);
  z-index: 3000;
  gap: 20px;
  animation: popupBanner 0.9s cubic-bezier(.81,0,.09,1.15);
}
@keyframes popupBanner {
  0% { transform: translateY(80px); opacity: 0.2; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 200px;
  margin-right: 20px;
  font-size: 1em;
  color: var(--color-white);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .button-link {
  font-size: 1em;
  border-radius: 24px;
  padding: 6px 23px;
  margin: 0 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.19s, color 0.18s;
  background: var(--color-accent-dark);
  color: #fff;
}
.cookie-banner .button-link {
  background: var(--color-yellow);
  color: var(--color-primary);
  border: 2px dashed var(--color-accent-dark);
}
.cookie-banner button:hover, .cookie-banner .button-link:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(0,0,0,0.48);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .28s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-black);
  border-radius: 18px;
  box-shadow: 0 8px 40px #344b5a38;
  padding: 38px 28px 30px 28px;
  width: 98vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: popInModal .38s cubic-bezier(.79,.09,.36,1.14);
}
@keyframes popInModal {
  0% { transform: scale(.75) translateY(30px); opacity: 0.3; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  color: var(--color-accent-dark);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05em;
}
.cookie-toggle-row label { cursor: pointer; }
.cookie-toggle-row input[type="checkbox"] {
  appearance: none;
  width: 26px; height: 14px;
  background: var(--color-secondary);
  border-radius: 8px;
  position: relative;
  transition: background .22s;
  outline: none;
  border: 2px solid var(--color-accent-dark);
}
.cookie-toggle-row input[type="checkbox"]:checked {
  background: var(--color-yellow);
}
.cookie-toggle-row input[type="checkbox"]:before {
  content: '';
  position: absolute; left: 2px; top: 2px;
  width: 10px; height: 10px;
  background: var(--color-accent-dark);
  border-radius: 50%;
  transition: transform 0.20s;
}
.cookie-toggle-row input[type="checkbox"]:checked:before {
  transform: translateX(10px);
  background: var(--color-accent-dark);
}
.cookie-modal-close {
  position: absolute;
  right: 15px; top: 9px;
  background: none; border: none; color: var(--color-accent-dark);
  font-size: 1.7em; padding: 3px 6px;
  border-radius: 10px;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-toggle-row .cookie-essential {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1em;
  margin-left: 4px;
}
/* Mark essential cookie as always on, disabled */
.cookie-toggle-row input[type="checkbox"][disabled] {
  background: var(--color-turquoise);
  opacity: 0.7;
  cursor: not-allowed;
}

/* === RESPONSIVE DESIGN (MOBILE FIRST) === */
@media (max-width: 940px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .features-grid, .team-grid, .testimonials-preview-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero .content-wrapper { gap: 12px; }
  .card, .feature-item, .testimonial-card, .team-member {
    min-width: 160px;
    max-width: 100%;
    padding: 18px 10px;
  }
  .features-grid, .team-grid, .card-container, .testimonials-preview-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .content-wrapper, .text-section {
    gap: 10px;
  }
  .cta { padding: 30px 8px; border-radius: 21px; }
  .footer-links { gap: 7px; }
  .footer-contact { font-size: 0.87em; }
  .map-placeholder { padding: 12px 7px; border-radius: 10px; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 4px 16px 10px;
    gap: 8px;
    font-size: 0.98em;
  }
  .cookie-banner p { margin-right: 0; }
  .cookie-banner .cookie-actions { gap: 8px; }
  .cookie-modal-content { max-width: 95vw; padding: 22px 8px 16px 14px; }
}
@media (max-width: 480px) {
  header .container { gap: 10px; padding: 4px 2px; min-height: 55px; }
  .logo img { width: 120px; }
  h1 { font-size: 1.3rem; margin-bottom: 8px; }
  h2 { font-size: 1.03rem; margin-bottom: 6px; }
  .hero { padding: 18px 0 10px 0; min-height: 130px; border-radius: 0 0 22px 0; }
  .section, main > section { margin-bottom: 22px; padding: 14px 1px; border-radius: 10px; }
  .testimonial-card, .feature-item, .team-member, .card { padding: 9px 5px; font-size: 0.96em; }
  .cta { padding: 13px 0px; border-radius: 10px; }
}

/* === ANIMATIONS and INTERACTIONS === */
.button-primary, .button-link, .feature-item, .team-member, .testimonial-card, .mobile-menu, nav a, .cookie-banner button {
  transition: box-shadow .19s, transform .13s, background .23s, color .13s, border-color .18s;
}
.button-primary:active, .button-link:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .feature-item:hover, .team-member:hover, .testimonial-card:hover {
    filter: brightness(1.04);
  }
}

/* === VISIBILITY HELPERS === */
.hidden { display: none !important; }

/* === ACCESSIBILITY & GENERAL === */
:focus {
  outline: 2px dashed var(--color-accent-dark);
  outline-offset: 2px;
}

/* === Z-INDEX LAYERING === */
header, .mobile-menu { z-index: 2000; }
footer { z-index: 300; }

/* === PAGE SPECIFIC TWEAKS === */
.text-section ul, .text-section ol {
  margin-left: 17px;
}
.text-section ul li, .text-section ol li { margin-bottom: 8px; }

/* Thank you success highlight */
main .button-primary[href="/"] {
  background: var(--color-turquoise);
  color: var(--color-black);
  border-color: var(--color-primary);
  margin-top: 28px;
}
@media (min-width: 800px) {
  .content-wrapper.text-section { max-width: 650px; }
}
