/* =========================
   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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #F9F8FC;
  color: #29405C;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px dashed #CDB973; outline-offset: 2px; }
ul, ol { list-style: none; }
input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
}

/* ============================
   BRAND - FONTS & COLORS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
:root {
  --primary: #29405C;
  --secondary: #CDB973;
  --accent: #FFFFFF;
  --brand-playful-pink: #EB5792;
  --brand-playful-blue: #4BADDD;
  --brand-playful-green: #5FE096;
  --brand-playful-violet: #B285FF;
  --brand-bg: #F9F8FC;
  --brand-shadow: rgba(41,64,92,0.07);
  --brand-card-shadow: 0 4px 20px rgba(41,64,92,0.13);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 7px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--brand-bg);
  -webkit-font-smoothing: antialiased;
  color: var(--primary);
}
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--primary);
}
h1 { font-size: 2.5rem; margin-bottom: 18px; line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 15px; line-height: 1.2; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--brand-playful-pink);
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.5;
}
p, li, label, span, small {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
}
small { font-size: 0.9rem; color: #726E7C; }

/* ============================
   CONTAINER & FLEX LAYOUTS
============================ */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--brand-card-shadow);
  transition: transform 0.22s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 32px rgba(235,87,146,0.09), var(--brand-card-shadow);
}
.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; }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffbe9;
  border-left: 7px solid var(--brand-playful-pink);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(180, 133, 255, 0.07);
  font-size: 1rem;
  max-width: 500px;
  position: relative;
}
.testimonial-card blockquote {
  color: var(--primary);
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--brand-card-shadow);
}

/* ============================
   HEADER, NAVIGATION, LOGO
============================ */
header {
  background: var(--accent);
  box-shadow: 0 2px 10px var(--brand-shadow);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 0;
  gap: 10px;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: var(--primary);
  gap: 8px;
}
.main-nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav li a {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.17s, color 0.18s;
  position: relative;
}
.main-nav li a:hover, .main-nav li a.cta.secondary:hover, .main-nav li a.cta.primary:hover {
  background: var(--brand-playful-blue);
  color: #fff;
}
.main-nav li a.cta.primary {
  background: var(--brand-playful-pink);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.6px;
  margin-left: 14px;
  box-shadow: 0 4px 16px rgba(235,87,146,0.12);
}
.main-nav li a.cta.primary:hover { background: var(--brand-playful-green); }
.main-nav li a.cta.secondary {
  background: var(--brand-playful-blue);
  color: #fff;
  font-weight: 500;
}
.main-nav li a.cta.secondary:hover { background: var(--brand-playful-pink); }

/* Burger for mobile nav toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-playful-blue);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 6px 18px;
  border-radius: var(--radius-md);
  margin-left: auto;
  cursor: pointer;
  z-index: 102;
  transition: background 0.18s;
  box-shadow: 0 2px 8px rgba(75, 173, 221, 0.15);
}
.mobile-menu-toggle:hover { background: var(--brand-playful-pink); }

/* ================================
   Responsive Nav (MOBILE & DESKTOP)
================================== */
@media (max-width: 1020px) {
  .main-nav ul { gap: 14px; }
}
@media (max-width: 768px) {
  .main-nav ul { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,64,92,0.98);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.42,.08,.34,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 38px;
  padding-left: 18px;
  padding-right: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  position: absolute;
  top: 26px; right: 32px;
  z-index: 128;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 50px;
  width: 90vw;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  padding: 18px 0 10px 0;
  border-bottom: 1px solid rgba(205,185,115,.13);
  transition: color 0.16s, background 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: var(--brand-playful-green);
  background: rgba(235,87,146,0.13);
  border-radius: var(--radius-md);
  padding-left: 8px;
}


/* =====================
   HERO SECTIONS
====================== */
.hero {
  background: linear-gradient(112deg, #fff 70%, #CDB973 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 6px 40px rgba(205,185,115,0.04);
  padding: 57px 0 48px 0;
  margin-bottom: 38px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  margin-bottom: 10px;
  text-shadow: 1px 2px 0 #CDB97333, 0 7px 27px #E8C66811;
}
.hero .cta.primary {
  font-size: 1.17rem;
  margin-top: 25px;
}

/* =====================
   BUTTONS (CTA)
====================== */
.cta {
  display: inline-block;
  padding: 12px 36px;
  border-radius: var(--radius-md);
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  letter-spacing: .05em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: none;
  box-shadow: 0 3px 13px rgba(41,64,92,0.09);
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.20s, color 0.19s, transform 0.16s;
  margin-right: 10px;
  margin-bottom: 9px;
}
.cta.primary {
  background: var(--brand-playful-pink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(235,87,146,0.14);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-playful-blue);
  color: #fff;
  transform: scale(1.045) rotate(-2deg);
}
.cta.secondary {
  background: var(--brand-playful-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(75,173,221,0.13);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-playful-green);
  color: #29405C;
  transform: scale(1.045) rotate(2deg);
}
.cta:active {
  opacity: .88;
}

/* ============================
   FEATURES & CARDS
============================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 32px 0 28px 0;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--brand-card-shadow);
  padding: 33px 26px 30px 26px;
  flex: 1 1 230px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  transition: transform .21s, box-shadow 0.15s;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li img {
  width: 47px; height: 47px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 5px #B285FF2f);
}
.feature-grid li:hover {
  transform: translateY(-4px) scale(1.03) rotate(-2.5deg);
  box-shadow: 0 12px 40px #EB579221;
}
.feature-grid h3 {
  color: var(--brand-playful-blue);
  font-size: 1.19rem;
  font-weight: 900;
  margin-bottom: 9px;
}
.feature-grid p { color: #444F60; }

/* ====================
   REVIEW SECTIONS
==================== */
.featured-reviews-list, .review-summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: column;
}
.featured-reviews-list li, .review-summary-grid li {
  background: #ffffff;
  border-left: 5px solid var(--brand-playful-blue);
  border-radius: var(--radius-md);
  padding: 18px 18px 14px 20px;
  box-shadow: 0 3px 18px #B285FF0d;
  margin-bottom: 12px;
}
.featured-reviews-list strong, .review-summary-grid h3 {
  color: var(--brand-playful-pink);
  font-weight: 900;
  font-family: 'Merriweather', serif;
  letter-spacing: .01em;
}
.featured-reviews-list a, .review-summary-grid a {
  color: var(--brand-playful-blue);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.15s;
}
.featured-reviews-list a:hover, .review-summary-grid a:hover { color: var(--brand-playful-pink); }

/* =================
   NEWSLETTER FORM
================= */
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  align-items: center;
}
.newsletter-signup input[type="email"] {
  border: 2px solid var(--brand-playful-pink);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: var(--primary);
  outline: none;
  box-shadow: 0 2px 8px #B285FF05;
  transition: border 0.18s;
  flex: 1 1 200px;
  min-width: 190px;
}
.newsletter-signup input[type="email"]:focus {
  border-color: var(--brand-playful-blue);
}
.newsletter-signup .cta {
  flex-shrink: 0;
}

/* =================
   SERVICE LIST PRICING
================= */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.service-list li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--brand-card-shadow);
  padding: 16px 22px;
  position: relative;
  margin-bottom: 8px;
}
.service-list .price {
  font-family: 'Merriweather', serif;
  color: var(--brand-playful-green);
  font-weight: bold;
  float: right;
  margin-left: 12px;
}

/* =================
   TESTIMONIAL CAROUSEL
================= */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0 6px 0;
  justify-content: flex-start;
}

/* =================
     GENERIC LISTS
================= */
.value-statements,
.tip-list,
.thematic-list-overview,
.event-list,
.interview-snippets,
.community-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}

.value-statements li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 18px 14px 20px;
  box-shadow: 0 2px 8px #5FE09607;
  margin-bottom: 9px;
}

/* =======================
   COMMUNITY CUSTOM
======================= */
.community-commitment {
  background: #E9F7FF;
  border-radius: var(--radius-md);
  padding: 22px 24px 14px 22px;
  box-shadow: 0 2px 14px #4BADDD08;
  margin: 22px 0 16px 0;
}

/* ============================
   CTA BUTTON GROUPS & INTERACTIONS
============================ */
.cta-contact, .cta-recommendations, .cta-personal-list {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================
   FORMS AND FILTERS
============================ */
form {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.review-filter {
  margin-bottom: 26px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--brand-card-shadow);
  gap: 13px;
}
.review-filter label {
  font-weight: 500;
  color: var(--primary);
}
.review-filter select {
  border: 2px solid var(--brand-playful-blue);
  border-radius: var(--radius-sm);
  background: #f5faff;
  padding: 9px 13px;
  color: var(--primary);
}
.review-filter .cta {
  padding: 9px 22px;
  font-size: 1rem;
}

/* =======================
   CONTACT & INFO BLOCKS
======================= */
.contact-information, .contact-info {
  background: #E9F7FF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  font-size: 1rem;
}

/* =======================
   FOOTER
======================= */
footer {
  background: #29405C;
  color: #fff;
  width: 100%;
  margin-top: 52px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav ul li a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.16s;
  border-radius: var(--radius-sm);
  padding: 4px 10px 4px 0;
}
.footer-nav ul li a:hover { color: var(--brand-playful-green); background: rgba(205,185,115,0.06); }
.contact-info {
  background: none;
  color: #fff;
  font-size: 0.99rem;
  margin-bottom: 0 !important;
  padding: 0;
}
.contact-info a { color: var(--brand-playful-blue); text-decoration: underline; }
.contact-info a:hover { color: var(--brand-playful-pink); }

@media (max-width: 768px) {
  .footer-nav { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ============================
   COOKIE CONSENT BANNER
============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff3e9;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 18px 20px 12px;
  z-index: 9999;
  box-shadow: 0 -2px 22px #F1C38522;
  font-size: 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  animation: slideBannerIn 0.5s cubic-bezier(.66,1.45,.48,1) both;
}
@keyframes slideBannerIn {
  0% { transform: translateY(110%); opacity:0; }
  100% { transform: none; opacity:1; }
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-consent-banner button {
  padding: 8px 22px;
  background: var(--brand-playful-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(75,173,221,0.10);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--brand-playful-pink);
  transform: scale(1.05);
}
.cookie-buttons .cookie-settings {
  background: none;
  color: var(--brand-playful-green);
  border: 2px solid var(--brand-playful-green);
  box-shadow: none;
}
.cookie-buttons .cookie-settings:hover, .cookie-buttons .cookie-settings:focus {
  background: var(--brand-playful-green);
  color: var(--primary);
}

/* =====================
  COOKIE MODAL
===================== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(41,64,92,0.29);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .4s cubic-bezier(.68,.06,.36,.99) both;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  color: var(--primary);
  padding: 40px 28px 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 48px #EB579217;
  min-width: 295px;
  max-width: 95vw;
  animation: dialogPopIn .44s cubic-bezier(.68,.06,.36,.99) both;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@keyframes dialogPopIn {
  0% { transform: scale(0.92) translateY(40px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-dialog h3 {
  color: var(--brand-playful-blue);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0EEFE;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 3px;
}
.cookie-category.essential {
  background: #D9F5E6;
  color: #277e44;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-dialog button {
  padding: 9px 24px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 22px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  z-index: 8;
}

/* ========================
   ANIMATED & PLAYFUL FX
========================= */
.cta.primary, .cta.secondary, .card, .feature-grid li, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.20s, background 0.19s, color 0.18s;
}
.card:before, .feature-grid li:before {
  content: '';
  position: absolute;
  left: 15px; top: 15px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-playful-violet);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  transition: background 0.23s;
}
.card:hover:before, .feature-grid li:hover:before {
  background: var(--brand-playful-pink);
  opacity: 0.17;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 1100px) {
  .feature-grid li, .card, .testimonial-card { max-width: 368px; }
}
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.1rem; }
  .container { max-width: 97vw; padding: 0 10px; }
  .feature-grid { gap:12px; }
}
@media (max-width: 850px) {
  .testimonials-carousel, .feature-grid, .card-container, .content-grid {
    gap: 10px;
  }
  .feature-grid { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .hero { padding: 38px 0 24px 0; }
  .container { padding: 0 8px; }
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.25rem; }
  .feature-grid, .card-container, .testimonial-carousel {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .content-wrapper { padding: 0; }
  .testimonial-card, .card, .feature-grid li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .main-nav { padding: 10px 0; }
}
@media (max-width: 540px) {
  .hero { padding: 22px 0 15px 0; }
}
@media (max-width: 480px) {
  .cookie-consent-banner { flex-direction: column; gap: 9px; align-items: stretch; }
  .cookie-modal-dialog {
    padding: 20px 7vw 22px 7vw;
    min-width: 0; max-width: 98vw;
  }
}

/* ========================
     MICRO-INTERACTIONS
======================== */
input:focus, button:focus, select:focus, textarea:focus {
  outline: 2px dashed var(--brand-playful-pink);
  outline-offset: 1.5px;
  box-shadow: 0 2px 12px #EB579218;
}

/* =======================
   ACCESSIBLE HIDE TEXT
======================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* ==================
   MISC & OVERRIDES
================== */
::-webkit-input-placeholder { color: #B285FF; font-style: italic; }
::-moz-placeholder { color: #B285FF; font-style: italic; }
:-ms-input-placeholder { color: #B285FF; font-style: italic; }
::placeholder { color: #B285FF; font-style: italic; }

a[href^="mailto"]:before {
  content: '✉️ '; font-size: .93em; margin-right: 1.5px;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ===============
   END
================ */