/* ============================================================
   FEMPOWERMENT STUDIO - GOUDA
   Brand: #CC0000 red / #1A1A1A near-black / #FFFFFF white
   Type: Barlow Condensed (headlines) / Barlow (body)
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #CC0000;
  --red-dark: #A80000;
  --black:    #1A1A1A;
  --grey-dark:#2E2E2E;
  --grey-mid: #555555;
  --grey-light:#B0B0B0;
  --grey-bg:  #F5F5F5;
  --white:    #FFFFFF;

  --font-head: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

  --container: 1160px;
  --gap:       2rem;
  --radius:    6px;
  --header-h:  68px;

  --ease-out: cubic-bezier(.22,.61,.36,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Image fill helpers - never let container bg show as border */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.card__img-wrap img, .over__img-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s var(--ease-out), color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  min-height: 44px;
  padding: .6rem 1.4rem;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
/* Hero CTA - always solid red, explicit override */
.hero .btn--primary,
.hero a.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.hero .btn--primary:hover,
.hero a.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover { background: var(--red); color: var(--white); }

.btn--sm  { font-size: .875rem; padding: .4rem 1rem; min-height: 38px; }
.btn--lg  { font-size: 1.05rem; padding: .8rem 2rem; min-height: 52px; }
.btn--block { width: 100%; }

/* ── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--black);
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-mid);
  line-height: 1.65;
}


/* ── HERO CTA BUTTON (standalone, no inheritance conflicts) ── */
.hero-cta-btn {
  display: inline-block;
  background-color: #CC0000;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 1.1rem 3rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(204,0,0,0.55);
  cursor: pointer;
  transition: background-color .2s, transform .15s;
  min-height: 52px;
  line-height: 1.4;
}
.hero-cta-btn:hover {
  background-color: #A80000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo__text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: var(--white);
  text-transform: uppercase;
}
.logo__accent { color: var(--red); }
.logo__sub {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--grey-light);
  text-transform: uppercase;
  margin-top: .15rem;
}

.desktop-nav {
  margin-left: auto;
}
.desktop-nav ul {
  display: flex;
  gap: 2rem;
}
.desktop-nav a {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  padding: .25rem 0;
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: 1rem; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: .5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.hamburger-icon, .close-icon { width: 26px; height: 26px; }
.close-icon { display: none; }
.menu-open .hamburger-icon { display: none; }
.menu-open .close-icon { display: block; }

/* ── MOBILE MENU OVERLAY ───────────────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
  overflow-y: auto;
  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
  height: 100dvh;
  height: 100svh;
}

.mobile-menu__overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-menu__item:hover { color: var(--red); }

.mobile-menu__cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,.82) 0%,
    rgba(26,26,26,.6) 50%,
    rgba(204,0,0,.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: 5rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* ── STATS STRIP ───────────────────────────────────────────── */
.stats-strip {
  background: var(--black);
  padding: 2.5rem 0;
  border-top: 3px solid var(--red);
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
}

.stat-item__icon {
  width: 56px;
  height: 56px;
  background: rgba(204,0,0,.15);
  border: 1.5px solid rgba(204,0,0,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: .25rem;
}
.stat-item__icon svg { width: 28px; height: 28px; }

.stat-item__number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-item__label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── DIENSTEN ──────────────────────────────────────────────── */
.diensten {
  padding: 6rem 0;
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}

.card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out);
}
.card:hover .card__img-wrap img { transform: scale(1.04); }

.card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.card__icon svg { width: 22px; height: 22px; }

.card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.card__desc {
  font-size: .95rem;
  color: var(--grey-mid);
  line-height: 1.65;
  flex: 1;
}

/* ── OVER ONS ──────────────────────────────────────────────── */
.over {
  padding: 6rem 0;
  background: var(--grey-bg);
}

.over__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.over__text .section-title { text-align: left; }
.over__text .section-eyebrow { text-align: left; }

.over__text p {
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.over__usps {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.over__usps li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--black);
}

.over__usps svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

.over__visual { position: relative; }

.over__img-stack { position: relative; }

.over__img-frame--main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.over__img-frame--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(204,0,0,.4);
  gap: .2rem;
  min-width: 120px;
}

.over__badge svg {
  width: 24px;
  height: 24px;
  color: rgba(255,255,255,.7);
}

.over__badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.over__badge-txt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
  line-height: 1.3;
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews {
  padding: 6rem 0;
  background: var(--black);
}

.reviews .section-eyebrow,
.reviews .section-title {
  color: var(--white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.review-card {
  background: var(--grey-dark);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .25s var(--ease-out), border-color .25s;
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 900;
  color: var(--red);
  opacity: .25;
  position: absolute;
  top: .5rem;
  right: 1.5rem;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204,0,0,.3);
}

.review-card__stars {
  display: flex;
  gap: .2rem;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.review-card__quote {
  font-size: .975rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-card__author strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  font-weight: 600;
}

.review-card__author span {
  font-size: .78rem;
  color: var(--grey-light);
}

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 5rem 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-top: .5rem;
  max-width: 460px;
}

.cta-band .btn--primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  flex-shrink: 0;
  font-weight: 700;
}
.cta-band .btn--primary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: var(--grey-bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__info .section-title,
.contact__info .section-eyebrow { text-align: left; }

.contact__intro {
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--grey-mid);
}

.contact__details svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: .15rem;
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .02em;
}

.optional {
  font-weight: 400;
  color: var(--grey-mid);
  font-size: .8rem;
}

.form-group input {
  padding: .75rem 1rem;
  border: 1.5px solid #D8D8D8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  min-height: 48px;
  width: 100%;
}

.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.12);
}

.form-note {
  font-size: .8rem;
  color: var(--grey-light);
  text-align: center;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer-kit {
  background: var(--black);
  color: var(--white);
}

.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-kit__brand .logo__text { font-size: 1.1rem; }

.footer-kit__tagline {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--grey-light);
  line-height: 1.6;
  max-width: 260px;
}

.footer-kit__nav h3,
.footer-kit__contact h3,
.footer-kit__social h3 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.footer-kit__nav ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-kit__nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-kit__nav a:hover { color: var(--white); }

.footer-kit__contact address {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-kit__contact p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.social-links {
  display: flex;
  gap: .75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}

.social-links a:hover {
  background: var(--red);
  color: var(--white);
}

.social-links svg { width: 18px; height: 18px; }

.footer-kit__bottom {
  padding: 1.5rem 0;
}

.footer-kit__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-kit__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

.footer-kit__bottom a {
  color: var(--red);
  font-weight: 600;
}

/* ── OVER BADGE MOBILE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .over__badge {
    bottom: -1rem;
    left: -0.75rem;
    padding: 1rem 1.2rem;
    min-width: 100px;
  }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__headline { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero__content { padding-block: 3rem; }

  .stats-strip__grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .stat-item { padding: .75rem .5rem; }
  .stat-item__number { font-size: 2rem; }

  .card-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }

  .over__inner { grid-template-columns: 1fr; gap: 3rem; }
  .over__visual { order: -1; }
  .over__img-frame--main { aspect-ratio: 16/9; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__sub { margin-inline: auto; }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; }

  .stats-strip__grid { grid-template-columns: 1fr; max-width: 220px; margin-inline: auto; }

  .footer-kit__inner { grid-template-columns: 1fr; }
  .footer-kit__bottom .container { flex-direction: column; text-align: center; }

  .contact-form { padding: 1.75rem 1.25rem; }

  .hero__sub { font-size: 1rem; }

  .over__badge { display: none; }
}

/* Prevent horizontal scroll absolutely */
html, body { max-width: 100%; overflow-x: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
