/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #f9f9fc;
  color: #26234d;
  line-height: 1.666;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
:root {
  --primary: #26234d;
  --secondary: #f4ebd9;
  --accent: #e55a25;
  --accent-hover: #ba3700;
  --surface: #fff;
  --fun-green: #2eb67d;
  --fun-yellow: #ffe25b;
  --fun-blue: #46a6ff;
  --shadow: rgba(38,35,77,.10);
  --shadow-strong: rgba(38,35,77,.16);
  --card-radius: 22px;
  --btn-radius: 20px;
  --transition: .18s cubic-bezier(.4,0,.2,1);
  --gap-section: 32px;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover,
a:focus {
  color: var(--accent);
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  outline: none;
  border: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
ul { list-style-position: inside; }
li { margin-bottom: 10px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.025em;
}
h1 { font-size: 2.75rem; line-height: 1.12; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.05rem; }
}
p, .text-section {
  color: #332e63;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
strong { font-weight: 700; color: var(--accent); }

/* --- Playful font for accents --- */
.cta-btn, .topic-tags span, .feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .04em;
  font-weight: 700;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 36px;
  }
}

/* === MAIN NAVIGATION === */
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--surface);
  padding: 0 0 0 0;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 18px;
  border-radius: 20px;
  color: var(--primary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  position: relative;
}
.main-nav a.cta-btn {
  background: var(--accent);
  color: #fff;
  border-radius: var(--btn-radius);
  font-size: 1.08rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0 3px 12px var(--shadow);
  letter-spacing: .05em;
  text-shadow: 0 2px 8px rgba(38,35,77,0.12);
  transition: background var(--transition), transform var(--transition);
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: var(--accent-hover);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--fun-yellow);
  color: var(--accent);
  transform: translateY(-2px);
}
.main-nav img {
  margin-right: 8px;
  vertical-align: middle;
  height: 46px;
}

header {
  background: var(--surface);
  box-shadow: 0 1px 10px var(--shadow);
  position: relative;
  z-index: 102;
  padding: 0;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 110;
  position: absolute;
  top: 16px;
  right: 18px;
  box-shadow: 0 2px 16px var(--shadow-strong);
  border: none;
  transition: background var(--transition), box-shadow var(--transition);
}
.mobile-menu-toggle:active {
  background: var(--accent-hover);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 92vw;
  max-width: 350px;
  background: var(--secondary);
  box-shadow: 4px 0 16px var(--shadow-strong);
  z-index: 9999;
  padding: 40px 24px 24px 24px;
  transform: translateX(-105%);
  transition: transform 0.26s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  background: var(--fun-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.6rem;
  position: absolute;
  top: 14px; right: 18px;
  z-index: 10;
  box-shadow: 0 2px 16px var(--shadow);
  transition: background var(--transition);
}
.mobile-menu-close:active {
  background: var(--fun-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 12px;
  border-radius: 16px;
  color: var(--primary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-yellow);
  color: var(--accent);
  transform: translateX(4px);
}

@media (max-width: 1060px) {
  .main-nav a:not(:first-child) {
    font-size: .98rem;
    padding: 10px 11px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === HERO & CTA === */
.hero-block {
  background: var(--fun-yellow);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 48px var(--shadow-strong);
  padding: 38px 24px 38px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  gap: 20px;
  text-align: center;
  animation: heroPopIn .6s cubic-bezier(.4,0,.2,1);
}
@keyframes heroPopIn {
  0% { transform: scale(.93) translateY(64px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}

.cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 13px 32px 13px 32px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  margin-bottom: 12px;
  font-weight: bold;
  box-shadow: 0 2px 12px var(--shadow-strong);
  letter-spacing: .05em;
  text-shadow: 0 1px 8px rgba(38,35,77,0.11);
  transition: background var(--transition), transform var(--transition);
  animation: ctaBounce .7s 1;
}
@keyframes ctaBounce {
  0% { transform: scale(.92) translateY(8px); }
  65% { transform: scale(1.07) translateY(-4px); }
  100% { transform: scale(1) translateY(0); }
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-hover);
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 6px 20px var(--shadow);
}

/* === FLEXBOX: SPACING PATTERNS === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* ===== PLAYFUL DYNAMIC CARDS ===== */
.features-grid, .feature-grid, .services-list, .values-list, .curated-collections-list, .highlights-list, .reviews-list, .services-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid .feature-item, .feature-grid .feature-item, .values-list .feature-item, .highlights-list .highlight-item, .reviews-list .review-card, .services-overview-grid .service-card, .curated-collections-list .collection-preview, .services-list .service-item {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: 0 4px 24px var(--shadow);
  padding: 26px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: cardWiggle .47s cubic-bezier(.4,0,.2,1);
}
@keyframes cardWiggle {
  0% { transform: scale(.93) rotate(-8deg) skewY(-2deg); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.features-grid .feature-item:hover,
.feature-grid .feature-item:hover,
.services-overview-grid .service-card:hover,
.cards:hover,
.reviews-list .review-card:hover,
.values-list .feature-item:hover,
.curated-collections-list .collection-preview:hover,
.services-list .service-item:hover {
  transform: translateY(-8px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 32px var(--shadow-strong);
  z-index: 2;
}

.feature-item img,
.services-overview-grid .service-card img,
.services-list .service-item img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--fun-blue);
  padding: 6px;
}

.highlight-item, .collection-preview {
  background: var(--fun-yellow);
  border-radius: var(--card-radius);
  box-shadow: 0 3px 16px var(--shadow);
  padding: 16px 18px;
  flex: 1 1 220px;
  min-width: 200px;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 0 0;
}
.topic-tags span {
  background: var(--fun-green);
  color: #fff;
  border-radius: 16px;
  padding: 7px 18px;
  font-size: .98rem;
  box-shadow: 0 2px 9px var(--shadow);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .02em;
  transition: background var(--transition);
}
.topic-tags span:hover {
  background: var(--fun-blue);
}

.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--surface);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  font-size: 1rem;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  padding: 13px 18px;
}
.pricing-table thead th {
  background: var(--fun-blue);
  color: #fff;
  font-size: 1.06rem;
}
.pricing-table tbody td {
  border-bottom: 1px solid #ededf5;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ==== TESTIMONIALS === */
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.testimonial-card {
  background: var(--secondary);
  border-radius: var(--card-radius);
  box-shadow: 0 3px 16px var(--shadow-strong);
  color: #1d1841;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  min-width: 210px;
  padding: 24px 19px 19px 19px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-family: 'Lato',arial,sans-serif;
  color: #171425;
  margin-bottom: 8px;
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}
.testimonial-card span {
  font-size: .98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-weight: 600;
}
.testimonial-card:hover { box-shadow: 0 6px 24px var(--shadow-strong); transform: scale(1.02) rotate(-1deg); }

/* ==== FAQ / ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 20px 20px 15px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.faq-item:hover { box-shadow: 0 6px 24px var(--shadow-strong); transform: scale(1.02); }

/* ==== COMMUNITY & SOCIAL ==== */
.community-cta {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
.social-media-block nav {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.social-media-block a img {
  width: 36px; height: 36px;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--shadow);
  background: var(--fun-blue);
  padding: 4px;
  transition: background var(--transition), transform var(--transition);
}
.social-media-block a:hover img { background: var(--fun-yellow); transform: rotate(-8deg) scale(1.08); }

/* ====== MICRO-INTERACTIONS ====== */
.feature-item h3, .service-card h3, .review-card h3 {
  letter-spacing: .03em;
  color: var(--accent);
}
.rating-stars {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-top: 7px;
}
.review-card, .service-card {
  min-height: 170px;
}

/* ==== TABLES (Pricing/Legal) ==== */
.legal-block {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 16px var(--shadow);
  padding: 34px 22px 34px 22px;
  margin-bottom: 32px;
}
.legal-block .text-section {
  color: #26234d;
  margin-bottom: 10px;
}

/* === NEWSLETTER BLOCK === */
.newsletter-block {
  padding: 24px 20px 18px 20px;
  background: var(--fun-blue);
  border-radius: var(--card-radius);
  color: #fff;
  box-shadow: 0 2px 16px var(--shadow);
  font-size: 1.08rem;
  margin-right: 0;
}
.newsletter-block h3 { color: #fff; }

/* ==== HIGHLIGHTED/COLLECTIONS ==== */
.curated-collections-list .collection-preview {
  transition: background var(--transition), transform var(--transition);
}
.curated-collections-list .collection-preview:hover {
  background: var(--fun-blue);
  color: #fff;
  transform: scale(1.03) rotate(-1deg);
}

/* ==== QUICK TIPS ==== */
.quick-tip-highlights {
  background: var(--fun-green);
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px 10px 18px;
  font-size: 1rem;
  margin-left: 0;
}
.quick-tip-highlights h3 { color: #fff; }
.quick-tip-highlights ul li { color: #fff; }

/* ==== CTA BLOCKS (form, confirmation, misc) ==== */
.confirmation-block {
  background: var(--fun-green);
  border-radius: var(--card-radius);
  color: #fff;
  box-shadow: 0 6px 32px var(--shadow-strong);
  padding: 38px 24px 38px 24px;
  text-align: center;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirmation-message { font-size: 1.09rem; color: #fff; margin-bottom: 20px; }

/* ==== VALUES & ABOUT US ==== */
.values-list ul, .team_bios ul {
  padding-left: 0;
  margin-bottom: 14px;
}
.values-list li, .team_bios li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.passion_highlight {
  background: var(--fun-yellow);
  border-radius: 14px;
  padding: 15px 12px;
  color: var(--primary);
  margin-top: 14px;
}

.brand_story, .team_bios, .mission_statement { margin-bottom: 12px; }

/* ==== FILTERS & FORMS ==== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  border-radius: 16px;
  background: var(--fun-blue);
  color: #fff;
  padding: 21px 18px 21px 18px;
  margin-bottom: 0;
  box-shadow: 0 2px 11px var(--shadow);
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}
.filters label {
  font-size: .96rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.filters input, .filters select {
  background: #fff;
  color: var(--primary);
  border-radius: 13px;
  border: 0;
  padding: 7px 13px;
  font-size: 1rem;
  margin-top: 3px;
  margin-bottom: 0;
  box-shadow: 0 1px 6px var(--shadow);
  font-family: 'Lato', Arial, sans-serif;
}
.filters input:focus, .filters select:focus { outline: 2px solid var(--accent); }

/* === CONTACT INFO === */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 2px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #26234d;
}
.contact-info img {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
  margin-right: 8px;
}
.contact-info strong { color: var(--accent); font-family: 'Montserrat', Arial, sans-serif; }

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 60px;
  padding: 44px 0 22px 0;
  font-size: 1rem;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -3px 16px var(--shadow-strong);
  position: relative;
  z-index: 100;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 12px;
  transition: color var(--transition), background var(--transition);
  border-radius: 16px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--fun-yellow);
  color: var(--accent);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  justify-content: center;
}
.brand-info img {
  width: 38px;
  height: 38px;
}
.brand-info span {
  color: #f9f9fc;
  font-size: .99rem;
}
footer .contact-info {
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  color: #fff;
  margin: 0;
  font-size: .96rem;
}
footer .contact-info div img { filter: brightness(5); }

/* =========== COOKIE CONSENT BANNER ============= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--fun-blue);
  color: #fff;
  box-shadow: 0 -2px 16px var(--shadow-strong);
  padding: 20px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 11111;
  animation: cookieFlyIn .5s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieFlyIn {
  0% {transform: translateY(80px) scale(0.98); opacity: 0;}
  100% {transform: none; opacity: 1;}
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 22px;
  margin-top: 3px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 10px var(--shadow);
}
.cookie-consent-banner .cookie-settings-btn {
  background: var(--fun-yellow);
  color: var(--primary);
  border-radius: 15px;
  font-weight: 700;
  margin-right: 0;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}
.cookie-consent-banner .cookie-settings-btn:hover,
.cookie-consent-banner .cookie-settings-btn:focus {
  background: var(--fun-green);
  color: #fff;
}

/* ==== COOKIE MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%) scale(1);
  background: var(--surface);
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 6px 48px var(--shadow-strong);
  z-index: 11112;
  min-width: 330px;
  max-width: 95vw;
  width: 420px;
  padding: 36px 25px 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: cookieModalIn .32s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalIn {
  0% { transform: translate(-50%, -44%) scale(.93); opacity: 0; }
  100% { transform: translate(-50%, -54%) scale(1); opacity: 1; }
}
.cookie-modal.active { display: flex; }
.cookie-modal h2 { color: var(--accent); margin-bottom: 18px; font-size: 1.3rem; font-family: 'Montserrat'; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--fun-yellow);
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 1.03rem;
}
.cookie-category label {
  flex: 1;
  font-weight: bold;
  color: var(--accent);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--fun-green);
  width: 18px; height: 18px;
}
.cookie-actions-modal {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px; right: 18px;
  background: var(--fun-blue);
  color: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  border: none;
  font-size: 1.15rem;
  text-align: center;
  line-height: 32px;
}
.cookie-modal .close-modal:hover {
  background: var(--fun-green);
  color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .features-grid, .feature-grid, .services-list, .curated-collections-list, .highlights-list, .reviews-list, .services-overview-grid {
    gap: 18px;
  }
  .features-grid .feature-item,
  .feature-grid .feature-item,
  .values-list .feature-item,
  .highlights-list .highlight-item,
  .reviews-list .review-card,
  .services-overview-grid .service-card,
  .curated-collections-list .collection-preview,
  .services-list .service-item {
    min-width: 170px;
  }
}
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  section, .section { padding: 28px 4px 0 4px; }
  .content-wrapper { gap: 21px; }
  .features-grid, .feature-grid, .services-list, .curated-collections-list, .highlights-list, .reviews-list, .services-overview-grid { gap: 13px; }
}
@media (max-width: 768px) {
  .hero-block,
  .confirmation-block {
    padding: 20px 8px 22px 8px;
    margin-top: 8px;
  }
  .features-grid, .feature-grid,
  .services-list, .curated-collections-list, .highlights-list, .reviews-list, .services-overview-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 11px;
  }
  .features-grid .feature-item,
  .feature-grid .feature-item,
  .values-list .feature-item,
  .highlights-list .highlight-item,
  .reviews-list .review-card,
  .services-overview-grid .service-card,
  .curated-collections-list .collection-preview,
  .services-list .service-item {
    min-width: unset;
    width: 100%;
    max-width: unset;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: unset; width: 100%;
    min-width: unset;
    padding: 19px 11px 15px 13px;
  }
  .footer-nav, footer .contact-info { flex-direction: column; gap: 11px; }
  .text-image-section { flex-direction: column; align-items: center; gap: 18px; }
  .cookie-modal { min-width: unset; width: 99vw; padding: 18px 6vw 20px 6vw; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  footer { padding: 23px 0 17px 0; }
  .cookie-modal { font-size: 0.99rem; }
}

/* ========== ADDITIONAL =========== */
::-webkit-scrollbar {
  width: 11px;
  background: #ecefff;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--fun-blue);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* =========== MISC ========== */
.text-section a { color: var(--accent); text-decoration: underline; transition: color .17s; }
.text-section a:hover { color: var(--fun-blue); }
hr { border: none; border-top: 1.5px dashed var(--fun-blue); margin: 32px 0; }

/* =========== PLAYFUL EXTRAS ============= */
.features-grid .feature-item:before {
  content: "";
  display: block;
  position: absolute;
  right: -10px; top: -10px;
  width: 30px; height: 30px;
  background: var(--fun-yellow);
  opacity: .22;
  border-radius: 12px;
  z-index: 0;
  transform: rotate(13deg);
  pointer-events: none;
}
.features-grid .feature-item:nth-child(2n):before { background: var(--fun-blue); }
.features-grid .feature-item:nth-child(3n):before { background: var(--fun-green); }

/* ========== END OF STYLE.CSS ========== */