/* ----------------------------------------------------------
   RESET & BASELINE STYLES
---------------------------------------------------------- */
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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F9FB;
  color: #222F3E;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul,ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; border: none; }
input,button,select,textarea { font-family: inherit; }

/* ----------------------------------------------------------
   BRAND COLORS & FONTS
---------------------------------------------------------- */
:root {
  --primary: #29507A;
  --primary-dark: #223d59;
  --secondary: #E0F0EA;
  --background: #F7F9FB;
  --white: #fff;
  --accent: #C16D3A;
  --accent-dark: #A0521F;
  --text: #222F3E;
  --gray-light: #EEF2F6;
  --gray: #B0BDC9;
  --card-shadow: 0 2px 8px 0 rgba(41,80,122,0.04), 0 1.5px 5px 0 rgba(80,100,120,0.08);
  --border-radius: 10px;
}
body, .body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p, .subheadline { font-size: 1.05rem; margin-bottom: 16px; color: var(--text); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
}

strong, b { font-weight: 600; }

/* Links hover */
a:hover, .footer-nav a:hover, .footer-legal-nav a:hover, .main-nav a:hover {
  color: var(--accent);
}

/* Container and layout basics */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 28px 10px; margin-bottom: 36px; }
  .content-wrapper { padding: 18px 0; }
}

/* ----------------------------------------------------------
   HEADER, NAVIGATION & HERO
---------------------------------------------------------- */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 0.5px 3px 0 rgba(41, 80, 122, 0.06);
  position: sticky; top: 0; z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img[alt="PrzygotujMieszkanie.pl"] {
  height: 38px;
  margin-right: 36px;
  min-width: 130px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 4px;
  border-radius: 5px;
  transition: background 0.15s, color 0.18s;
}
.main-nav a.active, .main-nav a:focus {
  color: var(--accent);
  background: var(--secondary);
}
.cta-btn {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.17s, color 0.14s;
  box-shadow: 0 2px 8px 0 rgba(41, 80, 122, 0.06);
  margin-left: 12px;
  text-align: center;
  letter-spacing: 0.4px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(193,109,58,0.12);
}
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    padding: 11px 18px;
    font-size: 0.97rem;
    margin-left: unset;
  }
  header .container { gap: 8px; }
}

@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.1rem;
    padding: 6px 15px;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.16s;
    z-index: 201;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: var(--accent);
  }
}

/* HERO + SECTION GENERAL */
section {
  width: 100%;
  background: none;
  margin-bottom: 56px;
}
section .container {
  flex-direction: column;
  gap: 0;
}

/* ----------------------------------------------------------
   MOBILE MENU OVERLAY
---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: 0 3px 44px 0 rgba(41, 80, 122, 0.10);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.55,.3,.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.15rem;
  color: var(--primary);
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 410;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 82px;
  padding-left: 24px;
  padding-right: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  color: var(--primary);
  font-weight: 500;
  padding: 12px 10px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----------------------------------------------------------
   LAYOUTS & SPACING
---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: 28px 28px 22px 28px;
  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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  flex-wrap: wrap;
  min-width: 0;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(41,80,122,0.10);
}
.feature-item {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px 22px 22px;
  width: 100%;
  min-width: 220px;
  box-shadow: 0 1.5px 5px 0 rgba(41,80,122,0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 6px 16px 0 rgba(41,80,122,0.08);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .features-grid { gap: 18px; }
  .feature-item { min-width: 180px; }
}
@media (max-width: 768px) {
  .features-grid { flex-direction: column; }
  .feature-item { width: 100%; min-width: unset; }
}

.services-list {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.services-list li {
  background: var(--white);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  padding: 20px 20px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  font-size: 1.05rem;
  margin-bottom: 0;
  border-left: 4px solid var(--primary);
  min-width: 0;
}
.services-list .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  margin-top: 14px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  font-size: 1rem;
}
.price-table th, .price-table td {
  border-right: 1px solid var(--gray-light);
  padding: 16px 14px;
  text-align: left;
  min-width: 90px;
  color: var(--primary);
}
.price-table th {
  background: var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child, .price-table th:last-child { border-right: none; }

@media (max-width: 600px) {
  .price-table th, .price-table td { padding: 9px 7px; font-size: 0.91rem; }
}

.process-list {
  margin: 32px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.process-list li {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 13px 16px;
  margin-bottom: 0;
  font-size: 1.07rem;
}

.key-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.key-points li {
  font-size: 0.98rem;
  color: var(--primary-dark);
  padding-left: 18px;
  position: relative;
}
.key-points li:before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1.3em;
}

/* Case study - realizacje */
.case-summary {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 22px 24px 17px 24px;
  margin-bottom: 24px;
}
.case-summary h3 {
  font-size: 1.22rem; color: var(--primary); margin-bottom: 10px;
}
.case-summary blockquote {
  margin-top: 14px;
  font-style: italic;
  background: var(--secondary);
  color: var(--text);
  border-left: 3px solid var(--accent);
  margin-left: 0;
  padding: 14px 20px;
  border-radius: 7px;
}

/* Tips page layout */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tips-list li {
  display: flex;
  align-items: center;
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: 13px 16px;
  border-radius: var(--border-radius);
  font-size: 1.07rem;
  gap: 16px;
}
.tips-list img { width: 28px; height: 28px; }

.faq-list dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-top: 18px;
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.01rem;
}

.text-section {
  margin-bottom: 18px;
}
.text-section ul { margin-bottom: 16px; padding-left: 24px; }
.text-section ul li {
  list-style: disc;
  margin-bottom: 7px;
  color: var(--text);
}
.text-section p { margin-bottom: 0; }

/* Contact section */
.contact-info {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.contact-info ul { padding-left: 14px; }

.contact-map {
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-style: italic;
}
.cta { margin-top: 20px; }

/* ----------------------------------------------------------
   TESTIMONIALS & QUOTES
---------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  color: var(--text);
  border-left: 5px solid var(--primary);
  margin-bottom: 20px;
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-stars {
  font-size: 1.5rem;
  color: #FEBF0F;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 9px;
}
blockquote {
  font-style: italic;
  color: var(--primary-dark);
  margin: 0 0 7px 0;
  background: transparent;
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 18px;
}

@media (max-width: 600px) {
  .testimonial-card { padding: 13px; }
  .case-summary { padding: 13px; }
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 38px 0 0 0;
  font-size: 1rem;
  border-top: 3px solid var(--accent);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 7px;
}
.footer-brand img {
  height: 30px; width: auto; margin-right: 3px;
}
.footer-tagline {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--gray-light);
}
.footer-nav, .footer-legal-nav {
  display: flex;
  gap: 18px;
  margin: 6px 0 0 0;
  flex-wrap: wrap;
}
.footer-nav a,.footer-legal-nav a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;text-decoration:none;
}
.footer-legal-nav a { font-size: 0.97rem; }
.footer-social {
  display: flex;
  gap: 18px;
  margin: 7px 0;
}
.footer-social img {
  width: 27px; height: 27px;
  filter: grayscale(1) brightness(1.4);
  transition: filter 0.13s;
}
.footer-social img:hover {
  filter: grayscale(0) brightness(0.96);
}
.footer-info {
  font-size: 0.98rem;
  color: var(--gray-light);
  margin-top: 12px;
  margin-bottom: 8px;
}
.footer-info a {
  color: var(--gray-light);
  text-decoration: underline dotted;
  transition: color 0.14s;
}
.footer-info a:hover { color: var(--accent); }
.footer-legal {
  font-size: 0.97rem;
  margin: 18px 0 0 0;
  color: var(--gray);
}
footer small { font-size: 0.97em; letter-spacing: 0.3px; }

@media (max-width: 768px) {
  footer .container {
    gap: 10px;
    font-size: 15px;
  }
  .footer-brand, .footer-nav, .footer-legal-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .footer-tagline { font-size: 0.99rem; }
}

/* ----------------------------------------------------------
   BUTTONS & INTERACTIONS
---------------------------------------------------------- */
button, .btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: var(--border-radius);
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 7px 0 rgba(41,80,122,.06);
  transition: background 0.14s, box-shadow 0.16s, color 0.14s;
}
button:hover,button:focus, .btn:hover, .btn:focus {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px 0 rgba(193,109,58,0.13);
}

/* Subtle entry fade effect */
.section, .feature-item, .card, .testimonial-card, .case-summary {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeinmoveup 0.7s cubic-bezier(.57,.35,.79,1.22) forwards;
}
@keyframes fadeinmoveup {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ----------------------------------------------------------
   COOKIE BANNER
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 520px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 -3px 22px 0 rgba(41,80,122,0.08);
  border-radius: 18px 18px 0 0;
  padding: 24px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  z-index: 9999;
  font-size: 1.02rem;
  animation: cookieAppear 0.45s cubic-bezier(.23,.87,.29,1.13);
}
@media (max-width: 600px) {
  .cookie-banner { max-width: 97vw; padding: 16px 6vw 14px 6vw; border-radius: 11px 11px 0 0; }
}
@keyframes cookieAppear {
  from { opacity: 0; transform: translate(-50%,20px); }
  to   { opacity: 1; transform: translate(-50%,0); }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner button,
.cookie-banner .btn {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 8px;
  padding: 10px 23px;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.14s, color 0.12s;
}
.cookie-banner button:hover,
.cookie-banner .btn:hover {
  background: var(--accent);
  color: var(--white);
}
.cookie-settings-btn {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  transition: background 0.14s, color 0.14s;
}
.cookie-settings-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ----------------------------------------------------------
   COOKIE MODAL STYLES
---------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  background: var(--white);
  box-shadow: 0 4px 36px 0 rgba(41,80,122,0.21);
  max-width: 96vw;
  width: 440px;
  transform: translate(-50%,-50%) scale(1.04);
  border-radius: 14px;
  padding: 30px 32px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalOpen 0.35s cubic-bezier(.28,.95,.6,1.09);
}
@media (max-width: 550px) {
  .cookie-modal {
    width: 96vw;
    padding: 17px 4vw 17px 4vw;
    border-radius: 8px;
    min-width: 0;
  }
}
@keyframes cookieModalOpen {
  from { opacity: 0; transform: translate(-50%,-48%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1.04); }
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 99999;
  transition: color 0.12s;
}
.cookie-modal-close:hover { color: var(--accent); }

.cookie-modal h3 { font-size: 1.19rem; color: var(--primary); }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 1.05rem;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.05rem;
}
.cookie-category .toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-legend {
  font-size: 0.98rem;
  color: var(--gray);
  margin-bottom: 10px;
  font-style: italic;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,48,62,0.42);
  z-index: 99998;
  animation: cookieOverlayAppear 0.25s cubic-bezier(.31,.71,.51,1.43);
}
@keyframes cookieOverlayAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ----------------------------------------------------------
   RESPONSIVE RULES, MOBILE FIRST
---------------------------------------------------------- */
@media (max-width: 991px) {
  .container { padding: 0 10px; }
}
@media (max-width: 600px) {
  html, body { font-size: 15px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.14rem; }
  .content-wrapper { padding-top: 12px; padding-bottom: 12px; }
}

/* ----------------------------------------------------------
   MINI UTILITIES & OVERRIDES
---------------------------------------------------------- */
.mt-0 { margin-top:0!important; }
.mb-0 { margin-bottom:0!important; }
.text-center { text-align:center!important; }
.text-right { text-align:right!important; }
.text-primary { color:var(--primary)!important; }
.text-accent { color:var(--accent)!important; }
.bg-secondary { background:var(--secondary)!important; }

/* Remove number input arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

/* Scrollbar minimalism for desktop */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 8px; background: var(--gray-light); }
  ::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 7px; }
}

/* Focus ring for better accessibility */
a:focus,
button:focus, .cta-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Prevent content overlap, ensure min spacing everywhere */
.card, .feature-item, .testimonial-card, .services-list li, .case-summary, .tips-list li {
  margin-bottom: 20px;
}
.section, section, .content-wrapper {
  margin-bottom: 60px;
}

/* ADAPTIVE HERO ON MOBILE */
@media (max-width: 600px) {
  header .container { padding: 0 6px; }
  .content-wrapper { padding: 7px 2px; }
}
