/* RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #27343B;
  background: #F5F2ED;
  min-height: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #8A6C3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #E4880E;
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
th, td {
  padding: 12px 16px;
}

/* BRAND COLORS (Vibrant Energetic Style) */
:root {
  --color-primary: #27343B;
  --color-secondary: #8A6C3B;
  --color-accent: #F5F2ED;
  --color-electric: #00E1E7;
  --color-amber: #FFE24B;
  --color-raspberry: #F42E6C;
  --color-bg: #F5F2ED;
  --color-dark: #27343B;
  --color-white: #fff;
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #27343B;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.15;
  letter-spacing: -1px;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }
p, ul, ol, table, li, th, td {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

strong, b { font-weight: 700; }

/* SPACING & CONTAINMENT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .section,
  main > section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* FLEXBOX CARD & LAYOUT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 6px 24px 0 rgba(36,32,58,0.10);
  border-radius: 18px;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
  padding: 32px 24px;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-0.5deg);
  box-shadow: 0 16px 42px 0 rgba(36,32,58,0.14);
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 2px 16px 0 rgba(36,32,58,0.09);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 20px;
  transition: box-shadow 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(36,32,58,0.14);
}

.testimonial-card span strong {
  color: var(--color-secondary);
  letter-spacing: 0.2px;
  font-size: 1.02em;
}

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

/* HEADER LAYOUT */
header {
  background: var(--color-primary);
  color: #fff;
  position: relative;
}
.header-flex {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 0;
}
.header-flex > a img {
  height: 48px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  flex: 1 1 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12em;
}
.main-nav a {
  color: #fff;
  position: relative;
  font-weight: 700;
  transition: color 0.19s;
  padding: 6px 7px;
  border-radius: 5px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-amber);
  background: rgba(0,225,231,0.14);
}

.header-flex .cta.primary {
  margin-left: 16px;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 17px;
  }
  .header-flex {
    gap: 22px;
  }
  .header-flex > a img {
    height: 38px;
  }
}
@media (max-width: 768px) {
  .header-flex .cta.primary {
    display: none;
  }
  .header-flex > a img {
    height: 32px;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 24px;
  background: var(--color-amber);
  border: none;
  font-size: 2em;
  color: var(--color-primary);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, box-shadow 0.19s;
  z-index: 101;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(36,32,58,0.11);
}
.mobile-menu-toggle:focus { outline: 3px solid var(--color-electric); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,52,59,0.96);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.85,0,.22,1);
  z-index: 9999;
  padding-top: 72px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2.1em;
  color: var(--color-amber);
  background: none;
  border: none;
  padding: 6px 16px 6px 6px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10002;
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { background: rgba(245,242,237,0.16); outline: 3px solid var(--color-electric); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding-left: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.33em;
  font-weight: 600;
  padding: 18px 0 12px 0;
  border-bottom: 1px solid rgba(245,242,237,0.13);
  width: 100%;
  transition: color 0.12s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--color-electric);
  background: rgba(0,225,231,0.18);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* HERO & KEY VISUALS */
.hero {
  background: linear-gradient(110deg, #00E1E7 0%, #FFE24B 120%);
  color: var(--color-dark);
  min-height: 340px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 6px 32px 0 rgba(39,52,59,0.06);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--color-primary);
  letter-spacing: -1.2px;
  margin-bottom: 0.6em;
}
.hero p {
  color: var(--color-primary);
  font-size: 1.15em;
  margin-bottom: 1.5em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero { min-height: 220px; }
  .hero .container { padding: 16px 0; }
  .hero h1 { font-size: 1.4rem; }
}

/* FEATURE GRID (INDEX) */
.features {
  background: var(--color-bg);
}
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(39,52,59,0.08);
  padding: 32px 18px;
  flex: 1 1 170px;
  min-width: 200px;
  max-width: 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.21s, box-shadow 0.17s;
  margin-bottom: 20px;
}
.feature-box:hover {
  transform: translateY(-5px) scale(1.04) rotate(0.2deg);
  box-shadow: 0 6px 32px 0 rgba(0,225,231,0.18);
  z-index: 1;
}
.feature-box img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}
.feature-box h3 {
  font-size: 1.22rem;
  color: var(--color-raspberry);
}
.feature-box p {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 400;
}
@media (max-width: 920px) {
  .feature-grid { gap: 14px; }
  .feature-box { min-width: 140px; padding: 22px 10px; }
}
@media (max-width: 700px) {
  .feature-grid { flex-direction: column; gap: 20px; }
  .feature-box { max-width: 100%; width: 100%; }
}

/* CALL TO ACTION(s) */
.cta {
  display: inline-block;
  background: var(--color-electric);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13em;
  font-weight: 700;
  border-radius: 8px;
  padding: 16px 29px;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px 0 rgba(39,52,59,0.13);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  border: none;
  transition: background 0.2s, color 0.18s, box-shadow 0.21s, transform 0.11s;
  cursor: pointer;
}
.cta.primary {
  background: var(--color-electric);
  color: var(--color-primary);
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-raspberry);
  color: #fff;
}
.cta.secondary {
  color: #fff;
  background: var(--color-raspberry);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-electric);
  color: var(--color-primary);
}
.cta:active {
  transform: scale(0.98);
}

/* About Snippet / About Page */
.about-snippet, .about, .team, .approach {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(36,32,58,0.06);
}
.about-snippet ul, .about ul, .team ul, .approach ul {
  margin-bottom: 24px;
}
.about-snippet ul li,
.about ul li,
.team ul li,
.approach ul li {
  margin-bottom: 13px;
  padding-left: 14px;
  position: relative;
}
.about-snippet ul li:before,
.about ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-raspberry);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.about ul li > p,
.team ul li > p {
  font-size: 0.97em;
  color: #27343B;
  margin-top: 3px;
}

/* Services PAGE */
.services, .service-details, .process {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(39,52,59,0.08);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 8px 0;
  justify-content: flex-start;
}
.service-box {
  background: var(--color-electric);
  border-radius: 12px;
  flex: 1 1 240px;
  max-width: 290px;
  padding: 28px 18px 20px 18px;
  box-shadow: 0 6px 32px 0 rgba(0,225,231,0.13);
  color: var(--color-primary);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.13s;
  min-width: 180px;
}
.service-box h2 {
  font-size: 1.24em;
  color: var(--color-raspberry);
}
.service-box:hover {
  box-shadow: 0 16px 40px 0 rgba(244,46,108,0.16);
  transform: translateY(-2px) scale(1.029);
}
@media (max-width: 900px) {
  .service-list {
    gap: 10px;
  }
  .service-box {
    min-width: 140px;
    padding: 18px 6px 12px 6px;
  }
}
@media (max-width: 700px){
  .service-list {
    flex-direction: column;
  }
  .service-box {
    max-width: 100%;
    width: 100%;
  }
}

/* Testimonials & Snippets */
.testimonials, .testimonials-snippet {
  background: linear-gradient(96deg,#FFE24B 0%,#00E1E7 120%);
  border-radius: 16px;
  padding-top: 32px;
  padding-bottom: 36px;
}
.testimonials h1, .testimonials-snippet h2 {
  color: var(--color-primary);
}
.testimonial-stars, .testimonial-stars-overall {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.testimonial-stars img, .testimonial-stars-overall img {
  height: 22px;
  width: 22px;
  filter: drop-shadow(0 2px 6px rgba(39,52,59,0.06));
}
.testimonial-stars-overall span, .testimonial-stars span {
  font-size: 1.07em;
  color: var(--color-primary);
  font-weight: 700;
  margin-left: 10px;
}

/* CASE STUDIES (references) */
.case-studies {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(39,52,59,0.08);
}
.case-study {
  margin-bottom: 32px;
  border-left: 5px solid var(--color-raspberry);
  background: var(--color-accent);
  padding: 26px 22px 18px 20px;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(39,52,59,0.07);
}
.case-study:last-child {
  margin-bottom: 0;
}
.case-study h3 { margin-bottom: 7px; color: var(--color-raspberry); }

/* PRICING TABLE (prices.html)  */
.pricing table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 34px;
}
.pricing th {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-align: left;
  font-size: 1.05em;
}
.pricing td {
  background: #fff;
  color: var(--color-primary);
  border-bottom: 1.5px solid var(--color-accent);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.pricing tr:last-child td {
  border-bottom: none;
}

/* FAQ */
.faq {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 11px 0 rgba(39,52,59,0.08);
}
.faq-list h3 {
  color: var(--color-raspberry);
  margin-bottom: 6px;
  margin-top: 17px;
  font-size: 1.08em;
}
.faq-list p {
  margin-bottom: 6px;
}

/* CONTACT PAGE */
.contact-form, .contact-details, .map-directions {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(39,52,59,0.08);
  margin-bottom: 32px;
}
.privacy-notice {
  background: rgba(0,225,231,0.09);
  border-radius: 7px;
  padding: 16px 16px 10px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--color-primary);
  font-size: 0.98em;
  margin-bottom: 14px;
}
.privacy-notice img { height: 28px; margin-right: 7px; }

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 30px 0;
  position: relative;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-flex > a img {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1.07em;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-amber);
}
.footer-contact {
  font-size: 1.01em;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}
.footer-contact img { height: 18px; width: auto; margin-right: 5px; }
@media (max-width: 800px) {
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-flex > a img {
    height: 32px;
  }
}

/* LEGAL/POLICY PAGES*/
.legal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(39,52,59,0.07);
  padding-bottom: 32px;
}
.legal h1 { color: var(--color-raspberry); font-size: 2.22em; }
.legal h2 { color: var(--color-primary); }

/* THANK YOU PAGE */
.thank-you {
  background: linear-gradient(100deg,#00E1E7 0%,#FFE24B 100%);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 40px 0 rgba(0,225,231,0.11);
}
.thank-you ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.thank-you .cta { margin: 24px auto 0 auto; }

/* UTILS: BADGES, ELECTRIC COLORS FOR ENERGY */
.badge, .electric-badge {
  display: inline-block;
  background: var(--color-electric);
  color: var(--color-primary);
  border-radius: 6px;
  padding: 4px 11px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-right: 8px;
  margin-bottom: 6px;
}

/* Gaps and spacing for all cards/sections (MANDATORY) */
section > *,
.content-wrapper > *,
.case-studies > *,
.services > *,
.faq-list > *,
.card-container > *,
.feature-grid > *,
.service-list > *,
.card {
  margin-bottom: 20px;
}

/* Gaps in flexbox containers (MANDATORY) */
.card-container, .feature-grid, .service-list, .footer-flex, .content-grid, .text-image-section {
  gap: 20px;
}
@media (max-width: 600px){
  .card-container,
  .feature-grid,
  .service-list,
  .footer-flex,
  .content-grid,
  .text-image-section {
    gap: 12px;
  }
}

/* MICRO-INTERACTIONS */
button, a.cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.12s, box-shadow 0.13s, transform 0.08s;
}
a.cta:active, button:active, .mobile-menu-toggle:active {
  transform: scale(0.97);
}

/* TRANSITIONS FOR NAV */
.main-nav a, .footer-nav a {
  transition: color 0.12s, background 0.10s;
}

/* SHADOW/ROUNDED for energetic feel */
.section, main > section, .card, .feature-box, .testimonial-card, .thank-you, .about-snippet, .about, .team, .approach, .services, .service-details, .process, .case-study {
  box-shadow: 0 2px 16px 0 rgba(0,225,231, 0.09);
}

/* HIGHLIGHT list items */
ul li strong, ol li strong {
  color: var(--color-raspberry);
}

/* Responsive Flex Directions */
@media (max-width: 768px){
  .footer-flex, .content-grid { flex-direction: column; }
  .feature-grid { flex-direction: column; }
  .main-nav { display: none; }
}

/* Z-INDEX for menu & overlays */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 999; }

/* FOCUS STYLES FOR A11Y */
:focus {
  outline: 3px solid var(--color-electric);
  outline-offset: 2px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  color: var(--color-primary);
  z-index: 20000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 40px 0 rgba(39,52,59,0.19);
  padding: 26px 26px 22px 30px;
  min-height: 70px;
  font-size: 1em;
  gap: 24px;
  animation: fadeUpConsent 0.7s cubic-bezier(.26,1,.52,1);
}
@keyframes fadeUpConsent {
  from {transform: translateY(54px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  background: var(--color-electric);
  color: var(--color-primary);
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  padding: 12px 20px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(0, 225, 231, 0.09);
  transition: background 0.16s, color 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-raspberry);
  color: #fff;
}
.cookie-banner .cookie-banner-settings {
  background: var(--color-amber);
  color: var(--color-primary);
}
.cookie-banner .cookie-banner-settings:hover, .cookie-banner .cookie-banner-settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 700px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 8px 12px 8px;
    font-size: 0.97em;
  }
  .cookie-banner .cookie-banner-actions {
    gap: 10px; flex-wrap: wrap; }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,52,59,0.75);
  z-index: 30000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.27s;
}
.cookie-modal-overlay.active { display: flex; }
@keyframes fadeInModal {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 12px 42px 0 rgba(39,52,59,0.32);
  max-width: 420px;
  width: 94vw;
  padding: 42px 30px 33px 30px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popInModal 0.29s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popInModal {
  from {transform: scale(0.93); opacity:0;}
  to {transform: scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.33em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  gap: 14px;
}
.cookie-category label {
  font-weight: 600;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  vertical-align: middle;
}
.switch input { display: none; }
.switch .slider {
  background: #DDD;
  border-radius: 24px;
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background 0.27s;
}
.switch input:checked + .slider {
  background: var(--color-electric);
}
.switch .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.7px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s cubic-bezier(.67,.12,.54,1.42);
  box-shadow: 0 1px 7px 0 rgba(0,0,0,0.09);
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}
.switch .slider {
  box-shadow: 0 2px 6px 0 rgba(36,32,58,0.06);
}

.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  align-items: center;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  border: none;
  background: var(--color-amber);
  color: var(--color-primary);
  border-radius: 5px;
  font-size: 1.25em;
  cursor: pointer;
  padding: 8px 13px;
  transition: background 0.16s, color 0.12s;
  z-index: 2;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--color-raspberry);
  color: #fff;
  outline: 3px solid var(--color-electric);
}
@media (max-width: 490px) {
  .cookie-modal {
    padding: 15vw 4vw 10vw 4vw;
    max-width: 99vw;
    min-width: unset;
  }
}

/* Hide scroll when mobile menu or cookie modal open */
body.mobile-menu-open,
body.cookie-modal-open {
  overflow: hidden;
}

/* ACCESSIBILITY - REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
