/* 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, 
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;
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #273238;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #E66422;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.23,1.21,.43,1.01);
}
a:hover, a:focus {
  color: #C35019;
  text-underline-offset: 3px;
  text-decoration: underline;
}

/* BRAND COLORS */
:root {
  --color-primary: #273238;
  --color-secondary: #FFF8F0;
  --color-accent: #E66422;
  --color-accent-dark: #C35019;
  --color-card-bg: #FFFFFF;
  --color-section-bg: #FDE9BD;
  --color-feature-bg: #F7F0E6;
  --color-box-shadow: rgba(39, 50, 56, 0.12);
  --color-text-dark: #273238;
  --color-text-light: #FFF;
  --color-cta-bg: #FFCB26;
}

/* PLAYFUL & DYNAMIC FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600,400|Open+Sans:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.14;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: var(--color-accent);
  text-shadow: 0 2px 0 #ffd89a;
}
h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
}

p, li, dd, dt {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}
p:last-child, li:last-child, dd:last-child {
  margin-bottom: 0;
}

/* CONTAINER & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-section-bg);
  border-radius: 28px;
  box-shadow: 0 3px 20px var(--color-box-shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-card-bg);
  border-bottom: 3px solid var(--color-accent);
  width: 100%;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  transition: color 0.18s cubic-bezier(.23,1.21,.43,1.01);
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--color-accent);
}

header .btn-primary {
  margin-left: 30px;
}

/* HAMBURGER MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.2rem;
  padding: 6px 18px 8px 18px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(39,50,56,0.10);
  margin-left: 20px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.16s cubic-bezier(.23,1.21,.43,1.01), transform 0.18s cubic-bezier(.23,1.21,.43,1.01);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-accent-dark);
  transform: scale(1.07) rotate(-6deg);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 1500;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, #fff6cd 80%, #fde9bd 100%);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.6,1.88,.23,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 40px 0 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 26px;
  background: var(--color-accent-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.6rem;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(231,100,34,0.13);
  transition: background 0.18s, transform 0.12s;
}
.mobile-menu-close:hover {
  background: #AA3B06;
  transform: scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 50px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-primary);
  padding: 12px 0;
  border-radius: 10px;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
@media (max-width: 1050px) {
  header nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1051px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 28px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.13s;
}
footer nav a:hover {
  color: var(--color-accent);
}
footer div:last-child {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
@media (max-width: 780px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* BUTTONS */
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(230, 100, 34, 0.11);
  padding: 14px 32px;
  margin-top: 10px;
  transition: background 0.17s, transform 0.13s;
  cursor: pointer;
  letter-spacing: 0.5px;
  outline: none;
  position: relative;
}
.btn-primary:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  border-radius: 14px;
  opacity: 0;
  box-shadow: 0 0 0 4px #ffd89a;
  z-index: 0;
  transition: opacity 0.18s;
  pointer-events: none;
}
.btn-primary:focus:after {
  opacity: .7;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent-dark);
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
}

/* PLAYFUL DYNAMIC SHADOWS & EFFECTS */
.card, .feature, .service, .testimonial-card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 2.5px 14px var(--color-box-shadow);
  padding: 28px 22px;
  transition: box-shadow 0.22s, transform 0.19s cubic-bezier(.46,1.31,.5,1.12);
  margin-bottom: 20px;
  position: relative;
}
.card:hover,
.feature:hover,
.service:hover,
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(230, 100, 34, 0.11), 0 4px 16px var(--color-box-shadow);
  transform: translateY(-8px) rotate(-2deg) scale(1.03);
}

/* 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-feature-bg);
  color: var(--color-text-dark);
  max-width: 800px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: var(--color-text-dark);
  font-size: 1.13rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--color-accent-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* HERO & CTA */
.hero {
  background: linear-gradient(100deg, #FFE8C7 60%, #FFF8F0 120%);
  border-radius: 0 0 60px 60px;
  margin-bottom: 48px;
  min-height: 260px;
  animation: hero-fade-in 1.1s cubic-bezier(.23,1.21,.43,1.01) 0.09s both;
}
@keyframes hero-fade-in {
  0% { opacity: 0; transform: translateY(-32px) }
  100% { opacity: 1; transform: translateY(0) }
}
.hero .container, .cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 210px;
}
.hero .content-wrapper, .cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta {
  background: var(--color-cta-bg);
  border-radius: 38px;
  margin-bottom: 30px;
  box-shadow: 0 5px 28px rgba(255,203,38,0.13);
  animation: cta-bounce 1.7s cubic-bezier(.46,1.31,.5,1.12) 0.15s backwards;
}
@keyframes cta-bounce {
  0% {transform: scale(.97) translateY(32px); }
  80% {transform: scale(1.06) translateY(-10px);}
  100% {transform: scale(1) translateY(0);}
}

/* FEATURE GRID & CARDS */
.feature-grid, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 230px;
  max-width: 265px;
  min-width: 185px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--color-feature-bg);
  border: 2.8px dashed #FFD89A;
  padding: 24px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(231, 100, 34, 0.04);
}
.feature img {
  width: 38px; height: 38px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 15px;
  }
  .feature {
    max-width: 48%;
    min-width: 145px;
  }
}
@media (max-width: 650px) {
  .feature-grid, .service-cards {
    flex-direction: column;
    gap: 16px;
  }
}

.service-cards {
  margin-top: 20px;
}
.service {
  flex: 1 1 260px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-section-bg);
  border: 2.2px solid #FFD89A;
  padding: 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2.5px 16px rgba(230,100,34,0.07);
  transition: box-shadow 0.16s, transform 0.13s;
}
.service h3 {
  font-size: 1.07rem;
}
.service span {
  background: var(--color-accent);
  color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 5px 16px;
}

/* CASE STUDIES */
.case {
  background: var(--color-feature-bg);
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(39,50,56,0.08);
  padding: 17px 18px;
  margin-bottom: 22px;
  border-left: 5px solid var(--color-accent);
  animation: case-slide-in 0.82s cubic-bezier(.23,1.21,.43,1.01);
}
@keyframes case-slide-in {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

/* FAQ */
.faq dl {
  margin-top: 12px;
}
.faq dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.faq dd {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  margin-left: 12px;
}

/* PROCESS LIST */
.process ol {
  list-style: decimal inside;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 14px;
}
.process li span {
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 6px;
}

/* ABOUT US PAGE */
.about ul, .team ul, .mission ul, .contact ul {
  margin-top: 10px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-preview a {
  color: var(--color-accent);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 2px dotted var(--color-accent);
  padding-bottom: 2px;
  transition: color 0.19s;
}
.about-preview a:hover {
  color: var(--color-primary);
}

/* MAP & CONTACT */
.map {
  background: var(--color-section-bg);
  border-radius: 28px;
}

/* THANK YOU PAGE */
.thank-you .content-wrapper {
  padding: 44px 18px;
  background: linear-gradient(103deg,#fff6cd 75%, #fde9bd 100%);
  border-radius: 34px;
  box-shadow: 0 4px 36px rgba(230,100,34,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.thank-you h1 {
  color: var(--color-accent);
  margin-bottom: 6px;
}
.thank-you a.btn-primary {
  margin-top: 18px;
}

/* LEGAL PAGE STYLES */
.legal h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}
.legal h2 {
  font-size: 1.2rem;
  color: var(--color-accent-dark);
  margin-top: 30px;
  margin-bottom: 10px;
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
.legal li {
  margin-bottom: 10px;
}

/* SPACING ADHERENCE */
.card, .feature, .service, .testimonial-card, .case {
  margin-bottom: 20px;
}
.section, .cta, .hero, .about-preview, .services-preview, .about, .team, .mission, .map, .thank-you {
  margin-bottom: 60px;
}
.card-container, .feature-grid, .content-grid, .service-cards, .testimonial-board {
  gap: 24px;
}

/* RESPONSIVE DESIGN */
@media (max-width:1080px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 680px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  .feature, .service {
    padding: 10px 7px;
    border-radius: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: .97rem;
  }
}
@media (max-width:500px) {
  .section {
    padding: 20px 4vw;
    border-radius: 16px;
  }
  .hero, .cta {
    border-radius: 0 0 28px 28px;
    padding: 20px 5vw;
  }
}

/* TRANSITIONS & HOVER ANIMATIONS */
.section, .feature, .card, .service, .testimonial-card, .case, .about-preview, .cta {
  transition: box-shadow 0.21s, background 0.18s, transform .16s;
}
.feature:hover, .service:hover, .card:hover, .testimonial-card:hover, .case:hover {
  box-shadow: 0 8px 36px rgba(230,100,34,0.13);
  transform: translateY(-5px) scale(1.02) rotate(-1deg);
}

/* MICRO-INTERACTIONS: ICON ANIMATION */
.feature img, .service img {
  transition: transform 0.18s cubic-bezier(.46,1.31,.5,1.12);
}
.feature:hover img, .service:hover img {
  transform: rotate(-13deg) scale(1.12);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  z-index: 2000;
  left: 0; right: 0;
  bottom: 0;
  background: #fff8ef;
  box-shadow: 0 -4px 34px rgba(39,50,56,0.11);
  border-top: 2.8px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 30px 20px 30px;
  font-size: 1.08rem;
  animation: cookie-slide-in 0.78s cubic-bezier(.43,1.77,.77,1.01);
}
@keyframes cookie-slide-in {
  0% { opacity: 0; transform: translateY(70px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 8px 22px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(230,100,34,0.09);
  outline: none;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-accent-dark);
}
.cookie-btn.reject {
  background: #FFF;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFE9D9;
  color: #AA3B06;
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.settings:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  inset: 0;
  background: rgba(39,50,56,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.18s both;
}
@keyframes fade-in {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fffefb;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(39,50,56,0.15);
  padding: 30px 19px;
  width: 100%;
  max-width: 350px;
  animation: modal-pop-in 0.32s cubic-bezier(.43,1.77,.77,1.01);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@keyframes modal-pop-in {
  0% { opacity: 0; transform: translateY(44px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: var(--color-accent-dark);
  margin-bottom: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF7E6;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 0.95rem;
}
.cookie-category.essential {
  opacity: 0.72;
  color: #AAA;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #ffd85c;
  border-radius: 14px;
  outline: none;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-accent);
}
.cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(39,50,56,0.13);
  transition: left 0.19s;
}
.cookie-toggle:checked::after {
  left: 19px;
}
.cookie-modal .btn-primary {
  margin-top: 12px;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 18px;
  background: transparent;
  color: var(--color-accent-dark);
  border: none;
  font-size: 1.14rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover {
  color: #000;
}

/* CUSTOM SCROLLBAR: playful accent */
::-webkit-scrollbar {
  width: 11px;
  background: #FDE9BD;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(105deg, #E66422 75%, #FFF8F0 100%);
  border-radius: 11px;
}

/* UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-center { text-align: center !important; }
.w100 { width: 100% !important; }

/* FORM STYLES (for contact forms if needed) */
input, textarea, select {
  font-family: inherit;
  font-size: 1.05rem;
  border-radius: 8px;
  border: 1.7px solid #FFD89A;
  padding: 11px 12px;
  outline: none;
  background: #fffdf8;
  margin-bottom: 14px;
  transition: border 0.16s, box-shadow 0.15s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border: 2.1px solid var(--color-accent);
  box-shadow: 0 2px 12px rgba(39,50,56,0.13);
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* ANIMATED ACCENT BLOB DECOR (example, can style class .blob-accent if present) */
.blob-accent {
  position: absolute;
  top: -36px; right: -28px;
  width: 110px; height: 80px;
  background: #FFCB26;
  opacity: 0.26;
  border-radius: 60% 40% 45% 55%;
  filter: blur(4px);
  animation: blobwiggle 8s infinite linear alternate;
  z-index: 1;
}
@keyframes blobwiggle {
  from { border-radius: 58% 42% 54% 46%; transform: scaleX(1); }
  to { border-radius: 40% 60% 35% 65%; transform: scaleX(.96); }
}

/* PLAYFUL DYNAMIC EXTRAS */
.hero h1, .cta h2 {
  font-size: 2.2rem;
  color: var(--color-accent);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 0 #ffd89a;
}

@media (max-width:600px) {
  .hero h1, .cta h2 {
    font-size: 1.2rem;
  }
}

/* END OF CSS */
