/* --- 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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #f8f8f2;
  color: #244168;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s, color 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #10b4b3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #244168;
  text-decoration: underline;
}
ul, ol{
  margin-left: 1.1em;
  margin-top: 0.5em;
}

/* --- COLOR PALETTE (SOFT PASTELS) --- */
:root {
  --brand-primary: #244168;
  --brand-secondary: #10b4b3;
  --brand-accent: #f8f8f2;
  --pastel-blue: #eef5fa;
  --pastel-mint: #e6faf7;
  --pastel-peach: #ffecec;
  --pastel-lilac: #f6f1fb;
  --pastel-yellow: #fff9e5;
  --pastel-gradient: linear-gradient(90deg, #f6f1fb 0%, #e6faf7 100%);
  --text-dark: #244168;
  --text-light: #647188;
  --card-bg: #ffffff;
  --shadow: 0 6px 22px 0 rgba(36, 65, 104, 0.07);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-dark);
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, blockquote {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 10px;
}
blockquote {
  font-style: italic;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--pastel-lilac);
  border-left: 3px solid var(--brand-secondary);
  padding: 16px 20px;
  margin: 0 0 10px 0;
  border-radius: 12px 32px 12px 12px;
}
strong {
  color: var(--brand-primary);
  font-weight: 600;
}

/* --- LAYOUT CONTAINERS (FLEXBOX ONLY) --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px 0 rgba(16, 180, 179, 0.12);
  transform: translateY(-4px) scale(1.01);
}
.content-grid, .card-grid, .feature-grid, .service-grid, .city-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;
  margin-bottom: 20px;
  border-radius: 20px;
  background: var(--pastel-blue);
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s, background 0.25s;
}
.testimonial-card:hover, .testimonial-card:focus {
  background: var(--pastel-lilac);
  box-shadow: 0 10px 32px 0 rgba(36, 65, 104, 0.07);
}
.feature-item, .service-item, .city-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.feature-item img, .service-item img, .city-item img {
  width: 44px;
  height: 44px;
}
.feature-item:hover, .service-item:hover, .city-item:hover {
  box-shadow: 0 14px 32px 0 rgba(16,180,179,0.13);
  transform: translateY(-4px) scale(1.012);
}
.city-grid {
  width: 100%;
}
.city-item {
  background: var(--pastel-peach);
  border-left: 5px solid var(--brand-secondary);
}

/* --- HERO SECTIONS --- */
.hero {
  background: var(--pastel-gradient);
  background-color: var(--pastel-blue);
  padding: 74px 0 58px 0;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.hero h1, .hero h2 {
  color: var(--brand-primary);
  font-size: 2.4rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.18rem;
  color: var(--text-light);
}
.team-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--pastel-lilac);
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(16, 180, 179, 0.10);
}

/* --- MAIN NAVIGATION --- */
header {
  background: var(--pastel-mint);
  box-shadow: 0 2px 14px -2px rgba(36,65,104,0.10);
  position: relative;
  z-index: 25;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 26px;
  padding: 14px 20px 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 7px 14px;
  border-radius: 7px;
  transition: background 0.16s, color 0.15s;
  font-weight: 500;
  margin-bottom: 0;
}
.main-nav a.cta-primary {
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(16,180,179,0.12);
  margin-left: 12px;
  padding: 7px 26px;
  letter-spacing: 0.02em;
  border: none;
  outline: 0;
  transition: background 0.2s, color 0.18s, box-shadow 0.20s;
}
.main-nav a.cta-primary:hover, 
.main-nav a.cta-primary:focus {
  background: #244168;
  color: #fff;
  box-shadow: 0 5px 18px 0 rgba(36,65,104, 0.17);
}
.main-nav a:not(.cta-primary):hover, 
.main-nav a:not(.cta-primary):focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 5px 17px 0 13px;
  cursor: pointer;
  transition: background 0.2s, color 0.16s;
  margin: 8px 20px 8px 0;
  z-index: 105;
}
.mobile-menu-toggle:focus {
  background: #244168;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 92%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(120deg, #e6faf7 0%, #f6f1fb 100%);
  box-shadow: -7px 0 16px 0 rgba(36,65,104,0.13);
  transform: translateX(105%);
  transition: transform 0.33s cubic-bezier(.05,.93,.89,.97);
  z-index: 130;
  padding: 32px 22px 22px 22px;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--brand-primary);
  padding: 11px 10px;
  border-radius: 10px;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.2s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-mint);
  color: var(--brand-secondary);
}
.cta-primary {
  background: var(--brand-secondary);
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 rgba(16,180,179,0.12);
  text-align: center;
  margin-top: 8px;
  transition: background 0.23s, box-shadow 0.21s, color 0.15s;
  border: none;
  outline: 0;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 10px 24px 0 rgba(36,65,104, 0.14);
}
@media (max-width: 990px) {
  .main-nav {
    gap: 8px 13px;
    flex-wrap: wrap;
    padding: 14px 7px 14px 11px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 801px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- FLEXBOX ADAPTATION FOR RESPONSIVENESS --- */
@media (max-width: 768px) {
  .container {
    padding-left: 10px; padding-right: 10px;
  }
  .hero {
    padding: 44px 0 34px 0;
  }
  .content-wrapper {
    gap: 20px;
  }
  .city-grid, .card-grid, .feature-grid, .service-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .city-item {
    min-width: 0;
    width: 100%;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- TAGS/BADGES --- */
.tag {
  display: inline-block;
  background: var(--pastel-mint);
  color: var(--brand-primary);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin: 0 9px 10px 0;
  box-shadow: 0 1px 9px 0 rgba(16,180,179,0.08);
  transition: background 0.19s, color 0.14s;
}
.tag:hover, .tag:focus {
  background: var(--brand-secondary);
  color: #fff;
}

.filter-options, .city-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 16px;
}

/* --- SEARCH BAR --- */
.search-bar input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.06rem;
  border: 1px solid #dee0ea;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  outline: none;
  box-shadow: none;
  margin-bottom: 15px;
  transition: border 0.20s, box-shadow 0.18s;
}
.search-bar input:focus {
  border: 1.5px solid var(--brand-secondary);
  background: #fff;
}

/* --- ARTICLE HIGHLIGHTS --- */
.article-highlights {
  background: var(--pastel-yellow);
  border-radius: 16px;
  padding: 16px 22px;
  margin-top: 18px;
  box-shadow: 0 2px 10px 0 rgba(255,222,156,0.08);
}
.article-highlights h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}
.article-highlights p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.lifestyle-info ul {
  margin-top: 13px;
}

/* --- FOOTER --- */
footer {
  background: var(--pastel-lilac);
  border-top: 1px solid #eee;
  padding: 0 0 14px 0;
  margin-top: 52px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 62px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 20px 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo img {
  height: 55px;
  margin-bottom: 21px;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  border-radius: 5px;
  padding: 4px 7px;
  transition: background 0.17s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-peach);
  color: var(--brand-secondary);
  text-decoration: underline;
}
.footer-contact img {
  display: inline;
  height: 16px;
  width: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
    padding: 32px 9px 18px 9px;
    align-items: flex-start;
  }
  .footer-logo img {
    margin-bottom: 9px;
  }
}

/* --- PRIVACY NOTICE/ALERTS --- */
.privacy-notice {
  border-radius: 10px;
  background: var(--pastel-lilac);
  padding: 13px 14px;
  font-size: 0.98rem;
  margin-top: 10px;
}

/* --- BUTTONS --- */
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  border: none;
  outline: 0;
  padding: 11px 22px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--brand-secondary);
  color: #fff;
  cursor: pointer;
  margin: 0 7px 0 0;
  transition: background 0.29s, transform 0.13s, box-shadow 0.15s;
  box-shadow: 0 2px 15px 0 rgba(16,180,179,0.11);
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 24px rgb(36,65,104, 0.12);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 350;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 32px 0 rgba(36, 65, 104, 0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 38px;
  font-size: 1rem;
  color: var(--brand-primary);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.33s cubic-bezier(.25,.90,.77,1), transform 0.32s cubic-bezier(.42,.7,.49,1);
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-banner button {
  border-radius: 7px;
  font-size: 1rem;
  padding: 8px 21px;
  font-weight: 600;
}
.cookie-banner .accept {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--brand-primary);
}
.cookie-banner .reject {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #faeef7;
  color: var(--brand-secondary);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid #e6faf7;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--pastel-mint);
  color: var(--brand-secondary);
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
    padding: 18px 12px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: rgba(36,65,104,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.45,.93,.53,.97);
}
.cookie-modal.show {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 10px 40px 0 rgba(36,65,104,0.18);
  padding: 36px 28px 26px 28px;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop-in 0.33s cubic-bezier(.4,.95,.55,1) 1 both;
}
@keyframes modal-pop-in {
  0% { transform: scale(0.92) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-header h2 {
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-secondary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  background: var(--pastel-lilac);
  border-radius: 8px;
  padding: 11px 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-secondary);
}
.cookie-category .locked {
  opacity: 0.7;
  font-size: 0.87rem;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 7px;
}

@media (max-width: 560px) {
  .cookie-modal-dialog {
    padding: 14px 7px;
    border-radius: 16px;
  }
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 23px;
}
th, td {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 11px 6px;
  border-bottom: 1px solid #e5e5ef;
  color: var(--text-dark);
}
th {
  background: var(--pastel-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* --- UTILITIES, SHADOWS & EFFECTS --- */
.shadow-soft {
  box-shadow: var(--shadow);
}
.rounded-lg {
  border-radius: 20px;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }

/* --- ACCESSIBLE HIDDEN (for aria-live etc.) --- */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* --- FOCUS VISIBILITY --- */
a, button, input, select, textarea {
  outline: none;
}
a:focus-visible, button:focus-visible, input:focus-visible {
  box-shadow: 0 0 0 2px var(--brand-secondary), 0 0 7px #e6faf7;
}

/* --- MICRO-INTERACTIONS/ANIMATIONS --- */
.card, .feature-item, .service-item, .city-item, .testimonial-card, .cta-primary, .main-nav a {
  transition: box-shadow 0.20s, background 0.17s, color 0.14s, transform 0.12s;
}

/* --- CTA SECTION --- */
.cta {
  background: var(--pastel-lilac);
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(36,65,104,0.08);
  margin-bottom: 40px;
  padding: 35px 10px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: var(--brand-primary);
  font-size: 2rem;
}
.cta p {
  color: var(--text-light);
  font-size: 1.09rem;
}

@media (max-width: 768px) {
  .cta {
    margin-bottom: 18px;
    padding: 24px 4px;
  }
  .cta .content-wrapper { align-items: flex-start; }
}

/* --- GENERAL SPACING BETWEEN ELEMENTS (NO OVERLAP) --- */
section, .section, .card, .feature-item, .service-item, .testimonial-card, .city-item {
  margin-bottom: 20px;
}

/* --- TESTIMONIALS (Readability/Contrast) --- */
.testimonials {
  background: var(--pastel-blue);
  padding: 40px 0;
  margin-bottom: 36px;
  border-radius: 18px;
}
.testimonial-card {
  background: #fff;
  color: var(--brand-primary);
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 3px solid var(--brand-secondary);
  padding: 0 12px;
  color: var(--brand-primary);
  font-size: 1.08rem;
}
.client-info {
  font-size: 0.99rem;
  color: var(--text-light);
  margin-left: 12px;
  font-style: italic;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* --- SPECIAL LAYOUT FOR ABOUT & CONTACT --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.contact .content-wrapper {
  gap: 20px;
}

/* --- FORM ELEMENTS & PRIVACY NOTE --- */
input[type="text"], input[type="email"], textarea {
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #e5eaea;
  padding: 13px 16px;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  margin-bottom: 14px;
  width: 100%;
  outline: 0;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--brand-secondary);
  background: #fff;
}

/* --- MISCELLANEOUS --- */
::-webkit-input-placeholder { color: #B2BBCB; }
::-moz-placeholder { color: #B2BBCB; }
:-ms-input-placeholder { color: #B2BBCB; }
::placeholder { color: #B2BBCB; }

[hidden] { display:none !important; }
